/*=========================================================
    IQRAAMARK
    Premium Landing Page
=========================================================*/

/*=========================================================
    GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*=========================================================
    ROOT VARIABLES
=========================================================*/

:root{

    --primary:#2563EB;
    --primary-dark:#1D4ED8;
    --primary-light:#60A5FA;

    --secondary:#FBBF24;

    --success:#22C55E;
    --danger:#EF4444;

    --dark:#0F172A;
    --dark-light:#1E293B;

    --text:#64748B;
    --text-light:#94A3B8;

    --white:#FFFFFF;
    --light:#F8FAFC;
    --light-2:#F1F5F9;

    --border:#E2E8F0;

    --radius:18px;
    --radius-lg:30px;
    --radius-xl:50px;

    --shadow-sm:0 8px 25px rgba(15,23,42,.05);
    --shadow-md:0 15px 45px rgba(15,23,42,.08);
    --shadow-lg:0 25px 70px rgba(15,23,42,.12);

    --transition:.35s ease;

}

/*=========================================================
    RESET
=========================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}

body{

    font-family:'Outfit',sans-serif;

    font-size:16px;

    font-weight:400;

    line-height:1.7;

    color:var(--text);

    background:var(--white);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/*=========================================================
    COMMON
=========================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

ul,
ol{

    list-style:none;

    padding:0;

    margin:0;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

}

input,
textarea,
select{

    outline:none;

    box-shadow:none;

}

section{

    position:relative;

}

.container{

    max-width:1380px;

    padding-left:18px;

    padding-right:18px;

}

/*=========================================================
    TYPOGRAPHY
=========================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.2;

    margin-bottom:0;

}

h1{

    font-size:68px;

    font-weight:800;

}

h2{

    font-size:48px;

}

h3{

    font-size:30px;

}

p{

    margin-bottom:0;

}

/*=========================================================
    SECTION
=========================================================*/

.section-padding{

    padding:70px 0;

}

.section-title{

    margin-bottom:70px;

}

.section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:50px;

    background:#EEF4FF;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.section-title h2{

    font-size:50px;

    margin-bottom:18px;

}

.section-title p{

    max-width:650px;

    color:var(--text);

}

/*=========================================================
    BUTTONS
=========================================================*/

.theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:58px;

    padding:0 36px;

    border-radius:60px;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    color:#fff;

    font-weight:700;

    box-shadow:0 15px 40px rgba(37,99,235,.25);

    transition:var(--transition);

}

.theme-btn:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:0 20px 45px rgba(37,99,235,.35);

}

.theme-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:58px;

    padding:0 34px;

    border-radius:60px;

    border:2px solid var(--border);

    color:var(--dark);

    font-weight:700;

    transition:var(--transition);

}

.theme-btn-outline:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

/*=========================================================
    UTILITIES
=========================================================*/

.bg-light{

    background:var(--light);

}

.text-primary{

    color:var(--primary)!important;

}

.rounded-xl{

    border-radius:30px;

}

.shadow-card{

    box-shadow:var(--shadow-md);

}

/*=========================================================
    ANIMATIONS
=========================================================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes rotateSlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}



/*=========================================================
                    HEADER
=========================================================*/

/*=========================================
        STICKY HEADER
=========================================*/
/*=========================================================
                    HEADER
=========================================================*/

.main-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    transition:all .35s ease;

    box-shadow:0 8px 30px rgba(0,0,0,.06);

}

/* Header when scrolling */

.main-header.fixed{

    background:rgba(255,255,255,.98);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    animation:headerSlide .35s ease;

}

@keyframes headerSlide{

    from{

        opacity:0;

        transform:translateY(-100%);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================================
                    NAVBAR
=========================================================*/

.navbar{

    height:96px;

    padding:0;

    transition:all .35s ease;

}

.main-header.fixed .navbar{

    height:80px;

}

/*=========================================================
                    CONTAINER
=========================================================*/

.navbar>.container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*=========================================================
                    LOGO
=========================================================*/

.navbar-brand{

    padding:0;

    margin-right:60px;

    flex-shrink:0;

}

.navbar-brand img{

    height:120px;

    width:auto;

    transition:all .35s ease;

}

.main-header.fixed .navbar-brand img{

    height:110px;

}

/*=========================================================
                    MENU
=========================================================*/

.navbar-collapse{

    display:flex !important;

    align-items:center;

    flex:1;

}

.navbar-nav{

    margin:auto;

    gap:24px;

    align-items:center;

}

.nav-item{

    position:relative;

}

.nav-link{

    position:relative;

    padding:0 !important;

    font-size:16px;

    font-weight:600;

    color:var(--dark);

    transition:.3s;

}

.nav-link:hover,

.nav-link.active{

    color:var(--primary);

}

/* Underline */

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-12px;

    width:0;

    height:3px;

    background:var(--primary);

    border-radius:20px;

    transform:translateX(-50%);

    transition:.3s;

}

.nav-link:hover::after{

    width:24px;

}

.nav-link.active::after{

    width:30px;

}
/*=========================================================
                    DROPDOWN
=========================================================*/

.dropdown-menu{

    border:none;

    border-radius:20px;

    padding:14px;

    margin-top:28px;

    min-width:250px;

    box-shadow:0 25px 60px rgba(15,23,42,.12);

}

.dropdown-item{

    border-radius:12px;

    padding:13px 18px;

    font-size:15px;

    font-weight:500;

    transition:var(--transition);

}

.dropdown-item:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================================================
                    RIGHT SIDE
=========================================================*/

.nav-action{

    display:flex;

    align-items:center;

    gap:14px;

    margin-left:60px;

}

/* Login */

.btn-login{

    width:118px;

    height:50px;

    border-radius:60px;

    border:2px solid var(--border);

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    color:var(--dark);

    transition:var(--transition);

}

.btn-login:hover{

    background:#EEF5FF;

    border-color:#CFE0FF;

    color:var(--primary);

}

/* Register */

.btn-register{

    height:54px;

    padding:0 34px;

    border-radius:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    color:#fff;

    font-weight:700;

    background:linear-gradient(135deg,var(--primary),var(--primary-light));

    box-shadow:0 15px 35px rgba(37,99,235,.25);

    transition:var(--transition);

}

.btn-register:hover{

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================================
                    MOBILE
=========================================================*/

.navbar-toggler{

    border:none;

    padding:0;

    box-shadow:none!important;

}

.navbar-toggler:focus{

    box-shadow:none;

}




/*=========================================================
                    HIRING BANNER
=========================================================*/

/*=========================================================
                CAREER BANNER
=========================================================*/

.career-banner{

    position:relative;

    

    background:linear-gradient(135deg,#051A73 0%,#0A2F9B 45%,#0E56E9 100%);

    border-radius:35px;

    

    border:3px solid #FFD400;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(13,55,180,.30);

    margin:110px auto 40px;

    padding:22px 28px 48px;

    min-height:310px;

}

/* Inner Border */

.career-banner::before{

    content:"";

    position:absolute;

    inset:15px;

    border:2px solid rgba(255,212,0,.85);

    border-radius:28px;

    pointer-events:none;

}

/* Decorative Waves */

.career-banner::after{

    content:"";

    position:absolute;

    left:-50px;

    bottom:-40px;

    width:450px;

    height:180px;

    background:url("../images/wave-line.svg") no-repeat center;

    background-size:contain;

    opacity:.18;

}

/* Close */

.career-close{

    position:absolute;

    right:8px;

    top:8px;

    width:30px;

    height:30px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

    z-index:20;

}

.career-close:hover{

    background:#fff;

    color:#0B46D6;

    transform:rotate(90deg);

}

/* Layout */

.career-banner{

    display:grid;

grid-template-columns:

140px
1.2fr
250px
270px
290px;

gap:22px;
    align-items:center;

    gap:30px;

}

/* Megaphone */

.career-megaphone{

    display:flex;

    justify-content:center;

    align-items:center;

}


.career-megaphone img{

    width:185px;

    transform:rotate(-12deg);

    filter:drop-shadow(0 20px 35px rgba(0,0,0,.25));

    animation:float 4s ease-in-out infinite;

}
/* Title */

.career-title h2{

    font-size:72px;

    line-height:.95;

    font-weight:900;

    color:#fff;

    text-transform:uppercase;

}

.career-title h2 span{

    display:block;

    color:#FFD400;

}

.career-title p{

    margin-top:18px;

    color:rgba(255,255,255,.90);

    font-size:19px;

    line-height:1.6;

}

/* Vacancy Card */

.vacancy-card{

    background:linear-gradient(#FFD93A,#FFBE00);

    border-radius:28px;

    padding:30px;

    text-align:center;

    box-shadow:

    0 0 0 4px rgba(255,255,255,.25),

    0 20px 40px rgba(0,0,0,.18);

}

.vacancy-card h1{

    font-size:100px;

    line-height:1;

    color:#06206B;

    font-weight:900;

}

.vacancy-card span{

    display:block;

    margin-top:10px;

    font-size:28px;

    font-weight:800;

    color:#06206B;

}

/* Right */

.career-details{

    color:#fff;

}

.freshers-pill{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#FFD400;

    color:#111;

    padding:14px 24px;

    border-radius:50px;

    font-weight:800;

    margin-bottom:22px;

    box-shadow:0 10px 25px rgba(255,212,0,.35);

}

.career-details p{

    font-size:20px;

    margin-bottom:18px;

}

.career-details strong{

    font-size:28px;

    color:#FFD400;

}

/* Locations */

.career-location{

    border-left:2px solid rgba(255,255,255,.18);

    padding-left:30px;

}

.career-location h5{

    color:#fff;

    margin-bottom:10px;

    font-size:19px;

    font-weight:800;

}

.career-location li{

    color:#fff;

    margin-bottom:10px;

    font-size:20px;

}

.career-location i{

    color:#FFD400;

    width:22px;

}

/* CTA */

.career-btn{

    position: absolute;
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
    min-width: 422px;
    height: 41px;
    background: #fff;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #1238B9;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    transition: .35s;
}

.career-btn:hover{

    transform:translateX(-50%) translateY(-5px);

    color:#1238B9;

}

.career-btn i{

    font-size:15px;

}

/* Sparkles */

.spark{

    position:absolute;

    color:#FFD400;

    animation:float 4s ease-in-out infinite;

}

.spark1{

    top:70px;

    left:41%;

    font-size:22px;

}

.spark2{

    top:130px;

    left:38%;

    font-size:18px;

}

.career-banner{

    transition:all .4s ease;

}

.career-banner.hide{

    opacity:0;

    transform:translateY(-20px);

}

.career-banner{

    overflow:hidden;

}



/*=========================================================
                    CONTENT
=========================================================*/

.banner-left{

    position:relative;

    z-index:2;

    max-width:520px;

}

.banner-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border-radius:50px;

    color:#fff;

    font-size:14px;

    font-weight:700;

    margin-bottom:22px;

}

.banner-tag i{

    color:#FFD84D;

}

.banner-left h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:18px;

}

.banner-left p{

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.8;

}

/*=========================================================
                    GRID
=========================================================*/

.banner-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:35px;

}

.banner-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:22px;

    padding:26px 18px;

    text-align:center;

    transition:.35s;

}

.banner-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.banner-card h3{

    color:#FFD84D;

    font-size:34px;

    font-weight:800;

    margin-bottom:10px;

}

.banner-card span{

    color:#fff;

    font-size:15px;

    font-weight:600;

}

/*=========================================================
                    BUTTON
=========================================================*/

.banner-action{

    margin-top:35px;

}

.banner-action .theme-btn{

    background:#fff;

    color:var(--primary);

    box-shadow:none;

}

.banner-action .theme-btn:hover{

    background:#F8FAFC;

    color:var(--primary);

}

/*=========================================================
                    FLOATING ICONS
=========================================================*/

.banner-circle{

    position:absolute;

    border-radius:50%;

    animation:float 5s ease-in-out infinite;

}

.circle-1{

    width:18px;

    height:18px;

    background:#FFD84D;

    right:260px;

    top:70px;

}

.circle-2{

    width:12px;

    height:12px;

    background:#fff;

    right:120px;

    bottom:120px;

}

.circle-3{

    width:26px;

    height:26px;

    background:rgba(255,255,255,.15);

    left:45%;

    top:40px;

}







/*=========================================================
                    HERO SECTION
=========================================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    background:#fff;

    /* padding:60px 0 100px; */
    padding:60px 0 27px;

}

/*==================================================
        Background
==================================================*/

.hero-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,#E7F1FF 0%,transparent 70%);

    right:-250px;

    top:-220px;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,#F4F9FF 0%,transparent 70%);

    left:-150px;

    bottom:-180px;

}

/*==================================================
        Left
==================================================*/

.hero-content{

    position:relative;

    z-index:5;

    max-width:610px;
    margin-left:-57px;

}

/* Badge */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#EEF5FF;

    color:#2463EB;

    padding:12px 22px;

    border-radius:60px;

    font-size:15px;

    font-weight:700;

    margin-bottom:28px;

}

.hero-badge i{

    font-size:18px;

}

/* Heading */

.hero-content h1{

    font-size:69px;

    font-weight:900;

    line-height:.95;

    color:#081C54;

    margin-bottom:24px;

    letter-spacing:-2px;

}

.hero-content h1 span{

    display:block;

    color:#2563EB;

}

/* Subtitle */

.hero-subtitle{

    margin-bottom:22px;

    font-size:34px;

    font-weight:700;

}

.hero-subtitle .hero-subtitle-blue{

    color:#2B74FF;

}

.hero-subtitle .hero-subtitle-green{

    color:#13A26B;

}

.hero-subtitle .hero-subtitle-orange{

    color:#F4A200;

}

/* Paragraph */

.hero-content p{

    max-width:560px;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

}

/*==================================================
        Buttons
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    /* margin-bottom:55px; */

}

.theme-btn{

    height:60px;

    padding:0 38px;

    border-radius:60px;

    background:linear-gradient(135deg,#0B63F6,#3D8EFF);

    color:#fff;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

    box-shadow:0 20px 40px rgba(11,99,246,.25);

}

.theme-btn:hover{

    color:#fff;

    transform:translateY(-5px);

}

.btn-yellow{

    height:60px;

    padding:0 34px;

    border-radius:60px;

    background:#FFC928;

    color:#111;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.btn-yellow:hover{

    transform:translateY(-5px);

    color:#111;

}




/* Video */

.hero-video{

    display:flex;

    align-items:center;

    gap:14px;

    color:#081C54;

    font-weight:700;

}

.hero-video span{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#2463EB;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.hero-video:hover span{

    transform:scale(1.08);

}

.hero-video-btn{

    display:flex;

    align-items:center;

    gap:16px;

    text-decoration:none;

}

.video-icon{

    width:64px;

    height:64px;

    border-radius:50%;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#2563EB;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.video-content{

    display:flex;

    flex-direction:column;

}

.video-content span{

    font-size:20px;

    font-weight:700;

    color:#081C54;

    line-height:1.2;

}

.video-content small{

    font-size:14px;

    color:#6B7280;

    margin-top:4px;

}

.hero-video-btn:hover .video-icon{

    background:#2563EB;

    color:#fff;

    transform:scale(1.08);

}



/*==================================================
        Stats
==================================================*/

.hero-stats{

    display:flex;

    gap:18px;

}

.stat-box{

    background:#fff;

    width:155px;

    text-align:center;

    padding:24px;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h3{

    color:#2463EB;

    font-size:42px;

    font-weight:800;

    margin-bottom:8px;

}

.stat-box span{

    color:#64748B;

    font-size:15px;

}

/*=========================================================
                HERO RIGHT SIDE
=========================================================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:720px;

    margin-right:-78px; 

}

/* Main Illustration */

.hero-art{

    

    position:relative;

    z-index:5;

    animation:heroFloat 6s ease-in-out infinite;

    width:115%;

    max-width:950px;

    margin-left:-40px;


}

@keyframes heroFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/*=========================================
        Decorative Glow
=========================================*/

.hero-right::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(37,99,235,.18) 0%,
    rgba(37,99,235,.05) 45%,
    transparent 75%);

    top:60px;

    left:50%;

    transform:translateX(-50%);

    z-index:1;

}

/*=========================================
        Decorative Circle
=========================================*/

.hero-right::after{

    content:"";

    position:absolute;

    width:720px;

    height:720px;

    border:2px dashed #CFE0FF;

    border-radius:50%;

    left:50%;

    /* top:-20px; */

    transform:translateX(-50%);

    z-index:2;

}

/*=========================================================
                AI CARD
=========================================================*/

.hero-ai-box{

    position:absolute;
    right:0;
    top:80px;

    width:255px;

    /* top right bottom left */
    padding:20px 20px 20px 35px;

    border-radius:35px 35px 0 35px;

    background:linear-gradient(180deg,#2D74FF,#0B4AD8);

    color:#fff;

    box-shadow:0 30px 60px rgba(0,0,0,.18);

    z-index:20;

}

.hero-ai-box h3{

    color:#fff;

    font-size:20px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:22px;

}

.hero-ai-box ul{

    margin:0;

    padding:0;

}

.hero-ai-box li{

    list-style:none;

    margin-bottom:5px;

    color:#fff;

    font-size:15px;

}

.hero-ai-box li i{

    color:#FFD33B;

    margin-right:10px;

}

/*=========================================================
                FLOATING BADGES
=========================================================*/

.hero-float{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:16px 22px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

    z-index:15;

    transition:.35s;

}

.hero-float:hover{

    transform:translateY(-6px);

}

.hero-float i{

    width:54px;

    height:54px;

    border-radius:16px;

    background:linear-gradient(135deg,#2A74FF,#4A9BFF);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

}

.hero-float strong{

    display:block;

    color:#081C54;

    font-size:17px;

}

.hero-float span{

    color:#64748B;

    font-size:14px;

}

/* Positions */

.float-1{

    left:10px;

    top:120px;

}

.float-2{

    right:-10px;

    top:320px;

}

.float-3{

    left:40px;

    bottom:110px;

}

/*=========================================================
                STARS
=========================================================*/

.star{

    position:absolute;

    color:#FFC928;

    animation:starFloat 4s ease-in-out infinite;

    z-index:12;

}

.star.one{

    top:120px;

    left:180px;

    font-size:22px;

}

.star.two{

    top:260px;

    right:250px;

    font-size:18px;

}

.star.three{

    bottom:180px;

    left:120px;

    font-size:16px;

}

@keyframes starFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}


/*=========================================================
                HERO FEATURE STRIP
=========================================================*/

.hero-feature-strip{

    position:relative;

    z-index:20;

    margin-top:-15px;

    background:#fff;

    border-radius:22px;

    padding:16px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:18px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/*=========================================
        Feature Item
=========================================*/

.feature-item{

    display:flex;

    align-items:center;

    gap:14px;

    flex:1;

    transition:.35s;

    cursor:pointer;

}

.feature-item:hover{

    transform:translateY(-4px);

}

/* Icon */

.feature-item img{

    width:46px;

    height:46px;

    object-fit:contain;

    flex-shrink:0;

}

/* Text */

.feature-item strong{

    display:block;

    color:#081C54;

    font-size:15px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:3px;

}

.feature-item span{

    display:block;

    color:#5F6F89;

    font-size:14px;

    line-height:1.2;

}

/* Divider */

.feature-item:not(:last-child){

    border-right:1px solid #EEF2F8;

    padding-right:18px;

}

/* Hover */

.feature-item:hover strong{

    color:#2563EB;

}

.feature-item:hover img{

    transform:scale(1.08);

    transition:.35s;

}


/*=========================================================
                STATS STRIP
=========================================================*/

.stats-strip{

    background:linear-gradient(90deg,#0C4FD5,#0A3DB5);

    padding:15px 0;

    position:relative;

    overflow:hidden;

}

.stats-strip::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("images/pattern-dot.png");

    opacity:.06;

}

.stats-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    position:relative;

    z-index:2;

}

.stat-item{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    position:relative;

}

.stat-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-10px;

    width:1px;

    height:60px;

    background:rgba(255,255,255,.18);

}

.stat-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:26px;

    transition:.35s;

}

.stat-item:hover .stat-icon{

    background:#FFD54A;

    color:#0A43C8;

    transform:rotate(10deg);

}

.stat-content h3{

    color:#fff;

    font-size:18px;

    font-weight:800;

    line-height:1;

    margin-bottom:8px;

}

.stat-content p{

    color:rgba(255,255,255,.9);

    font-size:14px;

    font-weight:500;

}

/*=========================================
        HERO IMPROVEMENTS
=========================================*/

.hero-content p{

    max-width:620px;

}

.hero-ai-box{

    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(14px);

}

.hero-ai-box ul{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.hero-ai-box li{

    display:flex;
    align-items:flex-start;
    line-height:1.5;

}

.hero-ai-box li i{

    margin-top:4px;
    flex-shrink:0;

}

.hero-feature-strip{

    box-shadow:0 25px 60px rgba(15,23,42,.08);

}

.feature-item{

    transition:.35s ease;

}

.feature-item:hover{

    transform:translateY(-6px);

}

.hero-video-btn:hover .video-content span{

    color:#2563EB;

}

.hero-buttons{

    margin-top:8px;

}

.hero-badge{

    letter-spacing:.3px;

}

/*=========================================================
                    ABOUT SECTION
=========================================================*/

.about-section{
    position:relative;
    overflow:hidden;
    background:#F8FBFF;
}

/* Left */

.about-image-wrapper{
    position:relative;
    max-width:650px;
    margin:auto;
}

.about-main-image{
    width:100%;
    display:block;
}

/* Floating Cards */

.about-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    padding:18px 22px;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    transition:.35s;
    z-index:5;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card i{
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
}

.card-one i{
    background:#FFF2F2;
    color:#FF5A63;
}

.card-two i{
    background:#ECFFF7;
    color:#19C37D;
}

.card-three{
    right:-35px;
    top:18%;
}

.card-four{
    right:-20px;
    bottom:8%;
}

/* Icon Colors */

.card-three i{
    background:#EEF5FF;
    color:#2563EB;
}

.card-four i{
    background:#F4F0FF;
    color:#7C3AED;
}

/* Card Text */

.about-card strong{
    display:block;
    font-size:19px;
    color:#081C54;
    margin-bottom:5px;
}

.about-card span{
    font-size:15px;
    color:#64748B;
}

/* Position */

.card-one{
    left:-35px;
    top:55%;
}

.card-two{
    left:40px;
    bottom:-30px;
}

/* Right */

.about-section .section-subtitle{
    margin-bottom:20px;
}

.about-section h2{
    font-size:50px;
    line-height:1.05;
    font-weight:800;
    color:#081C54;
    margin-bottom:25px;
}

.about-section h2 span{
    display:block;
    color:#2563EB;
}

.about-text{
    font-size:18px;
    line-height:1.9;
    color:#64748B;
    margin-bottom:40px;
}

/* Feature List */

.about-features{
    display:grid;
    gap:24px;
}

.about-feature{
    display:flex;
    gap:18px;
}

.about-feature i{
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:18px;
    background:#EEF5FF;
    color:#2563EB;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

/* Changed from h5 to h3 */

.about-feature h3{
    font-size:18px;
    line-height:1.4;
    font-weight:700;
    color:#081C54;
    margin:0 0 8px;
}

.about-feature p{
    font-size:18px;
    line-height:1.7;
    color:#64748B;
    margin:0;
}

/* Buttons */

.about-section .hero-buttons{
    margin-top:45px;
}


/*=========================================
            WHY US SECTION
=========================================*/
.why-us-section{
    padding:100px 0;
    background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);
}

/*=========================================
        SECTION TITLE
=========================================*/

.why-us-section .section-title{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.why-us-section .section-subtitle{
    display:inline-flex;
    align-items:center;
    background:#EEF7FF;
    color:var(--primary);
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    margin-bottom:20px;
}

.why-us-section .section-title h2{
    font-size:52px;
    font-weight:800;
    color:#081C54;
    margin-bottom:12px;
    line-height:1.2;
}

.why-us-section .section-title h2 span{
    color:var(--primary);
}

.section-heading{
    font-size:24px;
    color:#1E3A8A;
    font-weight:700;
    margin-bottom:18px;
}

.why-us-section .section-title p{
    max-width:760px;
    margin:auto;
    color:#64748B;
    font-size:18px;
    line-height:1.9;
}

/*=========================================
        GRID
=========================================*/

.why-us-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

/*=========================================
        CARD
=========================================*/

.why-box{

    background:#fff;
    border:1px solid #E9EEF5;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.why-box:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    border-color:#D6E7FF;

}

/*=========================================
        ICON
=========================================*/

.why-icon{

    width:78px;
    height:78px;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin:0 auto 22px;
    transition:.35s;

}

.why-box:hover .why-icon{

    transform:rotate(-6deg) scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.why-box h5{

    color:#081C54;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;

}

.why-box p{

    color:#64748B;
    font-size:15px;
    line-height:1.7;
    margin:0;

}

/*=========================================
        ICON COLORS
=========================================*/

.why-icon-green{
    background:#EAFBF3;
    color:#16A34A;
}

.why-icon-blue{
    background:#EEF4FF;
    color:#2563EB;
}

.why-icon-orange{
    background:#FFF6E7;
    color:#F59E0B;
}

.why-icon-red{
    background:#FFF1F2;
    color:#EF4444;
}

.why-icon-purple{
    background:#F3F0FF;
    color:#7C3AED;
}

.why-icon-violet{
    background:#F6ECFF;
    color:#9333EA;
}



/*=========================================
        OUR PROGRAMS
=========================================*/
.programs-section{

    padding:100px 0;
    background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

}

/*=========================================
        SECTION TITLE
=========================================*/

.programs-section .section-title{

    max-width:900px;
    margin:0 auto 65px;

}

.programs-section .section-subtitle{

    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    background:#EEF6FF;
    border-radius:50px;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
    margin-bottom:20px;

}

.programs-section .section-title h2{

    font-size:52px;
    font-weight:800;
    color:#081C54;
    line-height:1.2;
    margin-bottom:12px;

}

.programs-section .section-title h2 span{

    color:var(--primary);

}

.section-heading{

    font-size:24px;
    font-weight:700;
    color:#2563EB;
    margin-bottom:18px;

}

.programs-section .section-title p{

    max-width:760px;
    margin:auto;
    color:#64748B;
    line-height:1.9;
    font-size:18px;

}

/*=========================================
        CARD
=========================================*/

.program-card{

    background:#fff;
    border-radius:26px;
    overflow:hidden;
    border:1px solid #E7EEF7;
    transition:.35s;
    height:100%;
    box-shadow:0 15px 35px rgba(15,23,42,.06);

}

.program-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(15,23,42,.12);

}

.green{

    border-top:6px solid #16A34A;

}

.orange{

    border-top:6px solid #F59E0B;

}

.blue{

    border-top:6px solid #2563EB;

}

/*=========================================
        IMAGE
=========================================*/

.program-image{

    height:260px;
    overflow:hidden;
    background:#F8FBFF;

}

.program-image img{

    width:100%;
    height:100%;
    object-fit:contain;
    transition:.45s;

}

.program-card:hover img{

    transform:scale(1.08);

}

/*=========================================
        CONTENT
=========================================*/

.program-content{

    padding:30px;

}

.program-age{

    display:inline-block;
    font-size:15px;
    font-weight:700;
    padding:7px 16px;
    border-radius:50px;
    margin-bottom:15px;

}

.green .program-age{

    background:#EAFBF3;
    color:#16A34A;

}

.orange .program-age{

    background:#FFF6E7;
    color:#F59E0B;

}

.blue .program-age{

    background:#EEF4FF;
    color:#2563EB;

}

.program-content h3{

    font-size:28px;
    color:#081C54;
    font-weight:800;
    margin-bottom:15px;

}

.program-content p{

    color:#64748B;
    line-height:1.8;
    margin-bottom:22px;

}

.program-content ul{

    list-style:none;
    padding:0;
    margin:0 0 28px;

}

.program-content li{

    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:#475569;

}

.program-content li::before{

    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#16A34A;
    font-weight:700;

}

/*=========================================
        BUTTON
=========================================*/

.program-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.3s;

}

.green .program-btn{

    background:#16A34A;

}

.orange .program-btn{

    background:#F59E0B;

}

.blue .program-btn{

    background:#2563EB;

}

.program-btn:hover{

    color:#fff;
    transform:translateX(6px);

}



/*=========================================
        SUCCESS STORIES
=========================================*/

.success-section{

    background:#fff;

}

.review-card{

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:22px;

    padding:24px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.review-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(37,99,235,.12);

}

.review-left img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #F3F7FF;

}

.review-content{

    flex:1;

}

.review-content p{

    font-size:15px;

    line-height:1.7;

    color:#5F6F89;

    margin-bottom:18px;

}

.review-content h5{

    font-size:20px;

    color:#081C54;

    margin-bottom:3px;

}

.review-content span{

    display:block;

    color:#64748B;

    font-size:14px;

    margin-bottom:12px;

}

.review-stars{

    color:#FFC107;

    display:flex;

    gap:4px;

    font-size:15px;

}

.success-section .section-title{
    width:100%;
    max-width:1200px;
    margin:0 auto 60px;
    text-align:center;
}

.success-section .section-subtitle{
    display:inline-flex;
    margin:0 auto 18px;
}

.success-section .section-title h2{
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

.success-section .section-title p{
    max-width:900px;      /* increase width */
    width:100%;
    margin:24px auto 0;
    text-align:center;
    line-height:1.8;
    color:#64748B;
}

/*=========================================
            FOOTER
=========================================*/
/*=========================================
            FOOTER
=========================================*/

.footer-section{

    background:linear-gradient(180deg,#081C54 0%,#05173F 100%);
    color:#fff;
    padding:80px 0 0;
    position:relative;
    overflow:hidden;

}

.footer-section::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(37,99,235,.08);
    top:-180px;
    right:-150px;

}

.footer-section::after{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
    bottom:-160px;
    left:-120px;

}

/*=========================================
            ABOUT
=========================================*/

.footer-about{

    position:relative;
    z-index:2;

}

.footer-logo img{

    width:240px;
    height:auto;
    display:block;
    margin-bottom:15px;

}

.logo-tagline{

    display:flex;
    flex-wrap:wrap;
    gap:4px;
    margin-bottom:20px;

    font-size:22px;
    font-weight:800;

}

.tag-discover{

    color:#39A9FF;

}

.tag-develop{

    color:#FFD54A;

}

.tag-succeed{

    color:#7ED957;

}

.footer-about p{

    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:30px;
    max-width:420px;

}

/*=========================================
            SOCIAL
=========================================*/

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:#2563EB;

    transform:translateY(-5px);

}

.tooltip-inner{
    background:#2563EB;
    color:#fff;
    font-weight:600;
    padding:8px 14px;
    border-radius:8px;
}

.bs-tooltip-top .tooltip-arrow::before{
    border-top-color:#2563EB !important;
}
/*=========================================
            WIDGET
=========================================*/

.footer-widget{

    position:relative;
    z-index:2;

}

.footer-widget h4{

    color:#fff;

    font-size:22px;

    margin-bottom:24px;

    font-weight:700;

}

.footer-widget ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-widget ul li{

    margin-bottom:14px;

}

.footer-widget ul li a{

    color:rgba(255,255,255,.75);

    transition:.35s;

}

.footer-widget ul li a:hover{

    color:#fff;

    padding-left:6px;

}

/*=========================================
            CONTACT
=========================================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

}

.footer-contact i{

    width:18px;

    color:#49A3FF;

    margin-top:5px;

}

.footer-contact span,
.footer-contact a{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}

/*=========================================
            NEWSLETTER
=========================================*/

.newsletter-text{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:20px;

}

.newsletter-form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.newsletter-form input{

    height:54px;

    border:none;

    outline:none;

    border-radius:12px;

    padding:0 18px;

    background:#fff;

    color:#081C54;

}

.newsletter-form button{

    height:54px;

    border:none;

    border-radius:12px;

    background:#2563EB;

    color:#fff;

    font-weight:700;

    transition:.35s;

}

.newsletter-form button:hover{

    background:#1D4ED8;

}

/*=========================================
            APP
=========================================*/

.footer-app{

    margin-top:35px;

}

.footer-app h5{

    color:#fff;

    font-size:18px;

    margin-bottom:18px;

}

.app-buttons{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.store-btn{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 18px;

    background:#fff;

    border-radius:14px;

    transition:.35s;

}

.store-btn:hover{

    transform:translateY(-4px);

}

.store-btn i{

    font-size:30px;

    color:#2563EB;

}

.store-btn small{

    display:block;

    color:#6B7280;

    font-size:11px;

}

.store-btn strong{

    color:#081C54;

    font-size:16px;

}

/*=========================================
            BOTTOM
=========================================*/

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

}

.footer-bottom-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.copyright{

    color:rgba(255,255,255,.7);

}

.footer-policy{

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-policy span{

    color:rgba(255,255,255,.35);

}

.footer-policy a{

    color:rgba(255,255,255,.7);

    transition:.35s;

}

.footer-policy a:hover{

    color:#fff;

}
/*=========================================
        FLOATING WHATSAPP
=========================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:62px;

    height:62px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 12px 35px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

    color:#fff;

    background:#1EBE5D;

    transform:translateY(-6px) scale(1.05);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.5);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}


/*=========================================
        POPULAR COURSES
=========================================*/
/*=========================================
        POPULAR COURSES
=========================================*/

.courses-section{
    padding:20px 0 80px;
    background:linear-gradient(180deg,#F8FBFF 0%,#ffffff 100%);
}

.courses-wrapper{

    background:#fff;
    border-radius:32px;
    padding:65px;
    display:grid;
    grid-template-columns:430px 1fr;
    gap:60px;
    align-items:center;
    box-shadow:0 20px 70px rgba(15,23,42,.08);
    position:relative;
    overflow:hidden;

}

.courses-wrapper::before{

    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:260px;
    height:260px;
    background:rgba(37,99,235,.05);
    border-radius:50%;

}

.courses-content{

    position:relative;
    z-index:2;

}

.courses-content h2{

    font-size:50px;
    line-height:1.15;
    color:#081C54;
    font-weight:800;
    margin:18px 0 22px;

}

.courses-content h2 span{

    color:#2563EB;
    display:block;

}

.courses-content p{

    font-size:17px;
    line-height:1.9;
    color:#64748B;
    margin-bottom:30px;

}

.courses-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    position:relative;
    z-index:2;

}

.course-item{

    background:#fff;
    border:1px solid #E8EEF9;
    border-radius:18px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:16px;
    transition:.35s ease;
    cursor:pointer;
    min-height:100px;

}

.course-item:hover{

    transform:translateY(-8px);
    border-color:#2563EB;
    background:#2563EB;
    box-shadow:0 18px 40px rgba(37,99,235,.18);

}

.course-item i{

    width:60px;
    height:60px;
    border-radius:16px;
    background:#EEF4FF;
    color:#2563EB;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s;

}

.course-item span{

    font-size:17px;
    font-weight:700;
    color:#081C54;
    line-height:1.4;
    transition:.35s;

}

.course-item:hover i{

    background:#fff;
    color:#2563EB;
    transform:rotate(-8deg);

}

.course-item:hover span{

    color:#fff;

}

/*=========================================
        FINAL CTA
=========================================*/

.final-cta-section{

    padding:90px 0;
    background:#F8FBFF;

}

.final-cta{

    position:relative;
    overflow:hidden;

    display:grid;
    grid-template-columns:1.8fr 1fr;
    gap:55px;
    align-items:center;

    padding:70px;

    border-radius:32px;

    background:linear-gradient(135deg,#0B2C78 0%,#2563EB 100%);

    box-shadow:0 25px 60px rgba(37,99,235,.22);

}

.final-cta::before{

    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-170px;
    top:-220px;
    border-radius:50%;
    background:rgba(255,255,255,.06);

}

.final-cta::after{

    content:"";
    position:absolute;
    width:220px;
    height:220px;
    left:-80px;
    bottom:-80px;
    border-radius:50%;
    background:rgba(255,216,77,.12);

}

.cta-content{

    position:relative;
    z-index:2;

}

.cta-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 20px;

    background:rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#fff;

    font-weight:600;

}

.cta-badge i{

    color:#FFD84D;

}

.cta-content h2{

    margin:25px 0;

    font-size:56px;
    line-height:1.08;

    color:#fff;

    font-weight:800;

}

.cta-content h2 span{

    display:block;
    color:#FFD84D;

}

.cta-content p{

    max-width:640px;

    font-size:18px;
    line-height:1.9;

    color:rgba(255,255,255,.90);

    margin-bottom:38px;

}

.cta-buttons{

    display:flex;
    gap:18px;

}

/*======================
        RIGHT
======================*/

.cta-right{

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    gap:22px;

}

.contact-box,
.download-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:24px;

    padding:28px;

}

.contact-box{

    display:flex;
    align-items:center;
    gap:18px;

}

.contact-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:#FFD84D;

    color:#0B2C78;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

}

.contact-box small{

    color:#D7E7FF;

    font-size:14px;

}

.contact-box h4{

    margin-top:6px;

    color:#fff;

    font-size:26px;

    font-weight:700;

}

.download-box h5{

    color:#fff;

    font-size:22px;

    margin-bottom:20px;

}

.store-buttons{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.store-btn{

    display:flex;
    align-items:center;
    gap:16px;

    padding:15px 18px;

    border-radius:18px;

    background:#fff;

    transition:.35s;

}

.store-btn:hover{

    transform:translateY(-4px);

}

.store-btn i{

    font-size:32px;

    color:#2563EB;

}

.store-btn small{

    display:block;

    color:#64748B;

    font-size:11px;

}

.store-btn strong{

    color:#081C54;

    font-size:17px;

}


/*=========================================
        AI TALENT TEST
=========================================*/
/*=========================================
        AI TALENT TEST
=========================================*/

.ai-test-section{

    background:linear-gradient(180deg,#F8FBFF 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;

}

.ai-test-content h2{

    font-size:52px;
    font-weight:800;
    color:#081C54;
    line-height:1.15;
    margin:18px 0 24px;

}

.ai-test-content h2 span{

    display:block;
    color:#2563EB;

}

.ai-test-content p{

    font-size:17px;
    line-height:1.9;
    color:#64748B;
    max-width:520px;

}

.ai-process h3{

    font-size:32px;
    font-weight:800;
    color:#081C54;
    margin-bottom:35px;

}

.process-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;

}

.process-item{

    background:#fff;
    border:1px solid #E8EEF9;
    border-radius:22px;
    padding:28px;
    transition:.35s;
    height:100%;
    box-shadow:0 12px 35px rgba(15,23,42,.05);

}

.process-item:hover{

    transform:translateY(-8px);
    border-color:#2563EB;
    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.process-icon{

    width:72px;
    height:72px;
    border-radius:20px;
    background:#EEF4FF;
    color:#2563EB;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    transition:.35s;

}

.process-item:hover .process-icon{

    background:#2563EB;
    color:#fff;
    transform:rotate(-8deg);

}

.process-item h5{

    font-size:22px;
    color:#081C54;
    margin-bottom:12px;
    font-weight:700;

}

.process-item p{

    color:#64748B;
    line-height:1.8;
    margin:0;
    font-size:15px;

}


/*=========================================
        BUTTON
=========================================*/

.ai-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:35px;
    padding:16px 40px;
    border-radius:60px;
    background:linear-gradient(135deg,#2563EB,#4F8DF8);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.ai-btn:hover{

    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(37,99,235,.35);

}

.ai-btn i{

    transition:.3s;

}

.ai-btn:hover i{

    transform:translateX(5px);

}

.download-box{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    border-radius:22px;

    padding:28px;

}

.download-box h5{

    color:#fff;

    margin-bottom:18px;

    font-size:20px;

}

.app-download-links{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.app-download-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.app-download-btn:hover{

    background:#fff;

    color:#2563EB;

}

.app-download-btn i{

    font-size:20px;

}

/* ###################------------------About Page-------########### */

/*=========================================
        ABOUT HERO
=========================================*/
/*=========================================
        ABOUT HERO
=========================================*/

.about-hero{

    padding:170px 0 100px;

    background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

    overflow:hidden;

    position:relative;

}

.about-hero::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    top:-220px;
    right:-180px;

}

.about-hero-content{

    position:relative;
    z-index:2;

}

.about-hero-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    color:#081C54;

    margin:22px 0 25px;

}

.about-hero-content h1 span{

    display:block;

    color:#2563EB;

}

.about-hero-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    max-width:620px;

    margin-bottom:40px;

}

.about-hero-image{

    text-align:center;

    position:relative;

}

.about-hero-image img{

    max-width:100%;

    width:90%;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}




/*=========================================
        OUR STORY
=========================================*/


.our-story{

    background:#fff;

}

.story-image{

    text-align:center;

}

.story-image img{

    width:100%;

    max-width:480px;

    animation:floatImage 5s ease-in-out infinite;

}

.story-content h2{

    font-size:52px;

    font-weight:800;

    color:#081C54;

    line-height:1.15;

    margin:20px 0 25px;

}

.story-content h2 span{

    display:block;

    color:#2563EB;

}

.story-content p{

    font-size:17px;

    color:#64748B;

    line-height:1.9;

    margin-bottom:22px;

}

.story-highlight{

    margin-top:35px;

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:28px;

    background:#F8FBFF;

    border-left:5px solid #2563EB;

    border-radius:18px;

}

.story-highlight i{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.story-highlight h5{

    color:#081C54;

    font-size:22px;

    margin-bottom:10px;

}

.story-highlight p{

    margin:0;

    color:#64748B;

}
/*=========================================
        OUR JOURNEY
=========================================*/

.journey-section{

    background:#F8FBFF;

    overflow:hidden;

}

.journey-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    align-items:stretch;

}

.journey-line{

    position:absolute;

    top:42px;

    left:12%;

    width:76%;

    height:4px;

    background:linear-gradient(90deg,#2563EB,#60A5FA);

    z-index:1;

}

.journey-item{

    position:relative;

    z-index:2;

    display:flex;

    flex-direction:column;

    height:100%;

}

.journey-year{

    width:84px;

    height:84px;

    margin:0 auto;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.journey-year.blue{

    background:#2563EB;

}

.journey-year.green{

    background:#16A34A;

}

.journey-year.orange{

    background:#F59E0B;

}

.journey-card{

    margin-top:35px;

    background:#fff;

    padding:35px 28px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    flex:1;

    min-height:320px;

}

.journey-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.15);

}

.journey-card i{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:24px;

    flex-shrink:0;

}

.journey-card h4{

    font-size:28px;

    font-weight:700;

    color:#081C54;

    line-height:1.3;

    margin-bottom:18px;

    min-height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.journey-card p{

    color:#64748B;

    font-size:17px;

    line-height:1.8;

    margin:0;

    flex:1;

    display:flex;

    align-items:flex-start;

    justify-content:center;

}

.section-title p{

    max-width:760px;

    margin:20px auto 0;

    text-align:center;

    font-size:18px;

    line-height:1.8;

    color:#64748B;

}

/*=========================================
        MISSION & VISION
=========================================*/


.mission-vision{

    background:#F8FBFF;

}

.mv-wrapper{

    margin-top:60px;

    display:grid;

    grid-template-columns:1fr 70px 1fr;

    align-items:center;

    gap:35px;

}

.mv-box{

    background:#fff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 20px 45px rgba(15,23,42,.06);

    border:1px solid #E8EEF8;

    transition:.35s;

    height:100%;

}

.mv-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.mv-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.mission-icon{

    background:#EEF5FF;

    color:#2563EB;

}

.vision-icon{

    background:#FFF4E5;

    color:#F59E0B;

}

.mv-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#EEF5FF;

    color:#2563EB;

    font-weight:700;

    margin-bottom:18px;

}

.vision-tag{

    background:#FFF4E5;

    color:#F59E0B;

}

.mv-box h3{

    font-size:30px;

    color:#081C54;

    margin-bottom:18px;

    line-height:1.35;

}

.mv-box p{

    color:#64748B;

    font-size:17px;

    line-height:1.9;

    margin:0;

}

.mv-divider{

    display:flex;

    justify-content:center;

    align-items:center;

}

.mv-divider span{

    width:4px;

    height:260px;

    border-radius:20px;

    background:linear-gradient(#2563EB,#60A5FA);

}

/*=========================================
        CORE VALUES
=========================================*/


.values-section{

    background:#fff;
    position:relative;
    overflow:hidden;

}

.values-section::before{

    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(37,99,235,.04);
    top:-180px;
    right:-140px;

}

.values-section::after{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(245,158,11,.05);
    bottom:-150px;
    left:-120px;

}

.value-box{

    position:relative;

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:22px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    overflow:hidden;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;

}

.value-box::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:#2563EB;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.value-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.value-box:hover::before{

    transform:scaleX(1);

}

/*=========================================
            ICON
=========================================*/

.value-icon{

    width:74px;

    height:74px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin:0 auto 22px;

}
.value-blue{

    background:#EEF5FF;

    color:#2563EB;

}

.value-purple{

    background:#F4F0FF;

    color:#7C3AED;

}

.value-green{

    background:#EAFBF3;

    color:#16A34A;

}

.value-orange{

    background:#FFF7E8;

    color:#F59E0B;

}

.value-red{

    background:#FFF1F2;

    color:#EF4444;

}

.cyan{

    background:#EAFBFF;

    color:#06B6D4;

}

/*=========================================
            CONTENT
=========================================*/

.value-box h3{

    font-size:26px;

    font-weight:700;

    color:#081C54;

    margin-bottom:16px;

    line-height:1.3;

}

.value-box p{

    color:#64748B;

    font-size:16px;

    line-height:1.9;

    margin:0;

}

/*=========================================
        WHY PARENTS CHOOSE US
=========================================*/
/*=========================================
        TRUSTED BY FAMILIES
=========================================*/

.why-parents{

    background:#F8FBFF;

}

.parents-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(15,23,42,.08);

}

.parents-content h2{

    font-size:50px;

    color:#081C54;

    line-height:1.15;

    margin:20px 0;

}

.parents-content h2 span{

    display:block;

    color:#2563EB;

}

.parents-content>p{

    color:#64748B;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.parents-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.parents-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

    background:#fff;

    padding:22px;

    border-radius:18px;

    border:1px solid #E8EEF8;

    transition:.35s;

}

.parents-item:hover{

    transform:translateX(8px);

    box-shadow:0 18px 45px rgba(37,99,235,.10);

}

.parents-icon{

    width:30px;

    height:30px;

    border-radius:16px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.parents-item h3{

    font-size:18px;

    color:#081C54;

    margin-bottom:8px;

}

.parents-item p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}



/* ###################------ Programs Page --------############### */

/*=========================================
            PROGRAM HERO
=========================================*/

.program-hero{

    position:relative;

    padding:170px 0 90px;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#DCEBFF 0%,transparent 45%),
    radial-gradient(circle at bottom left,#EEF6FF 0%,transparent 45%),
    #fff;

}

.program-hero::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    border-radius:50%;

    background:rgba(37,99,235,.06);

    top:-180px;
    right:-180px;

}

.program-hero-content{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:#EEF5FF;

    color:#2563EB;

    font-size:15px;

    font-weight:700;

    margin-bottom:24px;

}

.program-hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.12;

    color:#081C54;

    margin-bottom:24px;

}

.program-hero h1 span{

    display:block;

    color:#2563EB;

}

.program-hero p{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

}

.program-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/*=========================================
            HERO STATS
=========================================*/

.hero-mini-info{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-stat{

    min-width:160px;

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:18px;

    padding:22px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:.35s;

}

.hero-stat:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 55px rgba(37,99,235,.12);

}

.hero-stat strong{

    display:block;

    font-size:34px;

    font-weight:800;

    color:#2563EB;

    margin-bottom:5px;

}

.hero-stat span{

    display:block;

    color:#64748B;

    font-size:15px;

    font-weight:600;

}

/*=========================================
            IMAGE
=========================================*/

.program-hero-image{

    position:relative;

    text-align:center;

}

.program-hero-image img{

    width:100%;

    max-width:650px;

    animation:floatImage 5s ease-in-out infinite;

}

/*=========================================
        OPTIONAL FLOATING CARDS
=========================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    background:#fff;

    padding:16px 22px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

    font-weight:600;

    animation:float 4s ease-in-out infinite;

}

.floating-card i{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF5FF;

    color:#2563EB;

}

.floating-card.one{

    top:70px;

    left:-20px;

}

.floating-card.two{

    top:45%;

    right:-15px;

}

.floating-card.three{

    bottom:40px;

    left:40px;

}



/*=========================================
        LEARNING PATH
=========================================*/

/*=========================================
        LEARNING PATH
=========================================*/

.learning-path-section{

    padding:90px 0;
    background:#fff;

}

.learning-path-section .row{

    align-items:stretch;

}

.learning-path-section .col-lg-3,
.learning-path-section .col-md-6{

    display:flex;

}

.journey-box{

    position:relative;

    display:flex;
    flex-direction:column;

    width:100%;
    height:100%;

    background:#fff;
    border-radius:28px;

    padding:40px 30px;

    overflow:hidden;

    border:1px solid #EDF2F7;

    box-shadow:0 15px 40px rgba(15,23,42,.06);

    transition:.35s;

}

.journey-box:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.number{

    position:absolute;

    top:25px;
    right:25px;

    font-size:54px;
    font-weight:800;

    color:#EEF3FF;

    line-height:1;

}

.journey-icon{

    width:80px;
    height:80px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    font-size:34px;

    flex-shrink:0;

}

/* Icon Colors */

.green .journey-icon{

    background:#EAFBF2;
    color:#22C55E;

}

.orange .journey-icon{

    background:#FFF7E8;
    color:#F59E0B;

}

.blue .journey-icon{

    background:#EEF5FF;
    color:#2563EB;

}

.purple .journey-icon{

    background:#F5F1FF;
    color:#7C3AED;

}

.journey-box h4{

    font-size:26px;

    margin-bottom:8px;

    color:#081C54;

}

.age{

    display:inline-block;

    margin-bottom:20px;

    font-weight:700;

    color:#2563EB;

}

.journey-box p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

    flex-grow:1;

}

.journey-box a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:auto;

    font-weight:700;

    color:#2563EB;

    transition:.3s;

}

.journey-box a i{

    transition:.3s;

}

.journey-box:hover a i{

    transform:translateX(6px);

}


.learning-path-section{

    background:#fff;

}

.journey-box{

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:24px;

    padding:30px;

    height:100%;

    display:flex;

    flex-direction:column;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:.35s;

}

.journey-box:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(37,99,235,.12);

}

.journey-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:20px;

}

.green .journey-icon{

    background:#EAFBF2;

    color:#22C55E;

}

.orange .journey-icon{

    background:#FFF7E8;

    color:#F59E0B;

}

.blue .journey-icon{

    background:#EEF5FF;

    color:#2563EB;

}

.age{

    display:inline-block;

    padding:7px 16px;

    background:#EEF5FF;

    color:#2563EB;

    border-radius:30px;

    font-weight:700;

    font-size:14px;

    margin-bottom:18px;

}

.journey-box h3{

    font-size:28px;

    color:#081C54;

    margin-bottom:6px;

}

.journey-box h4{

    font-size:19px;

    color:#2563EB;

    margin-bottom:16px;

    font-weight:700;

}

.journey-box p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:20px;

}

.program-features{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.program-features li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:#475569;

    font-size:15px;

}

.program-features li i{

    width:22px;

    height:22px;

    border-radius:50%;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

    flex-shrink:0;

}

.journey-box a{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-weight:700;

    text-decoration:none;

}

.journey-box a i{

    transition:.3s;

}

.journey-box:hover a i{

    transform:translateX(6px);

}

/* #################----- Parents Page ------ ############# */


/*=========================================
        PARENTS HERO
=========================================*/
/*=========================================
        PARENTS HERO
=========================================*/

.parents-hero{

    padding:170px 0 90px;

    background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

    overflow:hidden;

    position:relative;

}

.parents-hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    top:-180px;

    right:-180px;

}

.parents-content{

    position:relative;

    z-index:2;

}

.parents-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.1;

    color:#081C54;

    margin:22px 0;

}

.parents-content h1 span{

    display:block;

    color:#2563EB;

}

.parents-content p{

    font-size:16px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

}

.parent-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:45px;

}

.parent-features div{

    display:flex;

    align-items:center;

    gap:14px;

    background:#fff;

    padding:18px 20px;

    border-radius:18px;

    border:1px solid #EEF2F7;

    box-shadow:0 12px 35px rgba(15,23,42,.06);

    font-weight:600;

    color:#081C54;

}

.parent-features i{

    width:42px;

    height:42px;

    border-radius:12px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

}

.parents-image{

    position:relative;

    text-align:center;

}

.parents-image img{

    width:100%;

    max-width:620px;

    animation:floatImage 5s ease-in-out infinite;

}

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px 22px;

    border-radius:18px;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

}

.floating-card i{

    width:55px;

    height:55px;

    border-radius:14px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

}

.card1{

    top:10%;

    left:-30px;

}

.card2{

    top:45%;

    right:-20px;

}

.card3{

    left:30px;

    bottom:8%;

}

.floating-card strong{

    display:block;

    color:#081C54;

    font-size:17px;

}

.floating-card span{

    color:#64748B;

    font-size:14px;

}

/*=========================================
        PARENT PROGRAMS
=========================================*/

.parent-programs{

    background:#F8FBFF;

    position:relative;

    overflow:hidden;

}

.parent-programs::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(37,99,235,.04);

    top:-200px;

    right:-150px;

}

.parent-program-card{

    position:relative;

    background:#fff;

    border:1px solid #E9EFFB;

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.parent-program-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(37,99,235,.12);

}

.program-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.program-age{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#EEF5FF;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.parent-program-card h3{

    font-size:28px;

    color:#081C54;

    line-height:1.35;

    margin-bottom:18px;

}

.parent-program-card p{

    color:#64748B;

    line-height:1.9;

    font-size:16px;

    margin:0;

}

/*=========================================
        PROGRAM BUTTON
=========================================*/

.parent-programs .theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:auto;

    min-width:220px;

    height:58px;

    padding:0 30px;

}

.parent-programs .text-center{

    margin-top:50px;

}

/*=========================================
        PARENT FEATURES
=========================================*/

.parent-features-section{

    background:#F8FBFF;

}

.feature-image{

    text-align:center;

}

.feature-image img{

    width:100%;

    max-width:470px;

    animation:floatImage 5s ease-in-out infinite;

}

.feature-list{

    position:relative;

    padding-left:35px;

}

.feature-list::before{

    content:"";

    position:absolute;

    left:26px;

    top:25px;

    bottom:25px;

    width:2px;

    background:#DCE8FF;

}

.feature-item{

    position:relative;

    display:flex;

    gap:22px;

    align-items:flex-start;

    margin-bottom:25px;

    background:#fff;

    border-radius:18px;

    padding:24px;

    border:1px solid #E9EFFB;

    transition:.35s;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.feature-item:last-child{

    margin-bottom:0;

}

.feature-item:hover{

    transform:translateX(8px);

    box-shadow:0 20px 45px rgba(37,99,235,.10);

}

.parent-feature-icon{

    width:30px;

    height:30px;

    border-radius:14px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

    position:relative;

    z-index:2;

}

.feature-item h3{

    font-size:18px;

    color:#081C54;

    margin-bottom:10px;

}

.feature-item p{

    color:#64748B;

    line-height:1.8;

    margin:0;

}


/* ###################------------------Student Page-------########### */

/*=========================================
        STUDENT HERO
=========================================*/

.student-hero{

    position:relative;

    padding:170px 0 90px;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#DCEBFF 0%,transparent 40%),
    radial-gradient(circle at bottom left,#FFF8E8 0%,transparent 35%),
    #fff;

}

.student-hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    right:-180px;

    top:-180px;

}

.student-content{

    position:relative;

    z-index:2;

}

.student-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.1;

    color:#081C54;

    margin:22px 0;

}

.student-content h1 span{

    display:block;

    color:#2563EB;

}

.student-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

    max-width:620px;

}

/*=========================================
        STATS
=========================================*/

.student-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:45px;

}

.student-features div{

    display:flex;

    align-items:center;

    gap:14px;

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:18px;

    padding:18px 20px;

    font-weight:600;

    color:#081C54;

    transition:.35s;

    box-shadow:0 12px 30px rgba(15,23,42,.05);

}

.student-features div:hover{

    transform:translateY(-5px);

    border-color:#2563EB;

    box-shadow:0 20px 40px rgba(37,99,235,.12);

}

.student-features i{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    color:#fff;

}

/* colorful icons */

.student-features div:nth-child(1) i{

    background:#2563EB;

}

.student-features div:nth-child(2) i{

    background:#F59E0B;

}

.student-features div:nth-child(3) i{

    background:#10B981;

}

.student-features div:nth-child(4) i{

    background:#7C3AED;

}

/*=========================================
        IMAGE
=========================================*/

.student-image{

    position:relative;

    text-align:center;

}

.student-image img{

    width:100%;

    max-width:620px;

    animation:floatImage 5s ease-in-out infinite;

}

/*=========================================
        FLOATING CARDS
=========================================*/

.student-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:16px 20px;

    border-radius:18px;

    border:1px solid #E8EEF8;

    box-shadow:0 18px 40px rgba(15,23,42,.08);

    transition:.35s;

}

.student-card:hover{

    transform:translateY(-6px);

}

.student-card i{

    width:54px;

    height:54px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:20px;

}

.student-card.one i{

    background:#2563EB;

}

.student-card.two i{

    background:#10B981;

}

.student-card.three i{

    background:#F59E0B;

}

.student-card strong{

    display:block;

    color:#081C54;

    font-size:18px;

    font-weight:700;

}

.student-card span{

    color:#64748B;

    font-size:14px;

}

/* positions */

.student-card.one{

    top:8%;

    left:-25px;

}

.student-card.two{

    top:42%;

    right:-20px;

}

.student-card.three{

    left:35px;

    bottom:10%;

}

/*=========================================
        STUDENT PROGRAMS
=========================================*/
/*=========================================
        STUDENT PROGRAMS
=========================================*/

.student-programs{

    background:#F8FBFF;

}

.student-program-card{

    background:#fff;

    border-radius:26px;

    padding:40px 35px;

    border:1px solid #E9EEF7;

    box-shadow:0 18px 45px rgba(15,23,42,.06);

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.student-program-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.program-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:28px;

}

.green{

    background:#EAFBF2;

    color:#22C55E;

}

.orange{

    background:#FFF8E7;

    color:#F59E0B;

}

.blue{

    background:#EEF5FF;

    color:#2563EB;

}

.grade{

    display:inline-flex;

    align-items:center;

    width:max-content;

    padding:8px 18px;

    border-radius:30px;

    background:#EEF5FF;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.student-program-card h3{

    font-size:30px;

    color:#081C54;

    margin-bottom:8px;

}

.student-program-card h4{

    font-size:22px;

    color:#2563EB;

    margin-bottom:18px;

    font-weight:700;

}

.student-program-card p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:25px;

}

.program-list{

    list-style:none;

    padding:0;

    margin:0 0 30px;

    flex-grow:1;

}

.program-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:#64748B;

}

.program-list li::before{

    content:"✓";

    width:24px;

    height:24px;

    border-radius:50%;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:13px;

    font-weight:700;

    flex-shrink:0;

}

.program-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#2563EB;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.program-link:hover{

    color:#2563EB;

}

.program-link i{

    transition:.3s;

}

.student-program-card:hover .program-link i{

    transform:translateX(6px);

}

/*=========================================
        BUTTON
=========================================*/

.student-program-btn{

    display:flex;

    justify-content:center;

    margin-top:60px;

}

.program-main-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    width:270px;

    height:60px;

    border-radius:60px;

    background:linear-gradient(135deg,#2563EB,#4F8DF8);

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 18px 45px rgba(37,99,235,.25);

}

.program-main-btn:hover{

    color:#fff;

    transform:translateY(-5px);

}

.program-main-btn i{

    transition:.3s;

}

.program-main-btn:hover i{

    transform:translateX(6px);

}

/*=========================================
        STUDENT FEATURES
=========================================*/

.student-features-section{

    background:#F8FBFF;

    position:relative;

    overflow:hidden;

}

.student-features-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    top:-180px;

    right:-120px;

}

.student-feature-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px 30px;

    height:100%;

    border:1px solid #E8EEF8;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:.35s;

    text-align:center;

}

.student-feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.feature-icon{

    width:75px;

    height:75px;

    margin:0 auto 22px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.feature-icon-blue{

    background:#EEF5FF;

    color:#2563EB;

}

.feature-icon-green{

    background:#EAFBF3;

    color:#16A34A;

}

.feature-icon-orange{

    background:#FFF7E8;

    color:#F59E0B;

}

.feature-icon-purple{

    background:#F4F0FF;

    color:#7C3AED;

}

.feature-icon-red{

    background:#FFF1F2;

    color:#EF4444;

}

.feature-icon-cyan{

    background:#EAFBFF;

    color:#06B6D4;

}

.student-feature-card h3{

    font-size:26px;

    color:#081C54;

    margin-bottom:16px;

}

.student-feature-card p{

    color:#64748B;

    line-height:1.9;

    margin:0;

}

/* ################----- Career Page-----------------################## */
/*=========================================
        CAREER HERO
=========================================*/

.career-hero{

    padding:170px 0 90px;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.career-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-250px;

    top:-220px;

    border-radius:50%;

    background:radial-gradient(circle,#EAF3FF 0%,transparent 70%);

}

.career-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    bottom:-150px;

    border-radius:50%;

    background:radial-gradient(circle,#F4F9FF 0%,transparent 70%);

}

.career-hero-content{

    position:relative;

    z-index:5;

}

.career-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:#EEF4FF;

    color:#2563EB;

    border-radius:60px;

    font-weight:700;

    margin-bottom:25px;

}

.career-badge i{

    font-size:18px;

}

.career-hero-content h1{

    font-size:70px;

    font-weight:900;

    line-height:1.08;

    color:#071A52;

    margin-bottom:20px;

}

.career-hero-content h1 span{

    display:block;

    color:#2563EB;

}

.career-subtitle{

    font-size:24px;

    margin-bottom:25px;

    color:#0F172A;

}

.career-subtitle strong{

    display:block;

    color:#F59E0B;

    margin-top:8px;

}

.career-hero-content p{

    font-size:18px;

    line-height:1.8;

    color:#64748B;

}

.career-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.career-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#071A52;

}

.career-features i{

    color:#22C55E;

    font-size:20px;

}

.career-location-strip{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}

.career-location-strip div{

    padding:12px 18px;

    background:#F8FAFC;

    border-radius:50px;

    font-weight:600;

    color:#334155;

}

.career-location-strip i{

    color:#2563EB;

    margin-right:8px;

}

.career-hero-image{

    position:relative;

    height:650px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.career-hero-image img{

    width:100%;

    max-width:520px;

    position:relative;

    z-index:2;

    animation:float 5s ease-in-out infinite;

}


/* Background Circle */

.career-hero-image::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,#EAF3FF 0%,transparent 72%);

    z-index:1;

}

/* Floating Cards */

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:22px;

    padding:18px 22px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    z-index:3;

}



/*=========================================
        WHY JOIN
=========================================*/

.career-why{

    background:#F8FBFF;

}

.career-card{

    background:#fff;

    border-radius:28px;

    padding:45px 30px;

    height:100%;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.06);

    border:1px solid #EEF2F7;

}

.career-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(37,99,235,.12);

}

.career-icon{

    width:90px;

    height:90px;

    border-radius:24px;

    margin:0 auto 30px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#EEF4FF;

    color:#2563EB;

    font-size:34px;

}

.career-icon-blue{

    background:#EAF5FF;

    color:#2563EB;

}

.career-icon-orange{

    background:#FFF4E6;

    color:#F59E0B;

}

.career-icon-green{

    background:#ECFDF5;

    color:#16A34A;

}

.career-card h4{

    margin-bottom:18px;

    font-size:24px;

    color:#081C54;

}

.career-card p{

    color:#64748B;

    line-height:1.8;

}

/*=========================================
        SELECTION PROCESS
=========================================*/

.selection-section{

    background:#fff;

}

.selection-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:20px;

}

.selection-line{

    position:absolute;

    top:65px;

    left:10%;

    right:10%;

    height:4px;

    background:#E7EEF8;

    z-index:0;

}

.selection-card{

    position:relative;

    background:#fff;

    border-radius:26px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.06);

    transition:.35s;

    z-index:2;

}

.selection-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(37,99,235,.12);

}

.step-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:14px;

    font-weight:800;

    color:#CBD5E1;

}

.step-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF4FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    border:8px solid #fff;

    box-shadow:0 10px 25px rgba(37,99,235,.10);

}

.step-icon.blue{

    background:#EAF5FF;

    color:#2563EB;

}

.step-icon.orange{

    background:#FFF5E7;

    color:#F59E0B;

}

.step-icon.green{

    background:#ECFDF5;

    color:#16A34A;

}

.selection-card h4{

    font-size:24px;

    margin-bottom:15px;

    color:#081C54;

}

.selection-card p{

    color:#64748B;

    line-height:1.8;

}


.selection-action{
    margin-top:60px;
    display:flex;
    justify-content:center;
}

.selection-action .theme-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:auto;
    min-width:340px;
    max-width:100%;

    height:60px;
    padding:0 35px;

    white-space:nowrap;

    font-size:17px;
    font-weight:700;
}



/* ################----- Contact Page-----------------################## */
/*=========================================
        CONTACT HERO
=========================================*/
/*=========================================
        CONTACT HERO
=========================================*/

.contact-hero{

    padding:170px 0 90px;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.contact-hero::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    right:-240px;
    top:-220px;

    border-radius:50%;

    background:radial-gradient(circle,#EAF3FF 0%,transparent 72%);

}

.contact-hero::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-170px;
    bottom:-170px;

    border-radius:50%;

    background:radial-gradient(circle,#F5F9FF 0%,transparent 72%);

}

.contact-hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

}

.contact-hero-content h1{

    font-size:68px;

    font-weight:900;

    color:#081C54;

    line-height:1.1;

    margin:22px 0 20px;

    letter-spacing:-2px;

}

.contact-hero-content h1 span{

    color:#2563EB;

}

.hero-divider{

    width:90px;

    height:5px;

    margin:0 auto 30px;

    border-radius:50px;

    background:linear-gradient(90deg,#2563EB,#60A5FA);

}

.contact-hero-content p{

    max-width:760px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

    color:#64748B;

}

/*=========================================
        CONTACT SECTION
=========================================*/

.contact-section{

    background:#F8FBFF;

}

.contact-info,

.contact-form-box{

    background:#fff;

    border-radius:28px;

    padding:50px;

    height:100%;

    border:1px solid #EEF2F7;

    box-shadow:0 20px 55px rgba(15,23,42,.06);

}

.contact-info h3,

.contact-form-box h3{

    font-size:25px;

    font-weight:700;

    color:#081C54;

    margin-bottom:20px;

}

.contact-info p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:40px;

}

/*=========================================
        CONTACT ITEM
=========================================*/

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:20px 0;

    border-bottom:1px solid #EDF2F7;

}

.contact-item:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.contact-icon{

    width:50px;

    height:50px;

    flex-shrink:0;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    background:#EEF4FF;

    color:#2563EB;

}

.contact-icon-blue{

    background:#EEF6FF;

    color:#2563EB;

}

.contact-icon-orange{

    background:#FFF5E8;

    color:#F59E0B;

}

.contact-item span{

    display:block;

    font-size:14px;

    font-weight:600;

    color:#94A3B8;

    margin-bottom:6px;

}

.contact-item h5{

    margin:0;

    font-size:18px;

    line-height:1.5;

    color:#081C54;

    font-weight:700;

}

/*=========================================
        FORM
=========================================*/

.contact-form-box .form-control{

    height:58px;

    border-radius:16px;

    border:1px solid #E5EAF2;

    padding:0 22px;

    font-size:15px;

    color:#081C54;

    box-shadow:none;

    transition:.3s;

}

.contact-form-box textarea.form-control{

    height:180px;

    padding:20px 22px;

    resize:none;

}

.contact-form-box .form-control::placeholder{

    color:#94A3B8;

}

.contact-form-box .form-control:focus{

    border-color:#2563EB;

    box-shadow:0 0 0 4px rgba(37,99,235,.08);

}

.contact-form-box .theme-btn{

    width:100%;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    font-size:17px;

    font-weight:700;

}




/* ====================== Program Detail Page ====================== */

/*=========================================
        PROGRAM DETAIL HERO
=========================================*/

.program-detail-hero{

    padding:170px 0 90px;

    background:linear-gradient(180deg,#F8FBFF 0%,#FFFFFF 100%);

    overflow:hidden;

    position:relative;

}

.program-detail-hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(37,99,235,.05);

    top:-220px;

    right:-180px;

}

.program-detail-content{

    position:relative;

    z-index:2;

}

.program-detail-content h1{

    font-size:62px;

    font-weight:800;

    line-height:1.15;

    color:#081C54;

    margin:22px 0;

}

.program-detail-content h1 span{

    display:block;

    color:#2563EB;

}

.program-detail-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.program-detail-image{

    position:relative;

    text-align:center;

}

.program-detail-image img{

    width:100%;

    max-width:620px;

    animation:floatImage 5s ease-in-out infinite;

}

.program-info-card{

    position:absolute;

    right:20px;

    bottom:30px;

    width:280px;

    background:#fff;

    border-radius:24px;

    padding:28px;

    box-shadow:0 20px 50px rgba(15,23,42,.10);

    text-align:left;

}

.age-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#EEF5FF;

    color:#2563EB;

    font-weight:700;

    margin-bottom:18px;

}

.program-info-card h4{

    color:#081C54;

    font-size:28px;

    margin-bottom:18px;

}

.program-info-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.program-info-card li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:#64748B;

}

.program-info-card li i{

    width:24px;

    height:24px;

    border-radius:50%;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:12px;

}

/*=========================================
        WHY PARENTS TRUST
=========================================*/

.program-features-section{

    background:#F8FBFF;

}

.feature-card{

    height:100%;

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:22px;

    padding:35px;

    transition:.35s;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(37,99,235,.12);

}

.prgm-feature-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#EEF5FF;

    color:#2563EB;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:24px;

}

.feature-card h3{

    font-size:28px;

    color:#081C54;

    margin-bottom:18px;

    line-height:1.3;

}

.feature-card p{

    color:#64748B;

    font-size:16px;

    line-height:1.9;

    margin:0;

}


/*=========================================
        REGISTER MODAL
=========================================*/

.register-modal{
    border:none;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    margin-top:90px;
    margin-bottom:30px;
}

.register-modal .modal-header{
    padding:30px 35px 10px;
}

.register-modal h3{
    font-size:32px;
    font-weight:700;
    color:#0F172A;
}

.register-modal p{
    color:#64748B;
}

.register-modal .modal-body{
    padding:25px 35px 35px;
}

.register-modal .form-label{
    font-weight:600;
    color:#334155;
    margin-bottom:8px;
}

.register-modal .form-control,
.register-modal .form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #dbe4ef;
    padding:0 18px;
    box-shadow:none;
}

.register-modal .form-control:focus,
.register-modal .form-select:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 .2rem rgba(37,99,235,.15);
}

.register-modal .theme-btn{
    height:56px;
}




/* =================== Comming Soon =================== */

.coming-modal{

    border:none;
    border-radius:30px;
    overflow:hidden;
    background:linear-gradient(135deg,#0D47A1,#1976D2,#42A5F5);
    color:#fff;
    margin-top:90px;
    margin-bottom:30px;

}

.coming-modal .modal-body{

    padding:60px;

    position:relative;

}

.close-btn{

    position:absolute;
    top:20px;
    right:20px;
    filter:invert(1);

}

.coming-logo{

    height:90px;
    margin:auto;
    margin-bottom:25px;

}

.coming-badge{

    display:inline-block;

    background:#fff;

    color:#1565C0;

    padding:10px 20px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.coming-modal h2{

    color:#fff;

    font-size:52px;

    font-weight:800;

}

.coming-modal h2 span{

    color:#FFD54F;

}

.coming-modal p{

    font-size:18px;

    max-width:650px;

    margin:25px auto;

    color:rgba(255,255,255,.9);

}

.launch-date{

    display:inline-flex;

    gap:10px;

    align-items:center;

    background:#FFD54F;

    color:#0D47A1;

    padding:14px 28px;

    border-radius:60px;

    font-size:20px;

    font-weight:700;

}

.countdown{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:40px;

}

.time-box{

    background:#fff;

    color:#1565C0;

    border-radius:20px;

    padding:20px;

}

.time-box h3{

    font-size:42px;

    margin-bottom:5px;

    font-weight:800;

}

.time-box span{

    color:#666;

    font-weight:600;

}


