/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#0B1220;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

.header{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    z-index:100;
}

.nav-container{
    background:#ffffff;
    border-radius:22px;
    padding:18px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:
    0 2px 12px rgba(0,0,0,0.04);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    font-size:18px;
}

.logo-icon{
    width:36px;
    height:36px;

    border-radius:50%;
    background:linear-gradient(
    135deg,
    #1678ff,
    #00d4ff
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.blue{
    color:#247BFF;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#4b5563;
    font-size:14px;
    font-weight:500;
}

.nav a:hover{
    color:#000;
}

.project-btn{
    text-decoration:none;

    background:#07132b;
    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

/* ================= HERO ================= */

.hero{

    height:420px;

    position:relative;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-left-gradient{

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    left:-250px;
    top:-180px;

    background:
    radial-gradient(
    circle,
    rgba(63,255,214,.28),
    transparent 70%
    );
}

.hero-right-gradient{

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    right:-250px;
    top:-180px;

    background:
    radial-gradient(
    circle,
    rgba(0,170,255,.22),
    transparent 70%
    );
}

.hero-content{

    text-align:center;
    position:relative;
    z-index:2;
}

.hero-badge{

    display:inline-block;

    padding:8px 18px;

    border:1px solid #E7EDF5;

    border-radius:999px;

    font-size:13px;

    color:#667085;

    margin-bottom:30px;
}

.hero h1{

    font-size:76px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:20px;
}

.hero h1 span{
    color:#2B7CFF;
}

.hero p{

    max-width:720px;

    margin:auto;

    color:#667085;

    font-size:20px;

    line-height:1.8;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .navbar{
        display:none;
    }

    .hero h1{
        font-size:56px;
    }

}

@media(max-width:768px){

    .hero{
        height:500px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:16px;
    }

    .project-btn{
        display:none;
    }

}
/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:40px 0 120px;
}

.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1.2fr;

    gap:30px;
}

/* LEFT SIDE */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-card{

    background:#F8FAFC;

    border:1px solid #E7EDF5;

    border-radius:20px;

    padding:26px;

    display:flex;
    gap:18px;
    align-items:flex-start;
}

.info-icon{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
}

.info-label{

    display:block;

    color:#94A3B8;

    font-size:11px;

    letter-spacing:1px;

    margin-bottom:8px;

    font-weight:700;
}

.info-card p{

    color:#0B1220;

    line-height:1.7;

    font-size:15px;
}

.social-card{
    flex-direction:column;
}

.social-card h4{
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{

    width:38px;
    height:38px;

    border-radius:50%;

    border:1px solid #E7EDF5;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0B1220;

    font-size:13px;
}

/* RIGHT SIDE */

.contact-form-box{

    background:#F8FAFC;

    border:1px solid #E7EDF5;

    border-radius:28px;

    padding:40px;
}

.contact-form-box h2{

    font-size:38px;

    margin-bottom:8px;
}

.contact-form-box p{

    color:#667085;

    margin-bottom:30px;
}

.form-row{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:13px;

    color:#667085;
}

.form-group input,
.form-group textarea{

    width:100%;

    border:1px solid #E7EDF5;

    background:white;

    border-radius:14px;

    padding:14px 16px;

    outline:none;

    font-family:inherit;
}

.form-group textarea{
    resize:none;
}

.submit-btn{

    border:none;

    background:
    linear-gradient(
    135deg,
    #247BFF,
    #09C4D9
    );

    color:white;

    padding:15px 28px;

    border-radius:999px;

    font-weight:600;

    cursor:pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:25px;
    }

}
/* ================= MAP SECTION ================= */

.map-section{
    padding:20px 0 120px;
}

.map-box{

    height:460px;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #E7EDF5;

    background:#F4F7FB;

    display:flex;
    align-items:center;
    justify-content:center;
}

.map-placeholder{

    text-align:center;
    padding:30px;
}

.map-placeholder h3{

    font-size:32px;

    margin-bottom:12px;

    color:#0B1220;
}

.map-placeholder p{

    color:#667085;

    max-width:500px;

    line-height:1.8;
}

/* ================= FAQ ================= */

.contact-faq{
    padding-bottom:120px;
}

.faq-heading{

    font-size:48px;

    font-weight:700;

    margin-bottom:40px;

    color:#0B1220;
}

.faq-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:22px;
}

.faq-card{

    background:#F8FAFC;

    border:1px solid #E7EDF5;

    border-radius:20px;

    padding:28px;

    transition:.3s;
}

.faq-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 12px 25px rgba(0,0,0,.06);
}

.faq-card h3{

    font-size:20px;

    line-height:1.5;

    margin-bottom:14px;

    color:#0B1220;
}

.faq-card p{

    color:#667085;

    line-height:1.8;

    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .faq-heading{
        font-size:38px;
    }

}

@media(max-width:768px){

    .map-box{
        height:300px;
    }

    .faq-heading{
        font-size:32px;
    }

}
/* ================= CTA ================= */

.cta-section{
    padding-bottom:120px;
}

.cta-box{

    background:
    linear-gradient(
    135deg,
    #4E7CFF,
    #1CCFD1
    );

    border-radius:30px;

    padding:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta-left h2{

    color:white;

    font-size:60px;

    line-height:1.05;

    margin-bottom:18px;

    font-weight:800;
}

.cta-left p{

    color:white;

    opacity:.95;

    max-width:550px;

    line-height:1.8;
}

.cta-right{

    display:flex;
    gap:15px;
}

.cta-primary{

    background:white;

    color:#08142B;

    padding:16px 28px;

    border-radius:999px;

    font-weight:600;
}

.cta-secondary{

    border:1px solid rgba(255,255,255,.4);

    color:white;

    padding:16px 28px;

    border-radius:999px;
}

/* ================= FOOTER ================= */

.footer{

    background:#F7F9FC;

    border-top:1px solid #E6EDF5;

    padding-top:90px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}

.footer-logo{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:25px;
}

.footer-logo-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0A84FF,
    #18D2D7
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;
}

.footer-logo span{

    font-size:22px;
    font-weight:700;
}

.footer-about p{

    color:#667085;

    line-height:1.8;

    margin-bottom:30px;
}

.newsletter{

    display:flex;

    background:white;

    border:1px solid #E7EDF5;

    border-radius:999px;

    overflow:hidden;

    max-width:340px;
}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:14px 18px;
}

.newsletter button{

    border:none;

    background:#0A84FF;

    color:white;

    padding:0 20px;

    cursor:pointer;
}

.socials{

    display:flex;
    gap:12px;

    margin-top:25px;
}

.socials a{

    width:36px;
    height:36px;

    border-radius:50%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#08142B;

    font-size:13px;

    border:1px solid #E7EDF5;
}

.footer-column{

    display:flex;
    flex-direction:column;
}

.footer-column h4{

    margin-bottom:24px;

    font-size:18px;
}

.footer-column a{

    margin-bottom:14px;

    color:#667085;

    line-height:1.6;
}

.footer-bottom{

    border-top:1px solid #E6EDF5;

    margin-top:70px;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#667085;
}

.footer-links-bottom{

    display:flex;
    gap:18px;
}

.footer-links-bottom a{
    color:#667085;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-banner{
        padding:40px 25px;
    }

}
.footer-column a{
    text-decoration: none;
}