 :root {
     --saffron: #FF6B00;
     --saffron-light: #FF8C42;
     --green: #138808;
     --green-dark: #0d6e06;
     --navy: #1a1a3e;
     --cream: #FFF8F0;
     --gold: #C9973A;
     --white: #ffffff;
     --text-dark: #1a1a1a;
 }

 @font-face {
     font-family: 'Kokila';
     src: url('../webfonts/kokila-regular.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Kokila', serif;
     background: var(--cream);
     overflow-x: hidden;
 }

 /* ---- NAVBAR ---- */
 .navbar-custom {
     background: linear-gradient(135deg, var(--navy) 0%, #2d1f6e 100%);
     padding: 0;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .navbar-brand-wrap {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 10px 0;
 }

 .navbar-brand-wrap .brand-text {
     color: white;
     font-family: 'Kokila', serif;
     font-weight: 700;
     font-size: 1rem;
     line-height: 1.2;
 }

 .navbar-brand-wrap .brand-text span {
     color: var(--saffron);
     font-size: 31px;
 }

 .nav-flag {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(180deg, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
     border: 2px solid var(--gold);
 }

 .navbar-custom .nav-link {
     color: rgba(255, 255, 255, 0.9) !important;
     font-weight: 600;
     font-size: 25px;
     margin: 0 14px;
     /* padding: 20px 16px !important; */
     transition: all 0.3s;
     position: relative;
     font-family: 'Kokila', serif;
 }

 .navbar-custom .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     right: 50%;
     height: 3px;
     background: var(--saffron);
     transition: all 0.3s;
 }

 .navbar-custom .nav-link:hover::after,
 .navbar-custom .nav-link.active::after {
     left: 0;
     right: 0;
 }

 .navbar-custom .nav-link:hover {
     /* color: var(--saffron) !important; */
 }

 .nav-register-btn {
     background: linear-gradient(135deg, var(--saffron), var(--saffron-light)) !important;
     color: white !important;
     border-radius: 30px !important;
     padding: 10px 24px !important;
     margin: 12px 0;
     font-weight: 700 !important;
     box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
     transition: all 0.3s !important;
 }

 .nav-register-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6) !important;
 }

 /* ---- HERO SECTION ---- */
 .hero-section {
     min-height: 100vh;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     background:
         linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgb(255 255 255 / 74%) 20%, rgb(255 255 255 / 65%) 70%, rgba(19, 136, 8, 0.08) 100%), url(../images/banner-bg.jpg) center / cover no-repeat;
 }

 /* Tricolor side strips */
 .hero-section::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 8px;
     background: linear-gradient(180deg, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
 }

 .hero-section::after {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 8px;
     background: linear-gradient(180deg, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
 }

 /* Decorative mandala */
 .mandala-left,
 .mandala-right {
     position: absolute;
     width: 300px;
     height: 300px;
     opacity: 0.08;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23FF6B00' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23138808' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23FF6B00' stroke-width='2'/%3E%3C/svg%3E");
     background-size: contain;
 }

 .mandala-left {
     left: -60px;
     top: 50%;
     transform: translateY(-50%);
 }

 .mandala-right {
     right: -60px;
     top: 50%;
     transform: translateY(-50%);
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     padding: 60px 20px 40px;
 }

 .hero-logos {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin-bottom: 30px;
     flex-wrap: wrap;
 }

 .hero-logos img {}

 .logo-divider {
     width: 1px;
     height: 50px;
     background: rgba(0, 0, 0, 0.2);
 }

 .logo-placeholder {

     width: 125px;


     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     font-weight: 900;

 }

 .hero-badge {
     display: inline-block;
     background: var(--navy);
     color: var(--gold);
     padding: 6px 20px;
     border-radius: 30px;
     font-size: 20px;
     font-weight: 600;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-bottom: 20px;
     border: 1px solid var(--gold);
 }

 .hero-title-saffron {
     background: var(--saffron);
     color: white;
     display: inline-block;
     padding: 8px 28px;
     border-radius: 6px;
     font-family: 'Kokila', serif;
     font-size: clamp(2.5rem, 6vw, 4.5rem);
     font-weight: 900;
     line-height: 1;
     margin-bottom: 10px;
     box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
     /* transform: rotate(-1deg); */
 }

 .hero-title-green {
     background: var(--green);
     color: white;
     display: inline-block;
     padding: 8px 28px;
     border-radius: 6px;
     font-family: 'Kokila', serif;
     font-size: clamp(2.5rem, 6vw, 4.5rem);
     font-weight: 900;
     line-height: 1;
     margin-bottom: 20px;
     box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
     transform: rotate(0.5deg);
 }

 .hero-tagline {
     font-family: 'Kokila', serif;
     font-size: clamp(1.1rem, 2.5vw, 2.5rem);
     color: #ff6b00;
     font-weight: 600;
     margin-bottom: 24px;
     text-shadow: 0px 1px 2px #0e5f06;
 }

 a.nav-register-btn:hover {
     color: #fff !important;
 }

 .hero-date-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--green);
     color: white;
     padding: 12px 30px;
     border-radius: 50px;
     font-size: 1.2rem;
     font-weight: 700;
     font-family: 'Kokila', serif;
     margin-bottom: 16px;
     box-shadow: 0 6px 20px rgba(19, 136, 8, 0.3);
 }

 .hero-venue {
     background: rgba(26, 26, 62, 0.9);
     color: white;
     display: inline-block;
     padding: 10px 28px;
     border-radius: 6px;
     font-size: 1.4rem;
     font-family: 'Kokila', serif;
     margin-bottom: 35px;
     border-left: 4px solid var(--saffron);
 }

 .hero-cta-wrap {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-register {
     background: linear-gradient(135deg, var(--saffron), #FF4500);
     color: white;
     border: none;
     padding: 16px 40px;
     border-radius: 50px;
     font-size: 20px;
     font-weight: 700;
     font-family: 'Kokila', serif;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
     transition: all 0.3s;
 }

 .btn-register:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
     color: white;
 }

 .btn-outline-nav {
     background: transparent;
     color: var(--navy);
     border: 2px solid var(--navy);
     padding: 14px 35px;
     border-radius: 50px;
     font-size: 20px;
     font-weight: 600;
     font-family: 'Kokila', serif;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s;
 }

 .btn-outline-nav:hover {
     background: var(--navy);
     color: white;
 }

 /* Flying birds animation */
 .birds-svg {
     position: absolute;
     opacity: 0.4;
     animation: flyAcross 20s linear infinite;
 }

 @keyframes flyAcross {
     0% {
         transform: translateX(-200px);
         opacity: 0;
     }

     10% {
         opacity: 0.4;
     }

     90% {
         opacity: 0.4;
     }

     100% {
         transform: translateX(110vw);
         opacity: 0;
     }
 }

 /* ---- ABOUT SECTION ---- */
 .section-about {
     padding: 80px 0;
     background: #f5f5ff;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title h2 {
     font-family: 'Kokila', serif;
     font-size: clamp(1.8rem, 3.5vw, 2.8rem);
     font-weight: 800;
     color: var(--navy);
     margin-bottom: 10px;
 }

 .title-underline {
     width: 80px;
     height: 4px;
     margin: 0 auto 15px;
     border-radius: 2px;
     background: linear-gradient(90deg, var(--saffron), var(--green));
 }

 .about-card {
     background: var(--cream);
     border-radius: 16px;
     padding: 35px 30px;
     height: 100%;
     border-top: 5px solid transparent;
     transition: all 0.3s;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
 }

 .about-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 .about-card.saffron {
     border-top-color: var(--saffron);
 }

 .about-card.green {
     border-top-color: var(--green);
 }

 .about-card.navy {
     border-top-color: var(--navy);
 }

 .about-icon {
     width: 65px;
     height: 65px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.7rem;
     margin-bottom: 20px;
 }

 .about-icon.saffron {
     background: rgba(255, 107, 0, 0.15);
     color: var(--saffron);
 }

 .about-icon.green {
     background: rgba(19, 136, 8, 0.15);
     color: var(--green);
 }

 .about-icon.navy {
     background: rgba(26, 26, 62, 0.1);
     color: var(--navy);
 }

 .about-card h4 {
     font-family: 'Kokila', serif;
     font-size: 35px;
     font-weight: 700;
     color: var(--navy);
     margin-bottom: 12px;
 }

 .about-card p {
     color: #555;
     line-height: 1.7;
     font-size: 1.4rem;
 }

 /* ---- EVENT HIGHLIGHTS ---- */
 .section-highlights {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--navy) 0%, #2d1f6e 100%);
     position: relative;
     overflow: hidden;
 }

 .section-highlights::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
 }

 .section-highlights .section-title h2 {
     color: white;
 }

 .highlight-card {
     background: rgba(255, 255, 255, 0.08);
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     padding: 30px 25px;
     text-align: center;
     backdrop-filter: blur(10px);
     transition: all 0.3s;
     height: 100%;
 }

 .highlight-card:hover {
     background: rgba(255, 255, 255, 0.15);
     transform: translateY(-5px);
     border-color: var(--saffron);
 }

 .highlight-num {
     font-size: 3rem;
     font-weight: 900;
     color: var(--saffron);
     display: block;
     line-height: 1;
     font-family: 'Playfair Display', serif;
 }

 .highlight-label {
     color: rgba(255, 255, 255, 0.85);
     font-size: 1.4rem;
     font-family: 'Kokila', serif;
     margin-top: 8px;
 }

 /* ---- LANGUAGES SECTION ---- */
 .section-languages {
     padding: 80px 0;
     background: var(--cream);
 }

 .lang-tag {
     display: inline-block;
     padding: 8px 18px;
     border-radius: 30px;
     font-family: 'Kokila', serif;
     font-size: 23px;
     font-weight: 600;
     margin: 5px;
     transition: all 0.3s;
     cursor: default;
 }

 .lang-tag:hover {
     transform: scale(1.05);
 }

 .lang-tag.s {
     background: rgba(255, 107, 0, 0.12);
     color: var(--saffron);
     border: 1px solid rgba(255, 107, 0, 0.3);
 }

 .lang-tag.g {
     background: rgba(19, 136, 8, 0.12);
     color: var(--green);
     border: 1px solid rgba(19, 136, 8, 0.3);
 }

 .lang-tag.n {
     background: rgba(26, 26, 62, 0.08);
     color: var(--navy);
     border: 1px solid rgba(26, 26, 62, 0.2);
 }

 /* ---- CTA SECTION ---- */
 .section-cta {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--saffron) 0%, #FF4500 100%);
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .section-cta::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-opacity='0.1' stroke-width='2'/%3E%3C/svg%3E") center/100px repeat;
 }

 .section-cta h2 {
     color: white;
     font-family: 'Kokila', serif;
     font-size: clamp(1.8rem, 3.5vw, 2.8rem);
     font-weight: 800;
     margin-bottom: 15px;
 }

 .section-cta p {
     color: rgba(255, 255, 255, 0.9);
     font-size: 29px;
     margin-bottom: 30px;
 }

 .btn-white {
     background: white;
     color: var(--saffron);
     border: none;
     padding: 16px 45px;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 700;
     font-family: 'Kokila', serif;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     transition: all 0.3s;
 }

 .btn-white:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
     color: var(--saffron);
 }

 /* ---- FOOTER ---- */
 footer {
     background: var(--navy);
     color: rgba(255, 255, 255, 0.8);
     padding: 40px 0 20px;
 }

 footer h5 {
     color: var(--saffron);
     font-family: 'Kokila', serif;
     font-weight: 700;
     margin-bottom: 15px;
     font-size: 31px;
 }

 footer p,
 footer a {
     font-size: 22px;
     color: rgba(255, 255, 255, 0.7);
 }

 footer a {
     text-decoration: none;
     transition: color 0.2s;
     font-size: 24px;
 }
p {
    margin-top: 0;
    font-size: 22px;
    margin-bottom: 1rem;
}
 footer a:hover {
     color: var(--saffron);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
     margin-top: 30px;
     text-align: center;
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.5);
 }

 /* Tricolor bar */
 .tricolor-bar {
     height: 6px;
     background: linear-gradient(90deg, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
 }

 /* Scroll animations */
 .fade-up {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.7s ease;
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Responsive */
 @media (max-width: 768px) {

     .hero-title-saffron,
     .hero-title-green {
         font-size: 2.2rem;
     }
 }


 .section-video {
     padding: 70px 0;
     background: linear-gradient(180deg, #fff 0%, #f8f4ff 50%, #fff 100%);
     position: relative;
     overflow: hidden;
 }

 .section-video::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
 }

 .video-container {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
     background: #000;
     max-width: 860px;
     margin: 0 auto;
 }

 .video-container video {
     width: 100%;
     display: block;
     border-radius: 20px;
 }

 /* Custom play overlay */
 .video-overlay {
     position: absolute;
     inset: 0;
     background: rgba(26, 26, 62, 0.45);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     border-radius: 20px;
     transition: background 0.3s;
 }

 .video-overlay:hover {
     background: rgba(26, 26, 62, 0.25);
 }

 .play-btn {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--saffron), #e55a00);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: white;
     box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
     transition: transform 0.3s;
     border: 3px solid rgba(255, 255, 255, 0.4);
 }

 .video-overlay:hover .play-btn {
     transform: scale(1.1);
 }

 .video-overlay.hidden {
     display: none;
 }

 /* Decorative border around video */
 .video-frame {
     padding: 6px;
     border-radius: 24px;
     background: linear-gradient(135deg, var(--saffron), var(--green));
     max-width: 872px;
     margin: 0 auto;
 }

 /* Video badge */
 .video-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, var(--navy), #2d1f6e);
     color: white;
     padding: 8px 22px;
     border-radius: 30px;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 16px;
     letter-spacing: 0.5px;
 }

 .video-desc {
     max-width: 600px;
     margin: 20px auto 0;
     text-align: center;
     color: #666;
     font-size: 1.4rem;
     line-height: 1.7;
 }

 @media (max-width: 768px) {
     .play-btn {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
     }

     .section-video {
         padding: 50px 0;
     }
 }
 @media (min-width: 1200px) {
    .h1, h1 {
        font-size: 68px;
        margin: 0;
        line-height: 1;
        font-family: 'Kokila', serif;
    }
}


 .bbs-sankalpana-section {
    background-color: #fdf7ef;
    padding: 75px 0 90px;
    font-family: 'Kokila', serif;
  }

  /* --- Heading --- */
  .bbs-heading-wrap {
    margin-bottom: 55px;
  }

  .bbs-badge-pill {
    display: inline-block;
    background: #fff3e6;
    border: 1.5px solid #ff6600;
    color: #c0390b;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .bbs-main-title {
    font-family: 'Kokila', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a3a2a;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .bbs-main-title em {
    font-style: normal;
    color: #e05a00;
  }

  /* Tiranga divider */
  .bbs-tiranga-divider {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 16px;
    width: fit-content;
  }

  .bbs-tiranga-divider span {
    height: 5px;
    border-radius: 3px;
    display: block;
  }

  .td-saffron { width: 50px; background: #FF9933; }
  .td-white   { width: 30px; background: #ffffff; border: 1.5px solid #ddd; }
  .td-green   { width: 50px; background: #138808; }

  /* --- Image Column --- */
  .bbs-img-col {
    margin-bottom: 40px;
  }

  .bbs-img-outer {
    position: relative;
    padding-bottom: 24px;
  }

  .bbs-img-deco-circle {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ff660012;
    border: 2px dashed #ff6600;
    z-index: 0;
  }

  .bbs-img-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #ff660030;
    position: relative;
    z-index: 1;
  }

  .bbs-img {
    max-width: 100%;
   
    
    display: block;
  }

  .bbs-img-badge {
       position: absolute;
    bottom: 0;
    left: 24px;
    background: #1a3a2a;
    color: #ffffff;
    font-family: 'Kokila', serif;
    font-size: 28px;
    font-weight: 600;
    padding: 5px 22px;
    border-radius: 10px;
    border-left: 4px solid #ff6600;
    z-index: 2;
    white-space: nowrap;
  }

  /* --- Text Column --- */
  .bbs-text-col {
    padding-left: 20px;
  }

  .bbs-para {
       font-family: 'Kokila', serif;
    font-size: 24px;
    line-height: 28px;
    color: #3d3228;
    text-align: justify;
    margin-bottom: 1.3rem;
    position: relative;
    padding-left: 18px;
    font-weight: 500;
  }

  .bbs-para::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: calc(100% - 6px);
    background: #ff660035;
    border-radius: 2px;
  }

  .bbs-para:last-child {
    margin-bottom: 0;
  }

  /* --- Responsive --- */
  @media (max-width: 991px) {
    .bbs-text-col {
      padding-left: 0;
    }
  }

  @media (max-width: 768px) {
    .bbs-sankalpana-section {
      padding: 50px 0 60px;
    }

    .bbs-main-title {
      font-size: 1.6rem;
    }

    .bbs-img {
      height: 250px;
    }

    .bbs-para {
      font-size: 0.97rem;
      line-height: 1.95;
    }

    .bbs-img-badge {
      font-size: 11px;
      padding: 8px 14px;
    }

    .bbs-img-deco-circle {
      width: 60px;
      height: 60px;
      top: -10px;
      right: -10px;
    }
  }
  
  
  
  .academy-section {
    background: #f9f8ff;
    position: relative;
}

.section-title {
    color: #2c2c2c;
}

.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ff6a00, #28a745);
    border-radius: 5px;
    margin-top: 10px;
}

/* Content Styling */
.academy-content p {
        font-family: 'Kokila', serif;
    font-size: 24px;
    line-height: 28px;
    color: #3d3228;
    text-align: justify;
    margin-bottom: 1.3rem;
    position: relative;
    padding-left: 18px;
    font-weight: 500;
}

/* Image Box */
.academy-img-box {
    position: relative;
}

.academy-img-box img {
    border-radius: 15px;
    transition: 0.4s;
}

.academy-img-box img:hover {
    transform: scale(1.03);
}

/* Decorative Background Effect */
.academy-section::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 50%;
    top: -40px;
    left: -40px;
}

.academy-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(40, 167, 69, 0.08);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}
.about-card a {
	    background: #ff6b00;
    color: #fff;
    padding: 10px 21px;
    border-radius: 4px;
    font-size: 22px;
    text-decoration: none;
}