
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');

:root{
    --navy:#0B2E4F;
    --green:#57943A;
    --gray:#6B7280;
    --light:#F5F7FA;
    --white:#FFFFFF;

    --shadow-sm:0 2px 8px rgba(0,0,0,.08);
    --shadow-md:0 8px 20px rgba(0,0,0,.12);
    --shadow-lg:0 15px 35px rgba(0,0,0,.18);

    --radius:14px;

    --max-width:1200px;

    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#243447;
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:var(--max-width);
    margin:auto;
}

h1,h2,h3,h4{
    font-family:'Montserrat',sans-serif;
    line-height:1.2;
}

section{
    padding:80px 0;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:2.4rem;
    color:var(--navy);
    margin-bottom:10px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:var(--gray);
}

/* NAVIGATION */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow-sm);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
}

.logo img{
    height:160px;
	width:444px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    font-weight:600;
    color:var(--navy);
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--green);
}

.mobile-menu{
    display:none;
}

/* BUTTONS */

.btn{
    display:inline-block;
    padding:14px 26px;
    border-radius:999px;
    font-weight:600;
    transition:var(--transition);
}

.btn-primary{
    background:var(--green);
    color:white;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
}

.btn-outline{
    border:2px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:var(--navy);
}

.hero{
    background:
    linear-gradient(
        135deg,
        rgba(11,46,79,.95),
        rgba(7,22,38,.95)
    );
    color:white;

    padding:120px 0;
}

.hero-content{
    max-width:760px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:35px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.trust-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.badge{
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:999px;
}

.grid{
    display:grid;
    gap:30px;
}

.grid-3{
    grid-template-columns:repeat(3,1fr);
}

.grid-4{
    grid-template-columns:repeat(4,1fr);
}

.card{
    background:white;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    padding:30px;
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.icon{
    font-size:2.5rem;
    margin-bottom:20px;
}

.card h3{
    color:var(--navy);
    margin-bottom:12px;
}

@media(max-width:900px){

    .hero h1{
        font-size:3rem;
    }

    .grid-3,
    .grid-4{
        grid-template-columns:1fr 1fr;
    }

    .nav-links{
        display:none;
    }

    .mobile-menu{
        display:block;
        font-size:2rem;
        color:var(--navy);
    }
}

@media(max-width:640px){

    .hero h1{
        font-size:2.2rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .grid-3,
    .grid-4{
        grid-template-columns:1fr;
    }
}

/* ==========================================
   FEATURE SECTION
========================================== */

.features{
    background:var(--light);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-box{
    background:white;
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.feature-box h3{
    color:var(--navy);
    margin-bottom:15px;
}

.feature-box p{
    color:var(--gray);
}

/* ==========================================
   INDUSTRY CARDS
========================================== */

.industry-card{
    position:relative;
    overflow:hidden;

    background:white;

    border-radius:var(--radius);
    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
}

.industry-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.industry-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:var(--green);
}

.industry-card h3{
    color:var(--navy);
    margin-bottom:15px;
}

.industry-card p{
    color:var(--gray);
}

/* ==========================================
   SERVICE CARDS
========================================== */

.service-card{
    background:white;
    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
}

.service-card ul{
    margin-top:15px;
    margin-left:20px;
}

.service-card li{
    margin-bottom:8px;
}

.service-card h3{
    color:var(--navy);
    margin-bottom:10px;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    background:var(--light);
}

.testimonial-card{
    text-align:center;
    padding:35px;

    background:white;

    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
}

.testimonial-card p{
    font-style:italic;
    margin-bottom:15px;
}

.testimonial-author{
    color:var(--green);
    font-weight:600;
}

/* ==========================================
   CTA BANNER
========================================== */

.cta-banner{
    background:
    linear-gradient(
        135deg,
        var(--green),
        #6ba745
    );

    color:white;

    text-align:center;

    border-radius:var(--radius);

    padding:70px 40px;
}

.cta-banner h2{
    margin-bottom:20px;
}

.cta-banner p{
    margin-bottom:30px;
    font-size:1.1rem;
}

.cta-banner .btn{
    background:white;
    color:var(--navy);
}

.cta-banner .btn:hover{
    background:#f2f2f2;
}

/* ==========================================
   FORMS
========================================== */

.form-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.form-card{
    background:white;
    border-radius:var(--radius);

    padding:40px;

    box-shadow:var(--shadow-md);
}

.form-card h2{
    color:var(--navy);
    margin-bottom:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
}
input:not([type="radio"]):not([type="checkbox"]),
textarea,
select
{
    width:100%;

    padding:14px;

    border:1px solid #d6d6d6;
    border-radius:10px;

    font-size:1rem;

    transition:var(--transition);
}


input:not([type="radio"]):focus,
textarea:focus,
select:focus{
    outline:none;
    border-color:var(--green);
    box-shadow:0 0 0 3px rgba(87,148,58,.15);
}


textarea{
    resize:vertical;
}

.contact-info{
    background:var(--navy);
    color:white;

    border-radius:var(--radius);

    padding:40px;
}

.contact-info h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:var(--navy);
    color:white;

    margin-top:80px;
}

.footer-grid{
    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

    padding:70px 0;
}

.footer-column h4{
    margin-bottom:20px;
}

.footer-column a{
    display:block;

    margin-bottom:12px;

    opacity:.85;
}

.footer-column a:hover{
    opacity:1;
}

.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:25px 0;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:900px){

    .feature-grid{
        grid-template-columns:1fr;
    }

    .form-wrapper{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:640px){

    .footer-grid{
        grid-template-columns:1fr;
    }
}


/* ==========================================
   ASSESSMENT PAGE
========================================== */

.assessment-section{
    margin-bottom:50px;
}

.assessment-header{
    background:var(--navy);
    color:white;
    padding:20px 25px;
    border-radius:14px;
    margin-bottom:25px;
 padding:25px;}
    box-shadow:var(--shadow-sm);
    margin-bottom:20px;
}

.assessment-question h4{
    margin-bottom:10px;
    color:var(--navy);
}

.assessment-question p{
    margin-bottom:15px;
    color:var(--gray);
}

.radio-group{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-top:10px;
}

.radio-option{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-weight:600;
}

.radio-option input[type="radio"]{
    width:auto;
    margin:0;
    transform:scale(1.2);
    cursor:pointer;
}

.results-card{
    background:#eef7ea;
    border-left:6px solid var(--green);
    padding:30px;
    border-radius:14px;
    margin-top:40px;
}

.results-card h2{
    color:var(--navy);
    margin-bottom:15px;
}

.assessment-header h2{
    margin:0;
    color:white;
}

.assessment-question{
    background:white;
    border-radius:14px;

