/*=========================================================
                GOOGLE FONTS
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/*=========================================================
                ROOT VARIABLES
=========================================================*/

:root{

    --primary:#f2dd9a;
    --secondary:#ffffff;
    --dark:#0f0f0f;
    --black:#000;
    --white:#fff;

    --text:#d6d6d6;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.08);

    --transition:.45s ease;

    --radius:18px;

    --shadow:
    0 15px 50px rgba(0,0,0,.35);

}


/*=========================================================
                RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--white);

    overflow-x:hidden;

    position:relative;
    background:#000;

margin:0;

padding:0;

    
}

img{

    width:100%;

    display:block;

}

ul{

    list-style:none;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

section{

    padding:110px 0;

    position:relative;
    
    
    overflow:hidden;


}

.container{

    width:min(92%,1320px);

    margin:auto;

}


/*=========================================================
                TYPOGRAPHY
=========================================================*/

h1,h2,h3,h4{

    font-family:
    'Playfair Display',serif;

    font-weight:600;

}

p{

    color:var(--text);

    line-height:1.8;

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--primary);

    letter-spacing:3px;

    font-size:14px;

    text-transform:uppercase;

}

.section-heading h2{

    font-size:54px;

    margin-top:12px;

}


/*=========================================================
                BUTTONS
=========================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:60px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(198,167,105,.45);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.25);

    color:#fff;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#fff;

    color:#111;

}


/*=========================================================
                CUSTOM CURSOR
=========================================================*/

.cursor{

    position:fixed;

    width:10px;

    height:10px;

    background:var(--primary);

    border-radius:50%;

    pointer-events:none;

    z-index:99999;

    transition:.05s;

}

.cursor2{
    position: fixed;      /* <-- YE MISSING HAI */
    left: 0;
    top: 0;

    width:10px;
    height:10px;

    border-radius:50%;
    background:transparent;
border:1px solid rgba(198,167,105,.9);

    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    backdrop-filter:blur(10px);

    pointer-events:none;

    z-index:99999;

    transition:
        width .25s,
        height .25s,
        background .25s,
        color .25s;
}


/*=========================================================
                NAVBAR
=========================================================*/

header{

position:fixed;

top:20px;

left:0;

width:100%;

z-index:999;
}

.navbar{

    width:min(94%,1380px);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:10px 25px;

    margin-top:0px;

    border-radius:60px;

    background:rgba(15,15,15,.45);

    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:all .45s ease;

}

.navbar.scrolled{

    background:rgba(10,10,10,.80);

    backdrop-filter:blur(40px);

    border-color:rgba(198,167,105,.20);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45);

}

.navbar:hover{

    border-color:rgba(198,167,105,.30);

    box-shadow:
        0 25px 70px rgba(0,0,0,.50),
        0 0 30px rgba(198,167,105,.08);

}

.logo img{

    height:52px;

    width:auto;
    

    transition:.4s;
}


.logo img:hover{

    transform:scale(1.05);

    filter:drop-shadow(0 0 12px rgba(198,167,105,.35));

}



.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#fff;

    position:relative;

    transition:var(--transition);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links a:hover::after{

    width:100%;

}

.enquire-btn{

    padding:15px 30px;

    border-radius:50px;

    background:var(--primary);

    color:#111;

    font-weight:600;

    transition:.4s;

}

.enquire-btn:hover{

    transform:translateY(-3px);

}

/*=========================================================
                HERO SECTION
=========================================================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;
    
    z-index:2;
    background:#000;
    isolation:isolate;

}






.site-content{
    position:relative;
    background:#090909;
    overflow:visible;
    z-index:1;
    padding-bottom: 10px;
    padding-top:0px;
}

.site-content::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:0;

    background:

    /* Left Burgundy */
    radial-gradient(
        1200px 900px at -20% -10%,
        rgba(115,12,42,.24) 0%,
        rgba(115,12,42,.10) 55%,
        transparent 72%
    ),

    /* Right Gold */
    radial-gradient(
        1000px 800px at 120% 115%,
        rgba(198,167,105,.16) 0%,
        rgba(198,167,105,.07) 60%,
        transparent 72%
    ),

    /* Bottom Soft Glow */
    radial-gradient(
        1400px 700px at 50% 120%,
        rgba(255,255,255,.10),
        transparent 72%
    );
    mix-blend-mode:screen;
opacity:.95;
}
/*=========================================================
                HERO SLIDER
=========================================================*/

.heroSlider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

}

.heroSlider .swiper-slide{

    overflow:hidden;

}

.heroSlider .swiper-slide img{

width:100%;
height:100%;

object-fit:cover;

transform:scale(1.08);

filter:
brightness(.90)
contrast(1.08)
saturate(1.08);

/*animation:heroZoom 18s ease-in-out infinite;*/

}

@keyframes heroZoom{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.15);

    }

}


/*=========================================================
                HERO DARK OVERLAY
=========================================================*/

.overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:radial-gradient(circle at 50% 45%,transparent,rgba(2,10,4,.42)),linear-gradient(transparent 55%,rgba(2,10,4,.62));
}

@media(max-width:768px){
    .overlay{
        background:radial-gradient(circle at 50% 45%, #00000057, rgb(2 10 4 / 66%)), linear-gradient(transparent 55%, rgb(2 10 4 / 81%))
    }

}
/*=========================================================
                HERO CONTENT
=========================================================*/

.hero-content{
    position:relative;
    z-index:5;

    max-width:900px;
    width:100%;

    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:0 20px;
}

.hero-content span{

    display:inline-block;

    color:#fff;

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:15px;

    margin-bottom:18px;

}

.hero-content h1{

color: var(--primary);

font: 500 clamp(65px, 9vw, 75px) / 1 Georgia !important;

letter-spacing:5px;

line-height:1.02;

text-transform: uppercase;

text-shadow:

0 15px 40px #000;

padding-bottom:20px;

}

.hero-content h2{

font-size:30px;

font-weight:600;

letter-spacing:2px;

line-height:1.02;

text-shadow:

0 15px 40px rgba(0,0,0,.55);
padding-bottom:20px;

}

.hero-content p{

font-size:22px;

max-width:720px;

color:#ececec;

}



/*=========================================================
                HERO BUTTONS
=========================================================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    transform:none !important;
    margin-top:45px;
    position:relative;
    z-index:8;
}

.hero-buttons .btn-primary{

    min-width:220px;

}

.hero-buttons .btn-outline{

    min-width:220px;

}


/*=========================================================
                HERO STATS
=========================================================*/

.hero-stats{

    position:absolute;

    left:50%;

    bottom:55px;

    transform:translateX(-50%);

    z-index:5;

    width:min(95%,1100px);

    display:grid;

    grid-template-columns:repeat(4,1fr);

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

}

.hero-stats .item{

    padding:28px;

    text-align:center;

    border-right:1px solid rgba(255,255,255,.08);

}

.hero-stats .item:last-child{

    border-right:none;

}

.hero-stats h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:8px;

}

.hero-stats p{

    color:#fff;

    font-size:15px;

}


.hero::after{

   display: none;

}




/*=========================================================
                SCROLL INDICATOR
=========================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    z-index:10;

    color:#fff;

    font-size:28px;

    animation:scrollDown 1.8s infinite;

}

.mouse{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.6);

    border-radius:30px;

    z-index:10;

}

.mouse::before{

    content:"";

    position:absolute;

    left:50%;

    top:10px;

    transform:translateX(-50%);

    width:5px;

    height:9px;

    border-radius:20px;

    background:#fff;

    animation:mouseScroll 1.5s infinite;

}

@keyframes mouseScroll{

    0%{

        opacity:1;

        top:10px;

    }

    100%{

        opacity:0;

        top:24px;

    }

}

@keyframes scrollDown{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,10px);

    }

    100%{

        transform:translate(-50%,0);

    }

}


/*=========================================================
                FLOATING ACTION BUTTONS
=========================================================*/

.whatsapp,

.call{

    position:fixed;

    right:28px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:28px;

    z-index:999;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.whatsapp{

    bottom:110px;

    background:#25D366;

}

.call{

    bottom:35px;

    background:var(--primary);

    color:#111;

}

.whatsapp:hover,

.call:hover{

    transform:translateY(-6px) scale(1.08);

}


/*=========================================================
                SWIPER PAGINATION
=========================================================*/

.swiper-pagination{

    bottom:28px !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.45;

}

.swiper-pagination-bullet-active{

    opacity:1;

    background:var(--primary);

    width:34px;

    border-radius:50px;

}


/*=========================================================
                HERO RESPONSIVE
=========================================================*/

@media(max-width:992px){

.hero{

height:auto;

min-height:100vh;

padding:150px 0 220px;

}

.hero-content h1{

font-size:56px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

bottom:35px;

}

.hero-stats .item:nth-child(2){

border-right:none;

}

}

@media(max-width:768px){

.hero-content h1{

font-size:55px;

}

.hero-content h2{

font-size:42px;

}
.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons a{

width:100%;

}

.hero-stats{

grid-template-columns:1fr;

}

.hero-stats .item{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.08);

}

.hero-stats .item:last-child{

border-bottom:none;

}

.scroll-down,

.mouse{

display:none;

}

.whatsapp,

.call{

width:55px;

height:55px;

font-size:24px;

right:18px;

}

}



.overview,
.config,
.highlights,
.gallery,
.pricing,
.location,
.plans,
.faq,
footer{

    background:transparent;

}


/*=========================================================
                OVERVIEW SECTION
=========================================================*/



.overview .container{

    display:grid;

    grid-template-columns:0.75fr 1.15fr;

    align-items:center;

    gap:80px;

}

.overview-left{

    position:relative;

}

.overview-left img{

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.overview-left:hover img{

    transform:scale(1.03);

}

.overview-right{

    position:relative;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.overview-right h2{

    font-size:56px;

    line-height:1.15;

    margin-bottom:28px;

}

.overview-right p{

    margin-bottom:45px;

    max-width:600px;
    
    color:#ffffff !important;

}


/*=========================================================
                OVERVIEW GRID
=========================================================*/

.overview-grid{

    display:grid;

    

    gap:25px;

}

.overview-grid .card{

    position:relative;

    display:flex;

    align-items:center;

    gap:22px;

    padding:10px;

    overflow:hidden;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 50px rgba(0,0,0,.35);

    transition:
        all .45s cubic-bezier(.23,1,.32,1);

}

.overview-grid .card::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.05) 55%,
        transparent 72%
    );

    transform:
        translateX(-120%)
        rotate(25deg);

    opacity:0;

    pointer-events:none;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.overview-grid .card:hover::before{

    transform:translateX(120%) rotate(25deg);

    opacity:1;

}

.overview-grid .card:hover{

    transform:
translateY(-10px)
scale(1.02);

    border-color:
        #c669694f;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(198,167,105,.08);

}

.overview-grid .card:hover::before{

    transform:
        translateX(120%)
        rotate(25deg);

    opacity:1;

}
.overview-text{

    flex:1;

}

.overview-text span{

    display:block;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#9d9d9d;

    margin-bottom:8px;

}

.overview-text h3{

    margin:0;

    color:#fff;

    font-size:17px;

    font-weight:200;

    line-height:1;
    
    font-family: "Inter",sans-serif;

}
.overview-icon{

    width:50px;

    height:50px;

    min-width:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
180deg,
rgba(255,255,255,.12),
rgba(255,255,255,.03)
);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    color:var(--primary);

    font-size:30px;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        background .45s ease,
        border-color .45s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);

}

.overview-grid .card:hover .overview-icon{

    transform:
        scale(1.12)
        rotate(-6deg);

    background:
        rgba(198,167,105,.10);

    border-color:
        #c669694f;

    box-shadow:
        0 0 18px rgba(198,167,105,.20),
        0 0 40px rgba(198,167,105,.10);

}
.overview-icon i{

    transition:
        transform .45s ease,
        filter .45s ease;

}

.overview-grid .card:hover .overview-icon i{

    transform:scale(1.12);

    filter:
        drop-shadow(0 0 8px rgba(198,167,105,.45))
        drop-shadow(0 0 18px rgba(198,167,105,.25));

}

@media(max-width:768px){

    .overview-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .overview-grid .card{

        padding:10px;

    }

    .overview-icon{

        width:58px;

        height:58px;

        min-width:58px;

        font-size:24px;

    }

    .overview-text h3{

        font-size:20px;

    }

}

.overview .section-heading{
    width: min(92%,1320px);
    margin: auto;
    
}
.overview .section-heading p{
    text-align: justify;
    margin-bottom: 50px;
}



/*=========================================================
                OVERVIEW SECTION
=========================================================*/

.config

 {
    padding-top: 80px;
}

.config .container{

    display:grid;

    grid-template-columns:0.75fr 1.15fr;

    align-items:center;

    gap:80px;

}

.config-left{

    position:relative;

}

.config-left img{

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.config-left:hover img{

    transform:scale(1.03);

}

.config-right{

    position:relative;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    letter-spacing:4px;

    font-size:14px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.config-right h2{

    font-size:45px;

    line-height:1.15;

    margin-bottom:28px;

}

.config-right p{

    margin-bottom:45px;

    max-width:600px;

}


/*=========================================================
                config GRID
=========================================================*/

.config-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.config-grid .card{

    position:relative;

    display:flex;

    align-items:center;

    gap:22px;

    padding:10px;

    overflow:hidden;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 50px rgba(0,0,0,.35);

    transition:
        all .45s cubic-bezier(.23,1,.32,1);

}

.config-grid .card::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.05) 55%,
        transparent 72%
    );

    transform:
        translateX(-120%)
        rotate(25deg);

    opacity:0;

    pointer-events:none;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.config-grid .card:hover::before{

    transform:translateX(120%) rotate(25deg);

    opacity:1;

}

.config-grid .card:hover{

    transform:
translateY(-10px)
scale(1.02);

    border-color:
        #c669694f;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(198,167,105,.08);

}

.config-grid .card:hover::before{

    transform:
        translateX(120%)
        rotate(25deg);

    opacity:1;

}
.config-text{

    flex:1;

}

.config-text span{

    display:block;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#9d9d9d;

    margin-bottom:8px;

}

.config-text h3{

    margin:0;

    color:#fff;

    font-size:17px;

    font-weight:200;

    line-height:1;
    
    font-family: "Inter",sans-serif;
    
    text-transform: uppercase;

}
.config-icon{

    width:68px;

    height:68px;

    min-width:68px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(
180deg,
rgba(255,255,255,.12),
rgba(255,255,255,.03)
);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    color:var(--primary);

    font-size:30px;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        background .45s ease,
        border-color .45s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08);

}

.config-grid .card:hover .config-icon{

    transform:
        scale(1.12)
        rotate(-6deg);

    background:
        rgba(198,167,105,.10);

    border-color:
        #c669694f;

    box-shadow:
        0 0 18px rgba(198,167,105,.20),
        0 0 40px rgba(198,167,105,.10);

}
.config-icon i{

    transition:
        transform .45s ease,
        filter .45s ease;

}

.config-grid .card:hover .config-icon i{

    transform:scale(1.12);

    filter:
        drop-shadow(0 0 8px rgba(198,167,105,.45))
        drop-shadow(0 0 18px rgba(198,167,105,.25));

}

@media(max-width:768px){

    .config-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .config-grid .card{

        padding:10px;

    }

    .config-icon{

        width:58px;

        height:58px;

        min-width:58px;

        font-size:24px;

    }

    .config-text h3{

        font-size:17px;

    }

}











/*=========================================================
                PROJECT HIGHLIGHTS
=========================================================*/

.highlight-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.highlight-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:50px 35px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 25px 70px rgba(0,0,0,.35);

    transition:all .45s cubic-bezier(.23,1,.32,1);

}

.highlight-card::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.05) 55%,
        transparent 72%
    );

    transform:
        translateX(-120%)
        rotate(25deg);

    opacity:0;

    pointer-events:none;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.highlight-card:hover{

    transform:
        translateY(-10px)
        scale(1.02);

    border-color:#c669694f;

    background:rgba(255,255,255,.06);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(198,167,105,.08);

}

.highlight-card:hover::before{

    transform:
        translateX(120%)
        rotate(25deg);

    opacity:1;

}

/*----------------------------------
            ICON
----------------------------------*/

.highlight-card .overview-icon{

    margin:0 auto 28px;

}

.highlight-card:hover .overview-icon{

    transform:
        scale(1.12)
        rotate(-6deg);

    background:linear-gradient(
        180deg,
        rgba(198,167,105,.12),
        rgba(198,167,105,.04)
    );

    border-color:#c669694f;

    box-shadow:
        0 0 18px rgba(198,167,105,.22),
        0 0 40px rgba(198,167,105,.10);

}

.highlight-card:hover .overview-icon i{

    transform:scale(1.12);

    filter:
        drop-shadow(0 0 8px rgba(198,167,105,.45))
        drop-shadow(0 0 18px rgba(198,167,105,.25));

}

/*----------------------------------
            TYPOGRAPHY
----------------------------------*/

.highlight-card h3{

    margin:0 0 16px;

    font-family:"Playfair Display",serif;

    font-size:32px;

    font-weight:600;

    line-height:1.2;

    color:#fff;

    transition:.35s;

}

.highlight-card:hover h3{

    color:var(--primary);

}

.highlight-card p{

    max-width:260px;

    font-size:15px;

    line-height:1.8;

    color:#cfcfcf;

}

/*----------------------------------
            RESPONSIVE
----------------------------------*/

@media(max-width:768px){

    .highlight-grid{

        grid-template-columns:1fr;

    }

    .highlight-card{

        padding:38px 28px;

    }

    .highlight-card h3{

        font-size:28px;

    }

}

/*=========================================================
                HIGHLIGHT ANIMATION
=========================================================*/

/*.highlight-card{

    opacity:0;

    transform:translateY(40px);

}

.highlight-card.show{

    opacity:1;

    transform:translateY(0);

    transition:all .8s ease;

}*/


/*=========================================================
                OVERVIEW RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.overview .container{

grid-template-columns:1fr;

gap:60px;

}

.overview-right{

text-align:center;

}

.overview-right p{

margin:auto auto 40px;

}

}



.config .container{

grid-template-columns:1fr;

gap:60px;

}

.config-right{

text-align:center;

}

.config-right p{

margin:auto auto 40px;

}

}



@media(max-width:768px){

.overview{

padding:80px 0;

}

.overview-right h2{

font-size:38px;

}

.overview-grid{

grid-template-columns:1fr;

}



.config{

padding:80px 0;

}

.config-right h2{

font-size:38px;

}

.config-grid{

grid-template-columns:1fr;

}

.highlight-grid{

grid-template-columns:1fr;

}

.highlight-card{

padding:35px 25px;

}

.highlight-card h3{

font-size:28px;

}

}

/*=========================================================
                AMENITIES SECTION
=========================================================*/

.amenities{

    position:relative;

    background:url("../images/amenities/bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}



.amenities .container{

    position:relative;

    z-index:2;

   

}

.amenities-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.amenities-header h2{

    font-size:56px;

    line-height:1.15;

    margin:18px 0 25px;

}

.amenities-header p{

    max-width:700px;

    margin:auto;

    color:#d8d8d8;

    line-height:1.9;

}


/*=========================================================
                AMENITIES GRID
=========================================================*/

.amenities-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.amenity{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;
    
    height:auto;

    padding:20px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:26px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 50px rgba(0,0,0,.35);

    transition:all .45s cubic-bezier(.23,1,.32,1);

}

.amenity::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.08) 55%,
        transparent 72%
    );

    transform:
        translateX(-120%)
        rotate(25deg);

    opacity:0;

    pointer-events:none;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.amenity:hover{

    transform:
        translateY(-10px)
        scale(1.02);

    background:rgba(255,255,255,.06);

    border-color:#c669694f;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(198,167,105,.08);

}

.amenity:hover::before{

    transform:
        translateX(120%)
        rotate(25deg);

    opacity:1;

}

/*----------------------------------*/
/* Icon (Overview Style) */
/*----------------------------------*/

.amenity .overview-icon{

    margin-bottom:24px;

}

.amenity:hover .overview-icon{

    transform:
        scale(1.12)
        rotate(-6deg);

    background:linear-gradient(
        180deg,
        rgba(198,167,105,.12),
        rgba(198,167,105,.04)
    );

    border-color:#c669694f;

    box-shadow:
        0 0 18px rgba(198,167,105,.22),
        0 0 40px rgba(198,167,105,.10);

}

.amenity:hover .overview-icon i{

    transform:scale(1.12);

    filter:
        drop-shadow(0 0 8px rgba(198,167,105,.45))
        drop-shadow(0 0 18px rgba(198,167,105,.25));

}

/*----------------------------------*/

.amenity h3{

    margin:0;

    font-family:"Inter", sans-serif;

    font-size:14px;

    font-weight:300;

    color:#fff;

    line-height:1.35;

    transition:.4s;

}

.amenity:hover h3{

    color:var(--primary);

}  

.amenities-btn{

    text-align:center;

    margin-top:60px;

}

/*=========================================================
                GALLERY SECTION
=========================================================*/



.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

}

.gallery-item{

    overflow:hidden;
    
    height:320px;

    border-radius:22px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.55),

        transparent

    );

    opacity:0;

    transition:.45s;

    z-index:2;

}

.gallery-item::after{

    content:"+";

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    font-size:60px;

    opacity:0;

    transition:.4s;

    z-index:3;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover::after{

    opacity:1;

}

.gallery-item:hover img{

    transform:scale(1.12);

}


/*=========================================================
                GALLERY SPECIAL SIZE
=========================================================*/




/*=========================================================
                SECTION ANIMATION
=========================================================

.amenity,

.gallery-item{

    opacity:0;

    transform:translateY(40px);

}

.amenity.show,

.gallery-item.show{

    opacity:1;

    transform:translateY(0);

    transition:all .8s ease;

}*/


/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:1100px){





.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item:nth-child(1),

.gallery-item:nth-child(4){

grid-column:auto;

grid-row:auto;

}

}

@media(max-width:768px){

    .amenities{

        padding:80px 0;

    }

    .amenities-header h2{

font-size:38px;

}

    .amenities-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .amenity{

        padding:28px 15px;

    }

    .amenity .overview-icon{

        width:56px;

        height:56px;

        min-width:56px;

    }

    .amenity .overview-icon i{

        font-size:24px;

    }

    .amenity h3{

        font-size:20px;

        line-height:1.3;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-item{

        height:280px;

    }

}

@media(max-width:480px){

    .amenities-grid{

        grid-template-columns:repeat(2,1fr);

        gap:14px;

    }

    .amenity{

        padding:22px 12px;

    }

    .amenity h3{

        font-size:17px;

    }

}

/*=========================================================
                PRICING SECTION
=========================================================*/

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.price-card{
    justify-items: center;

    position:relative;

    overflow:hidden;

    padding:42px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 20px 60px rgba(0,0,0,.35);

    transition:all .45s cubic-bezier(.23,1,.32,1);

}

.price-card:hover{

    transform:
        translateY(-10px)
        scale(1.02);

    background:rgba(255,255,255,.055);

    border-color:#c669694f;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(198,167,105,.08);

}

.price-card::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.28) 48%,
        rgba(255,255,255,.10) 55%,
        transparent 72%
    );

    transform:
        translateX(-120%)
        rotate(25deg);

    opacity:0;

    pointer-events:none;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.price-card:hover::before{

    transform:
        translateX(120%)
        rotate(25deg);

    opacity:1;

}

/*-----------------------------------*/

.price-card h3{

    color:var(--primary)!important;

    font-family:"Inter",sans-serif;

    font-size:24px;

    font-weight:300;

    margin-bottom:5px;
    
    text-transform: uppercase;

}

.price-card h2{

    font-family:auto;

    font-size:30px;

    font-weight:300;

    line-height:1;

    color:#fff;

    margin-bottom:20px;

}

.price-card p{

    position:relative;

    padding-top:10px;

    font-size:16px;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#bdbdbd;

    

}

.price-card p::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.12);

}

/*-----------------------------------*/
/* PRICE */
/*-----------------------------------*/

.price{

    display:flex;

    align-items:flex-end;

    gap:2px;

    margin-bottom:20px;

    color:#fff;

    line-height:1;

    transition:.4s ease;

}

.price .rupee{

    font-family:"Playfair Display",serif;

    font-size:42px;

    transform:translateY(-8px);

}

.price .amount{

    font-family:"Playfair Display",serif;

    font-size:74px;

    font-weight:500;

    letter-spacing:-2px;

}

.price .unit{

    font-family:"Playfair Display",serif;

    font-size:42px;

    margin-left:4px;

}

.price .star{

    color:var(--primary);

    font-size:34px;

    transform:translateY(-18px);

}

.price-card:hover .price{

    color:var(--primary);

}

.price-card:hover .star{

    text-shadow:
        0 0 15px rgba(198,167,105,.50);

}

/*-----------------------------------*/

.price-card .btn-primary{

    width:100%;

    height:50px;

    border-radius:50px;

    font-size:22px;

    font-weight:600;

}

/*-----------------------------------*/

@media(max-width:992px){

    .pricing-grid{

        grid-template-columns:1fr;

    }

}


/*=========================================================
                LOCATION SECTION
=========================================================*/



/*=========================================================
                    LOCATION
=========================================================*/

.location-wrapper{

    display:grid;

    grid-template-columns:0.6fr 1.2fr;

    gap:20px;

    margin-top:70px;

    align-items:start;

}

/* MAP */

.location-map{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 30px 80px rgba(0,0,0,.45);

}
.location-map::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:180px;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.35),
        transparent
    );

    z-index:2;

    pointer-events:none;

}

.location-map::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:180px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );

    z-index:2;

    pointer-events:none;

}

.location-map iframe{

    width:100%;

    height:650px;

    border:0;

    display:block;

    filter:
        grayscale(.08)
        contrast(1.03)
        brightness(.98);

}

/* RIGHT */

.location-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

/* METRO */

.location-banner{

    display:flex;

    align-items:center;

    gap:18px;

    padding:28px 32px;

    background:rgba(255,255,255,.05);

    border-radius:28px;

    border:1px solid rgba(255,255,255,.08);

}

.location-banner i{

    color:var(--primary);

    font-size:24px;

}

.location-banner span{

    color:#fff;

    font-size:22px;

    font-weight:600;

}

/* GRID */

.location-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:10px;

}

/* CARD */

.location-card{

    padding:15px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;

}

.location-card:hover{

    transform:translateY(-8px);

    border-color:#c669694f;

}

.location-card h3{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:24px;

    margin-bottom:18px;

}

.location-card h3 i{

    color:var(--primary);

    font-size:22px;

}

.location-card ul{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.location-card li{

    color:#d8d8d8;

    line-height:1.7;

    position:relative;

    padding-left:18px;

}

.location-card li::before{

    content:"•";

    position:absolute;

    left:0;

    color:var(--primary);

}




/*=========================
MAP BUTTON
=========================*/

.map-btn{

    position:absolute;

    top:22px;

    left:22px;

    z-index:10;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:#fff;

    color:#111;

    border-radius:12px;

    font-size:14px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

}

.map-btn:hover{

    transform:translateY(-3px);

}

/*=========================
LOCATION BADGE
=========================*/

.map-badge{

    position:absolute;

    left:27%;

    bottom:35px;

    transform:translateX(-21%);

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 26px;

    border-radius:20px;

    background:rgba(20,20,20,.92);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 18px 45px rgba(0,0,0,.35);

}

.badge-icon{

    width:54px;

    height:54px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(198,167,105,.12);

    color:var(--primary);

    font-size:22px;

}

.map-badge h4{

    margin:0;

    font-size:30px;

    color:#fff;

    font-family:"Playfair Display",serif;

}

.map-badge span{

    display:block;

    margin-top:4px;

    color:#bbb;

    font-size:15px;

}

.location-card h3{

    position:relative;

    padding-bottom:18px;

    margin-bottom:20px;

}

.location-card h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.10);

}
.map-glow{

    position:absolute;

    inset:0;

    pointer-events:none;

    z-index:1;

}

.map-glow::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    left:-120px;
    top:-120px;

    border-radius:50%;

    background:rgba(198,167,105,.12);

    filter:blur(70px);

}

.map-glow::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    right:-120px;
    bottom:-120px;

    border-radius:50%;

    background:rgba(198,167,105,.10);

    filter:blur(70px);

}

/* RESPONSIVE */

/* ===============================
   MOBILE
================================== */

@media (max-width: 992px){

    .location-wrapper{

        display:flex;
        flex-direction:column;

        gap:30px;

    }

    .location-map{

        width:100%;
        order:1;

    }

    .location-right{

        width:100%;
        order:2;

    }

    .location-map iframe{

        height:420px;

    }

    .location-grid{

        grid-template-columns:1fr;

    }

}



@media(max-width:768px){

    .location-grid{

        grid-template-columns:1fr;

    }

    .location-wrapper{

        gap:30px;

    }

    .location-banner{

        padding:20px;

    }

    .location-banner span{

        font-size:18px;

    }

    .location-map iframe{

        height:420px;

    }

    .map-btn{

        top:15px;

        left:15px;

        padding:10px 16px;

        font-size:13px;

    }

    .map-badge{

        left:20px;

        right:20px;

        bottom:18px;

        transform:none;

        min-width:auto;

        padding:16px 18px;

    }

    .map-badge h4{

        font-size:24px;

    }

    .map-badge span{

        font-size:13px;

    }

}
/*=========================================================
                MASTER PLAN SECTION
=========================================================*/

.plans-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.plan-card{

    position:relative;

    overflow:hidden;
    cursor:pointer;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 20px 60px rgba(0,0,0,.35);

    transition:.45s;

}

.plan-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

}

.plan-card::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.05) 55%,
        transparent 70%
    );

    transform:translateX(-120%) rotate(25deg);

    opacity:0;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

    pointer-events:none;

    z-index:4;

}

.plan-card:hover::before{

    transform:translateX(120%) rotate(25deg);

    opacity:1;

}

/* IMAGE */

.plan-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    filter:blur(10px) brightness(.55);

    transform:scale(1.08);

    transition:.6s;

    user-select:none;

    pointer-events:none;

}

.plan-card:hover img{

    filter:blur(7px) brightness(.65);

    transform:scale(1.12);

}

/* DARK OVERLAY */

.plan-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:40px;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.15),
        rgba(0,0,0,.72)
    );

    z-index:3;
    pointer-events:none;

}

/* GOLD GLOW */

.plan-overlay::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(198,167,105,.08);

    filter:blur(90px);

    top:-120px;

    right:-120px;

    z-index:-1;

}

/* LOCK */

.plan-lock{

    width:78px;

    height:78px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(198,167,105,.12);

    border:1px solid #c669694f;

    color:var(--primary);

    font-size:30px;

    margin-bottom:24px;

    transition:.35s;

}

.plan-card:hover .plan-lock{

    

    transform:scale(1.12);

    box-shadow:0 0 25px #c669694f;



}

/* TITLE */

.plan-overlay h3{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

/* DESCRIPTION */

.plan-overlay p{

    color:#ddd;

    max-width:340px;

    line-height:1.8;

    margin-bottom:30px;

}

/* BUTTON */

.plan-overlay .btn-primary{

    width:auto;

    margin:0;

    padding:14px 36px;
    pointer-events:none;

}

/* NOTE */

.plan-note{

    margin-top:18px;

    color:var(--primary);

    font-size:13px;

    letter-spacing:.6px;

}

/* MOBILE */

@media(max-width:992px){

    .plans-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .plan-card img{

        height:300px;

    }

    .plan-overlay{

        padding:25px;

    }

    .plan-overlay h3{

        font-size:30px;

    }

    .plan-overlay p{

        font-size:15px;

        margin-bottom:22px;

    }

    .plan-lock{

        width:60px;

        height:60px;

        font-size:22px;

        margin-bottom:18px;

    }

}

/*=========================================================
                ANIMATION
=========================================================

.price-card,

.plan-card,

.location-content,

.location-map{

    opacity:0;

    transform:translateY(40px);

}

.price-card.show,

.plan-card.show,

.location-content.show,

.location-map.show{

    opacity:1;

    transform:translateY(0);

    transition:all .8s ease;

}*/


/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.pricing-grid{

grid-template-columns:1fr;

}

.featured{

transform:none;

}

.featured:hover{

transform:translateY(-12px);

}

.location .container{

grid-template-columns:1fr;

gap:50px;

}

.location-content{

text-align:center;

}

.plans-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.price-card{

padding:40px 25px;

}

.price-card h1{

font-size:40px;

}

.location-content h2{

font-size:38px;

}

.location-content li{

justify-content:center;

font-size:16px;

}

.plan-card img{

height:240px;

}

.plan-card h3{

font-size:28px;

}

}

/*=========================================================
                FAQ SECTION
=========================================================*/



.faq .container{

    max-width:900px;

}

.faq-item{

    position:relative;

    overflow:hidden;

    margin-bottom:20px;

    padding:28px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 50px rgba(0,0,0,.35);

    transition:.4s;

}

.faq-item:hover{

    border-color:var(--primary);

    transform:translateY(-5px);

}

.faq-item h3{

    font-size:26px;

    color:#fff;

    margin-bottom:15px;
    
    text-align: center;

}

.faq-item p{

    color:#cfcfcf;

    line-height:1.8;
    
    text-align: center;

}
.faq-item::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(
        115deg,
        transparent 35%,
        rgba(255,255,255,.18) 48%,
        rgba(255,255,255,.05) 55%,
        transparent 70%
    );

    transform:translateX(-120%) rotate(25deg);

    opacity:0;

    transition:
        transform .9s cubic-bezier(.23,1,.32,1),
        opacity .4s;

}

.faq-item:hover::before{

    transform:translateX(120%) rotate(25deg);

    opacity:1;

}


/*=========================================================
                FOOTER
=========================================================*/

footer{

    

    padding:20px 0;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

footer img{

    width:170px;

    margin:auto;

    margin-bottom:25px;

}

footer h3{

    font-size:46px;

    margin-bottom:20px;

}

footer p{

    font-size:12px;
    text-align: justify;

}

footer .btn-primary{

    margin-bottom:40px;

}

footer .copyright{

    color:#888;

    font-size:14px;

    margin-top:5px;
    
    text-align: center;

}


/*=========================================================
                UNIVERSAL POPUP
=========================================================*/

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    padding:20px;

    z-index:99999;

    backdrop-filter:blur(10px);

}

.popup-overlay.active{

    display:flex;

}

.popup-box{

    width:100%;

    max-width:500px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px;

    position:relative;

    animation:popupShow .35s ease;

}

@keyframes popupShow{

    from{

        opacity:0;

        transform:translateY(40px) scale(.95);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

.close-popup{

    position:absolute;

    top:20px;

    right:24px;

    font-size:30px;

    cursor:pointer;

    transition:.3s;

}

.close-popup:hover{

    color:var(--primary);

}

.popup-tag{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:15px;

    font-size:13px;

}

.popup-box h2{

    font-size:38px;

    margin-bottom:28px;

}

.popup-box form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.popup-box input{

    width:100%;

    padding:16px 18px;

    background:#1b1b1b;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    color:#fff;

    outline:none;

    transition:.3s;

}

.popup-box input:focus{

    border-color:var(--primary);

}



#successBox{

    display:none;

    text-align:center;

    padding-top:20px;

}

#successBox h3{

    color:var(--primary);

    margin-bottom:12px;

}


/*=========================================================
                UTILITY CLASSES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}


/*=========================================================
                SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0b0b0b;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}


/*=========================================================
                SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#111;

}


/*=========================================================
                GLOBAL RESPONSIVE
=========================================================*/

@media(max-width:992px){

.section-heading h2{

font-size:42px;

}

section{

padding:80px 0;

}

.nav-links{

display:none;

}

.navbar{

padding:16px 22px;

}

}

@media(max-width:768px){

body{

font-size:15px;

}

.container{

width:92%;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:34px;

}

.popup-box{

padding:30px 22px;

}

.popup-box h2{

font-size:28px;

}

footer h3{

font-size:34px;

}

footer img{

width:140px;

}

}

@media(max-width:480px){

.btn-primary,

.btn-outline{

width:100%;

}

.popup-box{

border-radius:18px;

}

}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    background:transparent;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
}

.menu-toggle span{
    width:28px;
    height:2px;
    background:#fff;
    transition:.35s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

@media(max-width:992px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#111;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:30px 0;
        display:none;
        border-radius:20px;
    }

    .nav-links.open{
        display:flex;
    }

    .enquire-btn{
        display:none;
    }

}
/*==============================
        LIGHTBOX
==============================*/

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:99999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:85vh;
    border-radius:18px;
    box-shadow:0 25px 80px rgba(0,0,0,.6);
    transform:scale(.9);
    transition:.35s ease;
}

.lightbox.active img{
    transform:scale(1);
}

.lightbox-close{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    z-index:2;
}
.mobile-bottom-bar{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    display:none;
    z-index:9999;
}

.mobile-bottom-bar a{
    flex:1;
    height:58px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:12px;
    font-weight:600;
}

.mobile-bottom-bar i{
    font-size:18px;
    margin-bottom:4px;
}

.call-btn{
    background:#1877F2;
}

.whatsapp-btn{
    background:#25D366;
}

.enquiry-btn{
    background:#111;
}

@media(max-width:768px){

    .mobile-bottom-bar{
        display:flex;
    }

    /* Purane floating buttons hide */
    .call,
    .whatsapp,
    .back-to-top{
        display:none !important;
    }

    body{
        padding-bottom:58px;
    }
}

/* ===========================
   FORM GROUP
=========================== */

.form-group{
    margin-bottom:1px;
}

.form-group input{
    width:100%;
    height:58px;
    padding:0 1px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:12px;
    background:rgba(255,255,255,.05);
    color:#fff;
    font-size:15px;
    transition:.3s;
}

.form-group input::placeholder{
    color:rgba(255,255,255,.55);
}

.form-group input:focus{
    outline:none;
    border-color:#C8A86B;
    box-shadow:0 0 0 3px rgba(200,168,107,.15);
}


/* ===========================
   ERROR
=========================== */

.error-message{
    display:block;
    color:#ff6b6b;
    font-size:12px;
    margin-top:6px;
    min-height:16px;
}


/* ===========================
   CONSENT
=========================== */

.consent-box{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:5px 0;
    cursor:pointer;
}

.consent-box input{
    margin-top:3px;
    width:18px;
    height:18px;
    accent-color:#C8A86B;
}

.consent-box span{
    color:rgba(255,255,255,.75);
    font-size:10px;
    line-height:1.6;
}

.consent-box strong{
    color:#fff;
}

.consent-box a{
    color:#C8A86B;
    text-decoration:none;
}

.consent-box a:hover{
    text-decoration:underline;
}


/* ===========================
   INVALID
=========================== */

.input-error{
    border-color:#ff4d4d !important;
}

.input-success{
    border-color:#4CAF50 !important;
}

.success-box{
    display:none;
    text-align:center;
    padding:15px 5px 10px;
    animation:fadeUp .6s ease;
}

.success-box.active{
    display:block;
}

.success-icon{
    margin-bottom:25px;
}

.success-circle{
    stroke:#C8A86B;
    stroke-width:2;
    stroke-dasharray:166;
    stroke-dashoffset:166;
    animation:circle .8s ease forwards;
}

.success-check{
    stroke:#C8A86B;
    stroke-width:3;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:48;
    stroke-dashoffset:48;
    animation:check .45s ease .7s forwards;
}

.success-box h3{
    font-size:28px;
    font-weight:600;
    color:#ffffff;
    margin-bottom:15px;
}

.success-box p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.8;
    max-width:420px;
    margin:auto;
}

@keyframes circle{
    to{
        stroke-dashoffset:0;
    }
}

@keyframes check{
    to{
        stroke-dashoffset:0;
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#bg-dots {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-bottom: -100vh;
    z-index: 0;
    pointer-events: none;
    display: block;
}



/* =========================================================
   INTERNATIONAL PHONE INPUT
========================================================= */

.phone-group .iti,
#leadForm .iti {
    width: 100%;
}

#leadForm .iti input {
    width: 100% !important;
}


/* Selected country */

#leadForm .iti__selected-country {
    background: transparent !important;
}


/* =========================================================
   DARK COUNTRY DROPDOWN
========================================================= */

.iti__dropdown-content {
    background: #151515 !important;

    border:
        1px solid
        rgba(255,255,255,.15) !important;

    color: #f5f1e8 !important;

    border-radius: 12px !important;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.65) !important;

    overflow: hidden !important;

    z-index: 999999 !important;
}


/* Search */

.iti__search-input {
    background: #202020 !important;

    color: #fff !important;

    border:
        1px solid
        rgba(255,255,255,.15) !important;

    padding: 11px 12px !important;
}

.iti__search-input::placeholder {
    color: rgba(255,255,255,.5) !important;
}


/* Country list */

.iti__country-list {
    background: #151515 !important;

    color: #eee !important;

    max-height: 260px !important;

    overflow-y: auto !important;

    overscroll-behavior: contain !important;

    scrollbar-width: thin;
}


/* Country */

.iti__country {
    color: #eee !important;

    background: #151515 !important;

    padding-top: 9px !important;

    padding-bottom: 9px !important;
}


.iti__country-name {
    color: #eee !important;
}


.iti__dial-code {
    color: #d6b866 !important;
}


.iti__country.iti__highlight {
    background: #2a2a2a !important;
}


.iti__divider {
    border-bottom-color:
        rgba(255,255,255,.12) !important;
}


/* Scrollbar */

.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #151515;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}


/* =========================================================
   PHONE LIVE HINT
========================================================= */

.phone-hint {
    display: block;

    width: 100%;

    margin-top: 7px;

    font-size: 11px;

    line-height: 1.4;

    color:
        rgba(255,255,255,.48);

    transition:
        color .25s ease;
}


/* Incomplete */

.phone-hint.incomplete {
    color: #d6b866;
}


/* Valid */

.phone-hint.valid {
    color: #69c779;
}


/* Invalid */

.phone-hint.invalid {
    color: #ff6b6b;
}


.phone-group:focus-within .phone-hint {
    color:
        rgba(214,184,102,.85);
}

.phone-group:focus-within .phone-hint.valid {
    color: #69c779;
}

.phone-group:focus-within .phone-hint.invalid {
    color: #ff6b6b;
}