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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    color:#222;
    background:#fff;
    line-height:1.7;
}

:root{
    --navy:#001f63;
    --navy-soft:#06255f;
    --green:#a8cf3a;
    --white:#ffffff;
    --light:#f7f8fa;
    --border:#e6ebf2;
    --text:#222;
}

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


/* NOTIFICATION */

.site-toast{
    position:fixed;
    top:92px;
    left:50%;
    z-index:2000;
    max-width:min(92%,460px);
    padding:14px 20px;
    border-radius:8px;
    background:var(--green);
    color:var(--navy);
    font-weight:800;
    text-align:center;
    box-shadow:0 16px 34px rgba(0,31,99,.22);
    transform:translate(-50%,-18px);
    opacity:0;
    pointer-events:none;
    transition:opacity .3s, transform .3s;
}

.site-toast.show{
    opacity:1;
    transform:translate(-50%,0);
}

/* HEADER */

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    background:rgba(0,31,99,.95);
    backdrop-filter:blur(10px);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    gap:24px;
}

.logo{
    height:55px;
    flex-shrink:0;
}

nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:18px 25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--green);
}

/* HERO */

.hero{
    background:linear-gradient(
    135deg,
    #001f63 0%,
    #06255f 50%,
    #0a327d 100%);
    min-height:100vh;
    display:flex;
    align-items:center;
    color:white;
    padding:120px 0 80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.tagline{
    color:var(--green);
    font-weight:700;
    letter-spacing:1px;
    display:inline-block;
}

.hero h1{
    font-size:4.5rem;
    line-height:1.05;
    margin:20px 0;
}

.hero h2{
    color:var(--green);
    font-size:1.4rem;
    font-weight:600;
    margin-bottom:25px;
}

.hero p{
    font-size:1.1rem;
    max-width:650px;
}

.buttons{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    border:0;
    font-family:inherit;
    cursor:pointer;
}

.btn-primary{
    background:var(--green);
    color:var(--navy);
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 28px rgba(168,207,58,.28);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:var(--navy);
}

.hero-logo{
    text-align:center;
}

.hero-logo img{
    max-width:420px;
    width:100%;
    opacity:.9;
}

/* SECTION */

.section{
    padding:100px 0;
}

.light{
    background:var(--light);
}

.section-title{
    text-align:center;
    font-size:2.5rem;
    color:var(--navy);
    margin-bottom:30px;
    line-height:1.2;
}

.section-text{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:1.1rem;
}

/* ABOUT */

.credibility-strip{
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:white;
    border:1px solid var(--border);
    border-top:4px solid var(--green);
    border-radius:12px;
    padding:26px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,31,99,.08);
}

.stat-card strong{
    display:block;
    color:var(--navy);
    font-size:2rem;
    line-height:1;
    margin-bottom:10px;
}

.stat-card span{
    display:block;
    color:#4d5870;
    font-weight:600;
}

.stat-card small{
    display:block;
    color:#6c7485;
    font-weight:600;
    line-height:1.45;
    margin-top:8px;
}

/* CARDS */

.cards{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:var(--navy);
    margin-bottom:15px;
}

/* VENTURES */

.venture-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.venture-card{
    background:white;
    border:1px solid var(--border);
    border-radius:12px;
    padding:28px;
    min-height:310px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    text-decoration:none;
    color:inherit;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:transform .3s, box-shadow .3s, border-color .3s;
}

.venture-card:hover,
.venture-card:focus-visible{
    transform:translateY(-10px);
    border-color:var(--green);
    box-shadow:0 18px 40px rgba(0,31,99,.14);
}

.venture-card:focus-visible{
    outline:3px solid rgba(168,207,58,.45);
    outline-offset:4px;
}

.venture-logo-wrap{
    width:100%;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.venture-logo-wrap img{
    max-width:190px;
    max-height:115px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.venture-card h3{
    color:var(--navy);
    font-size:1.12rem;
    line-height:1.35;
    margin-bottom:12px;
}

.venture-card p{
    color:#4d5870;
    font-size:.95rem;
}

/* DIGITAL ECOSYSTEM */

.social-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:18px;
    margin-top:45px;
}

.social-grid a{
    min-height:128px;
    background:white;
    color:var(--navy);
    text-decoration:none;
    border:1px solid var(--border);
    border-radius:12px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,31,99,.07);
    transition:.3s;
}

.social-grid a:hover,
.social-grid a:focus-visible{
    color:var(--navy);
    border-color:var(--green);
    transform:translateY(-6px);
    box-shadow:0 16px 34px rgba(0,31,99,.12);
}

.social-grid a:focus-visible{
    outline:3px solid rgba(168,207,58,.45);
    outline-offset:4px;
}

.social-grid i{
    color:var(--green);
    font-size:1.9rem;
}

.social-grid small{
    color:#6c7485;
    font-size:.72rem;
    font-weight:600;
    line-height:1.25;
    overflow-wrap:anywhere;
}

/* VISION */

.vision{
    background:var(--navy);
    color:white;
    text-align:center;
    padding:110px 0;
}

.vision h2{
    font-size:2.5rem;
    margin-bottom:24px;
}

.vision blockquote{
    font-size:1.5rem;
    max-width:900px;
    margin:auto;
    color:var(--green);
    font-weight:600;
}

.vision-intro{
    max-width:880px;
    margin:28px auto 0;
    color:#eef3ff;
    font-size:1.05rem;
}

.vision-pillars{
    margin-top:48px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.pillar-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;
    padding:34px 28px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.pillar-icon{
    width:58px;
    height:58px;
    object-fit:contain;
    margin-bottom:20px;
}

.pillar-card h3{
    color:var(--green);
    margin-bottom:12px;
    letter-spacing:1px;
}

.pillar-card p{
    color:#eef3ff;
}

/* CONTACT */

.connect-wrap{
    max-width:980px;
}

.contact-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:45px;
    background:var(--light);
    border:1px solid var(--border);
    border-radius:12px;
    padding:34px;
}

.form-row{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-row.full{
    grid-column:1 / -1;
}

.form-row label{
    color:var(--navy);
    font-weight:700;
}

.form-row input,
.form-row textarea{
    width:100%;
    border:1px solid #cfd7e3;
    border-radius:8px;
    padding:13px 14px;
    font:inherit;
    color:var(--text);
    background:white;
    transition:.3s;
}

.form-row input:focus,
.form-row textarea:focus{
    outline:none;
    border-color:var(--green);
    box-shadow:0 0 0 3px rgba(168,207,58,.2);
}

.form-button{
    justify-self:start;
}

.form-button:disabled{
    cursor:not-allowed;
    opacity:.72;
    transform:none;
}

.form-status{
    align-self:center;
    color:var(--navy);
    font-weight:700;
}

.form-status.error{
    color:#b42318;
}

.direct-contact{
    margin-top:48px;
}

.direct-contact h3{
    color:var(--navy);
    font-size:1.45rem;
    text-align:center;
    margin-bottom:22px;
}

.contact-card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.contact-card{
    background:white;
    border:1px solid var(--border);
    border-radius:12px;
    padding:24px;
    color:var(--navy);
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    box-shadow:0 10px 25px rgba(0,31,99,.07);
    transition:.3s;
}

.contact-card:hover,
.contact-card:focus-visible{
    border-color:var(--green);
    transform:translateY(-5px);
    box-shadow:0 16px 34px rgba(0,31,99,.12);
}

.contact-card:focus-visible{
    outline:3px solid rgba(168,207,58,.45);
    outline-offset:4px;
}

.contact-card i{
    color:var(--green);
    font-size:1.4rem;
    margin-bottom:4px;
}

.contact-card span{
    color:#6c7485;
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
}

.contact-card strong{
    color:var(--navy);
    font-size:1rem;
    overflow-wrap:anywhere;
}

/* FOOTER */

footer{
    background:#000f2d;
    color:white;
    text-align:center;
    padding:46px 0;
}

.footer-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.footer-logo{
    height:60px;
}

.footer-ses{
    width:min(320px,90%);
    height:auto;
    margin-top:2px;
}

.footer-tagline{
    color:var(--green);
    font-weight:700;
    font-size:1rem;
    margin-top:-2px;
}

.footer-socials{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-socials a:hover,
.footer-socials a:focus-visible{
    color:var(--navy);
    background:var(--green);
    border-color:var(--green);
    transform:translateY(-3px);
}

.footer-socials a:focus-visible{
    outline:3px solid rgba(168,207,58,.45);
    outline-offset:4px;
}

.copyright{
    color:#d8deeb;
    font-size:.92rem;
}

/* MOBILE */

@media(max-width:900px){

    .nav{
        flex-direction:column;
    }

    nav{
        justify-content:center;
        gap:10px 16px;
    }

    nav a{
        font-size:.88rem;
    }

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
    }

    .hero-content,
    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero h2{
        font-size:1.1rem;
    }

    .hero-logo img{
        max-width:280px;
    }

    .credibility-strip,
    .vision-pillars,
    .contact-form,
    .contact-card-grid{
        grid-template-columns:1fr;
    }

    .form-row.full{
        grid-column:auto;
    }
}

@media(max-width:560px){

    .container{
        width:92%;
    }

    .section,
    .vision{
        padding:72px 0;
    }

    .hero{
        padding-top:150px;
    }

    .tagline{
        font-size:.82rem;
    }

    .hero h1{
        font-size:2.55rem;
    }

    .section-title,
    .vision h2{
        font-size:2rem;
    }

    .vision blockquote{
        font-size:1.15rem;
    }

    .vision-intro{
        font-size:.98rem;
    }

    .contact-form{
        padding:24px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}




