.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url('./images/banner.webp') center/cover no-repeat;
  overflow: visible;
}

/* Mobile background image */
@media (max-width: 768px) {
  .hero-section {
    background: url('./images/banner-mobile.webp') center/cover no-repeat;
  }
}

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

h2 {
  color: #0d1138 !important;
}

/* Wrapper rotates */
.apply-wrapper {
    position: fixed;
    top: 48%;
    right: 12px;       /* adjust this */
    transform: rotate(-90deg); 
    transform-origin: right center;
    z-index: 9999;
}

/* Button stays normal (NOT rotated) */
.apply-btn {
    display: inline-block;
    background: #fd7e14;
    color: #fff !important;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


.custom-navbar {
    background-color: #f8f8f8;
    padding: 10px 0; /* reduced padding */
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: black !important;
    margin: 0 10px; /* reduced margin */
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #fd7e14 !important;
}

/* Mobile adjustments */
@media (max-width: 991px) { /* when menu collapses */
    .navbar-nav .nav-link {
        margin: 8px 0; /* stacked neatly */
        text-align: center;
    }
    .btn-admission {
        display: block;
        text-align: center;
        width: 100%;
    }
}


.btn-admission {
    background-color: #0d1138;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-admission:hover {
    background-color: #fd7e14;
}

.hero-content {
    color: #fff;
    margin-top: 145px;
}

.hero-label {
    color: #fd7e14;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    margin-top: 30px;
}

@media (max-width: 567px) {
    .hero-content {
        margin-top: 110px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 110px;
    }
}

.btn-explore {
    background-color: #052C65;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-explore:hover {
    background-color: #fd7e14;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* RESPONSIVE FIXES – DO NOT CHANGE YOUR ORIGINAL CODE */

/* Medium screens */
@media (max-width: 992px) {

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .glass-effect {
        font-size: 36px !important;
        padding: 6px 25px !important;
    }

    .image img {
        width: 200px !important;
    }

    .form {
        margin-top: 40px !important;
    }
}

/* Tablets & small laptops */
@media (max-width: 768px) {

    .hero-title {
        font-size: 36px;
    }

    .glass-effect {
        font-size: 37px !important;
    }

    .image img {
        width: 25% !important;
    }

    .hero-section {
        text-align: start;
        padding-bottom: 40px;
        min-height: 1020px;
    }

    .btn-explore {
        padding: 12px 30px;
        font-size: 15px;
    }

    .form {
        margin-top: 45px !important;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {

    /* .hero-section {
        background: url('./images/banner-mobile.webp');
    } */

    .hero-title {
        font-size: 30px;
    }

    .hero-label {
        font-size: 18px;
    }

    .btn-explore {
      display: none;
    }

    .glass-effect {
        font-size: 23px !important;
        padding: 4px 20px !important;
    }

    .image img {
        width: 50% !important;
        margin-top: 30px;
    }

    .btn-explore {
        padding: 10px 25px;
        font-size: 14px;
    }

    .hero-content {
        margin-top: 40px !important;
        text-align: start;
    }

    .form {
        margin-top: -77px !important;
    }

    .card {
        padding: 15px !important;
        margin-top: 82px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {

    .hero-title {
        font-size: 30px;
    }

    .glass-effect {
        font-size: 21px !important;
    }

    .image img {
        width: 50% !important;
        margin-top: 70px;
    }
}



/* Strip */
.marquee-strip {
  background: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 6px 0;
}

.marquee-content {
  display: inline-flex;
  animation: scroll-left 18s linear infinite;
}

.marquee-content span {
  font-size: 24px;
  color: #0a33cb;
  font-weight: 600;
  display: inline-block;
  padding-right: 50px;
}

/* Perfect continuous scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* Shape your global */
.gu-section {
    background-image: url('images/gu-sec2.webp');
    background-size: cover;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
}


.gu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gu-left {
    flex: 1;
}

.gu-title {
    font-size: 42px;
    font-weight: 500;
    color: black;
    line-height: 1.3;
}

.gu-line {
    width: 210px;
    height: 4px;
    background: #FD7E14;
    margin: 15px 0 25px;
}

.gu-desc {
    font-size: 20px;
    color: #555;
    max-width: 620px;
    margin-bottom: 30px;
}

.gu-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
}

.stat-box h3 {
    font-size: 46px;
    font-weight: 700;
}

.stat-box p {
    margin-top: 5px;
    color: #555;
    font-size: 17px;
}

/* RIGHT SIDE IMAGE */
.gu-right {
    position: relative;
    width: 420px;
    height: 420px;
    flex-shrink: 0;
}

/* .circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0a1a3c;
    border-radius: 50%;
} */

.gu-image {
    position: absolute;
    width: 90%;
    height: 450px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ----------------------------- */
/*  LARGE TABLETS + SMALL LAPTOPS */
/* ----------------------------- */
@media (max-width: 992px) {

    .gu-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .gu-title {
        font-size: 34px;
    }

    .gu-desc {
        font-size: 18px;
        max-width: 90%;
        margin: 0 auto 25px;
    }

    .gu-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }

    .stat-box h3 {
        font-size: 36px;
    }

    .stat-box p {
        font-size: 16px;
    }

    .global h3 {
        font-size: 32px !important;
    }

    .global p {
        font-size: 20px !important;
    }

    .gu-right {
        width: 350px;
        height: 350px;
        margin-top: 30px;
    }

    .gu-image {
        width: 100%;
        height: auto;
        position: relative;
        transform: none;
        left: 0;
    }
}


/* ----------------------------- */
/*  TABLETS & LARGE MOBILE       */
/* ----------------------------- */
@media (max-width: 768px) {

    .gu-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .gu-desc {
        font-size: 17px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 15px;
    }

    .global h3 {
        font-size: 28px !important;
    }

    .global p {
        font-size: 18px !important;
    }

    .gu-right {
        width: 300px;
        height: auto;
    }

    .gu-image {
        width: 100%;
        height: auto;
        position: relative;
    }
}


/* ----------------------------- */
/*  MOBILE PHONES                */
/* ----------------------------- */
@media (max-width: 576px) {

    .gu-title {
        font-size: 26px;
        text-align: start;
    }

    .gu-desc {
        font-size: 16px;
        max-width: 100%;
        text-align: start;
    }

    .gu-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .global h3 {
        font-size: 24px !important;
    }

    .global p {
        font-size: 16px !important;
        padding: 0 10px;
    }

    .gu-right {
        width: 240px;
        margin: 0 auto;
    }

    .gu-image {
        width: 130%;
        position: relative;
        left: -28px;
        transform: none;
        margin-bottom: 20px;
    }
}


/* ----------------------------- */
/*  EXTRA SMALL DEVICES (<=400px)*/
/* ----------------------------- */
@media (max-width: 400px) {

    .gu-title {
        font-size: 28px;
        text-align: start;
    }

    .gu-desc {
        font-size: 15px;
        text-align: start;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    .global h3 {
        font-size: 30px !important;
    }

    .global p {
        font-size: 15px !important;
    }

    .gu-right {
        width: 200px;
    }

    .gu-line {
        width: 115px;
    }
}



.card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ICON CARD */
.icon-card {
  width: 100%;
  padding: 20px;
  height: 155px;
  border-radius: 12px;
  background: #f8f9fb;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid #131c73;
}

.icon-card:hover {
  transform: translateY(-6px);
  background: #0d1138;
}

.icon-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
  filter: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.icon-card:hover img {
  filter: brightness(0) invert(1); /* turns icon white */
  transform: scale(1.1);
}

.icon-card h3 {
  font-size: 18px;
  color: #06355f;
  margin: 0;
  transition: color 0.3s ease;
}

.icon-card:hover h3 {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .icon-card { height: 210px; }
}

@media (max-width: 992px) {
  .card-wrapper { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .card-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .card-wrapper { grid-template-columns: repeat(1, 1fr); }
}



.salient-section {
    padding: 40px 0;
    background: #f7f9fc;
    font-family: "Poppins", sans-serif;
}

/* HEADING */
.salient-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* GRID  — PC + TABLET: 2 columns */
.salient-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 40px;
}

/* ITEM */
.salient-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* ICON BADGE */
.salient-icon {
    width: 80px;
    padding: 12px 30px 30px 12px;
    border-radius: 5px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.salient-icon img {
    width: 60px;
    filter: brightness(0) invert(1);
}

/* TEXT */
.salient-text h3 {
    margin: 0;
    font-size: 18px;
    color: #06355f;
    font-weight: 700;
}

.salient-text p {
    margin-top: 5px;
    color: #444;
    line-height: 1.6;
    font-size: 15px;
}

/* MOBILE — 1 column */
@media (max-width: 768px) {
    .salient-grid {
        grid-template-columns: 1fr;
    }

    .salient-title {
      font-size: 28px;
    }

    .salient-section {
      padding: 20px 10px;
    }
}



/* ------------------------------------ */
/* SUSTAINABILITY BOX (TOP SECTION)     */
/* ------------------------------------ */
.sustainability-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    color: #0d2340;
    border: 1px solid #e6e6e6;
}

/* Heading + Icon */
.sustain-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.sustain-head img {
    width: 45px;
    height: 45px;
}

.sustain-head h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Intro paragraph */
.sustain-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #0d2340;
    font-style: italic;
}

/* Bullet List */
.sustain-list {
    margin-left: 18px;
    margin-bottom: 15px;
}

.sustain-list li {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.6;
    color: #0d2340;
}

/* Footer paragraph */
.sustain-footer {
    font-size: 18px;
    line-height: 1.6;
    color: #0d2340;
}

/* ------------------------------------ */
/* CARD GRID BELOW THE TEXT             */
/* ------------------------------------ */

/* Section Background */
.vet-section {
    background: #ffffff;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

/* Grid Layout */
.vet-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px; /* space below sustainability box */
}

/* Card Styling */
.vet-card {
    background: #fff;
    padding: 30px 25px 60px;
    border-radius: 20px;
    border: 3px solid #0d1138;
    position: relative;
    text-align: center;
    min-height: 280px;
}

/* Headings */
.vet-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0d1138;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Paragraph */
.vet-card p {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
}

/* Icon Circle */
.vet-icon {
    width: 70px;
    height: 70px;
    background: #0d1138;
    border-radius: 50%;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vet-icon img {
    width: 35px;
    filter: brightness(0) invert(1);
}

/* Responsive Tablets */
@media (max-width: 992px) {
    .vet-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .vet-wrapper {
        grid-template-columns: 1fr;
    }
    .vet-card {
        padding-bottom: 70px;
    }
    .vet-icon {
        width: 70px;
        height: 70px;
        background: #0d1138;
        border-radius: 50%;
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sustain-head h3 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }

    .vet-section {
      padding: 20px 10px;
    }

    .enterp-row {
      padding: 0px 10px;
    }
}



.innovation-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 20px 18px 40px;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.innovation-card ul {
  padding-left: 18px;
  margin: 0;
}

.innovation-card li {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.innovation-card li::marker {
  color: #000;
  font-size: 18px;
}

/* Bottom blue bar */
.card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 26px;
  width: 100%;
  background: #0b3558;
  border-radius: 0 0 6px 6px;
}

/* Responsive text */
@media (max-width: 576px) {
  .innovation-card li {
    font-size: 15px;
  }
}

.partnership-section {
  background-color: var(--section-bg);
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Content Wrapper for Z-index */
.partnership-content {
  position: relative;
  z-index: 5;
}

/* --- Desktop Map Container --- */
.india-map-container-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  opacity: 0.9;
}

.india-map-container-absolute img {
  width: 100%;
  height: 90%;
}

/* --- Heading --- */
.main-heading {
  width: 700px;
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--main-text-color);
  margin-top: -4rem;
}

.main-heading span {
  color: #0030a7;
}

/* --- Card Section --- */
.card-row {
  width: 800px;
}

.card-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.card-image-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  border: 1px solid #dcdcdc;
  background: #fff;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Overlay */
.card-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  color: white;
  padding: 0.7rem 0.5rem;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: left;
}

/* Desktop Content Offset */
.offset-lg-6 {
  margin-left: 40%;
}

/* ========================================= */
/* MEDIA QUERIES                             */
/* ========================================= */

/* ========== Small Laptops (max-width: 1366px) ========== */
@media (max-width: 1366px) {
  .india-map-container-absolute {
    width: 50%;
  }

  .main-heading {
    width: 600px;
  }

  .card-row {
    width: 600px;
  }
}

/* ========== Tablet Landscape (max-width: 991px) ========== */
@media (max-width: 991px) {
  /* Hide desktop map */
  .india-map-container-absolute {
    display: none !important;
  }

  /* Mobile map styling */
  .india-map-container-mobile {
    position: relative;
    width: 100%;
    height: 380px;
    margin-bottom: 2rem;
  }

  .india-map-container-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Reset offset */
  .offset-lg-6 {
    margin-left: -2px !important;
  }

  .partnership-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .main-heading {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .card-row {
    width: 100%;
    margin-top: 2rem;
  }

  .card-col {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }

  .card-image-wrapper {
    height: 180px;
  }
}

/* ========== Tablet Portrait (max-width: 768px) ========== */
@media (max-width: 768px) {
  .india-map-container-mobile {
    height: 320px;
  }

  .partnership-section {
    padding: 2.5rem 0;
  }

  .main-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .card-row {
    margin-top: 1.5rem;
  }

  .card-col {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .card-image-wrapper {
    height: 170px;
  }
}

/* ========== Mobile (max-width: 480px) ========== */
@media (max-width: 480px) {
  .india-map-container-mobile {
    height: 280px;
    margin-bottom: 1.5rem;
  }

  .partnership-section {
    padding: 2rem 0;
  }

  .main-heading {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .main-heading span {
    font-size: 24px;
  }

  .card-row {
    margin-top: 1rem;
  }

  .card-col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-text-overlay {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
}



/* Speaker */
.speakers-section {
    background: #0d1138;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    font-family: "Manrope", sans-serif;
}

.speakers-tag {
    color: #7b7cff;
    font-size: 15px;
    margin-bottom: 10px;
}

.speakers-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.speakers-sub {
    opacity: 0.75;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* GRID */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* CARD */
.speaker-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1d4a;
    height: 400px;
}

.speaker-card img {
    width: 100%;
    height: 68%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
}

/* Overlay text box */
.speaker-info {
    height:17vh;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 32px 22px;
    background: rgba(0, 0, 0, 0.351);
    backdrop-filter: blur(18px);
    text-align: center;
}

.speaker-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.speaker-info p {
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.85;
}

/* Hover effect */
.speaker-card:hover img {
    transform: scale(1.08);
    transition: 0.4s ease-in-out;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    .speaker-card {
        height: 300px;
    }
    .speakers-title {
      font-size: 28px;
    }
    .speakers-section {
      padding: 20px 10px;
    }
}



/* =============
  PROGRAMS OFFERED 
=============== */
.programs-section {
  padding: 30px 0;
  background: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.programs-title {
  font-size: 42px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
}

/* ACCORDION */
.program-item {
  margin-bottom: 12px;
}

.program-header {
  width: 100%;
  background: #ff7a00;
  color: #ffffff;
  border: none;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.program-header .icon {
  font-size: 22px;
  transition: transform 0.5s ease;
}

/* BODY */
.program-body {
  background: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
  padding: 0 22px;
  color: #0d1138 !important;
}

.program-body p {
  padding: 10px 0;
  margin: 0;
  font-size: 15px;
  color: #000;
}

/* ACTIVE */
.program-item.active .program-body {
  max-height: 350px;
}

.program-item.active .program-header .icon {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .programs-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .programs-section {
    padding: 20px 10px;
  }
}



/* =========================
   VIDEO SECTION
========================= */
.video-section {
  padding: 40px 0;
  background-color: #ffffff;
}

/* VIDEO BANNER */
.video-banner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.video-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* BLUE OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 56, 0.75);
  z-index: 1;
}

/* =========================
   PLAY BUTTON
========================= */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  width: 90px;
  height: 90px;
  background: #ff7a00; /* ORANGE */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 0 10px rgba(255, 122, 0, 0.25);
  animation: pulse 2s infinite;
}

/* WHITE PLAY TRIANGLE */
.play-icon {
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 122, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

/* HOVER */
.video-banner:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    border-left-width: 18px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }

  .video-banner img {
    width: 100%;
    height: 230px;
    display: block;
  }

  .video-section {
    padding: 10px 10px;
  }
}

/* TITLE */
.video-title {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}

/* =========================
   VIDEO MODAL
========================= */
.video-modal {
  display: none; /* ONLY this */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;

  align-items: center;
  justify-content: center;
}


/* MODAL BOX */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

/* IFRAME */
.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   CLOSE BUTTON (FIXED)
========================= */
.video-close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 38px;
  height: 38px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;

  font-size: 20px;
  font-weight: bold;
  cursor: pointer;

  z-index: 10; /* 👈 MOST IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-close:hover {
  background: #ff7a00;
}

/* MOBILE */
@media (max-width: 768px) {
  .video-close {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .video-title {
    font-size: 18px;
  }

  .play-btn img {
    width: 55px;
    height: 55px;
  }
}



/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonial-section {
  background: #fafafa;
  padding: 80px 0;
}

.testimonial-title {
  font-size: 42px;
  color: black;
  margin-bottom: 50px;
  text-align: center;
}

/* =========================
   CAROUSEL WRAPPER
========================= */
.testimonial-carousel {
  position: relative;
}

/* =========================
   TESTIMONIAL CARD
========================= */
.testimonial-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =========================
   PROFILE IMAGE
========================= */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ff7a00;
  object-fit: cover;
  margin-bottom: 15px;
}

/* =========================
   NAME
========================= */
.testimonial-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0d1138;
}

/* =========================
   DESIGNATION
========================= */
.designation {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

/* =========================
   FEEDBACK TEXT
========================= */
.feedback {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* =========================
   CAROUSEL CONTROLS (FIXED)
========================= */
.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  position: absolute;
}

/* Move arrows outside cards */
.testimonial-carousel .carousel-control-prev {
  left: -60px;
}

.testimonial-carousel .carousel-control-next {
  right: -60px;
}

/* Arrow icons */
.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  background-color: #0d1138;
  border-radius: 50%;
  padding: 14px;
  background-size: 14px 14px;
}

/* Remove default gradient */
.carousel-control-prev,
.carousel-control-next {
  background: none;
}

/* =========================
   RESPONSIVE FIXES
========================= */
/* Mobile */
@media (max-width: 767px) {

  .testimonial-carousel {
    position: relative;
    padding-bottom: 70px; /* space for buttons */
  }

  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    position: absolute;
    top: auto;
    bottom: 10px;
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 50%;
    opacity: 1;
  }

  /* Move both buttons to center */
  .testimonial-carousel .carousel-control-prev {
    left: 50%;
    transform: translateX(-60px); /* gap control */
  }

  .testimonial-carousel .carousel-control-next {
    left: 50%;
    transform: translateX(16px);  /* gap control */
  }

  .testimonial-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .testimonial-section {
    padding: 20px 10px;
  }
}



/* ===========
  Top Recruiters
============== */
.recruiter-card {
  border-radius: 12px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruiter-card img {
  max-height: 80%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px !important;
}



/* SECTION */
.famous-section {
  background: #000;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 1px;
}

/* HEADER */
.famous-header {
  margin-bottom: 50px;
  text-align: center;
}

.yt-video-trigger {
  color: #ff0000;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yt-video-trigger:hover {
  text-decoration: underline;
}

.yt-video-content {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.yt-video-close {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 10;
  filter: invert(1);
}