
/* =========================
   RESET
========================= */

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

body{
    font-family:'Inter', sans-serif;
    background:#ffffff;
    color:#222;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1180px;
    margin:auto;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#000;
    color:#fff;
    font-size:12px;
    padding:10px 0;
}

.top-content{
    display:flex;
    align-items:center;
}

.top-left{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    border-bottom:1px solid #ececec;
    padding:18px 0;
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:38px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:14px;
    font-weight:500;
}

.nav-links a:hover,
.nav-links a.active{
    color:#16b3a8;
}

.signin-btn{
    background:#15b7ab;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
    padding:70px 0 90px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.section-label{
    color:#19b4aa;
    letter-spacing:4px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
}

.about-text h1{
    font-size:48px;
    margin:12px 0 28px;
    line-height:1.1;
}

.about-text p{
    font-size:15px;
    line-height:2;
    color:#666;
}

/* =========================
   HANDSHAKE IMAGE (SAFE FIX)
========================= */

.about-image-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-frame{
    width:100%;
    max-width:380px;
    background:#edf7f7;
    border-radius:45px 45px 0 0;
    padding:25px 25px 0;
    overflow:hidden;
}

.image-frame img{
    width:100%;
    height:auto;
    max-height:340px;
    object-fit:contain;
    display:block;
}

/* =========================
   READ MORE BUTTON
========================= */

.readmore-btn{
    display:inline-block;
    margin-top:25px;
    background:#0d6efd;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   SOCIAL ICONS (FIXED)
========================= */

.social-icons{
    display:flex;
    gap:18px;
}

.social-icons a{
    width:52px;
    height:52px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

/* IMPORTANT ICON VISIBILITY */
.social-icons i{
    font-size:20px;
    color:#11b7ac;
}

/* =========================
   WHATSAPP FLOAT (FIXED)
========================= */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    z-index:9999;
}

.whatsapp-btn img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* =========================
   FOOTER
========================= */

.site-footer{
    background:#050505;
    padding:90px 0 70px;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1.4fr;
    gap:80px;
}

.footer-column h3{
    font-size:26px;
    margin-bottom:18px;
}

.footer-line{
    width:115px;
    height:2px;
    background:#333;
    position:relative;
    margin-bottom:35px;
}

.footer-line::before{
    content:'';
    position:absolute;
    width:45px;
    height:2px;
    background:#10b7ab;
    left:0;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:22px;
}

.footer-column ul li a{
    color:#f1f1f1;
    text-decoration:none;
    font-size:17px;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.footer-item{
    display:flex;
    gap:16px;
}

.footer-icon{
    color:#10b7ab;
    font-size:20px;
}

.footer-item p{
    color:#e4e4e4;
    line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){
    .about-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .about-text h1{
        font-size:38px;
    }
}

@media(max-width:768px){
    .about-text h1{
        font-size:32px;
    }

    .about-text p{
        font-size:14px;
        line-height:1.8;
    }
}