/********** Template CSS **********/
:root {
   --primary: #5B2C91;   /* Purple */
    --secondary: #D4AF37; /* Gold */
    --light: #FFF9E6;     /* Light cream */
    --dark: #2C2C2C;
}

html, body {
    overflow-x: hidden;
}
.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: auto;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar {
    background: #ffffff !important;
    border-bottom: 2px solid var(--primary);
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

.section-title {
    color: var(--primary);
    font-weight: 700;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
    border: 2px solid var(--primary);
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
    border-color: var(--secondary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
/* .footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer {
    background: var(--primary) !important;
} */

/*** Button CSS ***/
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #4a2375;
    border-color: #4a2375;
}

.btn-light {
    background-color: var(--secondary);
    color: #000;
}

.btn-light:hover {
    background-color: #b8962e;
}

/*** Optional CSS ***/
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}
/*** Logo Custom CSS ***/
.navbar-brand img {
    height: 50px;
    width: auto;
    /* background: #fff;
    padding: 5px;
    border-radius: 8px; */
}

.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;   /* Increase this */
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

ul li {
    margin-bottom: 8px;
}

.team-item {
    border-radius: 10px;
    transition: 0.3s;
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.list-group-item {
    font-size: 15px;
    padding: 10px 15px;
}

.teacher-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.teacher-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.teacher-card p {
    margin: 0;
    color: #555;
}

.principal-section {
    background: linear-gradient(135deg, #F0FBFC, #e6f7fa);
}

.teacher-card {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 25px 15px;
    border: 1px solid #eee;
}

.teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #06BBCC;
}

.teacher-icon {
    font-size: 30px;
    color: #06BBCC;
    margin-bottom: 10px;
}
.section-spacing {
    margin-bottom: 40px;
}
/* .testimonial-section {
    background: linear-gradient(135deg, #f8f9fa, #eef9fb);
} */

.testimonial-item {
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
}

.testimonial-text {
    background: #ffffff;
    border-radius: 10px;
    border-left: 4px solid #06BBCC;
}
.testimonial-section {
    background: linear-gradient(135deg, #f8f9fa, #eef9fb);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* ================= CONTACT PAGE UPGRADE ================= */

.contact-wrapper {
    background: linear-gradient(135deg, #f8f9fa, #eef9fb);
    padding: 40px;
    border-radius: 20px;
}

.contact-info-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fff;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(91,44,145,0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* ================= WHATSAPP UI ================= */

.whatsapp-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

/* Floating Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: slideIn 0.6s ease;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    bottom: 15px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    transition: 0.3s;
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Slide Animation */
@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== WhatsApp Advanced ===== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    font-size: 26px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float {
    right: 20px;
    z-index: 9999;
}

/* Mobile pe overlap avoid */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

.whatsapp-popup {
    position: fixed;
    bottom: 90px;
    width: 320px;
    max-width: 90%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;

    display: none;   /* default hidden */
    flex-direction: column;
    max-height: 80vh;
}

.whatsapp-popup.show {
    display: flex;   /* show only when needed */
}

.chat-body {
    overflow-y: auto;
    max-height: 300px;
}

/* MOBILE CENTER FIX */
@media (max-width: 768px) {
    .whatsapp-popup {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 95%;
        bottom: 80px;
    }
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.school-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-body {
    padding: 15px;
    background: #ECE5DD;
}

.message {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
}

.chat-footer {
    padding: 10px;
    text-align: center;
}

.chat-btn {
    display: block;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.close-btn {
    margin-left: auto;
    cursor: pointer;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/**Footer premium look**/
.footer {
    background: #0f172a;
    font-size: 15px;
}

.footer p {
    color: #cbd5e1;
}

.footer h4 {
    font-weight: 600;
}

/* Links */
.footer-link {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #06b6d4;
    padding-left: 5px;
}

/* Social buttons */
.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-social:hover {
    background: #06b6d4;
    border-color: #06b6d4;
}

/* Gallery hover */
.gallery-img {
    transition: 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #25d366;
    transform: scale(1.05);
}

/* MAP FIX (DESKTOP + MOBILE PERFECT) */
.map-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.map-box {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .map-box {
        height: 250px;
    }
}

/* EMAIL FIX */
.contact-info-box p {
    word-break: break-word;
    font-size: 14px;
}

.contact-info-box p {
    word-break: break-word;
    font-size: 14px;
}

.contact-wrapper {
    align-items: stretch;
    row-gap: 20px;
}
.contact-info-box {
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.row {
    margin-left: 0;
    margin-right: 0;
}

/*Key highlights of our school CSS section start*/
/* BACKGROUND ANIMATION */
.highlight-section {
    background: linear-gradient(270deg, #f3f0ff, #ffffff, #f3f0ff);
    background-size: 600% 600%;
    animation: gradientMove 10s ease infinite;
    position: relative;
}

@keyframes gradientMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* HEADING */
.gradient-text {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(45deg, #6f42c1, #9b6dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: #777;
    margin-top: 10px;
}

/* SLIDER */
.highlight-slider {
    position: relative;
    overflow: hidden;
}

/* TRACK */
.highlight-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD */
.highlight-card {
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* ACTIVE CENTER CARD 🔥 */
.highlight-card.active {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(111,66,193,0.3);
}

/* IMAGE */
.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

.highlight-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.highlight-content {
    padding: 20px;
    text-align: center;
}

/* BUTTONS */
.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #6f42c1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.slider-btn.left { left: -20px; }
.slider-btn.right { right: -20px; }

.slider-btn:hover {
    background: #6f42c1;
    color: white;
}

/* DOTS */
.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots .active-dot {
    background: #6f42c1;
}
/*Key highlights of our school CSS section start*/

/*Achievements and awards section starts here*/

/* ===== Achievements Section (NEW PREMIUM) ===== */
.achievements-section {
  background: #f8fafc;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

.section-header p {
  color: #64748b;
  margin-top: 10px;
}

/* MAIN LAYOUT */
.achievements-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== IMAGE GRID ===== */
.achievement-gallery {
  flex: 1;
}

.img-big img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
  height: 260px;
  object-fit: cover;
}

.img-small {
  display: flex;
  gap: 15px;
}

.img-small img {
  width: 50%;
  border-radius: 15px;
  height: 140px;
  object-fit: cover;
}

/* ===== CONTENT ===== */
.achievement-content {
  flex: 1;
}

.achievement-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.achievement-item .icon {
  font-size: 24px;
  background: #e0f2fe;
  color: #0284c7;
  padding: 12px;
  border-radius: 10px;
}

.achievement-item h4 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.achievement-item p {
  margin: 5px 0 0;
  color: #64748b;
}

/* BUTTON */
.btn-achievement {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #0284c7;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-achievement:hover {
  background: #0f172a;
}

/* ===== STATS ===== */
.achievement-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  text-align: center;
  flex-wrap: wrap;
}

.achievement-stats div {
  flex: 1;
}

.achievement-stats h3 {
  font-size: 32px;
  color: #0284c7;
}

.achievement-stats p {
  color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .achievements-wrapper {
    flex-direction: column;
  }

  .achievement-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/*Extra CSS for Achievements Dedicated Page Start */
/* HERO */
.hero-achievement {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/img/carousel-1.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 18px;
  margin-top: 10px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* ACHIEVEMENT CARDS */
.achievement-section {
  padding: 80px 0;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}

.achievement-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.achievement-card:hover {
  transform: translateY(-10px);
}

.achievement-card i {
  font-size: 40px;
  color: #06b6d4;
  margin-bottom: 15px;
}

/* TIMELINE */
.timeline {
  padding: 80px 0;
  position: relative;
}

.timeline-item {
  border-left: 3px solid #06b6d4;
  padding-left: 20px;
  margin-bottom: 30px;
}

.timeline-item span {
  font-weight: bold;
  color: #06b6d4;
}

/* GALLERY */
.gallery {
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/*Extra CSS for Achievements Dedicated Page End */