/* ==========================
   GLOBAL SETTINGS
========================== */

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

html{
    scroll-behavior:smooth;
}

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


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



/* ==========================
 HEADER
========================== */


.header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1000;
}


.navbar{

    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;

}


.logo img{

    width:230px;
    display:block;

}


.nav-links{

    display:flex;
    list-style:none;
    gap:35px;

}


.nav-links a{

    text-decoration:none;
    color:#0b1f3a;
    font-weight:600;
    font-size:16px;

}


.nav-links a:hover{

    color:#2563eb;

}



.header-btn{

    background:#2563eb;
    color:white;
    padding:15px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;

}




/* ==========================
 HERO SECTION
========================== */


.hero{

    background:#f7faff;
    padding:90px 0;

}



.hero-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;

}



.hero-content h1{

    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#08213d;
    margin-bottom:25px;

}



.hero-content p{

    font-size:20px;
    line-height:1.7;
    color:#475569;
    margin-bottom:35px;

}



.hero-buttons{

    display:flex;
    gap:20px;

}



.btn-primary{

    background:#2563eb;
    color:white;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;

}



.btn-secondary{

    border:2px solid #2563eb;
    color:#2563eb;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;

}



.hero-image img{

    width:100%;
    max-width:550px;

}
/* ==========================
   WHY CHOOSE US SECTION
========================== */


.features{

    padding:100px 0;
    background:#ffffff;

}



.section-heading{

    text-align:center;
    max-width:750px;
    margin:0 auto 60px;

}



.section-heading h2{

    font-size:42px;
    font-weight:800;
    color:#08213d;
    margin-bottom:15px;

}



.section-heading p{

    font-size:18px;
    color:#64748b;
    line-height:1.7;

}




.feature-grid{

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

}




.feature-card{

    background:#ffffff;

    padding:35px 30px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    transition:all .3s ease;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

}




.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,0.12);

    border-color:#2563eb;

}




.feature-icon{

    width:60px;

    height:60px;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    margin-bottom:25px;

}




.feature-icon i{

    font-size:26px;

    color:#2563eb;

}




.feature-card h3{

    font-size:22px;

    font-weight:700;

    color:#0b1f3a;

    margin-bottom:12px;

}



.feature-card p{

    color:#64748b;

    line-height:1.7;

    font-size:16px;

}
/* ==========================
   SOLUTIONS SECTION
========================== */

.solutions{

    padding:100px 0;
    background:#f8fafc;

}



.solutions-grid{

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

}



.solution-card{

    background:#ffffff;

    padding:35px 30px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

    transition:all .3s ease;

}



.solution-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,0.15);

    border-color:#2563eb;

}



.solution-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:#eff6ff;

    margin-bottom:25px;

}



.solution-icon i{

    font-size:26px;

    color:#2563eb;

}



.solution-card h3{

    font-size:22px;

    font-weight:700;

    color:#08213d;

    margin-bottom:12px;

}



.solution-card p{

    font-size:16px;

    line-height:1.7;

    color:#64748b;

}
/* ==========================
   INDUSTRIES SECTION
========================== */

.industries{

    padding:100px 0;
    background:#ffffff;

}


.industries-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;

}



.industry-card{

    background:#ffffff;

    padding:30px 25px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 25px rgba(15,23,42,0.05);

    transition:all .3s ease;

}



.industry-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 40px rgba(37,99,235,0.15);

}



.industry-icon{

    width:60px;

    height:60px;

    background:#eff6ff;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}



.industry-icon i{

    font-size:26px;

    color:#2563eb;

}



.industry-card h3{

    font-size:20px;

    font-weight:700;

    color:#08213d;

    margin-bottom:12px;

}



.industry-card p{

    font-size:15px;

    line-height:1.6;

    color:#64748b;

}
/* ==========================
   TRUST SECTION
========================== */

.trust-section{

    padding:100px 0;
    background:#f8fafc;

}



.trust-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}



.trust-card{

    background:#ffffff;

    padding:35px 30px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

    transition:all .3s ease;

}



.trust-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,0.15);

}



.trust-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eff6ff;

    border-radius:14px;

    margin-bottom:22px;

}



.trust-icon i{

    font-size:26px;

    color:#2563eb;

}



.trust-card h3{

    font-size:21px;

    font-weight:700;

    color:#08213d;

    margin-bottom:12px;

}



.trust-card p{

    font-size:16px;

    color:#64748b;

    line-height:1.7;

}
/* ==========================
   TESTIMONIAL SECTION
========================== */

.testimonials{

    padding:100px 0;
    background:#f8fafc;

}



.testimonial-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;

}



.testimonial-card{

    background:#ffffff;

    padding:35px 30px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(15,23,42,0.05);

    transition:all .3s ease;

}



.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 45px rgba(37,99,235,0.15);

}



.stars{

    color:#2563eb;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:20px;

}



.testimonial-card p{

    font-size:16px;

    line-height:1.7;

    color:#64748b;

    margin-bottom:25px;

    font-style:italic;

}



.testimonial-card h3{

    font-size:18px;

    font-weight:700;

    color:#08213d;

    margin-bottom:5px;

}



.testimonial-card span{

    color:#64748b;

    font-size:14px;

}
/* ==========================
   CTA SECTION
========================== */

.cta-section{

    padding:100px 0;
    background:#f8fafc;

}



.cta-box{

    background:linear-gradient(135deg,#0b1f3a,#2563eb);

    padding:70px 50px;

    border-radius:25px;

    text-align:center;

    color:white;

    box-shadow:0 20px 50px rgba(37,99,235,0.25);

}



.cta-box h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

}



.cta-box p{

    font-size:18px;

    max-width:750px;

    margin:0 auto 35px;

    color:#e2e8f0;

}



.cta-button{

    display:inline-block;

    background:white;

    color:#2563eb;

    padding:16px 35px;

    border-radius:10px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

}



.cta-button:hover{

    transform:translateY(-3px);

    background:#f1f5f9;

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

.contact-section{

    padding:100px 0;

    background:#f8fafc;

}



.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.contact-info h2{

    font-size:42px;

    font-weight:800;

    color:#08213d;

    margin-bottom:20px;

}



.contact-info p{

    font-size:17px;

    line-height:1.7;

    color:#64748b;

    margin-bottom:35px;

}



.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

    font-size:17px;

    color:#08213d;

    font-weight:600;

}



.contact-item i{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf3ff;

    color:#2563eb;

    border-radius:10px;

}



/* FORM */


.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);

}



.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}



.contact-form input,

.contact-form textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #dbe3ef;

    border-radius:10px;

    font-size:15px;

    outline:none;

}



.contact-form textarea{

    height:130px;

    resize:none;

}



.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#2563eb;

}



.contact-form button{

    background:#2563eb;

    color:white;

    border:none;

    padding:16px;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}



.contact-form button:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

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


.footer{

    background:#061b35;

    padding:70px 0 25px;

    color:white;

}



.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer-brand img{

    width:220px;

    margin-bottom:20px;

}



.footer-brand p{

    color:#cbd5e1;

    line-height:1.7;

    max-width:350px;

}



.footer-links h3{

    font-size:18px;

    margin-bottom:20px;

    color:white;

}



.footer-links a{

    display:block;

    text-decoration:none;

    color:#cbd5e1;

    margin-bottom:12px;

    transition:.3s;

}



.footer-links a:hover{

    color:#38bdf8;

}



.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.15);

    text-align:center;

}



.footer-bottom p{

    color:#94a3b8;

    margin:0;

    font-size:14px;

}