
/* =============================================================================
   Site Stylesheet: styles.css
   Purpose: Global styles for navigation, hero, sections, cards, grids, media,
            partners, events, funding, photos, success stories, patents, footer.
   Notes:
   - Organized into logical sections with clear comments.
   - No functional changes; only documentation and minor comment fixes.
   - Uses spaces consistently; no tabs introduced.
============================================================================= */


/* ============================================================================
   1) CSS Reset and Base Typography
============================================================================= */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

*{
  padding: 0;
  margin: 0;
}


/* ============================================================================
   2) Navigation: Dropdown menus, shimmer button, and hover behaviors
============================================================================= */

/* Hidden dropdown panel by default (absolute, floating card) */
.dropdown-menu-content {
  display: none;
  position: absolute;
  z-index: 20; /* Tailwind z-20 */
  background-color: white;
  border-radius: 0.5rem; /* rounded-md */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
  margin-top: 0.25rem; /* mt-1 */
  width: 14rem; /* w-56 */
  min-width: max-content;
}

/* Show dropdown in mobile when a parent wrapper toggles .mobile-menu-open */
.mobile-menu-open .dropdown-menu-content {
  display: block;
}

/* Desktop hover behavior to open dropdowns */
.nav-item-dropdown-trigger:hover + .nav-item-dropdown-content,
.nav-item-dropdown-content:hover {
  display: flex;
  flex-direction: column;
}

/* Fancy shimmer button effect */
.shimmer-button {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-radius: 9999px; /* rounded-full */
}

.shimmer-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: shimmer-animation 1.5s infinite;
}

.shimmer-button:hover::before {
  animation: shimmer-animation 1.5s infinite;
}

/* Shimmer animation (left to right sweep) */
@keyframes shimmer-animation {
  to {
    transform: translateX(100%);
  }
}

/* Mobile-specific sizing fix for shimmer buttons inside a wrapper */
.mobile-shimmer-button .shimmer-button {
  height: 40px !important;
  width: max-content;
  padding: 0 3rem;
}

/* Dropdown baseline: positioned, hidden, with animated show/hide */
.nav-items .group div,
.dropdown-content {
  position: absolute;       /* make sure it’s positioned */
  top: 100%;
  left: 0;
  z-index: 9999;            /* bring above videos/other content */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.8s;
}

/* Instant show on hover (no delay) */
.nav-items .group:hover div,
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s; /* no delay when opening */
}


/* ============================================================================
   3) Hero Section: Full-bleed video with dark overlay and title
============================================================================= */

/* Ensure the video layer stays behind other content */
.hero-video-container {
  position: relative;
  z-index: 0; /* stays lowest */
}

.hero-video {
  position: relative;
  z-index: 0;
}

/* Hero wrapper (responsive height with min) */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 57vw;
  min-height: 500px;
}

/* Taller hero on small+ screens */
@media (min-width: 640px) {
  .hero { height: 700px; }
}

/* Video absolute fill */
.hero-video-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; 
  left: 0;
}

/* Video sizing and dimming */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* Dark overlay above video for contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* darker for contrast */
  z-index: 1;
}

/* Foreground content overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
}

/* Title styles */
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0.3rem 0;
}

.hero-title-first {
  display: block;
}

.hero-title-second {
  display: block;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-top: 1rem;
  color: #ffb703;
  font-weight: 600;
  line-height: 1.5;
}


/* ============================================================================
   4) Description Section: Heading card, text column, image column
============================================================================= */

.description-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background: #f8fbff; /* soft background for contrast */
}

/* Floating-styled heading card */
.description-heading {
  background: #ffffff;
  display: inline-flex;   /* shrink to content */
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12),
              0 4px 8px rgba(0,0,0,0.05); /* soft floating shadow */
  margin: 0 auto 3rem auto;  /* center it above content */
  position: relative;
  z-index: 10;
  transition: all 0.35s ease; /* smooth animation */
}

/* Hover lift + slight zoom */
.description-heading:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18),
              0 6px 12px rgba(0,0,0,0.1);
}

/* Heading text */
.description-heading .description-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af; /* deep blue */
  margin: 0;
  letter-spacing: 0.5px;
}

/* Logo next to heading */
.description-heading .description-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Two-column content row (wraps on small screens) */
.description-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
  max-width: 1100px;
}

/* Left column: text */
.description-text {
  flex: 1 1 50%;
  text-align: left;
}

.description-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Right column: image */
.description-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.description-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.description-image img:hover {
  transform: scale(1.03);
}


/* ============================================================================
   5) Testimonial Section: Card with gradient border effect
============================================================================= */

.testimonial {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
}

/* Base card with gradient border via ::before */
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Gradient trim around card */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(90deg, #a07cfe, #fe8fb5, #ffbe7b);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: exclude;
  pointer-events: none;
}

/* Image column */
.testimonial-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.testimonial-image img {
  width: 100%;
  max-width: 450px;
  margin: 10px ;
  border-radius: 12px 12px 12px 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease-in-out;
}

.testimonial-image img:hover {
  transform: scale(1.08);
}

/* Switch to row layout on md+ */
@media (min-width: 768px) {
  .testimonial-card {
    flex-direction: row;
  }
}

/* Text column */
.testimonial-text {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Gradient title text */
.testimonial-title {
  font-size: 1.8rem;
  font-weight: 800; /* bolder */
  background: linear-gradient(90deg, #3f4c6b, #606c88);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}

/* Body copy */
.testimonial-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  font-weight: 600; /* bold text */
}

/* Highlight span option */
.highlight {
  color: #4ea8de;
  font-weight: 700; /* stronger highlight */
}

/* Name line */
.testimonial-name {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  color: #444;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonial-text {
    padding: 1.2rem;
  }
  .testimonial-title {
    font-size: 1.5rem;
  }
  .testimonial-text p {
    font-size: 0.95rem;
  }
}


/* ============================================================================
   6) Partners (Marquee Logos) and Title Strip
============================================================================= */

/* Section framing */
.partners-section {
  text-align: center;
  margin-top: 40px;
  overflow: hidden;
  background-color: white;
}

/* Title styling */
.partners-title {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: sans-serif;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

/* Blue underline below title */
.partners-underline {
  width: 140px;
  height: 4px;
  background-color: #2563eb;
  margin: 0 auto 20px auto;
}

/* Horizontal marquee container */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 120px;
}

/* Track that slides left infinitely */
.partners-track {
  display: flex;
  gap: 70px;
  animation: scroll-left 8s linear infinite;
}

/* Pause the marquee on hover */
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/* Logo visuals */
.partners-track img {
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partners-track img:hover {
  transform: scale(1.1);
}

/* Infinite scroll keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ============================================================================
   7) Big Card Section: Image + text on gradient background
============================================================================= */

/* Import Google Font (Roboto) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;800&display=swap');

/* Container card */
.card-big {
  font-family: 'Roboto', sans-serif;
  width: 85%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px;
  margin: 60px auto;
  background: linear-gradient(120deg, #607d8b, #90caf9, #42a5f5);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Left image wrapper */
.card-big-image {
  flex-shrink: 0;
}

.card-big-image img {
  max-width: 380px;
  height: auto;
  border-radius: 8px;
}

/* Right text wrapper */
.card-big-text {
  flex: 1;
  color: white;
}

.card-big-text h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6; /* Heading blue */
  margin-bottom: 1.2rem;
}

.card-big-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: justify;
  max-width: 600px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .card-big {
    gap: 30px;
    padding: 30px;
  }

  .card-big-image img {
    max-width: 300px;
  }

  .card-big-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .card-big {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 20px;
  }

  .card-big-image img {
    max-width: 90%;
  }

  .card-big-text h1 {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .card-big-text p {
    font-size: 1rem;
  }
}


/* ============================================================================
   8) Services Full Page: Centered heading and large image
============================================================================= */

/* Import (again) for safety when partial builds occur; harmless duplicate */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;800&display=swap');

.services-section {
  font-family: 'Roboto', sans-serif;
  width: 100vw;
  height: 100vh; /* full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center; /* horizontal centering */
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  background: #f9fafb; /* optional light background */
}

/* Responsive, fluid heading */
.services-section h1 {
  font-size: clamp(1rem, 4vw, 2.5rem); 
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #1e293b; /* slate-800 */
}

/* Underline below heading */
.services-underline {
  width: clamp(100px, 15vw, 200px);
  height: 5px;
  background-color: #2563eb; /* blue-600 */
  margin: 0 auto 2rem auto;
  border-radius: 3px;
}

/* Image container for service hero */
.services-image-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px; /* keeps image neat on large screens */
}

.services-image-container img {
  width: 100%;
  max-height: 60vh; /* avoid overflow */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Smaller screens: adjust heading and image height */
@media (max-width: 768px) {
  .services-section h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .services-image-container img {
    max-height: 40vh;
  }
}


/* ============================================================================
   9) Generic Grid: 1-column to 3-column responsive tiles
============================================================================= */

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 80%;
  margin: 3rem auto;
}

/* 3 columns on ≥640px */
@media (min-width: 640px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Grid item card */
.grid-item {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

/* Lift on hover */
.grid-item:hover {
  transform: translateY(-5px);
}

/* Alternate style (gray + blue text) */
.grid-item.alt {
  background-color: #f2f2f2;
  color: #2563eb; /* blue-500 */
  font-weight: bold;
}

/* Optional icon size */
.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Headings */
.grid-item h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .grid-item h3 {
    font-size: 1.25rem;
  }
}

/* Paragraph text */
.grid-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: inherit;
}


/* ============================================================================
   10) Students Section: Image wrapper and divider
============================================================================= */

.students-section {
  width: 100%;
  margin-top: 2.5rem;
}

/* Image container with small left margin on mobile */
.students-image-container {
  width: 90%;
  margin-left: 1.25rem; /* ~ml-5 */
  display: flex;
  justify-content: center;
}

.students-image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop: remove side margin, full width */
@media (min-width: 640px) {
  .students-image-container {
    width: 100%;
    margin-left: 0;
  }
}

/* Blue divider */
.students-divider-container {
  display: flex;
  justify-content: center;
}

.students-divider {
  width: 90%;
  height: 4px;
  background-color: #2563eb; /* blue-600 */
  margin: 2.5rem 0;
}


/* ============================================================================
   11) Footer: Desktop and Mobile variants
============================================================================= */

/* Footer wrapper (desktop) */
.footer-container {
  background: #cfe5ff;   /* Solid light blue (same as screenshot) */
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

/* Left: logo column */
.footer-logo img {
  width: 200px;
  display: block;
  margin-bottom: 15px;
}

/* Contact icons row */
.footer-contact-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* Circle badge base */
.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Yellow variant for circles */
.yellow {
  background: #facc15;
}

/* Label text next to icons */
.footer-contact-icons p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0 10px 0 0;
}

/* Middle contact column */
.footer-contact {
  max-width: 350px;
  font-size: 15px;
  color: #2563eb;
}

.footer-contact h2 {
  color: #1e40af;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Right about column */
.footer-about {
  max-width: 350px;
  font-size: 15px;
  color: #2563eb;
}

.footer-about h2 {
  color: #1e40af;
  font-weight: bold;
  margin: 10px 0;
}

.footer-about img {
  width: 200px;
  margin: 15px 0;
}

/* Social row */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.footer-social a {
  color: #000;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #2563eb;
}

/* Mobile footer layout (hidden by default) */
.mobile-footer {
  display: none;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.mobile-logo {
  width: 160px;
  margin: auto;
}

.mobile-icons {
  justify-content: center;
}

.mobile-contact h2,
.mobile-handles-title {
  color: #1e40af;
  font-weight: bold;
}

.mobile-social {
  justify-content: center;
  gap: 20px;
}

/* Switch between desktop and mobile footer at 768px */
@media (max-width: 768px) {
  .desktop-footer {
    display: none;
  }
  .mobile-footer {
    display: flex;
  }
}


/* ============================================================================
   12) About Section: General content, vision & mission blocks
============================================================================= */

.about-section {
  padding: 4rem 2rem;
  background-color: #f9fafb;
  font-family: 'Roboto', sans-serif;
  text-align: center; /* center all text by default */
}

/* Subsection title */
.about-subsection {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1d4ed8; /* blue */
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.about-subsection:hover {
  color: #1e40af;
}

/* Content layout */
.about-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; /* center content */
}

/* Image block */
.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

/* Text block */
.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563; /* gray */
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}

/* Optional utility for justified text */
.justify-text {
  text-align: justify;
}

/* Vision/Mission overall heading */
.about-vision-mission-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-top: 3rem;
  text-align: center;
  transition: color 0.3s ease;
}

.about-vision-mission-title:hover {
  color: #1e40af;
}

/* Decorative underline */
.about-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  margin: 0.5rem auto 2rem;
  border-radius: 3px;
}

/* Containers for the two blocks */
.about-vision-mission-container,
.about-mission-container {
  background: #ffffff;
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  max-width: 900px;
}

/* Titles inside those blocks */
.about-vision-title,
.about-mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.about-vision-title:hover,
.about-mission-title:hover {
  color: #1e40af;
}

/* Body text */
.about-vision-text,
.about-mission-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 600;
}


/* ============================================================================
   13) Governing Council and Team Cards
============================================================================= */

/* Subsection title */
.governing-subsection {
  text-align: center; /* Approximated for SubSection */
  font-size: 2rem; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Card grid wrapper */
.governing-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* flex-wrap for responsive grid */
}

/* Generic team card */

/* Team Card Styles */
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.10);
  margin: 1.2rem;
  width: 290px;
  height: 400px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s cubic-bezier(.4,2,.3,1), box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.18);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}

.card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1rem 0 0.3rem 0;
  color: #1e40af;
  letter-spacing: 0.5px;
}

.card-dept {
  font-size: 0.98rem;
  color: #2563eb;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .card {
    width: 45vw;
    min-width: 220px;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .card {
    width: 100%;
    margin: 1rem 0;
  }
}


/* ============================================================================
   14) General Resets, Navbar, Advisory, and Footer Tag
   Note: Some duplication is intentional to match existing pages.
============================================================================= */

/* Reset & Base (redundant to ensure consistency across separate pages) */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Navbar baseline */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar img {
  max-height: 80px;
}

/* Advisory wrapper (grid version) */
.advisory-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.advisory-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.advisory-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.advisory-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.advisory-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.advisory-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2563eb; /* Blue */
  margin: 15px 0 5px;
}

.advisory-role {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Footer tag baseline styles (page end) */
footer {
  text-align: center;
  padding: 30px;
  background: #f3f4f6;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #555;
}

/* Advisory wrapper (flex version) to support alt layout */
.advisory-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.advisory-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.advisory-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.advisory-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advisory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.advisory-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.advisory-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2563eb; /* Blue */
  margin: 15px 0 5px;
}

.advisory-role {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}


/* ============================================================================
   15) Team Heading and Student Team Wrapper (shared)
============================================================================= */

.team-subsection {
  text-align: center; /* Approximated for SubSection */
  font-size: 2rem; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 2rem;
}

.team-container,
.team-student-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* flex-wrap for responsive grid */
}

.team-student-heading {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold; /* font-bold */
  text-align: center; /* text-center */
  margin: 2rem 0; /* Spacing above and below */
}


/* ============================================================================
   16) Recognition Page: Layout for image/text and hero strip
============================================================================= */

.recognition-container {
  height: 90vh; /* h-[90vh] */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recognition-subsection {
  text-align: center; /* Approximated for SubSection */
  font-size: 2rem; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Main content row (column on mobile) */
.recognition-main {
  display: flex;
  flex-direction: column; /* Mobile stack */
  justify-content: center;
  align-items: center;
  gap: 2.5rem; /* gap-10 */
  margin-top: 13rem; /* mt-52 */
  padding-left: 4rem; /* px-16 (left/right) */
  padding-right: 4rem;
  text-align: center; /* text-center */
  font-size: 2.25rem; /* text-4xl */
  color: #6b7280; /* text-gray-500 */
}

/* On small+ screens, allow row layout */
@media (min-width: 640px) { /* sm breakpoint */
  .recognition-main {
    flex-direction: row; /* sm:flex */
    text-align: center; /* sm:text-center */
    font-size: 2.25rem; /* sm:text-4xl */
  }
}

/* Image wrapper + spacing tweaks */
.recognition-image {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem; /* mb-2 */
  margin-top: -3.75rem; /* mt-[-60px] mobile */
}

@media (min-width: 640px) {
  .recognition-image {
    margin-top: 0; /* No negative on desktop */
  }
}

/* Body text (left and justified on mobile; centered on desktop) */
.recognition-text {
  margin-top: 2.5rem; /* mt-10 mobile */
  text-align: left; /* text-left mobile */
  font-size: 1rem; /* text-lg mobile */
  text-align: justify; /* style={{ textAlign: 'justify' }} */
}

@media (min-width: 640px) {
  .recognition-text {
    margin-top: -3.75rem; /* sm:mt-[-60px] */
    text-align: center; /* sm:text-center */
    font-size: 2.25rem; /* sm:text-4xl */
  }
}

/* CTA button style */
.recognition-btn {
  transition: all 0.3s ease-in-out; /* transition ease-in-out */
  font-size: 1.25rem; /* text-[20px] */
  border: 2px solid; /* border-2 */
  border-radius: 0.375rem; /* rounded-md */
  padding: 0.25rem; /* p-1 */
  margin-top: 1rem; /* mt-4 */
  color: #fb923c; /* text-orange-400 */
}

.recognition-btn:hover {
  color: #3b82f6; /* hover:text-blue-500 */
}

/* Small hero strip with overlay and white heading text */
.recognition-hero {
  position: relative;
  width: 100%;
  height: 250px; /* adjust as needed */
  background: url("/assets/SubSec.png") center/cover no-repeat; 
  /* replace with your uploaded image path */
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  color: #fff;
  font-size: 4.5rem;
  font-weight: bold;
  z-index: 2;
  text-align: center;
}


/* ============================================================================
   17) Partners Cards (grid-based partner listing)
============================================================================= */

.partners-container {
  padding: 1.5rem; /* p-6 */
  max-width: 64rem; /* max-w-4xl */
  margin: 0 auto; /* mx-auto */
}

.partners-heading {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold; /* font-bold */
  text-align: center; /* text-center */
  margin-bottom: 1.5rem; /* mb-6 */
}

/* Section spacing wrapper */
.partners-section {
  margin-bottom: 2rem; /* mb-8 */
}

/* Subsection title */
.partners-section-heading {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 600; /* font-semibold */
  margin-bottom: 1rem; /* mb-4 */
}

/* Responsive grid: 2 -> 3 -> 4 columns */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* grid-cols-2 */
  gap: 1rem; /* gap-4 */
}

@media (min-width: 768px) { /* md breakpoint */
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* md:grid-cols-3 */
  }
}

@media (min-width: 1024px) { /* lg breakpoint */
  .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* lg:grid-cols-4 */
  }
}

/* Partner card */
.partners-card {
  background-color: white; /* bg-white */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
  border-radius: 0.5rem; /* rounded-lg */
  padding: 1rem; /* p-4 */
  display: flex;
  flex-direction: column; /* flex-col */
  align-items: center; /* items-center */
}

/* Partner logo image */
.partners-logo {
  width: 5rem; /* w-20 */
  height: 5rem; /* h-20 */
  object-fit: contain; /* object-contain */
  margin-bottom: 0.5rem; /* mb-2 */
}

/* Partner name text */
.partners-name {
  text-align: center; /* text-center */
  font-weight: 500; /* font-medium */
}


/* ============================================================================
   18) Incubation Programs: Events list card (simple variant)
============================================================================= */

.incubation-subsection {
  text-align: center; /* Approximated for SubSection */
  font-size: 2rem; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Basic stacked event card (mobile-first) */
.event-add {
  display: flex;
  flex-direction: column; /* Mobile stack */
  align-items: center;
  margin-bottom: 2rem; /* Spacing between events */
  padding: 1rem; /* General padding */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for card-like feel */
  border-radius: 0.5rem; /* rounded-lg */
}

/* Row layout at small breakpoint */
@media (min-width: 640px) { /* sm breakpoint */
  .event-add {
    flex-direction: row; /* sm:flex row */
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* Event image */
.event-image {
  width: 100%; /* Full width on mobile */
  max-width: 300px; /* Limit size */
  height: auto;
  margin-bottom: 1rem; /* mb on mobile */
}

@media (min-width: 640px) {
  .event-image {
    width: 40%; /* Adjust for desktop */
    margin-right: 2rem; /* Gap on desktop */
    margin-bottom: 0;
  }
}

/* Title */
.event-heading {
  font-size: 1.5rem; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 1rem; /* pb-4 or similar */
  color: #2563eb; /* text-blue-600 if styled */
}

.event-heading a {
  color: inherit; /* Inherit color */
  text-decoration: none; /* No underline */
}

.event-heading a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Body text */
.event-text {
  text-align: justify; /* Justified text */
  font-size: 1rem; /* Adjust as needed */
  color: #4b5563; /* text-gray-600 */
}


/* ============================================================================
   19) Funding: Cards grid with icons and descriptions
============================================================================= */

.funding-container {
  padding: 1.5rem; /* p-6 */
  background-color: #f3f4f6; /* bg-gray-100 */
  min-height: 100vh; /* min-h-screen */
}

/* Page subsection title */
.funding-subsection{
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 3rem 0 2rem;
  color: #1591d8;
  text-transform: uppercase;
  position: relative;
}

.funding-heading {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold; /* font-bold */
  text-align: center; /* text-center */
  margin-bottom: 1.5rem; /* mb-6 */
}

/* Grid (1col -> 2col -> 3col) */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr)); /* Default 1 column */
  gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) { /* md breakpoint */
  .funding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
  }
}

@media (min-width: 1024px) { /* lg breakpoint */
  .funding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* lg:grid-cols-3 */
  }
}

/* Card container */
.funding-card {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  border-radius: 0.75rem; /* rounded-xl */
  background-color: white; /* bg-white */
  padding: 1rem; /* p-4 */
  display: flex;
  flex-direction: column;
  align-items: center; /* items-center */
}

/* Icon size */
.funding-icon {
  font-size: 1.875rem; /* text-3xl */
  margin-bottom: 1rem; /* Added for spacing */
}

/* Title text */
.funding-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600; /* font-semibold */
  margin-top: 1rem; /* mt-4 */
}

/* Description copy */
.funding-description {
  color: #4b5563; /* text-gray-600 */
  text-align: center; /* text-center */
  margin-top: 0.5rem; /* mt-2 */
}


/* ============================================================================
   20) Photos Gallery: Responsive grid of smaller thumbnails
============================================================================= */

.photos-subsection {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.photos-gallery {
  padding: 2rem 1rem; /* reduced padding */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* responsive grid */
  gap: 1rem; /* spacing between images */
  justify-items: center; /* center images in each cell */
}

.photos-event-heading {
  grid-column: 1 / -1; /* span full width */
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 1rem 0;
}

.photos-image {
  width: 100%; /* fit in grid cell */
  max-width: 150px; /* smaller image size */
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.photos-image:hover {
  transform: scale(1.05); /* subtle hover effect */
}

/* Slightly larger on ≥640px */
@media (min-width: 640px) {
  .photos-gallery {
    padding: 3rem 3rem;
    gap: 1.5rem;
  }
  .photos-image {
    max-width: 200px; /* slightly larger on bigger screens */
  }
}


/* ============================================================================
   21) Incubation Page: Section title + enhanced Event cards (variant 2)
============================================================================= */

.incubation-subsection{
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 3rem 0 2rem;
  color: #1591d8;
  text-transform: uppercase;
  position: relative;
}

/* Decorative rule below the title */
.incubation-subsection::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.5rem auto 0;
  background: #3bc9f3;
  border-radius: 2px;
}

/* Event Wrapper (card-like with shadow) */
.event-add {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 2.5rem auto;
  max-width: 1200px;
  padding: 1.5rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Lift */
.event-add:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Event Image (fixed width) */
.event-add .event-image {
  width: 280px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Right column flex-fill */
.event-add > div {
  flex: 1;
}

/* Heading */
.event-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  color: #374151;
}

.event-heading a {
  text-decoration: none;
  color: #1e40af; /* deep blue */
  transition: color 0.25s ease;
}

.event-heading a:hover {
  color: #2563eb; /* brighter blue */
}

/* Event Text */
.event-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
  margin: 0;
}

/* Responsive collapse to column */
@media (max-width: 900px) {
  .event-add {
    flex-direction: column;
    text-align: center;
  }

  .event-add .event-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem;
  }

  .event-text {
    text-align: left;
  }
}


/* ============================================================================
   22) Success Stories: Cards with logos and descriptions
============================================================================= */

.success-section {
  padding: 3rem 0;           /* py-12 */
  background: #f3f4f6;       /* bg-gray-100 */
  box-sizing: border-box;
}

/* Container */
.success-container {
  max-width: 72rem;          /* max-w-6xl */
  margin: 0 auto;            /* mx-auto */
  padding: 0 1.5rem;         /* px-6 */
}

/* Title and Subtitle */
.success-title {
  font-size: 1.875rem;       /* text-3xl */
  font-weight: 700;          /* font-bold */
  color: #1f2937;            /* text-gray-800 */
  margin-bottom: 1.5rem;     /* mb-6 */
  text-align: center;
}

.success-subtitle {
  color: #4b5563;            /* text-gray-600 */
  margin-bottom: 2.5rem;     /* mb-10 */
  max-width: 42rem;          /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

/* List wrapper - vertical spacing between cards */
.success-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;               /* space-y-6 */
}

/* Card */
.success-card {
  display: flex;
  align-items: center;       /* items-center */
  gap: 1.5rem;               /* space-x-6 */
  background: #ffffff;       /* bg-white */
  padding: 2rem;             /* p-8 */
  border-radius: 0.5rem;     /* rounded-lg */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08); /* shadow */
}

/* Logo */
.success-logo {
  width: 8rem;               /* w-32 */
  height: 8rem;              /* h-32 */
  object-fit: contain;
  flex-shrink: 0;
}

/* Content */
.success-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.success-name {
  font-size: 1.25rem;        /* text-xl */
  font-weight: 600;          /* font-semibold */
  color: #374151;            /* text-gray-700 */
  margin: 0;
}

.success-desc {
  color: #4b5563;            /* text-gray-600 */
  font-size: 0.95rem;        /* text-sm (approx) */
  line-height: 1.65;
  margin: 0;
  text-align: justify;
}

/* Responsive: stack on small devices */
@media (max-width: 640px) {
  .success-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .success-logo {
    width: 6.5rem;
    height: 6.5rem;
  }
}


/* ============================================================================
   23) Video Cards Layout (vc-*)
============================================================================= */

.vc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-sizing: border-box;
}

/* Card with hover shadow effect */
.vc-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .25s ease;
}

.vc-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Inner layout: column -> row at md */
.vc-card-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .vc-card-inner {
    flex-direction: row;
  }
}

/* Media (video) side */
.vc-media {
  width: 100%;
  background: #f3f4f6;
}

@media (min-width: 768px) {
  .vc-media {
    width: 33.333%;
  }
}

/* Video element sizing */
.vc-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Content side */
.vc-content {
  width: 100%;
  padding: 1.25rem; /* ~p-5/p-6 */
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .vc-content {
    width: 66.666%;
    padding: 1.5rem; /* md p-6 */
  }
}

/* Title for the card */
.vc-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: #111827;
}

/* Description text */
.vc-desc {
  color: #4b5563;
  font-size: 1.125rem; /* ~text-xl */
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}

/* Small screens: spacing adjustment */
@media (max-width: 767px) {
  .vc-content {
    padding-top: 1rem;
  }
}


/* ============================================================================
   24) Patents Page: Wrapper and "Coming Soon" heading
============================================================================= */

.patents-wrapper {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Generic subsection heading (reuse across pages if needed) */
.subsection {
  text-align: center;
  font-size: 2rem;     /* section title size */
  font-weight: 800;
  margin-top: 1.5rem;
}

/* Centered “Coming Soon” banner text */
.coming-soon {
  margin-top: 11rem;   /* ~ Tailwind mt-44 */
  text-align: center;
  font-size: clamp(2.5rem, 8vw, 6rem); /* scalable like text-8xl */
  color: #6b7280;      /* gray-500 */
  font-weight: 700;
}


.headingc{
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 3rem 0 2rem;
  color: #1591d8;
  text-transform: uppercase;
  position: relative;
}

/* Decorative rule below the title */
.headingc::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.5rem auto 0;
  background: #3bc9f3;
  border-radius: 2px;
}
