/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #e8f0fe 0%, #dce8ff 50%, #eaf2ff 100%);
    overflow: hidden;
    min-height: 420px;
    padding: 0;
}
.hero-bg-wave,
.hero-bg-wave2{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    overflow:hidden;
    line-height:0;
}

.hero-bg-wave{
    height:170px;
    z-index:1;
}

.hero-bg-wave2{
    height:120px;
    z-index:2;
}

.hero-bg-wave svg,
.hero-bg-wave2 svg{
    width:100%;
    height:100%;
    display:block;
}
.hero-bg-wave{
    position:absolute;
    bottom:0;
    left:476px;
    width:100%;
    height:170px;
    background:#1a4fc4;
    clip-path:path("M0,100 C180,20 350,180 520,100 C700,20 880,180 1060,100 C1220,40 1340,140 1440,100 L1440,320 L0,320 Z");
    z-index:1;
}

.hero-bg-wave2{
    position:absolute;
    bottom:0;
    left:477px;
    width:100%;
    height:130px;
    background:#0947a8;
    clip-path:path("M0,120 C180,40 350,170 520,120 C700,50 900,180 1080,120 C1240,60 1350,150 1440,110 L1440,320 L0,320 Z");
    z-index:2;
}

/* .hero-bg-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(110deg, #0947a8 0%, #1a4fc4 100%);
   clip-path: ellipse(32% 120% at 82% 120%);
    z-index: 0;
} */
/* .hero-bg-wave2 {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #a3801e 100%);
    clip-path: ellipse(80% 100% at 20% 100%);
    z-index: 0;
} */
/* .hero-bg-wave2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(1600deg, #0947a8 0%, #163464 100%);
  clip-path: ellipse(32% 120% at 82% 120%);
  z-index: 0;
} */

.hero-bg-circle {
    position: absolute;
    top: -60px; right: 200px;
    width: 380px; height: 380px;
    background: rgba(200, 218, 255, 0.5);
    border-radius: 50%;
    z-index: 0;
}

/* ===== WRAPPER ===== */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 40px 0 0;
    position: relative;
    z-index: 2;
}

/* ===== BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e0e8ff;
    border-radius: 50px;
    padding: 7px 16px;
    margin-bottom: 18px;
}

.badge-dot {
    width: 10px; height: 10px;
    background: #e53935;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.badge-text {
    font-size: 13px;
    font-weight: 800;
    color: #e53935;
    letter-spacing: 1.5px;
}

/* ===== TITLE ===== */
.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: #0d1b3e;
    margin-bottom: 16px;
}

.hero-title span { color: #1a4fc4; }

.hero-title strong {
    color: #0d1b3e;
    font-weight: 800;
    /* text-decoration: underline; */
    text-decoration-color: #1a4fc4;
    text-underline-offset: 4px;
}

/* ===== DESC ===== */
.hero-desc {
    font-size: 15px;
    color: #5a6a8a;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-primary-custom {
    background: #1a4fc4;
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .25s;
}

.btn-primary-custom:hover { background: #1440a8; color: #fff; }

.btn-outline-custom {
    border: 2px solid #1a4fc4;
    color: #1a4fc4;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    transition: .25s;
}

.btn-outline-custom:hover { background: #e8f0fe; }

/* ===== STATS ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.stat-card {
    background: #fff;
    border: 1px solid #e4ecff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a4fc4;
}

.stat-content p {
    font-size: 12px;
    color: #6b7a99;
    margin-top: 1px;
}

/* ===== RIGHT SIDE ===== */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
}

.hero-dots {
    position: absolute;
    top: 8px; right: 0;
    width: 80px; height: 60px;
    background-image: radial-gradient(circle, #b0c4ef 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: .7;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 218, 255, 0.55);
}

.hero-circle-1 { width: 300px; height: 300px; top: 10px; left: 50%; transform: translateX(-50%); }
.hero-circle-2 { width: 230px; height: 230px; top: 45px; left: 50%; transform: translateX(-50%); }

/* ===== HAND IMAGES ===== */
.hand-bg {
    position: absolute;
   width: 300px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.hand-bg-1 {
    top: 30px; left: 20px;
    /* animation: waveL 1.8s ease-in-out infinite; */
    transform-origin: right center;
}

.hand-bg-2 {
    top: 30px; right: 10px;
    /* animation: waveR 1.8s ease-in-out infinite; */
    transform-origin: left center;
}

@keyframes waveL {
    0%,100%{ transform: rotate(0deg); }
    25%{ transform: rotate(-15deg); }
    50%{ transform: rotate(10deg); }
    75%{ transform: rotate(-10deg); }
}

@keyframes waveR {
    0%,100%{ transform: rotate(0deg); }
    25%{ transform: rotate(15deg); }
    50%{ transform: rotate(-10deg); }
    75%{ transform: rotate(10deg); }
}

/* ===== MASCOT ===== */
.hero-mascot {
    position: relative;
    z-index: 4;
    width: 260px;
    margin-bottom: -70px;
    animation: floatUp 4s ease-in-out infinite;
}

.hero-mascot img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(26, 79, 196, 0.15));
}

@keyframes floatUp {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-12px); }
}

/* ===== MENTOR CARD ===== */
.mentor-card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 24px;
    width: 300px;
    box-shadow: 0 8px 32px rgba(26, 79, 196, 0.13);
    position: relative;
    z-index: 5;
    align-self: center;
    margin-right: 10px;
    border: 1px solid #e4ecff;
}

.mentor-icon {
    width: 44px; height: 44px;
    background: #e8f0fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.mentor-tag {
    font-size: 11px;
    font-weight: 700;
    color: #1a4fc4;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #1a4fc4;
    padding-bottom: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.mentor-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 8px;
}

.mentor-card p {
    font-size: 13px;
    color: #5a6a8a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.mentor-btn {
    background: #1a4fc4;
    color: #fff;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .25s;
}

.mentor-btn:hover { background: #1440a8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; padding: 28px 0 0; }
    .hero-title { font-size: 28px; }
    .hero-desc { margin: 0 auto 20px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 22px; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .hero-right { padding: 20px 0 0; }
    .hero-mascot { width: 180px; }
    .mentor-card { width: 90%; margin: 0 auto; }
    .hand-bg { width: 120px; }
    .hand-bg-1 { left: 10px; top: 20px; }
    .hand-bg-2 { right: 10px; top: 20px; }
}

/*==============================
Mascot Wrapper
==============================*/

.hero-mascot-wrap{
    position:relative;
    width:560px;
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

/*==============================
Yellow Blob
==============================*/

.hero-mascot-wrap::before{
    content:"";
    position:absolute;

    width:380px;
    height:270px;

    left:50px;
    bottom:45px;

    background:linear-gradient(135deg,#FFD84F,#FFB300);

    border-radius:
        45% 55% 50% 60% /
        55% 45% 60% 40%;

    transform:rotate(-18deg);

    z-index:1;

    filter:drop-shadow(0 20px 45px rgba(255,185,0,.28));
}

/*==============================
Pink Blob
==============================*/

.hero-mascot-wrap::after{
    content:"";
    position:absolute;

    width:210px;
    height:210px;

    left:25px;
    bottom:-10px;

    background:linear-gradient(135deg,#FF89C8,#EC4C97);

    border-radius:
        60% 40% 65% 35% /
        45% 55% 40% 60%;

    transform:rotate(28deg);

    z-index:0;

    filter:blur(1px);
}

/*==============================
Mascot Image
==============================*/

.hero-mascot-img{
    position:relative;

    width:520px;
    max-width:100%;

    z-index:5;

    animation:floatMascot 4s ease-in-out infinite;
}

/*==============================
Small Yellow Bubble
==============================*/

.mascot-bg{

    position:absolute;

    width:90px;
    height:90px;

    right:30px;
    top:120px;

    border-radius:50%;

    background:#FFE56D;

    opacity:.85;

    z-index:2;

    filter:blur(2px);

}

/*==============================
Animation
==============================*/

@keyframes floatMascot{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}
@media(max-width:991px){

.hero-mascot-wrap{

    width:420px;

}

.hero-mascot-img{

    width:380px;

}

.hero-mascot-wrap::before{

    width:280px;
    height:200px;

    left:40px;

}

.hero-mascot-wrap::after{

    width:150px;
    height:150px;

}

}

@media(max-width:576px){

.hero-mascot-wrap{

    width:300px;

}

.hero-mascot-img{

    width:280px;

}

.hero-mascot-wrap::before{

    width:210px;
    height:150px;

    left:20px;
    bottom:25px;

}

.hero-mascot-wrap::after{

    width:100px;
    height:100px;

    left:5px;

}

}
.paint-yellow{
    position:absolute;
    left:70px;
    bottom:40px;

    width:360px;
    height:230px;

    background:#FFC82C;

    border-radius:
    55% 45% 60% 40% /
    40% 65% 35% 60%;

    transform:rotate(-10deg);

    z-index:1;
}

/* Paint Fingers */

.paint-yellow::before{
    content:"";
    position:absolute;

    width:85px;
    height:140px;

    top:-80px;
    left:40px;

    background:#FFC82C;

    border-radius:60px;

    transform:rotate(-25deg);

    box-shadow:
        90px 15px 0 #FFC82C,
        175px 35px 0 #FFC82C,
        245px 70px 0 #FFC82C;
}

.paint-yellow::after{
    content:"";
    position:absolute;

    width:130px;
    height:70px;

    right:-20px;
    bottom:20px;

    background:#FFC82C;

    border-radius:50px;

    transform:rotate(18deg);
}