
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:
    radial-gradient(circle at top left,
    #1e3a8a 0%,
    #020617 45%,
    #000814 100%);

    color:white;

    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 5%;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    position:sticky;

    top:0;

    z-index:1000;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo a{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:white;
}

.logo img{

    width:90px;

    height:55px;

    object-fit:contain;

    background:white;

    padding:5px 10px;

    border-radius:12px;
}

.logo h2{

    font-size:24px;
}

/* MENU */

.nav-links{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;
}

.nav-links li{

    position:relative;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:0.3s;

    padding:10px 0;

    display:block;
}

.nav-links a:hover{

    color:#60a5fa;
}

/* DROPDOWN */

.dropdown-menu{

    position:absolute;

    top:50px;

    left:0;

    min-width:250px;

    background:rgba(15,23,42,0.95);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:18px;

    padding:15px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s;

    z-index:999;
}

.dropdown-menu a{

    padding:12px 22px;

    font-size:15px;
}

.dropdown-menu a:hover{

    background:rgba(255,255,255,0.06);

    color:#60a5fa;
}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.demo-btn{

    background:
    linear-gradient(to right,#2563eb,#1d4ed8);

    color:white;

    padding:14px 26px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.35);
}

/* =========================
HERO
========================= */

.hero{

    min-height:85vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    padding:100px 6%;
}

.hero-left{

    flex:1;
}

.hero-left h4{

    color:#60a5fa;

    font-size:18px;

    margin-bottom:20px;

    letter-spacing:1px;
}

.hero-left h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:30px;
}

.hero-left h1 span{

    color:#60a5fa;
}

.hero-left p{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    background:
    linear-gradient(to right,#2563eb,#1d4ed8);

    color:white;

    text-decoration:none;

    padding:16px 32px;

    border-radius:14px;

    font-weight:600;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.35);
}

.secondary-btn{

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    color:white;

    text-decoration:none;

    padding:16px 32px;

    border-radius:14px;

    font-weight:600;
}

/* RIGHT PANEL */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;
}

.about-card{

    width:520px;

    background:rgba(255,255,255,0.05);

    border-radius:32px;

    padding:40px;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

.about-card h2{

    font-size:36px;

    margin-bottom:25px;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.about-box{

    background:rgba(255,255,255,0.06);

    border-radius:22px;

    padding:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.about-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(37,99,235,0.25);
}

.about-box i{

    font-size:38px;

    color:#60a5fa;

    margin-bottom:15px;
}

.about-box h3{

    font-size:30px;

    margin-bottom:10px;
}

.about-box p{

    color:#cbd5e1;
}

/* SECTIONS */

.section{

    padding:90px 6%;
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    font-size:54px;

    margin-bottom:20px;
}

.section-title p{

    color:#cbd5e1;

    font-size:18px;
}

/* MISSION */

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.mission-card{

    background:rgba(255,255,255,0.05);

    padding:40px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;

    backdrop-filter:blur(16px);
}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(37,99,235,0.25);
}

.mission-card i{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(135deg,#2563eb,#1d4ed8);

    font-size:32px;

    margin-bottom:25px;
}

.mission-card h3{

    font-size:26px;

    margin-bottom:18px;
}

.mission-card p{

    color:#cbd5e1;

    line-height:1.9;
}

/* TIMELINE */

.timeline{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.timeline-box{

    background:rgba(255,255,255,0.05);

    border-radius:24px;

    padding:30px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);
}

.timeline-box h2{

    color:#60a5fa;

    font-size:42px;

    margin-bottom:15px;
}

.timeline-box p{

    color:#cbd5e1;

    line-height:1.7;
}

/* CTA */

.cta{

    padding:90px 6%;
}

.cta-box{

    background:
    linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:35px;

    padding:80px;

    text-align:center;

    box-shadow:
    0 20px 60px rgba(37,99,235,0.35);
}

.cta-box h2{

    font-size:56px;

    margin-bottom:20px;
}

.cta-box p{

    font-size:20px;

    color:#dbeafe;

    line-height:1.9;

    max-width:900px;

    margin:auto;

    margin-bottom:35px;
}

.cta-btn{

    background:white;

    color:#1d4ed8;

    text-decoration:none;

    padding:18px 36px;

    border-radius:14px;

    font-weight:700;

    display:inline-block;
}

/* FOOTER */

.footer{

    background:#00184a;

    padding:35px;

    text-align:center;

    color:#cbd5e1;
}

/* RESPONSIVE */

@media(max-width:1200px){

.hero{
    flex-direction:column;
}

.mission-grid{
    grid-template-columns:1fr 1fr;
}

.timeline{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:48px;
}

.nav-links{
    display:none;
}

.about-card{
    width:100%;
}

.about-grid{
    grid-template-columns:1fr;
}

.mission-grid,
.timeline{
    grid-template-columns:1fr;
}

.cta-box h2{
    font-size:38px;
}

}


