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

    :root {
        --primary-color: #1a1a1a;
        --secondary-color: #f8bc16;
        --text-dark: #2c2c2c;
        --text-light: #666;
        --bg-light: #fafafa;
        --white: #ffffff;
        --transition: all 0.3s ease;
        --black: #000000;
        --gold-liner-grad: linear-gradient(135deg, #f8bc16, #d4a017, #fbe28f);
    }

    body {
        font-family: "Montserrat", sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        font-size: clamp(0.875rem, 0.7918rem + 0.1735vw, 1rem);
    }

    p {
        font-family: "Montserrat", sans-serif;
        line-height: 1.6;
        font-size: clamp(0.875rem, 0.7918rem + 0.1735vw, 1rem);

    }

    h2 {
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1.875rem, 1.1607rem + 1.1161vw, 2.5rem);
        color: var(--black);
        text-transform: uppercase;
        margin-bottom: 2.5rem;
        font-weight: 700;
        color: var(--black);
    }

    h3 {
        font-family: "Montserrat", sans-serif;
        font-size: clamp(1rem, 0.5714rem + 0.6696vw, 1.375rem);
    }

    section {
        margin-bottom: clamp(4rem, -3rem + 8.75vw, 7.5rem);
    }

    .container {
        max-width: 1750px;
        width: 95%;
        margin: 0 auto;
    }

    @media (max-width:768px) {
        .container {
            width: 90%;
        }
    }


    /* Navbar  starts*/
    .navbar {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: 2px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }


    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 700;
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
        padding: 25px 0;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 0;
        background: var(--secondary-color);
        transition: var(--transition);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .menu-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    /* Dropdown menu styling */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 47px;
        left: -32px;
        background: rgba(255, 255, 255, 0.98);
        list-style: none;
        /* padding: 0.5rem 0; */
        min-width: 180px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--text-dark);
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .dropdown-menu a:hover {
        background: var(--secondary-color);
        color: var(--white);
    }

    /* Responsive */
    @media (max-width: 960px) {
        .nav-links {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background: var(--white);
            width: 100%;
            height: 100vh;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem 0;
            gap: 1.2rem;
        }

        .nav-links a {
            padding: 15px 0;
        }

        .nav-links.active {
            left: 0;
        }

        .menu-toggle {
            display: block;
        }

        .dropdown-menu li a {
            text-align: center;
        }
    }

    /* Navbar ends*/
























    /* -----------------------------------
   Luxury Animated Button (Reusable)
   Add class="luxy-btn" to any <a> or <button>
----------------------------------- */

    .luxy-btn {
        position: relative;
        display: inline-block;
        padding: 14px 36px;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #f8bc16, #d4a017, #fcdf82);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(248, 188, 22, 0.4);
        transition: all 0.4s ease;
    }

    /* Hover Effects */
    .luxy-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(248, 188, 22, 0.6);
    }

    /* Animated Shine Effect */
    .luxy-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
        transform: skewX(-25deg);
        transition: 0.7s;
    }

    .luxy-btn:hover::before {
        left: 125%;
    }

    /* Optional subtle pulse animation */
    @keyframes luxyPulse {
        0% {
            box-shadow: 0 0 10px rgba(248, 188, 22, 0.5);
        }

        50% {
            box-shadow: 0 0 25px rgba(248, 188, 22, 0.8);
        }

        100% {
            box-shadow: 0 0 10px rgba(248, 188, 22, 0.5);
        }
    }

    .luxy-btn.luxy-animate {
        animation: luxyPulse 2s infinite;
    }


    /* Floating Luxury Gold Call Button */

    .call-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: linear-gradient(135deg, #f8bc16, #d4a017, #fbe28f);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* box-shadow: 0 6px 18px rgba(248, 188, 22, 0.5); */
        transition: all 0.3s ease;
        text-decoration: none;
        z-index: 1000;
    }


    .call-btn:hover {
        transform: scale(1.1) rotate(8deg);
        box-shadow: 0 10px 25px rgba(248, 188, 22, 0.7);
        background: linear-gradient(135deg, #fbd85d, #f8bc16, #cfa616);
    }



    .call-btn svg {
        transition: transform 0.3s ease;
    }

    .call-btn:hover svg {
        transform: rotate(-15deg);
    }


    .swiper-button-next-1,
    .swiper-button-prev-1,
    .swiper-button-next-2,
    .swiper-button-prev-2 {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: linear-gradient(135deg, #f8bc16, #d4a017, #fbe28f);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* box-shadow: 0 6px 18px rgba(248, 188, 22, 0.5); */
        transition: all 0.3s ease;
        text-decoration: none;
        z-index: 1000;
    }

    .swiper-button-next-1,
    .swiper-button-prev-1,
    .swiper-button-next-2,
    .swiper-button-prev-2 {
        border: none;
    }

    .swiper-button-next-1::after,
    .swiper-button-prev-1::after,
    .swiper-button-next-2::after,
    .swiper-button-prev-2::after {
        font-size: 26px;
        color: var(--white);
    }

    .swiper-button-next-1:hover,
    .swiper-button-prev-1:hover,
    .swiper-button-next-2:hover,
    .swiper-button-prev-2:hover {
        transform: scale(1.1) rotate(8deg);
        box-shadow: 0 10px 25px rgba(248, 188, 22, 0.7);
        background: linear-gradient(135deg, #fbd85d, #f8bc16, #cfa616);
    }

    .swiper-button-next-1:hover,
    .swiper-button-prev-1:hover,
    .swiper-button-next-2:hover,
    .swiper-button-prev-2:hover {
        transform: rotate(0);

    }

    .swiper-button-next-1,
    .swiper-button-prev-1,
    .swiper-button-next-2,
    .swiper-button-prev-2 {
        transition: transform 0.3s ease;
    }

    /* Footer */
    .footer {
        border-top: 1px solid #0000000c;
        background: #00000009;
        color: var(--white);
        padding: 4rem 2rem 2rem;
    }

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

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: var(--black);
    }

    .footer-section p {
        color: var(--black);
        line-height: 1.8;
    }

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

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--black);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--secondary-color);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--secondary-color);
        color: var(--primary-color);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        color: #999;
    }

    .subscribe-input {
        background: #0000001a;
        width: 100%;
        padding: 0.8rem;
        border: none;
        border-radius: 5px;
        margin-bottom: 0.5rem;
    }

    .subscribe-btn {
        width: 100%;
        padding: 0.8rem;
        background: #f8bc16;
        color: #1a1a1a;
        border: none;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
    }