/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

}

/* ==========================
    VARIABLES
========================== */

:root{

    --primary:#0B4EA2;

    --secondary:#E31E24;

    --dark:#222;

    --light:#fff;

    --gray:#f7f7f7;

    --container:1280px;

}

/* ==========================
    COMMON
========================== */

.container{

    width:min(92%,var(--container));

    margin:auto;

}

a{

    text-decoration:none;

}

img{

    display:block;

    max-width:100%;

}

ul{

    list-style:none;

}

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

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#fff;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    z-index:999;

}

.header-container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

    color:#222;

}

.logo{

    width:62px;

    height:62px;

    object-fit:contain;

}

.brand-text h2{

    font-size:28px;

    font-weight:700;

    color:#0B4EA2;

    line-height:1;

}

.brand-text span{

    display:block;

    margin-top:6px;

    font-size:14px;

    color:#666;

    font-weight:500;

}

.track-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:54px;

    background:#0B4EA2;

    color:#fff;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.track-btn:hover{

    background:#E31E24;

}
/* ===================================
HERO
=================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:130px 0 80px;

    background:linear-gradient(135deg,#ffffff 0%,#f7f9fc 100%);

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

/* Hero Image */

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:600px;

    height:auto;


}

/* Hero Content */

.hero-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#EAF3FF;

    color:var(--primary);

    padding:12px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    color:var(--primary);

    font-weight:800;

    margin-bottom:15px;

}

.hero h2{

    font-size:30px;

    font-weight:600;

    color:#2b2b2b;

    margin-bottom:25px;

    line-height:1.4;

}

.hero p{

    max-width:560px;

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;

}

/* Hero Buttons */

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

    width:100%;

    max-width:320px;

}

.hero-buttons a{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

}

/* Primary Button */

.primary-btn{

    background:#0B4EA2;

    color:#fff;

    padding:16px 24px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 25px rgba(11,78,162,.25);

}

.primary-btn:hover{

    background:#E31E24;

    transform:translateY(-3px);

}

/* Secondary Button */

.secondary-btn{

    background:#fff;

    color:#0B4EA2;

    border:2px solid #0B4EA2;

    padding:16px 24px;

    border-radius:12px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#0B4EA2;

    color:#fff;

}

/* Floating Animation */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/*====================================
SECTION TITLE
====================================*/

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title span{

color:var(--secondary);

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

}

.section-title h2{

font-size:42px;

margin:15px 0;

color:var(--primary);

}

.section-title p{

max-width:760px;

margin:auto;

line-height:1.8;

color:#666;

}

/*====================================
LAUNCH
====================================*/

.launch-section{

padding:100px 0;

background:#fff;

}

.launch-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.launch-card{

padding:35px;

background:#fff;

border-radius:18px;

box-shadow:0 10px 35px rgba(0,0,0,.06);

transition:.35s;

text-align:center;

}

.launch-card:hover{

transform:translateY(-10px);

}

.launch-card .icon{

font-size:50px;

margin-bottom:20px;

}

.launch-card h3{

margin-bottom:15px;

color:var(--primary);

}

.launch-card p{

line-height:1.7;

color:#666;

}

/*====================================
EXPERIENCE
====================================*/

.experience{

padding:90px 0;

background:linear-gradient(135deg,#0B4EA2,#003D8F);

}

.experience-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.experience-box{

padding:40px;

text-align:center;

background:rgba(255,255,255,.08);

border-radius:16px;

backdrop-filter:blur(10px);

}

.experience-box h2{

font-size:48px;

color:#fff;

margin-bottom:10px;

}

.experience-box span{

color:#fff;

font-weight:500;

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

.contact-cta{

padding:120px 0;

background:#f8f9fc;

text-align:center;

}

.cta-content span{

color:var(--secondary);

font-weight:700;

}

.cta-content h2{

font-size:46px;

margin:15px 0;

color:var(--primary);

}

.cta-content p{

font-size:18px;

margin-bottom:40px;

color:#666;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

}

.cta-buttons svg{

    width:20px;

    height:20px;

}

/*====================================
FOOTER
====================================*/
.footer{

    background:#0D1F3C;

    color:#fff;

    padding:50px 20px 40px;

}

.footer-content{

    max-width:700px;

    margin:auto;

    text-align:center;

}

.footer-logo{

    width:90px;

    margin:0 auto 20px;

}

.footer-content h3{

    font-size:32px;

    color:#fff;

    margin-bottom:12px;

}

.footer-text{

    color:#d7dce5;

    line-height:1.9;

    margin-bottom:35px;

}

.footer-contact{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.footer-contact a,

.footer-contact span{

    color:#fff;

    text-decoration:none;

    font-size:17px;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

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

    text-align:center;

}

.powered-by{

    margin-top:10px;

    color:#cfd8e3;

}

.powered-by a{

    color:#ffffff;

    font-weight:700;

    text-decoration:none;

}

.powered-by a:hover{

    color:#4EA5FF;

}

/*====================================
FLOATING BUTTONS
====================================*/
.floating-whatsapp,
.floating-call{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s ease;

}

.floating-whatsapp{

    bottom:100px;

    background:#25D366;

    color:#fff;

}

.floating-call{

    bottom:25px;

    background:#0B4EA2;

    color:#fff;

}

.floating-whatsapp svg,
.floating-call svg{

    width:28px;

    height:28px;

    stroke:currentColor;

}

.floating-whatsapp:hover,
.floating-call:hover{

    transform:scale(1.08);

}
/* ==========================
LAUNCH CARD ICON
========================== */

.icon{

    width:72px;
    height:72px;

    margin:0 auto 22px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#EEF5FF,#DCEBFF);

    transition:.3s ease;

}

.icon svg{

    width:34px;
    height:34px;

    color:#0B4EA2;

    stroke-width:2;

}

.launch-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    transition:.35s ease;

}

.launch-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(11,78,162,.12);

}

.launch-card:hover .icon{

    background:#0B4EA2;

}

.launch-card:hover .icon svg{

    color:#fff;

}

.launch-card h3{

    font-size:24px;

    color:#0B4EA2;

    margin-bottom:18px;

    font-weight:700;

}

.launch-card p{

    color:#666;

    line-height:1.8;

}
/* ==========================
FOOTER SOCIAL
========================== */

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s ease;

}

.footer-social a:hover{

    background:#0B4EA2;

    transform:translateY(-3px);

}

.footer-social svg{

    width:22px;

    height:22px;

}