/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

h2 {
  color : #0d1138 !important;
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;

  background:
    url('./images/banner.webp') center / cover no-repeat;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    background: url('./images/banner-mobile.webp') center / cover no-repeat;
  }
}

/* HERO ROW */
.hero-row {
  /* width: 100%; */
  padding: 10px 0px;
}

/* =====================
   LEFT CONTENT
===================== */
.hero-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: start;
}

/* AI BADGE IMAGE */
.hero-row img {
  max-width: 220px;
}

/* =====================
   FORM CARD
===================== */
.hero-section form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* FORM LABELS */
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* FORM INPUTS */
.form-control,
.form-select {
  height: 44px;
  font-size: 14px;
  border-radius: 8px;
}

/* BUTTON */
.btn-primary {
  background-color: #0D1138;
  border: none;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991px) {
  .hero-row {
    padding: 20px 10px;
  }

  .hero-title {
    font-size: 28px;
    margin-top: 10px;
  }

  .hero-row img {
    margin: 0 auto 20px;
  }

  .hero-section form {
    margin-top: 40px;
  }
}




/* =========================
   ABOUT SECTION
========================= */
.about-ai-section {
  padding: 40px 0px;
  background-color: #ffffff;
}

.about-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* =========================
   BULLET POINTS
========================= */
.about-points ul {
  list-style: disc;
  padding-left: 20px;
}

.about-points li {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
}

/* =========================
   MOBILE READ MORE
========================= */
.mobile-clamp {
  position: relative;
}

/* Clamp only on mobile */
@media (max-width: 991px) {
  .mobile-clamp {
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .mobile-clamp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(
      rgba(255,255,255,0),
      rgba(255,255,255,1)
    );
  }

  .mobile-clamp.expanded {
    max-height: 3000px;
  }

  .mobile-clamp.expanded::after {
    display: none;
  }
}

@media (max-width:567px) {
  .about-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  }
}

/* =========================
   READ MORE BUTTON
========================= */
.read-more-btn {
  margin-top: 16px;
  background: none;
  border: none;
  color: #ff7a00;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}




/* =========================
   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-section {
    padding: 0px 0px;
  }

  .video-banner img {
    width: 100%;
    height: 230px;
    display: block;
  }
}

/* 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;
  }
}




/* =====================
   WHY JOIN SECTION
===================== */
.why-title {
  font-size: 42px;
  font-weight: 600;
  color: black;
}

/* ACCORDION STYLING */
.accordion-item {
  border: none;
  border-bottom: 1px solid #eaeaea;
}

.accordion-button {
  font-weight: 500;
  color: #222;
  padding: 18px 10px;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: #0d1138;
  background: #f8f9ff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* BODY */
.accordion-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 767px) {
  .why-title {
    font-size: 28px;
    margin-bottom: 10px !important;
  }
}




/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonial-section {
  background: #fafafa;
  padding: 80px 0;
}

.testimonial-title {
  font-size: 42px;
  font-weight: 600;
  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 */
    padding-left: 10px;
    padding-right: 10px;
  }

  .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-card {
    padding: 10px 10px;
  }
}



/* ================= CENTER OF EXCELLENCE ================= */

.coe-container {
  padding: 40px 20px;
  background: #ff7a00;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
}

.coe-title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* GRID */
.coe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ITEM */
.coe-item {
  position: relative;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* SCROLL ANIMATION INITIAL STATE */
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s cubic-bezier(.34,1.56,.64,1);
}

/* WHEN VISIBLE */
.coe-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* LOGOS */
.coe-item img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

/* VERTICAL DOTTED LINES */
.coe-item:not(:nth-child(4n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  border-right: 2px dotted rgba(255, 255, 255, 0.7);
}

/* HORIZONTAL DOTTED LINE (BETWEEN ROWS) */
.coe-item:nth-child(-n + 4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.7);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .coe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coe-item::after,
  .coe-item::before {
    display: none;
  }

  .coe-item {
    border: 1px dotted rgba(255,255,255,0.5);
    padding: 35px 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .coe-title {
    font-size: 28px;
  }

  .coe-grid {
    grid-template-columns: 1fr;
  }

  .coe-item {
    padding: 30px 15px;
  }
}



/* =============
  Glass Section 
============= */
.glass-section {
  padding-top: 20px;
  padding-bottom: 60px;
}

.glass-section-title {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.glass-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Glass Card */
.glass-card {
  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 38px 30px;

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* Bottom gradient layer */
.glass-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  border-radius: 0 0 26px 26px;
  opacity: 0.85;
  filter: blur(40px);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

.glass-card.blue::after {
  background: radial-gradient(
    circle at bottom,
    rgba(59, 109, 246, 0.9),
    transparent 70%
  );
}

.glass-card.pink::after {
  background: radial-gradient(
    circle at bottom,
    rgba(255, 77, 109, 0.9),
    transparent 70%
  );
}

.glass-card.green::after {
  background: radial-gradient(
    circle at bottom,
    rgba(43, 182, 115, 0.9),
    transparent 70%
  );
}

.glass-card.purple::after {
  background: radial-gradient(
    circle at bottom,
    rgba(123, 97, 255, 0.9),
    transparent 70%
  );
}

/* Icons */
.glass-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
}

.glass-icon.blue   { background: linear-gradient(135deg,#3b6df6,#4f8bff); }
.glass-icon.pink   { background: linear-gradient(135deg,#ff4d6d,#ff6f91); }
.glass-icon.green  { background: linear-gradient(135deg,#2bb673,#42d392); }
.glass-icon.purple { background: linear-gradient(135deg,#7b61ff,#9f8cff); }

.glass-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.glass-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
}

.glass-card a {
  font-size: 15px;
  font-weight: 600;
  color: #ff4d6d;
  text-decoration: none;
}

@media (max-width: 992px) {
  .glass-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .glass-card {
    box-shadow:
    0 1px 5px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  }

  .glass-wrapper {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .glass-wrapper {
    grid-template-columns: 1fr;
  }
  .glass-section-title {
    font-size: 28px;
  }

  .glass-card {
    margin: 0px 20px;
  }
}




/* ==================
  SPECIALIZATION   SECTION 
==================*/
.gu-specialization-section {
  padding: 40px 0;
  background: #0d1138;
}

/* HEADING */
.gu-heading h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* CARD */
.gu-card {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* TITLE */
.gu-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 14px;
}

/* LIST */
.gu-card ul {
  padding-left: 18px;
  margin: 0;
}

.gu-card ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #000;
}

/* LEFT COLOR BORDERS */
.border-green {
  border-left: 5px solid #1aa34a;
}

.border-blue {
  border-left: 5px solid #1f6fff;
}

.border-yellow {
  border-left: 5px solid #f2b705;
}

.border-orange {
  border-left: 5px solid #ff6a00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gu-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .gu-special-row {
    padding: 0px 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;
}

.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 !important;
  }

  .programs-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;
}



/* ================== GU ACHIEVEMENT STATS ================== */
.gu-achievement-section {
  padding: 50px 0;
  background: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.gu-achievement-wrapper {
  background: #fff8e9;
  border-radius: 16px;
  padding: 35px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ITEM */
.gu-achievement-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.gu-achievement-item h3 {
  font-size: 30px;
  font-weight: 800;
  color: #002f5f;
  margin-bottom: 6px;
}

.gu-achievement-item p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

/* DIVIDER */
.gu-achievement-divider {
  width: 1px;
  height: 50px;
  background: #cfcfcf;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gu-achievement-wrapper {
    gap: 20px;
  }

  .gu-achievement-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .gu-achievement-wrapper {
    padding: 25px 15px;
  }

  .gu-achievement-section {
    padding: 0px 10px;
  }

  .gu-achievement-item h3 {
    font-size: 24px;
  }
}



/* ================== GU INNOVATION & OUTREACH ================== */

.gu-innovation-outreach-section {
  padding: 60px 0 80px;
  background: #0d1138;
}

/* GRID */
.gu-innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.gu-innovation-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  background: #000;
}

/* IMAGE */
.gu-innovation-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gu-innovation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gu-innovation-grid {
    grid-template-columns: 1fr;
  }

  .gu-innovation-outreach-section {
    padding: 20px 10px;
  }
}



/* ================== FUTURE IS BRIGHT ================== */

.gu-future-bright-section {
  background: #ffffff;
}

.gu-future-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #083b66;
}

/* CARD */
.gu-future-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.gu-future-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* SPACING BETWEEN SLIDES */
.gu-future-carousel .owl-stage-outer {
  padding: 10px 0 20px;
}



/* SECTION */
.famous-section {
  background: #000;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 1px;
}

/* HEADER */
.famous-header {
  margin-bottom: 50px;
  text-align: center;
}

.small-title {
  font-size: 22px;
  letter-spacing: 1.6px;
  opacity: 0.7;
}

.famous-header h2 {
  font-size: 42px;
  font-weight: 600;
}

.subtext {
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
}

/* .underline {
  width: 120px;
  height: 3px;
  background: #f7931e;
  margin-top: 12px;
} */

/* GRID – EXACT MOSAIC */
.famous-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 180px);
  gap: 22px;

  grid-template-areas:
    "jasraj jasraj jasraj kanika kanika jassi"
    "jasraj jasraj jasraj jasmine jasmine jassi"
    "raftaar raftaar raftaar aastha aastha shipra"
    "raftaar raftaar raftaar akhil akhil shipra";
}

/* CARDS */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.card img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

/* NAME */
.name {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.8);
}

/* GRID AREAS */
.jasraj   { grid-area: jasraj; }
.kanika  { grid-area: kanika; }
.jasmine { grid-area: jasmine; }
.jassi   { grid-area: jassi; }
.raftaar { grid-area: raftaar; }
.aastha  { grid-area: aastha; }
.shipra  { grid-area: shipra; }
.akhil   { grid-area: akhil; }

.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);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
  .famous-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "jasraj jasraj"
      "kanika jassi"
      "jasmine jasmine"
      "raftaar raftaar"
      "aastha shipra"
      "akhil akhil";
  }
}

/* Mobile */
@media (max-width: 576px) {
  .famous-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "jasraj"
      "kanika"
      "jasmine"
      "jassi"
      "raftaar"
      "aastha"
      "shipra"
      "akhil";
  }

  .famous-header h2 {
    font-size: 28px;
  }
}



/* FIX UNNECESSARY RIGHT SPACE ON TABLET */
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden;
  }

  .glass-wrapper,
  .famous-grid,
  .gu-innovation-grid,
  .coe-grid {
    max-width: 100%;
    overflow-x: hidden;
  }
}
