:root {
    --gutter: 24px;
    --header-height: 72px;
    --header-bg: rgba(255, 255, 255, 0.6);
    --header-bg-solid: #00000;
    --accent: #1d4ed8;
}


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

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    /* background: #fafafa; */
    overflow-x: hidden;
    background: #111;

}

/* Container */
.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    /* background: #111; */
    z-index: 1000;
    opacity: 0.9;
}

/* Logo */
.logo-container img {
    height: 25px;
    width: auto;
}

/* Flex Layout */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: rgb(252, 250, 250);
}

/* Nav Links */
.main-nav {
    display: flex;
    gap: 40px;
    color: white;
    background: rgba(20, 20, 20, 0.45);
    padding: 20px;
    border-radius: 18px;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.7px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #f5d142;
    /* gold hover like logo */
}

/* Contact (phone) */
.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.header-contact i {
    font-size: 14px;
}


/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

/* Hover effect */
.main-nav a:hover {
    color: #f5d142;
    /* gold hover */
}

/* Active link */
.main-nav a.active {
    color: #f5d142;
    /* gold text */
}

/* Optional: underline indicator for active */
.main-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f5d142;
    border-radius: 2px;
}


@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/******************** Footer Part  */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-content {
    padding-right: 40px;
}

.contact-content h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.contact-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #d4af37;
}

.form-group textarea {
    resize: none;
    min-height: 50px;
}

/* 
.send-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
    padding: 1px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 15px;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.send-btn::after {
    content: '↗';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.send-btn:hover::after {
    transform: translate(3px, -3px);
} */

.contact-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

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

    .contact-content {
        padding-right: 0;
    }

    .contact-content h1 {
        font-size: 56px;
    }

    .contact-image {
        height: 300px;
    }

    .footer-info-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        gap: 30px;
    }
}

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

    .footer-container {
        padding: 0 20px;
    }

    .contact-content h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-info-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .contact-content h1 {
        font-size: 36px;
    }

    .send-btn {
        padding: 12px 40px;
        font-size: 14px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* Footer Section  */
/* ---------- Footer base ---------- */
.footer-section {
    position: relative;
    background: radial-gradient(circle at center, #141414 0%, #070707 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 30px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

/* ---------- Top row (contacts / location / socials) ---------- */
.footer-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* max-width: 1400px; */
    margin: 18px auto 10px;
    padding: 0 48px;
    z-index: 5;
    /* above logo */
    position: relative;
}

/* left block */
.top-left .top-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

/* contact item */
.contact-item,
.location-item {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;
    font-size: 18px;
    /* line-height: 1.2; */
}

/* circular white icon border (same look as provided) */
.contact-icon {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* simple text */
.contact-text {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    letter-spacing: 0.5px;
}

/* social icons row */
.social-links {
    display: flex;
    gap: 14px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all .25s ease;
}

.social-icon:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* thin divider line (under top row) */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    /* max-width: 1400px; */
    margin: 18px auto;
    z-index: 5;
    position: relative;
}

/* ---------- Spotlights (behind the logo) ---------- */
/* === Wrapper for 3 evenly spaced spotlights === */
.footer-lights {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
}

/* === Base spotlight style === */
.footer-light {
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at bottom center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(200, 200, 200, 0.35) 25%,
            rgba(70, 70, 70, 0.1) 60%,
            rgba(0, 0, 0, 0.95) 100%);
    filter: blur(30px);
    opacity: 0.8;
    animation: footerLightPulse 2s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Slight brightness variation for realism */
.footer-light--left {
    opacity: 0.78;
}

.footer-light--center {
    opacity: 0.92;
    width: 350px;
    height: 400px;
}

/* center stronger */
.footer-light--right {
    opacity: 0.78;
}

/* === Light breathing animation === */
@keyframes footerLightPulse {

    0%,
    100% {
        opacity: 0.45;
        filter: blur(70px) brightness(0.9);
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        filter: blur(40px) brightness(1.4);
        transform: scaleY(1.12);
    }
}

/* ---------- Logo (center, sits above spotlights) ---------- */
.footer-logo-wrap {
    position: relative;
    z-index: 4;
    /* above spotlights but below top row text */
    margin-top: 8px;
    margin-bottom: 18px;
}

.footer-logo {
    display: block;
    margin: 0 auto;
    height: auto;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    /* allows svg to remain clean */
}

/* small copyright text sits under everything */
.footer-bottom {
    position: relative;
    z-index: 5;
    padding: 12px 0 40px;
    background: transparent;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* ---------- Responsive tuning ---------- */
@media (max-width: 1400px) {
    .footer-logo {
        width: 1000px;
    }

    .footer-light--center {
        width: 520px;
        height: 520px;
        opacity: 0.9;
    }
}

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

    .footer-logo {
        width: 900px;
    }
}

@media (max-width: 992px) {
    .footer-toprow {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 18px;
    }

    .top-left,
    .top-center,
    .top-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-divider {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .footer-logo {
        width: 85%;
        max-width: 900px;
    }

    .footer-light--left,
    .footer-light--center,
    .footer-light--right {
        width: 360px;
        height: 360px;
        filter: blur(40px);
    }
}

@media (max-width: 600px) {
    .footer-logo {
        width: 320px;
    }

    .footer-light--left,
    .footer-light--center,
    .footer-light--right {
        width: 260px;
        height: 260px;
        filter: blur(30px);
    }

    .contact-text {
        font-size: 14px;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* pop up card */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    background-image: url(../images/Background.png);
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    z-index: 1000;
    text-align: center;
    /* font-family: "Poppins", sans-serif; */
}

/* Heading */
.pop-up-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    /* Theme orange */
    margin-bottom: 15px;
}

/* Paragraph */
.pop-up-para {
    color: #d4af37;
    /* Olive green */
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Button */
.close-btn {
    background-color: #000;
    /* Olive green */
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
}

.close-btn:hover {
    background-color: #d4af37;
}

/********************* whatsapp container */
.whatsapp-container {
    position: sticky;
    bottom: 20px;
    right: 20px;
    width: 60px;
    text-align: right;
    height: 60px;
    z-index: 9999;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.whatsapp-container i {
    font-size: 48px;
    color: #25D366;
    justify-content: flex-end;
    animation: whatsappbeat 1.5s infinite;
    transition: transform 0.3s ease;
}

@keyframes whatsappbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}