/*==========================================
RESET
==========================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#222;

    background:#f8f8f8;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*==========================================
VARIABLES
==========================================*/

:root{

    --gold:#C89B3C;

    --gold-dark:#b58727;

    --black:#111111;

    --white:#ffffff;

    --text:#666666;

    --border:#ebebeb;

    --shadow:0 18px 45px rgba(0,0,0,.10);

}

/*==========================================
COMMON
==========================================*/

.container{

    width:min(1400px,94%);

    margin:auto;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:8px;

    cursor:pointer;

    transition:.35s;

    font-size:15px;

    font-weight:600;

}

.btn-gold{

    background:var(--gold);

    color:#fff;

    border:none;

}

.btn-gold:hover{

    background:var(--gold-dark);

}

.btn-outline{

    background:transparent;

    border:1px solid var(--gold);

    color:#fff;

}

.btn-outline:hover{

    background:var(--gold);

    color:#fff;

}

.full{

    width:100%;

}

/*==========================================
HEADER
==========================================*/

/*==========================================
HEADER
==========================================*/

/*===============================
HEADER
================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#111;

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:80px;

}

.logo img{

    height:46px;

}

/* MENU */

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:#fff;

    font-size:15px;

    font-weight:500;

}

/* BUTTONS */

.header-buttons{

    display:flex;

    gap:15px;

}

.hamburger{

    display:none;

    background:none;

    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}
.logo img{

    height:48px;

}

/*==========================
MENU
==========================*/

.navbar ul{

    display:flex;

    gap:38px;

}

.navbar a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.navbar a:hover{

    color:var(--gold);

}

/*==========================
BUTTONS
==========================*/

.header-buttons{

    display:flex;

    align-items:center;

    gap:15px;

}

.menu-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/*==========================================
HERO
==========================================*/

.hero{

    width:100%;

    margin-top:82px;

    min-height:calc(100vh - 82px);

    display:grid;

    grid-template-columns:minmax(0,1fr) 420px;

    background:#fff;

}
/*==========================================
LEFT HERO
==========================================*/

.hero-left{

    position:relative;

    min-height:calc(100vh - 82px);

    background-image:url("../images/rel.jpg");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    display:flex;

    align-items:flex-end;

    overflow:hidden;

}

/*==========================================
OVERLAY
==========================================*/

.hero-overlay{

    position:absolute;

    inset:0;

   

}

/*==========================================
CONTENT
==========================================*/

.hero-content{

    position:relative;

    z-index:2;

    width:100%;

    padding:0 60px 55px;

    color:#fff;

}

.subtitle{

    display:inline-block;

    color:#d7ae57;

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(50px,5vw,84px);

    line-height:1;

    font-weight:700;

    margin-bottom:10px;

}

.hero-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(22px,2vw,34px);

    font-weight:400;

    letter-spacing:4px;

}

.gold-line{

    width:90px;

    height:3px;

    background:#C89B3C;

    margin:30px 0 40px;

}
/*==========================================
FEATURES
==========================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.feature{

    border-left:1px solid rgba(255,255,255,.22);

    padding-left:18px;

}

.feature i{

    font-size:30px;

    color:#C89B3C;

    margin-bottom:16px;

}

.feature h4{

    color:#C89B3C;

    font-size:14px;

    margin-bottom:8px;

    text-transform:uppercase;

}

.feature p{

    color:#ffffff;

    opacity:.9;

    font-size:13px;

    line-height:22px;

}
/*==========================================
IMAGE ANIMATION
==========================================*/

.hero-left::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:url("../images/hero-banner.jpg");

    background-size:cover;

    background-position:center;

    transform:scale(1);

    transition:8s ease;

    z-index:-1;

}

.hero:hover .hero-left::before{

    transform:scale(1.05);

}
/*==========================================
RESPONSIVE HERO
==========================================*/

@media(max-width:1200px){

.hero-content{

padding:0 40px 40px;

}

.hero-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.hero{

grid-template-columns:1fr;

}

.hero-left{

min-height:650px;

}

.hero-content{

padding:0 25px 25px;

}

.hero-content h2{

letter-spacing:2px;

}

.hero-features{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

@media(max-width:480px){

.hero-left{

min-height:560px;

}

.hero-content{

padding:0 20px 20px;

}

.hero-features{

grid-template-columns:1fr;

}

.feature{

padding-left:12px;

}

}
/*==========================================
RIGHT PANEL
==========================================*/

.hero-right{

    width:100%;

    background:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:45px;

}

.hero-card{

    width:100%;

    max-width:360px;

}

.launch-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#C89B3C;

    color:#fff;

    font-size:12px;

    font-weight:600;

    padding:8px 18px;

    border-radius:30px;

    letter-spacing:1px;

    margin-bottom:28px;

}

.card-subtitle{

    color:#b2872e;

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.hero-card h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    line-height:1;

    color:#111;

    margin-bottom:20px;

}

.divider{

    width:90px;

    height:3px;

    background:#C89B3C;

    margin-bottom:30px;

}

.card-description{

    color:#666;

    line-height:1.9;

    font-size:15px;

    margin-bottom:35px;

}
/*==========================================
DETAILS
==========================================*/

.project-details{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin-bottom:35px;

}

.detail-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:18px;

    border-bottom:1px solid #ededed;

}

.detail-item span{

    color:#666;

    font-size:15px;

}

.detail-item strong{

    color:#111;

    font-size:15px;

    font-weight:600;

}
/*==========================================
BUTTONS
==========================================*/

.full-btn{

    width:100%;

    height:56px;

    margin-top:15px;

}

.btn-outline-dark{

    border:1px solid #C89B3C;

    color:#222;

    background:#fff;

}

.btn-outline-dark:hover{

    background:#C89B3C;

    color:#fff;

}
/*==========================================
POPUP
==========================================*/

.popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.popup.active{

    display:flex;

}

.popup-box{

    position:relative;

    width:420px;
    max-width:92%;

    background:#fff;

    border-radius:20px;

    padding:35px;

    max-height:90vh;

    overflow-y:auto;

    animation:popup .35s;

}
.popup-box h2{

    margin-bottom:12px;

}

.popup-box p{

    margin-bottom:20px;

}

.popup-box input{

    margin-bottom:15px;

}

#visitForm button{

    margin-top:5px;

}

.popup iframe{

    width:100%;

    height:100%;

    border:none;

}

.close-popup{

    position:absolute;

    top:12px;

    right:12px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    z-index:10000;

}

.close-popup:hover{

    background:#c89b3c;

    color:#fff;

}
/*==============================
RESPONSIVE HEADER
==============================*/

.menu-btn{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* Tablet */

@media (max-width:991px){

    .navbar{

        position:fixed;

        top:82px;

        left:-100%;

        width:280px;

        height:calc(100vh - 82px);

        background:#111;

        transition:.4s;

        padding:40px 30px;

        z-index:999;
    }

    .navbar.active{

        left:0;

    }

    .navbar ul{

        flex-direction:column;

        gap:25px;

    }

    .header-buttons{

        display:none;

    }

    .menu-btn{

        display:block;

    }

}

/* Mobile */

@media (max-width:576px){

    .logo img{

        height:38px;

    }

    .header{

        height:70px;

    }

    .header .container{

        height:70px;

    }

    .navbar{

        top:70px;

        height:calc(100vh - 70px);

    }

}
/*==========================================
ABOUT SECTION
==========================================*/

.about{

    padding:120px 0;

    background:#faf8f4;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/*==========================================
LEFT SIDE
==========================================*/

.section-tag{

    display:inline-block;

    background:#c89b3c;

    color:#fff;

    padding:10px 22px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:35px;

}

.about-left h2{

    font-family:'Cormorant Garamond',serif;

    font-size:72px;

    line-height:1.05;

    font-weight:700;

    color:#111;

    margin-bottom:25px;

}

.section-line{

    width:90px;

    height:4px;

    background:#c89b3c;

    margin-bottom:35px;

}

.about-left p{

    font-size:18px;

    line-height:34px;

    color:#666;

    margin-bottom:25px;

}

.about-left strong{

    color:#111;

}

.about-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.btn-outline-gold{

    border:2px solid #c89b3c;

    color:#c89b3c;

    background:#fff;

}

.btn-outline-gold:hover{

    background:#c89b3c;

    color:#fff;

}
/*==========================================
RIGHT SIDE
==========================================*/

.about-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.info-card{

    background:#fff;

    padding:38px;

    border-radius:28px;

    border-left:6px solid #c89b3c;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(0,0,0,.12);

}

.icon{

    width:70px;

    height:70px;

    background:#c89b3c;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:30px;

    margin-bottom:30px;

}

.info-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    color:#111;

    margin-bottom:8px;

}

.info-card h4{

    font-size:32px;

    color:#111;

    margin-bottom:18px;

    font-weight:700;

}

.info-card p{

    color:#777;

    line-height:30px;

    font-size:16px;

}
.about{

overflow:hidden;

}

.about-right{

width:100%;

}

.info-card{

width:100%;

}
/*==========================================
OUR OFFERINGS
==========================================*/

.offerings{

    padding:120px 0;

    background:#faf8f3;

    overflow:hidden;

}

.offerings-grid{

    display:grid;

    grid-template-columns:40% 60%;

    gap:70px;

    align-items:center;

}

/*=========================
LEFT
==========================*/

.offer-left{

    width:100%;

}

.offer-left h2{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(42px,5vw,72px);

    line-height:1.05;

    color:#111;

    margin:25px 0;

}

.offer-left p{

    color:#666;

    line-height:34px;

    font-size:18px;

    margin-bottom:45px;

}

/*=========================
CARDS
==========================*/

.offer-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.offer-card{

    background:#fff;

    padding:40px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.07);

    transition:.35s;

}

.offer-card:hover{

    transform:translateY(-8px);

}

.offer-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#c89b3c;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:30px;

}

.offer-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:44px;

    color:#111;

    margin-bottom:18px;

}

.offer-card p{

    font-size:17px;

    line-height:32px;

    color:#666;

    margin-bottom:35px;

}/*=========================
RIGHT IMAGE
==========================*/

.offer-right{

    position:relative;

    width:100%;

    height:750px;

    border-radius:24px;

    overflow:hidden;

}

.offer-right img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.offer-right:hover img{

    transform:scale(1.05);

}


/*=========================
CIRCLE
==========================*/

.offer-circle{

    position:absolute;

    left:-120px;

    top:50%;

    transform:translateY(-50%);

    width:400px;

    height:400px;

    border-radius:50%;

    background:#151b2b;

    border:4px solid #C89B3C;

    padding:60px;
	color:#fff

}

.circle-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#c89b3c;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:30px;

}

.offer-circle h4{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:18px;
	margin-left:91px;

}

.offer-circle p{

    font-size:17px;

    line-height:30px;

    color:#fff;
	margin-left:91px;

}
.offer-card .btn{

    padding:14px 28px;

    border-radius:40px;

}
/*==================================
LIVING
===================================*/

.living{

    padding:120px 0;

    background:#fff;

}

.section-heading{

    text-align:center;

    margin-bottom:80px;

}

.small-heading{

    display:block;

    color:#555;

    font-size:29px;

    letter-spacing:8px;

    margin-bottom:18px;

    text-transform:uppercase;
	color:var(--gold);

}

.section-heading h2{

    font-size:clamp(18px,2vw,28px);

    font-weight:500;

    

    text-transform:uppercase;

    letter-spacing:2px;

}

/*========================*/

.living-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:80px 60px;

}

.living-item{

    text-align:center;

    transition:.35s;

}

.living-item:hover{

    transform:translateY(-8px);

}

.living-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#f8f2e4;

    color:#c89b3c;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    margin-bottom:30px;

}

.living-item h3{

    font-size:clamp(18px,2vw,20px);

    font-weight:600;

    text-transform:uppercase;

    line-height:1.4;

    color:#444;

    max-width:340px;

    margin:auto;

}

.living-item::after{

    content:"";

    display:block;

    width:70px;

    height:2px;

    background:#c89b3c;

    margin:28px auto 0;

}
/*==========================================
LIFESTYLE
==========================================*/

.lifestyle{

    padding:120px 0;

    background:#141518;

    overflow:hidden;

}

.lifestyle .container{

    max-width:1400px;

}

/*==========================================
HEADING
==========================================*/

.lifestyle-heading{

    max-width:600px;

    margin-bottom:70px;

}

.lifestyle-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(42px,5vw,72px);

    color:#fff;

    line-height:1.1;

    margin:25px 0;

}

.lifestyle-heading p{

    color:#bdbdbd;

    font-size:18px;

    line-height:34px;

    max-width:520px;

}

/*==========================================
GRID
==========================================*/

.lifestyle-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==========================================
CARD
==========================================*/

.life-card{

    background:#1d1e22;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.life-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.45);

}

/*==========================================
IMAGE
==========================================*/

.life-image{

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

}

.life-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.life-card:hover img{

    transform:scale(1.08);

}

/*==========================================
CONTENT
==========================================*/

.life-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.category{

    display:inline-block;

    background:#c89b3c;

    color:#fff;

    font-size:11px;

    letter-spacing:1px;

    padding:6px 14px;

    border-radius:30px;

    width:max-content;

    margin-bottom:18px;

}

.life-content h3{

    font-family:'Cormorant Garamond',serif;

    color:#fff;

    font-size:34px;

    margin-bottom:12px;

}

.life-content p{

    color:#bcbcbc;

    line-height:28px;

    font-size:15px;

    margin-bottom:22px;

    flex:1;

}

.life-content strong{

    color:#c89b3c;

    font-size:28px;

    font-weight:700;

}

/*==========================================
BUTTONS
==========================================*/

.lifestyle-buttons{

    display:flex;

    gap:20px;

    margin-top:60px;

}
/*==========================================
FOOTER
==========================================*/

.footer{

    background:#ffffff;

    padding:80px 0 40px;

    text-align:center;

}

.footer-logo{

    margin-bottom:40px;

}

.footer-logo img{

    max-width:380px;

    width:100%;

    height:auto;

    margin:auto;

}

.footer-line{

    width:100%;

    height:1px;

    background:#e5e5e5;

    margin-bottom:30px;

}

.copyright{

    font-size:16px;

    color:#666;

    letter-spacing:.5px;

}

/*==============================
Responsive
==============================*/

@media(max-width:768px){

.footer{

padding:60px 20px 30px;

}

.footer-logo img{

max-width:280px;

}

.copyright{

font-size:14px;

line-height:26px;

}

}

@media(max-width:480px){

.footer-logo img{

max-width:220px;

}

}
/*==========================================
FOOTER
==========================================*/

.footer{

    background:#fff;

    padding:30px 0;

    border-top:1px solid #ececec;

}

.footer-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

.footer-logo img{

    width:120px;

    display:block;

}

.footer-copy{

    font-size:16px;

    color:#555;

    text-align:center;

    flex:1;

}

.whatsapp-btn{

    display:flex;

    align-items:center;

    gap:12px;

    background:#25D366;

    color:#fff;

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 25px rgba(37,211,102,.30);

}

.whatsapp-btn i{

    font-size:26px;

}

.whatsapp-btn:hover{

    transform:translateY(-3px);

    background:#20ba5a;

}

.whatsapp-btn span{

    white-space:nowrap;

}
/*==============================
POPUP
==============================*/

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.popup-overlay.active{

    display:flex;

}

.popup-box{

    width:420px;

    max-width:92%;

    background:#fff;

    border-radius:20px;

    padding:40px;

    position:relative;

    animation:popup .35s;

}

@keyframes popup{

from{

transform:scale(.8);

opacity:0;

}

to{

transform:scale(1);

opacity:1;

}

}

.close-popup{

    position:absolute;

    right:18px;

    top:15px;

    border:none;

    background:none;

    font-size:30px;

    cursor:pointer;

}

.popup-box h2{

    margin-bottom:10px;

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

}

.popup-box p{

    text-align:center;

    margin-bottom:25px;

    color:#666;

}

.popup-box input{

    width:100%;

    height:55px;

    margin-bottom:18px;

    padding:0 18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

}

/* Submit Button ONLY */

#visitForm button{

    width:100%;

    height:55px;

    border:none;

    background:#c89b3c;

    color:#fff;

    border-radius:10px;

    cursor:pointer;

    font-size:17px;

}
.close-popup{

    position:absolute;

    top:15px;

    right:15px;

    width:36px;

    height:36px;

    border-radius:50%;

    border:none;

    background:#fff;

    color:#222;

    font-size:26px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.close-popup:hover{

    background:#c89b3c;

    color:#fff;

}


.popup-box form button{

    width:100%;

    height:55px;

    border:none;

    background:#c89b3c;

    color:#fff;

    border-radius:10px;

    cursor:pointer;

}
.close-popup{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    z-index:999999;

    display:flex;

    align-items:center;

    justify-content:center;

}
#closeSchedule{

    position:absolute;

    top:15px;

    right:15px;

    width:40px;

    height:40px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    cursor:pointer;

    font-size:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

    z-index:9999;

}
#closeSchedule{

    position:absolute;
    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border:none;
    outline:none;

    background:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:600;
    line-height:1;

    color:#222;

    cursor:pointer;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    z-index:9999;

    padding:0;

    appearance:none;
    -webkit-appearance:none;
}

#closeSchedule:hover{

    background:#c89b3c;
    color:#fff;

}
/*==================================
RERA POPUP
==================================*/

.rera-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.rera-popup.active{

    display:flex;

}

.rera-box{

    position:relative;

    width:90%;

    max-width:1100px;

    height:90vh;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

}

.rera-box iframe{

    width:100%;

    height:100%;

}

#closeRera{

    position:absolute;

    right:15px;

    top:15px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    font-size:30px;

    cursor:pointer;

    z-index:10;

    box-shadow:0 5px 20px rgba(0,0,0,.2);

}

#closeRera:hover{

    background:#c89b3c;

    color:#fff;

}
/*==================================
FLOATING WHATSAPP
===================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:9999;

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.wa-text{

    background:#ffffff;

    color:#222;

    padding:12px 18px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.3s;

    white-space:nowrap;

}

.floating-whatsapp i{

    width:62px;

    height:62px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    box-shadow:0 10px 30px rgba(37,211,102,.35);

    transition:.3s;

}

.floating-whatsapp:hover i{

    transform:scale(1.08);

}

.floating-whatsapp:hover .wa-text{

    background:#25D366;

    color:#fff;

}

/*==============================
Mobile
==============================*/

@media(max-width:768px){

.floating-whatsapp{

right:15px;

bottom:15px;

}

.wa-text{

display:none;

}

.floating-whatsapp i{

width:58px;

height:58px;

font-size:32px;

}

}
.menu-toggle{

    width:48px;

    height:48px;

    border:none;

    background:none;

    color:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    transition:.3s;

}

.menu-toggle:hover{

    color:#c89b3c;

}
.hero-banner{
    overflow:hidden;
}

.hero-banner img{
    width:100%;
    height:auto;
    display:block;
}

@media (max-width:768px){

.hero-banner img{
    width:170%;
    max-width:none;
    margin-left:-35%;
}

}
/*==============================
Hero Banner
===============================*/

.hero-banner{

    width:100%;

    overflow:hidden;

}

.hero-banner img{

    width:100%;

    display:block;

    height:auto;

}
