/* ===== Technology Partners ===== */

.vendor-logos{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    flex-wrap:nowrap;
    gap:30px;
    margin:50px auto 0;
    width:100%;
}

.vendor{
    width:auto;
    max-width:220px;
    object-fit:contain;
    transition:.3s;
    opacity:.95;
}

.vendor:hover{
    transform:translateY(-3px);
    opacity:1;
}

.vendor.fortinet{
    height:46px;
}

.vendor.microsoft{
    height:52px;
    filter:brightness(1.35);
}

.vendor.cisco{
    height:58px;
}

.vendor.bitdefender{
    height:42px;
}

.vendor.erpnext{
    height:58px;
}

@media (max-width:768px){

    .vendor-logos{
        flex-wrap:wrap;
        gap:25px;
    }

    .vendor{
        height:32px !important;
    }

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

.footer{
    margin-top:100px;
    padding:70px 0 30px;
    background:#08111f;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer p,
.footer li,
.footer a{
    color:#9ca8c3;
    text-decoration:none;
    line-height:1.9;
}

.footer h4{
    color:#fff;
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#7f8aa5;
    font-size:14px;
}

@media(max-width:900px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:0 auto 20px;
}

}

}

/* ==========================
   WHY CHOOSE US
========================== */

.why-us{
    padding:60px 0 100px;
}

.why-us h2{
    text-align:center;
    font-size:52px;
    margin:20px 0 60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#10192d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#4f46e5;
    box-shadow:0 15px 40px rgba(79,70,229,.25);
}

.why-icon{
    font-size:42px;
    margin-bottom:20px;
}

.why-card h3{
    color:#fff;
    margin-bottom:12px;
}

.why-card p{
    color:#9ca8c3;
    line-height:1.7;
}

@media(max-width:900px){

.why-grid{
    grid-template-columns:1fr;
}

.why-us h2{
    font-size:38px;
}

}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    padding:100px 0;
}

.contact-section h2{
    text-align:center;
    font-size:52px;
    margin:20px 0;
}

.section-description{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:#9ca8c3;
    font-size:20px;
    line-height:1.8;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}

.contact-form,
.contact-map{
    background:#10192d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    background:#0b1324;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#4f46e5;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form button{
    width:100%;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:560px;
    border:none;
    border-radius:14px;
}

@media(max-width:900px){

.contact-grid{
    grid-template-columns:1fr;
}

.contact-map iframe{
    min-height:350px;
}

.contact-section h2{
    font-size:38px;
}

.section-description{
    font-size:18px;
}

}

/* ===== Floating WhatsApp Button ===== */

.whatsapp-float{
    position:fixed !important;
    bottom:30px !important;
    right:30px !important;
    width:80px !important;
    height:80px !important;
    background:#25D366 !important;
    border-radius:50% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    z-index:999999 !important;
    border:3px solid #fff;
    animation:whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.12) rotate(5deg);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.whatsapp-float img{
    width:48px;
    height:48px;
}

@media(max-width:768px){
    .whatsapp-float{
        width:58px;
        height:58px;
        bottom:20px;
        right:20px;
    }

    .whatsapp-float img{
        width:30px;
        height:30px;
    }
}

@keyframes whatsapp-pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
