body{
background:#f4f8ff;
font-family:Inter,sans-serif;
color:#0a1f44;
}

/* Animation Configurations */
.animate-left {
   animation: slideInLeft 1s ease-out forwards;
}

.animate-right {
   animation: slideInRight 1s ease-out forwards;
}

/* Keyframes for Left Side (School Card) */
@keyframes slideInLeft {
   0% {
      opacity: 0;
      transform: translateX(-100px); /* Starts 100px to the left */
   }
   100% {
      opacity: 1;
      transform: translateX(0);      /* Moves to its original position */
   }
}

/* Keyframes for Right Side (Student Card) */
@keyframes slideInRight {
   0% {
      opacity: 0;
      transform: translateX(100px);  /* Starts 100px to the right */
   }
   100% {
      opacity: 1;
      transform: translateX(0);      /* Moves to its original position */
   }
}

/* Core Animation Class */
.animate-fade-up {
   opacity: 0;
   transform: translateY(30px); /* Starts slightly lower down */
   animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
   
   /* Stagger calculation: multi-plying index delay smoothly */
   animation-delay: calc(var(--delay) * 0.15s);
}

/* Keyframe definition */
@keyframes fadeInUp {
   0% {
      opacity: 0;
      transform: translateY(30px);
   }
   100% {
      opacity: 1;
      transform: translateY(0); /* Settles to original position */
   }
}










.animate-from-left {
   opacity: 0;
   transform: translateX(-80px);
   animation: slideFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


.animate-from-right {
   opacity: 0;
   transform: translateX(80px);
   animation: slideFromRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


@keyframes slideFromLeft {
   0% {
      opacity: 0;
      transform: translateX(-80px);
   }
   100% {
      opacity: 1;
      transform: translateX(0); 
   }
}


@keyframes slideFromRight {
   0% {
      opacity: 0;
      transform: translateX(80px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}





ul.main-list li{
    font-family: var(--font-primary);
    line-height: 17px!important;
    margin-top: 2px;
    margin-bottom: 2px;
    font-size:14px;
    color:#585252;
  
}
.iconmin{
    font-size:25px;
}


.iconmain.fa.fa-book {
    font-size: 5.75rem !important;
}
.gd-text {
    color: #ffffff;
    background-image: -webkit-linear-gradient(54.39deg, #071f81 28.27%, #4287af 47.32%, #276ca5 51.53%, #145081 61.73%, #4d8cf5 70.81%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}
.gd-text-ban {
    color: #ffffff;
    background-image: -webkit-linear-gradient(54.39deg, #d1b632 28.27%, #f5e188 47.32%, #d19e55 51.53%, #d9d7cd 61.73%, #ffee8c 70.81%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
}
.top-cta{
background:#9dc0f1;
}

.cta-card{
display:flex;
gap:20px;
padding:25px;
border-radius:20px;
align-items:center;
box-shadow:0 10px 35px rgba(0,0,0,.1);
transition:.3s;
}

.cta-card:hover{
transform:translateY(-6px);
}


.school-card{
background:linear-gradient(135deg,#0b56d8,#002f87);
color:#fff;
}
/* Inner glowing border */
.cta-card::before{
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 20px;

    border: 1.5px solid rgba(255,255,255,.55);

    box-shadow:
        inset 0 0 10px rgba(255,255,255,.45),
        inset 0 0 18px rgba(255,255,255,.18);

    pointer-events: none;
}

.student-card{
background:linear-gradient(135deg,#ff9b00,#ff6f00);
color:#fff;
}

.icon-circle{
width:70px;
height:70px;
background:#fff;
color:#0b56d8;
border-radius:25%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
}

.hero-section{
    background-image: url(../images/banner/olymp.png);
        position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
 
}

.logo{
width:220px;
}

.hero-tag{
background:#fff;
padding:10px 20px;
border-radius:50px;
font-weight:600;
}

.hero-section h1{
font-size:54px;
font-weight:800;
line-height:1.2;
}

.hero-text{
font-size:20px;
margin-top:20px;
}

.feature-icons{
display:flex;
flex-wrap:wrap;
gap:15px;
}
.feature-item{
    background:#fff;
    padding:15px;
    border-radius:15px;
    display:inline-flex;
    align-items:center;
    gap:8px;

    box-shadow:0 8px 20px rgba(36,120,205,.18);

    transition:all .35s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

/* shine effect */
.feature-item::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );

    transition:.5s;
}

/* hover */
.feature-item:hover{
    transform:translateY(-6px) scale(1.03);
    background:linear-gradient(135deg,#dff2ff,#ffffff);

    box-shadow:
        0 12px 28px rgba(36,120,205,.28),
        0 0 18px rgba(36,120,205,.22);
}

/* moving shine */
.feature-item:hover::before{
    left:100%;
}

/* icon animation */
.feature-item i,
.feature-item img{
    transition:.3s ease;
}

.feature-item:hover i,
.feature-item:hover img{
    transform:scale(1.15) rotate(6deg);
}

/* text */
.feature-item span{
    font-weight:500;
    transition:.3s;
}

.feature-item:hover span{
    color:#0d6efd;
}

.section-card{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.compare-card{
padding:30px;
border-radius:25px;
}

.dark-box{
background:#0d1b44;
color:#fff;
}

.bright-box{
background:#dfefff;
}

.transform-text{
font-weight:800;
color:#0b56d8;
}

.benefit-card{
background:#fff;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.scholarship{
background:linear-gradient(135deg,#01256b,#083ea8);
color:#fff;
}

.award-box{
background:#ffffff15;
padding:25px;
border-radius:20px;
}

.final-section{


background-image: url(../images/banner/olympfoot.png);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer{
background:#00112d;
color:#fff;
}

.footer ul{
list-style:none;
padding:0;
}













.iset-info-section{
    background:#f7fbff;
   
}

/* ABOUT */
.about-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.about-card h2{
    font-size:28px;
    font-weight:800;
    color:#072d85;
    margin-bottom:15px;
}

.about-card p{
    font-size:15px;
    color:#333;
    line-height:1.8;
}

.about-card li{
    margin-bottom:10px;
    font-weight:600;
    color:#123;
}

.brain-img{
    width:100%;
    margin-top:15px;
    border-radius:12px;
}

/* TRANSFORM */
.transform-card{
     background-image: url(../images/banner/olymcardtwo.png);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


    border-radius:18px;
    overflow:hidden;
  
    color:#fff;
    box-shadow:0 10px 28px rgba(0,0,0,.15);
}

.before-box,
.after-box{
    padding:25px;
    position:relative;
}

.before-box h4,
.after-box h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:18px;
}

.before-box li,
.after-box li{
    margin-bottom:12px;
    font-size:15px;
}

.before-box{

}

.after-box{
    background:rgba(255,255,255,.04);
}

/* CENTER */
.transform-center{
    display:flex;
    justify-content:center;
    align-items:center;
    background:
        radial-gradient(circle,#0e4bff 0%,#00183f 70%);
}

.circle-glow{
    width:220px;
    height:220px;
    border-radius:50%;
    border:3px solid rgba(255,255,255,.5);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size:28px;
    font-weight:800;
    color:#fff;
    box-shadow:
        0 0 20px #0ff,
        inset 0 0 20px rgba(255,255,255,.25);
}

/* STUDENT IMAGES */
.student-bottom{
    width:120px;
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
}

.student-right{
    width:130px;
    position:absolute;
    bottom:10px;
    right:10px;
}

/* MOBILE */
@media(max-width:991px){

    .circle-glow{
        width:170px;
        height:170px;
        font-size:22px;
        margin:25px auto;
    }

    .student-right,
    .student-bottom{
        position:static;
        display:block;
        margin:auto;
        margin-top:20px;
    }
    .maintext{
        font-size:25px!important;
    }
}





.section-title {
      color: var(--olympiad-blue);
      font-weight: 800;
      letter-spacing: 1px;
    }

    .award-card {
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      height: 100%;
      background-color: #fff;
    }

    .award-card-title {
         font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: black;
    }

    .rank-text {
      color: #5761c2;
      font-weight: 700;
    }

    .prize-text {
      font-weight: 700;
      color: #333;
    }

    .cert-box {
      border: 2px dashed #f5b041;
      background-color: #fffdf6;
      border-radius: 8px;
      padding: 15px;
    }

    /* Custom Trophy Gradient Background Section */
    .trophy-bg-column {
        border: 2px solid yellow;

           background-image: url(../images/banner/award.png);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);

     
      min-height: 200px;
    }

    .icon-gold { color: var(--gold); }
    .icon-silver { color: var(--silver); }
    .icon-bronze { color: var(--bronze); }










    .custom-border-box {
            border: 1px solid #e0e6ed;
            border-radius: 12px;
            padding: 20px;
            height: 100%;
        }
        .box-title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #0d47a1;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .sdg-box {
            background-color: #e51c23;
            color: white;
            border-radius: 8px;
            padding: 15px;
            width: 80px;
            height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .nep-icon-box {
            background: linear-gradient(135deg, #0d47a1, #1976d2);
            color: white;
            border-radius: 8px;
            padding: 15px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            position: relative;
            margin: 0 auto 15px auto;
            box-shadow: 0 4px 10px rgba(13, 71, 161, 0.2);
        }
        .step-number {
            position: absolute;
            bottom: -5px;
            background-color: #00e5ff;
            color: #0d47a1;
            font-weight: bold;
            font-size: 0.75rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step-text {
            font-size: 16px;
            font-weight: 600;
            color: #0d47a1;
        }
        .arrow-col {
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1976d2;
            font-size: 1.2rem;
            padding-bottom: 35px;
        }
        @media (max-width: 991px) {
            .arrow-col {
                transform: rotate(90deg);
                padding-bottom: 0;
                margin: 15px 0;
            }
        }


/* This applies only to screens that are 768 pixels wide or SMALLER */
@media screen  and (max-width: 768px) {
  .hero-section {
    background-image: url(../images/banner/olympmob.png)!important;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
  .hero-section h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}
  .hero-tag {
    background: #ffffff00;
    padding: 10px 2px;
    border-radius: 50px;
    font-weight: 600;
}
    
    .icon-circle {
        background: #ffffff00;
        color: #ffffff;
    }
}













/* Custom layout override for exactly 5 equal columns on Desktop */
    @media (min-width: 1200px) {
      .col-xl-5-cols {
        flex: 0 0 auto;
        width: 20%;
      }
    }

    /* Custom Futuristic Card Styling */
    .olympiad-card {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      border: 2px solid transparent;
      transition: all 0.4s ease-in-out;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 2.5rem 1.2rem 1.5rem 1.2rem;
    }

    /* Orb/Sphere container for icons */
    .icon-orb {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem auto;
      font-size: 2.5rem;
      position: relative;
    }
    
    .icon-orb::after {
      content: '';
      position: absolute;
      top: -5px; left: -5px; right: -5px; bottom: -5px;
      border-radius: 50%;
      opacity: 0.4;
    }

    /* Custom Button Styling matching image_8bf51a.jpg */
    .btn-explore {
      border-radius: 30px;
      padding: 0.5rem 1.2rem;
      font-weight: 600;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-top: auto;
      border: none;
      color: #fff !important;
      text-decoration: none;
      transition: transform 0.2s ease;
    }
    .btn-explore:hover {
      transform: scale(1.03);
    }
    .btn-explore i {
      background: #fff;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    /* --- Theme Specific Glows & Colors --- */

    /* Blue Theme */
    .theme-blue { 
      border-color: #0052d4; 
      box-shadow: inset 0 0 15px rgba(0, 82, 212, 0.3), 0 0 15px rgba(0, 82, 212, 0.2); 
    }
    .theme-blue .icon-orb { 
      background: radial-gradient(circle, rgba(0,82,212,0.6) 0%, rgba(0,0,0,0) 70%);
      color: #00d2ff;
      border: 2px solid #0052d4;
      box-shadow: 0 0 20px #0052d4;
    }
    .theme-blue .btn-explore { background: linear-gradient(90deg, #0052d4, #4364f7); }
    .theme-blue .btn-explore i { color: #0052d4; }

    /* Orange/Gold Theme */
    .theme-orange { 
      border-color: #f5af19; 
      box-shadow: inset 0 0 15px rgba(245, 175, 25, 0.3), 0 0 15px rgba(245, 175, 25, 0.2); 
    }
    .theme-orange .icon-orb { 
      background: radial-gradient(circle, rgba(245,175,25,0.6) 0%, rgba(0,0,0,0) 70%);
      color: #f5af19;
      border: 2px solid #f5af19;
      box-shadow: 0 0 20px #f5af19;
    }
    .theme-orange .btn-explore { background: linear-gradient(90deg, #e65c00, #f5af19); }
    .theme-orange .btn-explore i { color: #e65c00; }

    /* Teal/Green Theme */
    .theme-teal { 
      border-color: #11998e; 
      box-shadow: inset 0 0 15px rgba(17, 153, 142, 0.3), 0 0 15px rgba(17, 153, 142, 0.2); 
    }
    .theme-teal .icon-orb { 
      background: radial-gradient(circle, rgba(17,153,142,0.6) 0%, rgba(0,0,0,0) 70%);
      color: #38ef7d;
      border: 2px solid #11998e;
      box-shadow: 0 0 20px #11998e;
    }
    .theme-teal .btn-explore { background: linear-gradient(90deg, #11998e, #38ef7d); }
    .theme-teal .btn-explore i { color: #11998e; }

    /* Purple Theme */
    .theme-purple { 
      border-color: #b06ab3; 
      box-shadow: inset 0 0 15px rgba(176, 106, 179, 0.3), 0 0 15px rgba(176, 106, 179, 0.2); 
    }
    .theme-purple .icon-orb { 
      background: radial-gradient(circle, rgba(176,106,179,0.6) 0%, rgba(0,0,0,0) 70%);
      color: #ef476f;
      border: 2px solid #b06ab3;
      box-shadow: 0 0 20px #b06ab3;
    }
    .theme-purple .btn-explore { background: linear-gradient(90deg, #8a2387, #e94057); }
    .theme-purple .btn-explore i { color: #8a2387; }

    /* Light Blue Theme */
    .theme-lightblue { 
      border-color: #2193b0; 
      box-shadow: inset 0 0 15px rgba(33, 147, 176, 0.3), 0 0 15px rgba(33, 147, 176, 0.2); 
    }
    .theme-lightblue .icon-orb { 
      background: radial-gradient(circle, rgba(33,147,176,0.6) 0%, rgba(0,0,0,0) 70%);
      color: #6dd5ed;
      border: 2px solid #2193b0;
      box-shadow: 0 0 20px #2193b0;
    }
    .theme-lightblue .btn-explore { background: linear-gradient(90deg, #2193b0, #6dd5ed); }
    .theme-lightblue .btn-explore i { color: #2193b0; }

    /* Hover effect */
    .olympiad-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.06);
    }