/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

/* ===========================
   COMMON
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

/* ===========================
   TOP BAR
=========================== */

.topbar{
    background:#0b4f2d;
    color:#fff;
    padding:12px 0;
    font-size:14px;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===========================
   HEADER
=========================== */

header{
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/* ===========================
   LOGO
=========================== */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:100px;
}

.logo h2{
    color:#0b4f2d;
    font-size:28px;
    font-weight:700;
}

.logo p{
    color:#777;
    font-size:14px;
}

/* ===========================
   MENU
=========================== */

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#f6b400;
}

/* ===========================
   CALL BUTTON
=========================== */

.call-btn{
    background:#f6b400;
    color:#111;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.call-btn:hover{
    background:#0b4f2d;
    color:#fff;
}

/* ===========================
   HERO
=========================== */

.hero{
    background:linear-gradient(135deg,#edf8ef,#fff7d8);
    padding:70px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* ===========================
   LEFT SIDE
=========================== */

.hero-text{
    flex:1;
}

.badge{
    display:inline-block;
    background:#0b4f2d;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    margin-bottom:25px;
    font-size:14px;
}

.hero-text h1{
    font-size:62px;
    color:#0b4f2d;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:22px;
    color:#555;
    margin-bottom:35px;
}

/* ===========================
   FEATURES
=========================== */

.features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.features div{
    width:120px;
    text-align:center;
}

.features i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#0b4f2d;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin:auto;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

.features p{
    margin-top:10px;
    font-size:15px;
}

/* ===========================
   BUTTONS
=========================== */

.buttons{
    display:flex;
    gap:20px;
}

.whatsapp{
    background:#25D366;
    color:#fff;
    padding:15px 30px;
    border-radius:8px;
    font-weight:700;
}

.call{
    background:#f6b400;
    color:#111;
    padding:15px 30px;
    border-radius:8px;
    font-weight:700;
}

.whatsapp:hover{
    background:#128c7e;
}

.call:hover{
    background:#0b4f2d;
    color:#fff;
}

/* ===========================
   OWNER IMAGE
=========================== */

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:520px;
    border-radius:45px;
    box-shadow:0 25px 40px rgba(0,0,0,.25);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.nav{
    flex-direction:column;
    gap:20px;
}

.hero-container{
    flex-direction:column;
}

.hero-text{
    text-align:center;
}

.features{
    justify-content:center;
}

.buttons{
    justify-content:center;
}

.hero-text h1{
    font-size:42px;
}

.hero-image img{
    width:320px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

}
/* ===========================
   SERVICES SECTION
=========================== */

.services{

    padding:90px 0;

    background:#ffffff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h5{

    color:#0b4f2d;

    letter-spacing:2px;

    margin-bottom:10px;

}

.section-title h2{

    font-size:48px;

    color:#16361c;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    font-size:18px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.service-card img{

    width:90px;

    height:90px;

    margin-bottom:20px;

}

.service-card h3{

    font-size:26px;

    color:#0b4f2d;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.7;

}

/* ===========================
   REAL ESTATE
=========================== */

.real-estate{

    padding:100px 0;

    background:#f8f9fa;

}

.estate-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

.estate-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

    transition:.4s;

}

.estate-card:hover{

    transform:translateY(-10px);

}

.estate-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.estate-card h3{

    color:#0b4f2d;

    margin:20px 0 10px;

}

.estate-card p{

    padding:0 20px 20px;

}
/* ===========================
   INSURANCE SECTION
=========================== */

.insurance{

    background:#f7faf8;

    padding:100px 0;

}

.insurance-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    flex-wrap:wrap;

}

.insurance-image{

    flex:1;

    text-align:center;

}

.insurance-image img{

    width:450px;

    max-width:100%;

}

.insurance-content{

    flex:1;

}

.section-badge{

    background:#0b4f2d;

    color:white;

    padding:10px 25px;

    border-radius:30px;

    display:inline-block;

    margin-bottom:20px;

    font-weight:600;

}

.insurance-content h2{

    font-size:45px;

    color:#0b4f2d;

    margin-bottom:20px;

}

.insurance-content p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.insurance-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}

.insurance-list .item{

    background:white;

    padding:15px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    font-weight:600;

}

.insurance-btn{

    display:inline-block;

    padding:16px 35px;

    background:#f6b400;

    color:#111;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.insurance-btn:hover{

    background:#0b4f2d;

    color:white;

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{

    padding:100px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:50px;

}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.why-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#0b4f2d;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:35px;

    margin-bottom:20px;

}

.why-card h3{

    color:#0b4f2d;

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/* ===========================
   CONTACT
=========================== */

.contact{

    background:#f7faf8;

    padding:100px 0;

}

.contact-container{

    display:flex;

    gap:50px;

    flex-wrap:wrap;

}

.contact-info{

    flex:1;

}

.contact-info h2{

    font-size:45px;

    color:#0b4f2d;

    margin:20px 0;

}

.contact-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

}

.contact-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#0b4f2d;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.contact-buttons{

    margin-top:35px;

}

.call-btn2{

    background:#f6b400;

    color:#111;

    padding:15px 30px;

    border-radius:8px;

    margin-right:15px;

    font-weight:600;

}

.whatsapp-btn{

    background:#25D366;

    color:white;

    padding:15px 30px;

    border-radius:8px;

    font-weight:600;

}

/* FORM */

.contact-form{

    flex:1;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

    margin-bottom:20px;

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}

.contact-form button{

    background:#0b4f2d;

    color:white;

    border:none;

    padding:18px;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;

}

.contact-form button:hover{

    background:#083b21;

}
/* ===========================
   GOOGLE MAP
=========================== */

.map-section{

    padding:100px 0;

    background:#ffffff;

}

.map-box{

    margin-top:50px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.map-box iframe{

    display:block;

    width:100%;

    height:450px;

}
/* ===========================
   FOOTER
=========================== */

.footer{

    background:#0b4f2d;

    color:#ffffff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo{

    width:80px;

    margin-bottom:15px;

}

.footer-box h3{

    margin-bottom:20px;

    color:#f6b400;

}

.footer-box p{

    line-height:1.8;

    color:#ddd;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#f6b400;

}

.social-icons{

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    background:#ffffff;

    color:#0b4f2d;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#f6b400;

    color:#000;

}

.footer-bottom{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,.2);

    color:#cccccc;

}
/* ===========================
   FLOATING BUTTONS
=========================== */

.floating-whatsapp{

    position:fixed;

    bottom:25px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

.floating-call{

    position:fixed;

    bottom:100px;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#0b4f2d;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.floating-call:hover{

    transform:scale(1.1);

}

/* Scroll Button */

#topBtn{

    position:fixed;

    bottom:175px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#f6b400;

    color:#000;

    font-size:22px;

    cursor:pointer;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

}

#topBtn:hover{

    background:#0b4f2d;

    color:white;

}