* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("../Assest/bg.jpg");
    background-size: contain;
    color: black;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: transparent;
    transition: background 0.3s;
}

header.scrolled {
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.menu-toggle {
    width: 15%;
    font-size: 30px;
    cursor: pointer;
    color: #eb5b25;
    z-index: 1001;
    /* right: 0px; */
}

.logo img {
    height: 100px;
}

.header-btn {
    background-color: #eb5b25;
    color: white;
    padding: 8px;
    border: none;
    position: relative;
    /* display: none; */
    /* z-index: 1000; */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 24px;
}

.header-btn:hover {
    background: white;
    color: black;
}

.mobile-menu {
    position: fixed;
    text-align: center;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #111;
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-logo {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.mobile-menu-logo img {
    height: 120px;
}

.mobile-menu-items {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 25px;
}

.mobile-menu a {
    color: #ebd8b4;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #eb5b25;
}

.mobile-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-btn {
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }
}

/* contact details */
.contact-section {
    background-image: url('../Assest/contact-us-bg.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 20px;
}

.contact-container {
    max-width: 1140px;
    margin: auto;
    margin-top: 150px;
    min-height: 60vh;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

/* Left Side */
.contact-left {
    flex: 1 1 45%;
}

.contact-left h2 {
    font-size: 36px;
    color: #ff5722;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.contact-left p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.opening-hours h3 {
    font-size: 22px;
    color: #ff5722;
    margin-bottom: 10px;
}

.opening-hours p {
    font-size: 18px;
    margin-bottom: 4px;
}

.opening-hours strong {
    color: white;
    font-weight: 600;
}

/* Right Side */
.contact-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    display: flex;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    align-items: flex-start;
    gap: 15px;
}

.contact-box i {
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-box h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-box p {
    color: #ff5722;
    font-size: 18px;
    line-height: 1.5;
}

.contact-box a {
    color: #ff5722;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ✅ Responsive Styling */
@media (max-width: 992px) {
    .contact-container {
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-container {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
        margin-top: 95px;
    }

    .contact-left h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-left p {
        font-size: 1.2rem;
        text-align: center;
    }

    .opening-hours h3,
    .opening-hours p {
        text-align: center;
    }

    .contact-right {
        gap: 16px;
    }

    .contact-box {
        flex-direction: row;
        align-items: flex-start;
        padding: 16px;
    }

    .contact-box h4 {
        font-size: 18px;
    }

    .contact-box p {
        font-size: 16px;
    }

    .contact-box i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-box {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .contact-box i {
        font-size: 36px;
        margin-top: 0;
    }

    .contact-left h2,
    .contact-left p,
    .opening-hours h3,
    .opening-hours p {
        text-align: center;
    }
}

/* Contact Details */

/* custom location with map */

.custom-location-wrapper {
    width: 100%;
    padding: 50px 30px;
   background-image: url('Assest/contact-us-bg.avif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: -50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.custom-location-wrapper h2 {
    font-size: 2.5rem;
    color: #eb5b25;
    margin-bottom: 40px;
    display: inline-block;
    border-bottom: 3px solid #eb5b25;
    padding-bottom: 8px;
}

.custom-location-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.custom-map-box {
    flex: 1 1 65%;
    min-width: 300px;
    border: 3px solid #eb5b25;
    padding: 5px;
    height: 100%;
}

.custom-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

.custom-contact-box {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: #000;
    padding: 25px;
    border: 1px solid #eb5b25;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-contact-item {
    border: 1px solid #eb5b25;
    padding: 15px;
    transition: all 0.3s ease;
    background-color: #000;
}

.custom-contact-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    transition: color 0.3s ease;
}

.custom-contact-item span {
    color: #ccc;
    transition: color 0.3s ease;
    display: inline-block;
}

.custom-contact-item:hover {
    background-color: #eb5b25;
}

.custom-contact-item:hover strong,
.custom-contact-item:hover span {
    color: #000;
}

.custom-send-button {
    background-color: #eb5b25;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #eb5b25;
    transition: box-shadow 0.3s ease;
}

.custom-send-button:hover {
    box-shadow: 0 0 20px #ffb347, 0 0 30px #ffa733;
}

@media (max-width: 768px) {
    .custom-location-wrapper {
        padding: 30px 20px;
    }

    .custom-location-wrapper h2 {
        font-size: 2rem;
    }

    .custom-location-section {
        flex-direction: column;
    }

    .custom-map-box iframe {
        height: 500px;
    }
}

/* Popup styles */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.custom-popup-form {
    background: linear-gradient(to bottom right, #fff, #fef2e0);
    color: #000;
    padding: 40px 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.6);
    position: relative;
    text-align: center;
}

.custom-popup-form h3 {
    margin-top: 0;
    font-size: 2rem;
    color: #ff6600;
}

.custom-popup-form p {
    margin-bottom: 25px;
    color: #444;
}

.custom-popup-form input,
.custom-popup-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.custom-popup-form button.send {
    background: #eb5b25;
    color: #000;
    padding: 12px 25px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #eb5b25;
    transition: background 0.3s ease;
}

.custom-popup-form button.send:hover {
    background: #ffa733;
}

.custom-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    background: transparent;
    border: none;
}

/* custom location with map */

/* Footer Styles */
.footer {
    background-color: #222;
    color: #fff;
    margin-top: 50px;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 200px;
    /* margin-bottom: 20px; */
}

.footer-description {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Rajdhani';
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background-color: #eb5b25;
    color: #ffffff;
    font-size: 24px;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: #000;
    transform: translateY (-3px);
}

/* Links Sections */
.footer-section h3 {
    color: #ebd8b4;
    font-size: 24px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 600;
}

/* .footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
} */

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-family: 'Rajdhani';
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: #eb5b25;
    padding-left: 5px;
}

.footer-links li:not(a) {
    color: #ffffff;
    font-size: 16px;
}

/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}

/* Copyright */
.copyright {
    background-color: #aa1b44;
    height: 135px;
    display: flex;
    font-family: 'Rajdhani';
    justify-content: space-between;
    text-align: center;
    border-top: 1px solid #444;
    color: white;
    padding: 10px;
    font-size: 18px;
}

.copyright a {
    color: #ff6b6b;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
        color: #ff6b6b;
    }
}

/* FLOT ICON */

.float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 12px;
    left: 16px;
    background-color: #eb5a25;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
}

.float1 {
    position: fixed;
    bottom: 34px;
    left: 96px;
    background-color: #222222;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    text-decoration: none;
    font-family: 'Orbitron';
    font-size: 1rem;
    line-height: 1.4em;
}

.my-float {
    margin-top: 16px;
}