html, body {
    width: 100%;
    overflow-x: hidden !important;
}


:root {
        --primary: <?=$primary ?>;
        --secondary: <?=$secondary ?>;
    }

    body {
        font-family: Inter, system-ui;
        background: #fff;
    }

    p{}

    .btn-primary {
        background: var(--primary);
        border: none;
    }

    .btn-primary:hover {
        background: var(--secondary);
        color: #000;
    }

    /* Root hero container */
    .hero-slider {
        width: 100%;
        height: 100dvh;              /* TRUE device height (modern browsers) */
        min-height: 100vh;           /* fallback */
        position: relative;
        overflow: hidden;
    }

    /* Bootstrap carousel stretch */
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 100%;
    }

    /* Actual slide */
    .hero-slide {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* ======================
    HERO RESPONSIVE FIX
    ====================== */

    .hero-slider,
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 100vh;
    }

    /* Background image slide */
    .hero-slide {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
    }

.slide-1 { background-image: url('../assets/hero0.jpg'); }
.slide-2 { background-image: url('../assets/hero1.jpg'); }
.slide-3 { background-image: url('../assets/hero2.jpg'); }

@media (max-width:768px){
  .slide-1{ background-image:url('../assets/slider1.jpg'); }
  .slide-2{ background-image:url('../assets/slider2.jpg'); }
  .slide-3{ background-image:url('../assets/slider3.jpg'); }
} 








    .section {
        padding: 60px 0;
    }

    .icon-box {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        transition: .3s;
    }

    .icon-box i {
        font-size: 42px;
        color: var(--primary);
    }

    .icon-box:hover {
        background: var(--secondary);
        transform: translateY(-6px);
    }

    /* Sticky Admission Bar */
    .sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--primary);
        color: #fff;
        padding: 12px;
        z-index: 999;
    }

    .sticky-bar a {
        margin-left: 10px
    }

    /* WhatsApp Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 20px;
        background: #25D366;
        color: #fff;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        z-index: 999;
    }

    /* WhatsApp Button */
    .inquire-float {
        position: fixed;
        bottom: 100px;
        right: 20px;
        background: #0b5f04;
        color: #fff;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        z-index: 999;
    } 

    .admission-banner {
    width: 100%;
    overflow: hidden;
    /* border-top:2px solid white; */
    }

    /* LEFT PANEL */
    .how-apply {
    background: #0e5233;
    color: #fff;
    padding: 0px 40px;
    }

    .how-apply h2 {
    font-weight: 700;
    margin-bottom: 40px;
    }

    .how-apply .step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    }

    .how-apply .circle {
    width: 50px;
    height: 50px;
    border: 2px dashed #a8c136;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    color: #a8c136;
    }

    .faculty-image-wrap{
    position:relative;
    width:100%;
    max-width:320px;
    margin:auto;
    margin-bottom: 25px;
}


    .how-apply p {
    margin: 0;
    font-size: 16px;
    }

    /* RIGHT PANEL */
    .admission-form {
    background: #a8c136;
    padding: 40px;
    display: flex;
    align-items: center;
    }

    .form-box {
    max-width: ;
    width: 100%;
    }

    .form-box h2 {
    color: #0e5233;
    font-weight: 800;
    }

    .form-box .subtitle {
    margin-bottom: 25px;
    color: #000000;
    }

    .form-box .form-control,
    .form-box .form-select {
    margin-bottom: 15px;
    font-size: 14px;
    }

    .apply-btn {
    background: #a8c136;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 12px;
    transition: 0.3s;
    }

    .apply-btn:hover {
    background: #0e5233;
    color: #fff;
    }
 

.apply-section {
  background: #0e5233; /* primary */
  padding: 40px 0;
  color: #fff; 
}

.apply-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.apply-steps {
  position: relative;
  max-width: 900px;
}

/* vertical dotted line */
.apply-line {
  position: absolute;
  left: 33px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #a8c136,
    #a8c136 6px,
    transparent 6px,
    transparent 12px
  );
}

/* step row */
.apply-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* circle */
.step-circle {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px dotted #a8c136;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0e5233;
  font-weight: 700;
  transition: 0.3s;
}

.step-circle span {
  font-size: 11px;
  letter-spacing: 1px;
}

.step-circle strong {
  font-size: 22px;
  line-height: 1;
}

/* text */
.apply-step p {
  margin-top: 15px;
  font-size: 16px;
  max-width: 250px;
}

.apply-step small {
  font-size: 11px;
  opacity: 0.9;
}

/* hover effect */
.apply-step:hover .step-circle {
  background: #a8c136;
  color: #000;
  border-color: #fff;
}

/* mobile */
@media (max-width: 768px) {
  .apply-line {
    left: 30px;
  }

  .step-circle {
    width: 60px;
    height: 60px;
  }

  .apply-step {
    gap: 20px;
  }

  .apply-title {
    font-size: 26px;
  }
}


.about-section {
  padding: 60px 0;
}

/* Ensure slider matches left content height */
.about-slider-wrap {
  min-height: 100%;
}

.about-slider-wrap .carousel,
.about-slider-wrap .carousel-inner,
.about-slider-wrap .carousel-item {
  height: 100%;
}

/* Image full height */
.about-slider-wrap img {
  object-fit: cover;
  border-radius: 12px;
}

/* Arrow styling (more visible) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.6);
  background-size: 60%;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {

  .about-section {
    padding: 50px 0;
  }

  .about-slider-wrap {
    min-height: 280px;
  }

  .about-slider-wrap img {
    height: 280px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 35px;
    height: 35px;
  }
}


.why-choose-section {
  padding: 60px 0;
  background:#a8c136;
}

.why-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

.why-title span {
  font-weight: 300;
}

.why-title strong {
  font-weight: 800;
}

.why-accordion {
  max-width: 1000px;
  margin: auto;
}

.why-item {
  border-bottom: 1px solid #111;
  padding: 5px 0;
}

.why-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.why-number {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  width: 80px;
}

.why-header h4 {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0px;
}

.why-arrow {
  font-size: 26px;
  transition: transform 0.3s ease;
}

.why-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding-left: 80px;
  font-size: 15px;
  color: #212529;
  line-height: 1.7;
}

.why-item.active .why-content {
  max-height: 200px;
  opacity: 1;
  margin: 0px 0px 15px 0px;
}

.why-item.active .why-arrow {
  transform: rotate(90deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .why-title {
    font-size: 28px;
  }

  .why-number {
    width: 50px;
    font-size: 30px;
  }

  .why-content {
    padding-left: 50px;
  }
}


.placement-section {
  background: #a8c136; /* secondary theme color */
  padding: 70px 0;
  text-align: center;
}

.placement-title {
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #000;
}

.placement-title strong {
  font-weight: 800;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

/* Logo card */
.logo-card {
  border-radius: 12px;  
  display: flex;
  align-items: center;
  justify-content: center; 
  height: 90px;
}
.logo-card img {
  max-height: 45px;
  max-width: 140px;
  object-fit: contain;
}

.logo-track1 {
  display: flex;
  width: max-content; 
}
.logo-card1 {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  margin: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.logo-card1 img {
  width: 110px;
  height: 110px; 
  object-fit: contain;
}

/* Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .placement-title {
    font-size: 26px;
  }

  .logo-card {
    min-width: 150px;
    height: 80px;
  }

  .logo-card img {
    max-height: 38px;
  }
}



.future-edge-section{padding:60px 0px;}
.glance-card {
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: .4s;
        }

        .glance-card .main-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            filter: grayscale(20%);
            transition: .4s;
        }

        .glance-card:hover .main-img {
            transform: scale(1.05);
            filter: grayscale(0);
        }

        .glance-card .overlay {
            position: absolute;
            inset: 0;
            background: rgba(14, 82, 51, 0);
            transition: .4s;
        }

        .glance-card:hover .overlay {
            background: rgba(14, 82, 51, 0.95);
        }

        .glance-card .glance-details {
            position: absolute;
            bottom: 30px;
            width: 100%;
            padding:10px;
            text-align: center;
            z-index: 4;
            opacity: 0;
            transform: translateY(20px);
            transition: .4s;
        }

        .glance-card:hover .glance-details {
            opacity: 1;
            transform: translateY(0);
        }

        .glance-card .af-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 14px;
            text-shadow: 0 2px 6px rgba(0,0,0,.4);
        }

        .glance-card,
        .glance-card img {
            will-change: transform;
            transform: translateZ(0);
        }

        .glance-card .overlay,
        .glance-card .glance-details {
            pointer-events: none;
        }

        .strip{ position:absolute; bottom:25px; background-color:rgba(14, 82, 51, 0.8); width:100%; padding:5px; }
        .strip-head{ margin-bottom:0px; font-size:18px; color:white; padding-top:5px; }
        .strip-icon{ height:35px; margin:0px 10px 0px 10px; float:left; }

        .strip-icon {
            margin-right: 8px;
            font-size: 25px;
        }

        .glance-details p {
            margin-top: 8px;
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
        }

/* core-values */
        .core-values {
            padding: 60px 0;
        }

        .core-box {
            flex: 0 0 25%;
        }

        .core-inner {
            background: #f8f8f8; 
            border-radius: 10px;
            padding: 25px 15px;
            height: 100%;
            transition: 0.3s;
            border: 2px solid transparent;
        }

        .core-inner:hover {
            background: #0e5233;
            border-color: #0e5233;
            transform: translateY(-6px);
        }

        .core-inner h4 {
            font-size: 18px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #0e5233;;
        }

        .core-inner p {
            font-size: 14px;
            line-height: 1.5;
            color: #000000;
        }

        .core-inner .fa-solid {
            font-size: 14px;
            line-height: 1.5;
            color: #000000;
        }

        /* Hover text color change */
        .core-inner:hover h4,
        .core-inner:hover p,
        .core-inner:hover .fa-solid {
            color: #fff;
        }

        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .core-box {
                flex: 0 0 33.33%;
            }
        }
        @media (max-width: 767px) {
            .core-box {
                flex: 0 0 50%;
            }
        }


        .placements-section {
            padding: 60px 0;
            background: #eee;
        }
 
        .stat-item {
            background: #fff;
            border: 1px solid #0e5233;
            padding: 22px 14px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            transition: 0.3s ease;
            border-radius:10px;
        }

        .stat-item h3 {
            font-size: 36px;
            font-weight: 800;
            color: #0e5233;
            margin-bottom: 8px;
        }

        .stat-item p {
            font-size: 13px;
            color: #333;
            margin: 0;
            line-height: 1.4;
        }

        .stat-item:hover {
            transform: translateY(-6px);
            border-color: #a8c136;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }


        .placements-title {
            font-size: 34px;
            font-weight: 800;
            color: #0e5233;
        }

        .placements-subtitle {
            max-width: 760px;
            margin: 10px auto 0;
            color: #555;
            font-size: 15px;
        }

        .divider {
            height: 2px;
            background: #a8c136;
            margin: 35px 0;
        }

        .placements-stats h3 {
            font-size: 42px;
            font-weight: 800;
            color: #0e5233;
            margin-bottom: 5px;
        }

        .placements-stats p {
            font-size: 14px;
            color: #333;
        }

        .logo-box {
            background: #fff;
            border: 1px solid #e5e5e5;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
        }

        .logo-box img {
            max-height: 40px;
            max-width: 100%;
            filter: grayscale(100%);
            transition: 0.3s;
        }

        .logo-box:hover {
            transform: translateY(-5px);
            border-color: #a8c136;
        }

        .logo-box:hover img {
            filter: grayscale(0%);
        }

        /* Mobile */
        @media(max-width:768px){
            .placements-title {
                font-size: 26px;
            }
        }








            .future-edge-section {
                position: relative;
                padding: 60px 0; 
            }

            .edge-bg img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: -1;
                filter: grayscale(100%) brightness(0.35);
                border-radius:0px !important;
            }


            .facility-card {
                background: #ffffff;
                margin-bottom: 15px;
                padding: 15px 15px;
                border-radius: 10px;
                box-shadow: 0 6px 20px rgba(0,0,0,0.08);
                transition: all 0.35s ease;
                height: 100%;
                cursor: pointer; 
            }

            .facility-card i {
                font-size: 40px;
                color: #0e5233;
                margin-bottom: 15px;
                transition: all 0.35s ease;
            }

            .facility-card h6 {
                font-weight: 600;
                margin-bottom: 5px;
                color: #000;
                transition: all 0.35s ease;
            }

            .facility-card p {
                font-size: 13px;
                color: #555;
                margin: 0;
                transition: all 0.35s ease;
            }

            .facility-card:hover {
                background: #a5c438;
                transform: translateY(-6px);
            }

            .facility-card:hover i,
            .facility-card:hover h6,
            .facility-card:hover p {
                color: #000;
            }

            /* Student */
          .know-more-btn {
          margin-top: 10px;
          padding: 6px 14px;
          font-size: 13px;
          border: none;
          background: #a4bf37;
          color: #000;
          border-radius: 20px;
          cursor: pointer;
          }
          .know-more-btn:hover { 
          background: #0e5233;
          color: white; 
          }

.instituteSlider {
    padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0e5233;
}

.swiper-pagination-bullet-active {
    background: #a8c136;
}



/* ===============================
   Swiper Navigation – Smaller Size
================================ */

.swiper-button-next,
.swiper-button-prev {
    width: 34px;          /* reduced */
    height: 34px;         /* reduced */
    background: #0e5233;
    border-radius: ;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 12px;      /* reduced */
    font-weight: 700;
    color: #ffffff;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #a8c136;
    transform: scale(1.05);
}

/* Position */
.swiper-button-prev {
    left: 8px;
}

.swiper-button-next {
    right: 8px;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 11px;
    }

    .swiper-button-prev {
        left: 6px;
    }

    .swiper-button-next {
        right: 6px;
    }
}


.why-different-section {
  padding: 60px 0;
  background: #f8f9fb;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 30px;
}

.section-title span {
  color: #0e5233;
}

.image-wrap img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.feature-card {
  display: flex;
  gap: 10px;
  background: #ffffff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin: 5px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.feature-card i {
  font-size: 28px;
  color: #0e5233;
  margin-top: 5px;
}

.feature-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

 

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}



 /* Trending Programs  */
.future-programs-section {
  background: #f3f1ef;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

/* TOP GRID */
.top-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.5fr;
  background: #fff;
}

/* LEFT BOX */
.left-box {
  background: #0e5233;
  color: #fff;
  padding: 40px;
}

.left-box h2 {
  font-size: 32px;
  line-height: 1.2;
}

.left-box span {
  color: #ffe600;
}

.left-box p {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.6;
}

/* CENTER IMAGE */
.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT BOX */
.right-box {
  padding: 35px;
}

.right-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.program-item i {
  font-size: 30px;
}

/* PARTNERS */
.partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin:30px 0px;
}

.partners img {
  max-height: 35px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
  transform: scale(1);
  cursor: pointer;
}

/* Hover Effect */
.partners img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) translateY(-4px);
} 


/* WHY IT MATTERS */
.why-matters h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #000;
  padding-top: 20px;
  gap: 15px;
}

.check-grid div {
  font-size: 14px;
}

.check-grid i {
  color: #0b6623;
  margin-right: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-grid {
    grid-template-columns: 1fr;
  }
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }
}
 




/* ====== MAIN SECTION ====== */
.scholarships {
  padding: 60px 0;
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
}

/* ====== TOP LAYOUT ====== */
.scholarships_top {
  display: flex;
  background: #000;
  border-radius: 22px 22px 0px 0px;
  overflow: hidden;
}

/* LEFT IMAGE */
.scholarships_left {
  width: 40%;
}

.scholarships_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.scholarships_right {
  width: 60%;
  padding: 40px 50px;
  color: #fff;
  position: relative;
}

/* ====== HEADER ====== */
.scholarships_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}

.scholarships_head_left {
  font-size: 32px;
  font-weight: 700;
}

.scholarships_head_left span {
  display: block;
  font-size: 16px;
  color: #f2d600;
  margin-top: 4px;
}

.scholarships_head_right {
  font-size: 16px;
  text-align: right;
}

.scholarships_head_right span {
  display: block;
  color: #f2d600;
  font-weight: 600;
}

/* DESCRIPTION */
.scholarships_right p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 85%;
  margin-bottom: 25px;
}

/* ====== WHITE CARD ====== */
.scholarships_form {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  color: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* SLIDER ITEM TITLE */
.scholarshipshead {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 15px;
}

/* TABLE */
.tableresponsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th {
  background: #0b6623;
  color: #fff;
  padding: 10px;
  font-weight: 600;
}

.table td {
  padding: 9px 10px;
  border: 1px solid #ddd;
}

/* ====== OWL DOTS ====== */
.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dot span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.owl-dot.active span {
  background: #0b6623;
}

/* ====== BOTTOM GREEN STRIP ====== */
.scholarships_bottom {
  margin-top: ;
  background: #0e5233;
  border-radius:0px 0px 22px 22px;
  padding: 35px 40px;
  display: ;
  align-items: center; 
  color: #fff;
}

.scholarships_heading {
  font-size: 40px;
  line-height: 1.2;
  text-align: right;
}

.scholarships_heading span {
  color: #ffe600;
}

.f-start img {
  max-height: 70px;
}

.scholarships_text p {
  font-size: 28px;
  margin-bottom: 10px;
  color: #a8c136;
  text-align:center;
}

.scholarships_text .btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.scholarships_text .btn:hover {
  background: #fff;
  color: #0b6623;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .scholarships_top {
    flex-direction: column;
  }

  .scholarships_left,
  .scholarships_right {
    width: 100%;
  }

  .scholarships_right {
    padding: 30px;
  }

  .scholarships_bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* ACCORDION CONTAINER */
.scholarships_form {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
}

/* EACH ACCORDION ITEM */
.accordion-item {
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

/* HEADER */
.accordion-header {
  background:;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #0e5233;
}

/* ICON */
.accordion-icon {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* BODY */
.accordion-body {
  display: none;
  padding: 15px;
  background: #fff;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .accordion-header {
  background: #0b6623;
  color: #fff;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* TABLE STYLING */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th {
  background: #0b6623;
  color: #fff;
  padding: 10px;
}

.table td {
  padding: 9px;
  border: 1px solid #ddd;
}


/* NOP Section */
/* ===== NEP SECTION ===== */
.nep-section {
  background: #a8c136; /* theme green */
  padding: 60px 0px;
  color: black;
}

.nep-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.nep-badge {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.nep-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.nep-header p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.95;
}

/* CARDS */
.nep-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.nep-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.nep-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
}

/* ICON */
.nep-card i {
  font-size: 46px;
  margin-bottom: 18px;
  opacity: 0.85;
}

/* TEXT */
.nep-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nep-card span {
  font-size: 14px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nep-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nep-cards {
    grid-template-columns: 1fr;
  }

  .nep-header h2 {
    font-size: 28px;
  }
}




/* Campus Life */
/* SECTION */
.campus-life {
  background: url("uploads/campus-life.jpg") center/cover no-repeat;
  height: 500px;
  position: relative;
}

.campus-overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-container {
  text-align: center;
  color: #fff;
}

.campus-container h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* PLAY BUTTON */
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* MODAL */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-content iframe {
  width: 100%;
  height: 500px;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



/* FOOTER BASE */
.fu-footer {
  background: #000;
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}



/* TOP ROW */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 15px;
}

.footer-left h4,
.footer-right h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  max-width: 380px;
}

/* CONTACT CARDS */
.contact-card {
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  width: fit-content;
}

.contact-card i {
  color: #000;
}

.contact-card span {
  font-weight: 600;
}

/* DIVIDERS */
.fu-footer hr {
  border: none;
  height: 1px;
  background: #444;
  margin: 20px 0;
}

/* CTA */
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-cta h2 {
  font-size: 36px;
  font-weight: 700;
}

.apply-btn {
  border: 1px solid #fff;
  padding: 14px 32px;
  border-radius: 40px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #fff;
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .enquire-now {
    display: none;
  }
}

.logo-card {
    background: transparent;
}

.logo-card img {
    filter: brightness(1.1) contrast(1.2);
    mix-blend-mode: multiply;
}




/* Video SEction */
.video-showcase {
    padding: 60px 0px 0px 0px;
    background: #f0f0f0;;
    overflow: hidden;
    perspective: 1500px;
}

.videoSwiper {
    padding: 60px 0;
    position: relative;
}

.swiper-wrapper {
    align-items: center;
}

.video-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    height: 420px;
    background: #000;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

/* Previous slide - Cinema perspective (skewed right) */
.swiper-slide-prev .video-card {
    transform: perspective(1200px) rotateY(25deg) scale(0.75);
    transform-origin: right center;
    box-shadow: 15px 20px 60px rgba(0,0,0,0.4);
}

/* Active center slide - Full and flat */
.swiper-slide-active .video-card {
    transform: perspective(1200px) rotateY(0deg) scale(1);
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
    z-index: 10;
}

/* Next slide - Cinema perspective (skewed left) */
.swiper-slide-next .video-card {
    transform: perspective(1200px) rotateY(-25deg) scale(0.75);
    transform-origin: left center;
    box-shadow: -15px 20px 60px rgba(0,0,0,0.4);
}

/* All non-active slides */
.swiper-slide:not(.swiper-slide-active) .video-card {
    opacity: 1;
}

.swiper-slide-active .video-card {
    opacity: 1;
}

.video-thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 3;
    backface-visibility: hidden;
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #DC143C, #B22222);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
    z-index: 5;
}

.play-btn:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #C41E3A, #8B0000);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.7);
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 34px;
    top: 28px;
    border-left: 22px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

/* YouTube iframe */
.yt-holder {
    position: absolute;
    inset: 0;
    z-index: 2;
    backface-visibility: hidden;
}

.yt-holder iframe {
    width: 100%;
    height: 120%; margin-top:-10px;
}

/* Inactive overlay for side videos */
.inactive-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 4;
    transition: opacity 0.5s ease;
    pointer-events: none;
    backface-visibility: hidden;
}

.swiper-slide-active .inactive-overlay {
    opacity: 0;
}

/* Navigation Buttons - Cinema style */ 

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* University Branding */
.video-card::before {
    content: 'Future Unitversity, Bareilly';
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 6;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    text-shadow: 0 3px 12px rgba(0,0,0,0.7);
    line-height: 1.5;
    white-space: pre;
    letter-spacing: 0.5px;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 1024px) {
    .swiper-slide-prev .video-card {
        transform: perspective(1000px) rotateY(20deg) scale(0.8);
    }
    
    .swiper-slide-next .video-card {
        transform: perspective(1000px) rotateY(-20deg) scale(0.8);
    }
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
        perspective: 1000px;
    }
    
    .video-card { 
        height: 300px;
        border-radius: 20px;
    }
    
    .videoSwiper {
        padding: 40px 0;
    }
    
    .swiper-slide-prev .video-card,
    .swiper-slide-next .video-card {
        transform: perspective(800px) rotateY(0deg) scale(0.85);
        opacity: 0.5;
    }
    
    .swiper-slide-active .video-card {
        transform: perspective(800px) rotateY(0deg) scale(1);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 48px;
        height: 48px;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
    }
    
    .play-btn::after {
        left: 28px;
        top: 23px;
        border-left: 18px solid #fff;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

@media (max-width: 480px) {
    .video-card { 
        height: 240px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn::after {
        left: 24px;
        top: 20px;
        border-left: 15px solid #fff;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
}



.recognitionsSwiper {
    padding: 25px 0;
}

.recognitionsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.logo-card1 {
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.logo-card1 img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}


/* FORCE FIX FOR SWIPER */
/* =========================
   SECTION BASE
========================= */
.recognitions-section {
    padding: 40px 0;
    background: #f0f0f0;
    color: black;
    overflow: hidden;
}

/* =========================
   DESKTOP LAYOUT
========================= */
.recognitions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* =========================
   LOGO CARD
========================= */
.logo-card2 {
    width: 150px; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.logo-card2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    transition: all 0.4s ease;
}

/* 🔍 Hover Zoom + Glow */
.logo-card2:hover img {
    transform: scale(1.15);
    filter: brightness(1) invert(0) drop-shadow(0 10px 25px rgba(255,255,255,0.35));
}
 

    .recognitions-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        animation: marquee 15s linear infinite;
        overflow: hidden;
        max-width: 100%;
    }

    .logo-card2 {
    flex: 0 0 auto;
    width: 150px;
    }

    /* 📱 Mobile devices */
    @media (max-width: 576px) {
        .logo-card2 {
            width: 115px;
        }
    }
 

/* =========================
   MARQUEE ANIMATION
========================= */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-heading{
    font-size: 1.2rem;
    margin-bottom: 25px;
}




/* Wrapper safety */
/* Image base */
.future-edge-section img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform-origin: center;   /* 🔑 KEY FIX */
    border-radius: 30px;
}

/* Hover zoom (downwards only) */
.future-edge-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Allow expansion upwards */
.future-edge-section .col-md-6,
.future-edge-section .col-md-6 .row > div {
    overflow: visible;   /* 🔑 KEY FIX */
}

/* SERVICES GRID */
.facility-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 cards */
    gap:10px;
}

/* Tablet */
@media (max-width: 991px){
    .facility-row{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile: 2 cards per row */
@media (max-width: 576px){
    .facility-row{
        grid-template-columns: repeat(3, 1fr);
        gap:10px;
    }
}


.facility-card{
    background:#fff;
    border-radius:14px;
    padding:20px 14px;
    height:100%;
    transition:transform .3s ease, box-shadow .3s ease;
}

.facility-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

/* Mobile spacing */
@media (max-width:576px){
    .facility-card{
        padding:14px 10px;
    }
}





.faculty-section{
    padding:60px 0;
    background:#e6e5e5;
}

/* HEADER */
.faculty-header-row{
    display:flex;
    justify-content:space-between;
    gap:40px;
    align-items:flex-start;
}

.faculty-header-left{
    flex:0 0 35%;
    margin-bottom: -40px;
}

.faculty-header-left h2{ 
    text-align: left;
}

.faculty-header-left span{ 
}

/* PILLS */
.faculty-header-right{
    flex:0 0 60%;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.faculty-pill{
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    font-size: 12px;
    cursor: pointer;
    transition: .3s;
}

.faculty-pill img{
    width:34px;
    height:34px;
    border-radius:50%;
}

.faculty-pill.active{
    background:#0c7a3a;
    color:#fff;
}

.faculty-pill.active span,
.faculty-pill.active strong{
    color:#fff;
}

.faculty-pill:hover{
    transform:translateY(-2px);
}

/* CONTENT */
.faculty-content{
    margin-top:20px;
    background-color: #0c7a3a;
    border-radius: 20px;
    color: white;
}

.faculty-panel{
    display:none;
    animation:fadeUp .35s ease;
    border: 1px solid #0c7a3a;
    padding: 20px;
    border-radius: 20px;
}

.faculty-panel h4{
    font-weight: 800;
}

.faculty-panel.active{
    display:block;
}

.faculty-img{
    width:100%;
    border-radius:14px;
}

.course-list{
    padding-left:18px;
    margin-top:15px;
}

.course-list li{
    margin-bottom:5px;
    font-weight:500;
}

/* ANIMATION */
@keyframes fadeUp{
    from{opacity:0; transform:translateY(12px);}
    to{opacity:1; transform:none;}
}

/* MOBILE */
@media(max-width:768px){
    .faculty-header-row{
        flex-direction:column;
    }
    .faculty-header-left,
    .faculty-header-right{
        flex:100%;
    }
    .faculty-header-right{
        justify-content:flex-start;
    }
    .faculty-header-left h2{
        font-size:32px;
    }
}




/* Background Shape */
.faculty-bg{
    background: #a8c136;
    border-radius: 0 0 180px 180px;
    padding: 15px 15px 0;
    display: flex;
    justify-content: center;
}

/* Faculty Image */
.faculty-bg img{
    width: 100%; 
    object-fit: contain;
    border-radius: 0 0px 40% 40%;
}

/* Badge */
.faculty-badge{
    position:absolute;
    bottom:-22px;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    padding:14px 26px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    line-height:1.2;
}

.faculty-badge span{
    display:block;
    font-size:18px;
    color:#666;
    letter-spacing:.5px;
}

.faculty-badge strong{
    font-size:22px;
    font-weight:700;
    color:#111;
}




/* Hidden paragraph */
.more-text {
    display: none;
    margin-top: 10px;
}

/* Button style */
.read-more-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: #0e5233; /* theme green */
    font-weight: 600;
    padding: 0;
    margin-top: 5px;
    cursor: pointer;
    transition: color .3s ease;
}

.read-more-btn:hover {
    color: #a8c136; /* theme light green */
}



@media (max-width: 767px) {
    .feature-card {
        align-items: center;
        gap: 10px;
    }

    .feature-card h5 {
        font-size: 15px;
        line-height: 1.3;
    }
}

/* SERVICES SECTION – PREMIUM LOOK */

.services-wrapper {
    margin-top: 10px;
}

/* SERVICE CARDS – CENTER ALIGNED */
.service-card {
    height: 100%;
    background: rgba(0,0,0,0.55);
    border: 1px solid #a8c136;
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    background: rgba(168,193,54,0.1);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* ICON */
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(168,193,54,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.35s ease;
}

.service-icon i {
    font-size: 24px;
    color: #a8c136;
    transition: transform 0.35s ease;
}

/* ICON HOVER ANIMATION */
.service-card:hover .service-icon {
    background: #a8c136;
}

.service-card:hover .service-icon i {
    color: #000;
    transform: rotate(12deg) scale(1.15);
}

/* TEXT */
.service-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 0;
}

/* SCROLL REVEAL (INITIAL STATE) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE REVEAL */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 576px) {
    .service-card {
        padding: 16px 10px;
    }
}
 


.hero-slider,
.logo-slider,
.recognitions-section,
.video-showcase,
.future-edge-section,
.placement-section {
    overflow-x: hidden;
}


.recognitions-slider {
    overflow: hidden;
    width: 100%;
}

.recognitions-track {
    display: flex;
    gap: 10px;
    width: max-content;
    will-change: transform;
}

.logo-card2 {
    flex: 0 0 auto;
}

.logo-card2 img {
    max-height: 120px;
    width: auto;
    display: block;
    float:left;
}

/* Optional: pause on hover */
.recognitions-slider:hover .recognitions-track {
    animation-play-state: paused;
}
