* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Top Bar */
 
 
        /* Top Bar with Animated Gradient */
        .top-bar {
          background: linear-gradient(270deg, #dc143c, #b91432, #c41633, #dc143c);
          background-size: 600% 600%;
          color: white;
          padding: 0.9rem 0;
          font-size: 0.85rem;
          position: relative;
          overflow: hidden;
          animation: gradientFlow 8s ease infinite;
      }

      @keyframes gradientFlow {
          0% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
          100% { background-position: 0% 50%; }
      }

      .top-bar::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
          animation: shimmer 3s infinite;
      }

      @keyframes shimmer {
          0% { left: -100%; }
          100% { left: 100%; }
      }

      .top-bar-content {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 2rem;
          display: flex;
          justify-content: flex-end;
          gap: 2.5rem;
          position: relative;
          z-index: 2;
      }

      .top-bar-item {
          display: flex;
          align-items: center;
          gap: 0.6rem;
          opacity: 0;
          animation: fadeInUp 0.6s ease forwards;
      }

      .top-bar-item:nth-child(1) { animation-delay: 0.1s; }
      .top-bar-item:nth-child(2) { animation-delay: 0.2s; }
      .top-bar-item:nth-child(3) { animation-delay: 0.3s; }

      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(10px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .top-bar-item i {
          animation: pulse 2s ease-in-out infinite;
      }

      @keyframes pulse {
          0%, 100% { transform: scale(1); }
          50% { transform: scale(1.1); }
      }

      /* Main Header */
      header {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
          position: sticky;
          top: 0;
          z-index: 1000;
          border-bottom: 3px solid transparent;
          border-image: linear-gradient(90deg, #dc143c, #ffd700, #dc143c);
          border-image-slice: 1;
          transition: all 0.3s ease;
      }

      header.scrolled {
          box-shadow: 0 8px 40px rgba(220, 20, 60, 0.15);
          background: rgba(255, 255, 255, 0.98);
      }

      nav {
          max-width: 1500px;
          margin: 0 auto;
          padding: 0.8rem 2rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: relative;
      }

      /* Logo Section with 3D Effect */
      .logo {
          display: flex;
          align-items: center;
          gap: 1.2rem;
          opacity: 0;
          animation: slideInLeft 0.8s ease forwards;
          animation-delay: 0.2s;
      }

      @keyframes slideInLeft {
          from {
              opacity: 0;
              transform: translateX(-30px);
          }
          to {
              opacity: 1;
              transform: translateX(0);
          }
      }

      .logo-icon {
          position: relative;
          width: 70px;
          height: 70px;
          transition: transform 0.4s ease;
      }

      .logo-icon::before {
          content: '';
          position: absolute;
          inset: -5px;
          background: linear-gradient(135deg, #dc143c, #ffd700);
          border-radius: 16px;
          opacity: 0;
          transition: opacity 0.3s ease;
          animation: rotate 4s linear infinite;
      }

      @keyframes rotate {
          from { transform: rotate(0deg); }
          to { transform: rotate(360deg); }
      }

      .logo-icon:hover::before {
          opacity: 0.3;
      }

      .logo-icon img {
          width: 70px;
          height: 70px;
          border-radius: 16px;
          position: relative;
          z-index: 2;
          box-shadow: 0 8px 25px rgba(220, 20, 60, 0.25);
          transition: all 0.4s ease;
      }

      .logo-icon:hover img {
          transform: scale(1.1) rotate(5deg);
          box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
      }

      .logo-text h1 {
          font-family: 'Crimson Pro', serif;
          font-size: 1.5rem;
          font-weight: 800;
          color: var(--navy-dark);
          letter-spacing: -0.5px;
          background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          position: relative;
      }

      .motto {
          font-family: 'Crimson Pro', serif;
          font-size: 0.8rem;
          color: var(--crimson-primary);
          font-weight: 700;
          letter-spacing: 2px;
          margin-top: 0.2rem;
          position: relative;
          display: inline-block;
      }

      .motto::after {
          content: '';
          position: absolute;
          bottom: -3px;
          left: 0;
          width: 0;
          height: 2px;
          background: linear-gradient(90deg, #dc143c, #ffd700);
          transition: width 0.4s ease;
      }

      .logo:hover .motto::after {
          width: 100%;
      }

      /* Navigation Links with Advanced Effects */
      .nav-links {
          display: flex;
          list-style: none;
          gap: 0.5rem;
          align-items: center;
      }

      .nav-links li {
          opacity: 0;
          animation: fadeInDown 0.6s ease forwards;
          position: relative;
      }

      .nav-links li:nth-child(1) { animation-delay: 0.3s; }
      .nav-links li:nth-child(2) { animation-delay: 0.4s; }
      .nav-links li:nth-child(3) { animation-delay: 0.5s; }
      .nav-links li:nth-child(4) { animation-delay: 0.6s; }
      .nav-links li:nth-child(5) { animation-delay: 0.7s; }
      .nav-links li:nth-child(6) { animation-delay: 0.8s; }
      .nav-links li:nth-child(7) { animation-delay: 0.9s; }
      .nav-links li:nth-child(8) { animation-delay: 1s; }

      @keyframes fadeInDown {
          from {
              opacity: 0;
              transform: translateY(-20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .nav-links a {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          text-decoration: none;
          color: var(--navy-medium);
          font-weight: 600;
          font-size: 0.95rem;
          padding: 0.8rem 1.2rem;
          border-radius: 12px;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
      }

      .nav-links a::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
          transition: left 0.5s ease;
      }

      .nav-links a:hover::before {
          left: 100%;
      }

      .nav-links a::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0;
          height: 3px;
          background: linear-gradient(90deg, #dc143c, #ffd700);
          transition: all 0.4s ease;
          transform: translateX(-50%);
          border-radius: 2px;
      }

      .nav-links a:hover {
          color: var(--crimson-primary);
          background: rgba(220, 20, 60, 0.05);
          transform: translateY(-2px);
      }

      .nav-links a:hover::after {
          width: 80%;
      }

      .nav-links i {
          font-size: 0.9rem;
          transition: all 0.3s ease;
      }

      .nav-links a:hover i {
          transform: scale(1.2) rotate(10deg);
          color: var(--crimson-primary);
      }

      /* Special effect for active/current page */
      .nav-links a.active {
          background: linear-gradient(135deg, #dc143c, #b91432);
          color: white;
          box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
      }

      .nav-links a.active::after {
          display: none;
      }

      .nav-links a.active i {
          color: var(--gold-accent);
      }

      /* Mobile Menu Button */
      .mobile-menu-btn {
          display: none;
          background: linear-gradient(135deg, #dc143c, #b91432);
          color: white;
          border: none;
          font-size: 1.5rem;
          padding: 0.8rem 1rem;
          border-radius: 12px;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
      }

      .mobile-menu-btn:hover {
          transform: scale(1.1) rotate(90deg);
          box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
      }

      /* Decorative Elements */
      .nav-decoration {
          position: absolute;
          top: 0;
          right: 0;
          width: 200px;
          height: 200px;
          background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
          border-radius: 50%;
          pointer-events: none;
          animation: float 6s ease-in-out infinite;
      }

      @keyframes float {
          0%, 100% { transform: translate(0, 0) rotate(0deg); }
          33% { transform: translate(20px, -20px) rotate(120deg); }
          66% { transform: translate(-20px, 20px) rotate(240deg); }
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
          .nav-links {
              gap: 0.3rem;
          }

          .nav-links a {
              padding: 0.7rem 1rem;
              font-size: 0.85rem;
          }
      }

      @media (max-width: 768px) {
          .top-bar-content {
              flex-direction: column;
              gap: 0.5rem;
              align-items: center;
          }

          .mobile-menu-btn {
              display: block;
          }

          .nav-links {
              position: absolute;
              top: 100%;
              left: 0;
              right: 0;
              background: rgba(255, 255, 255, 0.98);
              backdrop-filter: blur(20px);
              flex-direction: column;
              gap: 0;
              padding: 1rem;
              box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
              transform: translateY(-20px);
              opacity: 0;
              pointer-events: none;
              transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }

          .nav-links.active {
              transform: translateY(0);
              opacity: 1;
              pointer-events: all;
          }

          .nav-links li {
              width: 100%;
              animation: none;
              opacity: 1;
          }

          .nav-links a {
              width: 100%;
              justify-content: flex-start;
              padding: 1rem 1.5rem;
          }

          .logo-text h1 {
              font-size: 1.2rem;
          }

          .motto {
              font-size: 0.7rem;
          }
      }

      /* Demo Content */
      .demo-content {
          max-width: 1400px;
          margin: 4rem auto;
          padding: 0 2rem;
      }

      .demo-card {
          background: white;
          padding: 3rem;
          border-radius: 20px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
          text-align: center;
      }

      .demo-card h2 {
          font-family: 'Crimson Pro', serif;
          font-size: 2.5rem;
          color: var(--navy-dark);
          margin-bottom: 1rem;
      }

      .demo-card p {
          color: var(--navy-medium);
          font-size: 1.1rem;
          line-height: 1.8;
      }

      /* Scroll Progress Bar */
      .scroll-progress {
          position: fixed;
          top: 0;
          left: 0;
          height: 4px;
          background: linear-gradient(90deg, #dc143c, #ffd700, #dc143c);
          background-size: 200% 100%;
          animation: gradientMove 3s ease infinite;
          z-index: 9999;
          transform-origin: left;
      }

      @keyframes gradientMove {
          0%, 100% { background-position: 0% 50%; }
          50% { background-position: 100% 50%; }
      }
/* hidden before scroll */
.section-title,
.section-subtitle,
.director-photo,
.about-content,
.facility-card,
.academic-card,
.event-card {
  /* opacity: 0; */
  transform: translateY(30px);
} 

/* visible on scroll */
.animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.hero-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* DARK OVERLAY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(156, 150, 150, 0.384);
  z-index: 1;
}

/* BACKGROUND IMAGES */
.slide-1 {
  background: url('/images/slider/slide1.JPG?w=4020') center/cover no-repeat;
}
.slide-9
{
 background: url('/images/gallery/WhatsApp Image 2026-02-09 at 8.45.53 PM.jpeg?w=5020') center/cover no-repeat; 
}

.slide-2 {
  background: url('/images/slider/slide2.JPG?w=3220') center/cover no-repeat;
}

.slide-3 {
  background: url('/images/slider/slide3.jpg?w=3000') center/cover no-repeat;
}

.slide-4 {
  height: 700px; /* increase as needed */
  background: url('/images/slider/slide4.jpeg?w=1220&h=3232') center/cover no-repeat;
}


.slide-5 {
  /* height: 80px;  */
  background: url('/images/slider/slide5.webp?w=2920') center/cover  no-repeat;
}

.slide-6 {
  height: 700px;
  background: url('/images/slider/slide6.jpeg?w=3920') center/cover no-repeat;
}

.slide-7 {
  /* height:800px; */
  background: url('/images/slider/slide7.JPG?w=5920') center/cover no-repeat;
}
.slide-8 {
  height: 700px;
  background: url('/images/slider/slide8.png?w=8020') center/contain no-repeat;
}
/* VIDEO BACKGROUND */
.slide-8 {
  /* background: #000; */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* CONTENT */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 1700px;
  color: #fff;
}

/* TEXT */
.reveal-text {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  overflow: hidden;
}

.slide p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f5c518;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 197, 24, 0.4);
}

/* INITIAL HIDDEN STATE */
.word-first,
.word-reveal span,
.slide p,
.slide .btn {
  opacity: 0;
}

/* ANIMATIONS FOR CONTENT */
.slide.active .word-first {
  animation: fadeUp 0.8s ease forwards;
}

.slide.active .word-reveal span {
  animation: slideReveal 0.9s ease forwards;
  animation-delay: 0.3s;
}

.slide.active p {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.slide.active .btn {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

/* KEYFRAMES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideReveal {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* TRANSITION 1: FADE */
.slide.tr-fade {
  transition: opacity 1s ease;
}

/* TRANSITION 2: SLIDE FROM RIGHT */
.slide.tr-slide-right {
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.slide.tr-slide-right.active {
  transform: translateX(0);
}

/* TRANSITION 3: ZOOM IN */
.slide.tr-zoom {
  transform: scale(1.3);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.slide.tr-zoom.active {
  transform: scale(1);
}

/* TRANSITION 4: CURTAIN */
.slide.tr-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 3;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide.tr-curtain.active::after {
  transform: scaleY(0);
}

/* TRANSITION 5: BOXES */
.slide.tr-boxes .box-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  pointer-events: none;
}

.slide.tr-boxes .box-item {
  background: #000;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transform: scale(1);
}

.slide.tr-boxes.active .box-item {
  transform: scale(0);
}

/* TRANSITION 6: DIAGONAL WIPE */
.slide.tr-diagonal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 3;
  transform: translateX(-150%) skewX(-20deg);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  width: 150%;
}

.slide.tr-diagonal.active::after {
  transform: translateX(100%) skewX(-20deg);
}

/* TRANSITION 7: SLIDE FROM LEFT */
.slide.tr-slide-left {
  transform: translateX(-100%);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.slide.tr-slide-left.active {
  transform: translateX(0);
}

/* TRANSITION 8: ROTATE ZOOM */
.slide.tr-rotate {
  transform: scale(0.8) rotate(5deg);
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.slide.tr-rotate.active {
  transform: scale(1) rotate(0deg);
}

/* DOT NAV */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
  left: 30px;
}

.arrow-next {
  right: 30px;
}

.news-ticker {
  background: #ffd700;
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ticker-label {
  background: #dc143c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  white-space: nowrap;
}

.ticker-text {
  flex: 1;
  overflow: hidden;
}

.ticker-text p {
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
  font-weight: 500;
  color: #333;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.stats-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.stats-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.2s;
}

.stats-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6b6b;
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  animation: underlineGrow 0.8s forwards 1s;
}

.stats-heading p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.6s;
}

/* Animation Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Optional: animate stats cards in */
.stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stats .stat-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.stats .stat-item:nth-child(1) {
  animation-delay: 1.2s;
}

.stats .stat-item:nth-child(2) {
  animation-delay: 1.4s;
}

.stats .stat-item:nth-child(3) {
  animation-delay: 1.6s;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 2rem auto;
}

.stat-item {
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid transparent;
}

/* ============================================
   SAWAN KIDS - Playful Children's Theme
   Colors: Bright rainbow, fun, energetic
============================================ */
/* ============================= */
/* STAT KIDS CARD */
/* ============================= */

.stat-kids {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 36px;
  cursor: pointer;
  background-image: url("/images/kids.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3),
    0 0 0 1px rgba(255, 193, 7, 0.3);
  transition: all 0.4s ease;
  isolation: isolate;
}

.stat-kids::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.55));
  z-index: 0;
  pointer-events: none;
}

.stat-kids::after {
  content: "🌈";
  position: absolute;
  font-size: 80px;
  opacity: 0.12;
  top: -10px;
  right: -10px;
  z-index: 1;
  animation: rainbow-float 3s ease-in-out infinite;
  pointer-events: none;
}

.stat-kids .bubble {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle,
      rgba(255, 182, 193, 0.25) 0%,
      transparent 70%);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 1;
  animation: bubble-dance 4s ease-in-out infinite;
  pointer-events: none;
}

.stat-kids * {
  position: relative;
  z-index: 2;
}

.stat-kids .stat-badge {
  background: linear-gradient(135deg,
      #ff6b9d 0%,
      #ff8e53 50%,
      #ffc837 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.5);
  animation: badge-wiggle 2s ease-in-out infinite;
}

.stat-kids .stat-icon {
  background: linear-gradient(135deg,
      #ffeb3b 0%,
      #ff9800 50%,
      #ff5722 100%);
  box-shadow: 0 10px 40px rgba(255, 152, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
  animation: kids-bounce 2s ease-in-out infinite;
  transition: all 0.4s ease;
}

.stat-kids .stat-name {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.stat-kids .stat-label {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.stat-kids .feature-tag {
  background: linear-gradient(135deg,
      rgba(255, 107, 157, 0.25) 0%,
      rgba(255, 193, 7, 0.25) 100%);
  border: 2.5px solid #ff6b9d;
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.stat-kids:hover {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 35px 100px rgba(255, 107, 157, 0.5),
    0 0 0 3px rgba(255, 193, 7, 0.5);
}

.stat-kids:hover .stat-icon {
  transform: scale(1.3) rotate(15deg);
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 1);
}

@keyframes rainbow-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-10px, -10px) rotate(10deg);
  }
}

@keyframes bubble-dance {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.2) translate(-15px, -15px);
  }
}

@keyframes badge-wiggle {

  0%,
  100% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

@keyframes kids-bounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-10px) scale(1.05);
  }

  75% {
    transform: translateY(-5px) scale(0.98);
  }
}

/* ============================= */
/* STAT SCHOOL CARD */
/* ============================= */

.stat-school {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 36px;
  cursor: pointer;
  background-image: url("/images/school.png?w=8000");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.4),
    0 0 0 1px rgba(30, 60, 114, 0.3);
  transition: all 0.4s ease;
  isolation: isolate;
}

.stat-school::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(25, 32, 72, 0.4),
      rgba(30, 60, 114, 0.75));
  z-index: 0;
  pointer-events: none;
}

.stat-school::after {
  content: "🎓";
  position: absolute;
  font-size: 85px;
  opacity: 0.15;
  top: -15px;
  right: -15px;
  z-index: 1;
  animation: cap-float 4s ease-in-out infinite;
  pointer-events: none;
}

.stat-school .bubble {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle,
      rgba(92, 107, 192, 0.3) 0%,
      transparent 70%);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  z-index: 1;
  animation: knowledge-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.stat-school * {
  position: relative;
  z-index: 2;
}

.stat-school .stat-badge {
  background: linear-gradient(135deg, #3f51b5 0%, #1a237e 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(63, 81, 181, 0.6);
  animation: badge-glow 3s ease-in-out infinite;
}

.stat-school .stat-icon {
  background: linear-gradient(135deg, #5c6bc0 0%, #3f51b5 100%);
  box-shadow: 0 10px 40px rgba(63, 81, 181, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.7);
  animation: academic-float 4s ease-in-out infinite;
  transition: all 0.4s ease;
}

.stat-school .stat-name {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.stat-school .stat-label {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.stat-school .feature-tag {
  background: linear-gradient(135deg,
      rgba(63, 81, 181, 0.25) 0%,
      rgba(92, 107, 192, 0.25) 100%);
  border: 2.5px solid #5c6bc0;
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.stat-school:hover {
  transform: translateY(-15px) scale(1.05) rotate(1deg);
  box-shadow: 0 35px 100px rgba(63, 81, 181, 0.6),
    0 0 0 3px rgba(92, 107, 192, 0.5);
}

.stat-school:hover .stat-icon {
  transform: scale(1.3) rotate(-10deg);
  box-shadow: 0 20px 60px rgba(63, 81, 181, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

@keyframes cap-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }

  50% {
    transform: translate(-12px, -12px) rotate(-15deg);
    opacity: 0.22;
  }
}

@keyframes knowledge-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.15;
  }
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(63, 81, 181, 0.6);
  }

  50% {
    box-shadow: 0 4px 25px rgba(63, 81, 181, 0.9);
  }
}

@keyframes academic-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(3deg);
  }

  75% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

/* ============================= */
/* STAT RESIDENTIAL CARD */
/* ============================= */

.stat-residential {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 36px;
  cursor: pointer;
  background-image: url("https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=800");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.4),
    0 0 0 1px rgba(230, 126, 34, 0.3);
  transition: all 0.4s ease;
  isolation: isolate;
}

.stat-residential::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgb(139 69 19 / 0%),
      rgb(241 191 146 / 70%));
  z-index: 0;
  pointer-events: none;
}

.stat-residential::after {
  content: "🏡";
  position: absolute;
  font-size: 90px;
  opacity: 0.15;
  bottom: -20px;
  left: -20px;
  z-index: 1;
  animation: home-sway 4s ease-in-out infinite;
  pointer-events: none;
}

.stat-residential .bubble {
  position: absolute;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle,
      rgba(255, 183, 77, 0.35) 0%,
      transparent 70%);
  border-radius: 50%;
  top: -70px;
  right: -70px;
  z-index: 1;
  animation: warmth-glow 4.5s ease-in-out infinite;
  pointer-events: none;
}

.stat-residential * {
  position: relative;
  z-index: 2;
}

.stat-residential .stat-badge {
  background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.6);
  animation: badge-warmth 3s ease-in-out infinite;
}

.stat-residential .stat-icon {
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  box-shadow: 0 10px 40px rgba(255, 152, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  animation: home-warmth 3.5s ease-in-out infinite;
  transition: all 0.4s ease;
}

.stat-residential .stat-name {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.stat-residential .stat-label {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.stat-residential .feature-tag {
  background: linear-gradient(135deg,
      rgba(255, 152, 0, 0.25) 0%,
      rgba(255, 183, 77, 0.25) 100%);
  border: 2.5px solid #ffb74d;
  color: #ffffff;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.stat-residential:hover {
  transform: translateY(-15px) scale(1.05) rotate(-1deg);
  box-shadow: 0 35px 100px rgba(255, 152, 0, 0.6),
    0 0 0 3px rgba(255, 183, 77, 0.5);
}

.stat-residential:hover .stat-icon {
  transform: scale(1.3) rotate(12deg);
  box-shadow: 0 20px 60px rgba(255, 152, 0, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 1);
}

@keyframes home-sway {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }

  50% {
    transform: translate(10px, 5px) rotate(5deg);
    opacity: 0.22;
  }
}

@keyframes warmth-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.2;
  }
}

@keyframes badge-warmth {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.6);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 152, 0, 1);
  }
}

@keyframes home-warmth {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 152, 0, 0.7);
  }
}

/* ============================= */
/* COMMON STYLES */
/* ============================= */

.stat-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.stat-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.stat-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  border-radius: 22px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 500;
}

.stat-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.feature-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.stat-item:hover .feature-tag {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.stat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 12px;
}

.stat-kids .stat-link {
  background: linear-gradient(135deg,
      rgba(255, 107, 157, 0.15) 0%,
      rgba(255, 193, 7, 0.15) 100%);
  color: #ffffff;
}

.stat-school .stat-link {
  background: rgba(92, 107, 192, 0.2);
  color: #ffffff;
}

.stat-residential .stat-link {
  background: rgba(255, 183, 77, 0.2);
  color: #ffffff;
}

.stat-item:hover .stat-link {
  gap: 14px;
}

.stat-kids:hover .stat-link {
  background: linear-gradient(135deg,
      rgba(255, 107, 157, 0.3) 0%,
      rgba(255, 193, 7, 0.3) 100%);
}

.stat-school:hover .stat-link {
  background: rgba(92, 107, 192, 0.35);
}

.stat-residential:hover .stat-link {
  background: rgba(255, 183, 77, 0.35);
}

/* ============================================
   Common Styles
============================================ */
.stat-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.stat-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.stat-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  border-radius: 22px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 15px;
  color: #5a6c7d;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 500;
}

.stat-kids .stat-label {
  /* color: #666; */
  font-weight: 600;
}

.stat-features {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.feature-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.stat-item:hover .feature-tag {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.stat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  border-radius: 12px;
}

/* .stat-school .stat-link {
    background: rgba(63, 81, 181, 0.1);
    color: #3f51b5;
  } */

/* .stat-residential .stat-link {
    background: rgba(255, 152, 0, 0.12);
    color: #e65100;
  } */

.stat-item:hover .stat-link {
  gap: 14px;
}

.stat-kids:hover .stat-link {
  background: linear-gradient(135deg,
      rgba(255, 107, 157, 0.25) 0%,
      rgba(255, 193, 7, 0.25) 100%);
}

.stat-school:hover .stat-link {
  background: rgba(63, 81, 181, 0.15);
}

.stat-residential:hover .stat-link {
  background: rgba(255, 152, 0, 0.2);
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 28px;
  }

  .stat-number {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .stat-icon,
  .stat-kids::before,
  .stat-kids::after,
  .stat-kids .stat-badge,
  .stat-school::before,
  .stat-school::after,
  .stat-residential::before,
  .stat-residential::after {
    animation: none;
  }

  .stat-item,
  .stat-link,
  .feature-tag {
    transition: none;
  }
}

.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #dc143c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title.animate {
  animation: an 1s ease-out forwards;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #dc143c, #ffd700);
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

@keyframes an {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.ab-hero-about {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  overflow: hidden;
  padding: 6rem 2rem;
  position: relative;
}

.ab-hero-about::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: ab-pulse 8s ease-in-out infinite;
}

@keyframes ab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.ab-hero-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.ab-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  color: #fff;
  font-weight: 800;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
  animation: ab-badgeFloat 3s ease-in-out infinite;
}

@keyframes ab-badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ab-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.ab-hero-title .ab-story {
  background: linear-gradient(135deg, #dc143c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: ab-slideFromLeft 1s ease-out forwards;
}

.ab-hero-title .ab-legacy {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: ab-slideFromRight 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes ab-slideFromLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes ab-slideFromRight {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.ab-hero-content p {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: ab-fadeIn 1s ease 0.6s backwards;
}

@keyframes ab-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ab-hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: ab-fadeIn 1s ease 0.9s backwards;
}

.ab-btn-primary {
  background: #dc143c;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.ab-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.ab-btn-primary:hover::before {
  left: 100%;
}

.ab-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.ab-btn-outline {
  border: 3px solid #dc143c;
  color: #dc143c;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ab-btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #dc143c;
  transition: width 0.4s;
  z-index: -1;
}

.ab-btn-outline:hover::before {
  width: 100%;
}

.ab-btn-outline:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* Video Section */
.ab-video-section {
  position: relative;
  animation: ab-fadeIn 1s ease 1.2s backwards;
}

.ab-video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.ab-video-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 40px 100px rgba(220, 20, 60, 0.4);
}

.ab-video-wrapper video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.ab-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 5px solid rgba(255, 215, 0, 0.3);
  animation: ab-borderGlow 2s ease-in-out infinite;
}

@keyframes ab-borderGlow {
  0%, 100% {
      border-color: rgba(255, 215, 0, 0.3);
      box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.2);
  }
  50% {
      border-color: rgba(220, 20, 60, 0.5);
      box-shadow: inset 0 0 50px rgba(220, 20, 60, 0.3);
  }
}

/* Section Title */
.ab-section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: 'Playfair Display', serif;
  position: relative;
  letter-spacing: -2px;
}

.ab-section-title span {
  background: linear-gradient(135deg, #dc143c, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ab-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Director Section */
.ab-director-section {
  padding: 8rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.ab-director-card {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0;
  transition: all 0.6s;
  border: 4px solid rgba(255, 215, 0, 0.3);
}

.ab-director-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 100px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.ab-director-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dc143c, #ffd700);
}

.ab-director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.ab-director-card:hover .ab-director-image img {
  transform: scale(1.15) rotate(3deg);
}

.ab-director-info {
  padding: 5rem;
  position: relative;
}

.ab-director-title-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.ab-director-name {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.ab-director-position {
  font-size: 1.3rem;
  color: #dc143c;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.ab-director-message p {
  font-size: 1.1rem;
  line-height: 2;
  color: #64748b;
  margin-bottom: 1.8rem;
}

/* Team Section - CORRECTED */
.ab-team-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  position: relative;
}

.ab-team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.ab-team-member {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
}

.ab-team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  transform: scaleX(0);
  transition: transform 0.5s;
  z-index: 2;
}

.ab-team-member:hover::before {
  transform: scaleX(1);
}

.ab-team-member:hover {
  transform: translateY(-20px);
  border-color: #ffd700;
  box-shadow: 0 30px 70px rgba(220, 20, 60, 0.25);
}

.ab-team-member-image {
  height: 450px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ab-team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s;
}

.ab-team-member:hover .ab-team-member-image img {
  transform: scale(1.1);
}

.ab-team-member-image i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
}

.ab-team-member-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%
  );
  animation: ab-shine 3s ease-in-out infinite;
}

@keyframes ab-shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.ab-team-member-info {
  padding: 2.5rem;
}

.ab-team-member-name {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.ab-team-member-role {
  color: #dc143c;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.ab-team-member-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

/* Full Team Card */
.ab-team-full {
  max-width: 1400px;
  margin: 0 auto;
}

.ab-team-full .ab-team-member-image {
  height: 500px;
}

.ab-team-full .ab-team-member-info {
  padding: 4rem;
  text-align: center;
}

.ab-team-full .ab-team-member-name {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1e293b;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.ab-team-full .ab-team-member-name::after {
  content: '';
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  display: block;
  margin: 1rem auto 0;
  border-radius: 3px;
}

.ab-team-full .ab-team-member-desc {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Values Section */
.ab-values-section {
  padding: 8rem 2rem;
  background: white;
  position: relative;
}

.ab-values-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.ab-value-card {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  padding: 3.5rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.ab-value-card:hover {
  transform: translateY(-20px) scale(1.05);
  border-color: #ffd700;
  box-shadow: 0 30px 70px rgba(220, 20, 60, 0.25);
}

.ab-value-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all 0.5s;
}

.ab-value-card:hover .ab-value-icon {
  transform: scale(1.3) rotateY(360deg);
}

.ab-value-card h3 {
  color: #1e293b;
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
  font-weight: 800;
}

.ab-value-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* Animation Classes */
.ab-animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-animate-on-scroll.ab-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ab-hero-title {
      font-size: 3.5rem;
  }

  .ab-section-title {
      font-size: 3rem;
  }

  .ab-director-card {
      grid-template-columns: 400px 1fr;
  }
}

@media (max-width: 992px) {
  .ab-hero-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .ab-hero-title {
      font-size: 3rem;
  }

  .ab-hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
  }

  .ab-video-wrapper video {
      height: 400px;
  }

  .ab-director-card {
      grid-template-columns: 1fr;
  }

  .ab-director-image {
      height: 400px;
  }

  .ab-director-info {
      padding: 3rem;
  }
}

@media (max-width: 768px) {
  .ab-hero-title {
      font-size: 2.5rem;
  }

  .ab-section-title {
      font-size: 2.5rem;
  }

  .ab-section-subtitle {
      font-size: 1rem;
  }

  .ab-team-grid {
      grid-template-columns: 1fr;
  }

  .ab-values-grid {
      grid-template-columns: 1fr;
  }

  .ab-director-info {
      padding: 2rem;
  }

  .ab-director-name {
      font-size: 2rem;
  }

  .ab-btn-primary,
  .ab-btn-outline {
      padding: 1rem 2rem;
      font-size: 0.95rem;
  }

  .ab-team-section,
  .ab-director-section,
  .ab-values-section {
      padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ab-hero-title {
      font-size: 2rem;
  }

  .ab-section-title {
      font-size: 2rem;
  }

  .ab-team-member-image {
      height: 300px;
  }

  .ab-value-card {
      padding: 2rem;
  }

  .ab-value-icon {
      font-size: 3.5rem;
  }
}

/* Academics Section */
.ac-hero-section {
  background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.ac-hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.ac-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ac-hero-content {
  padding-right: 2rem;
}

.ac-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.2);
  color: #dc143c;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.ac-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.ac-hero-title .ac-highlight {
  color: #dc143c;
  position: relative;
}

.ac-hero-title .ac-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}

.ac-hero-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ac-hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ac-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ac-hero-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ac-hero-feature-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.ac-hero-cta {
  display: flex;
  gap: 1rem;
}

.ac-btn-primary {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.ac-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.ac-btn-secondary {
  background: white;
  color: #dc143c;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: 2px solid #dc143c;
}

.ac-btn-secondary:hover {
  background: #dc143c;
  color: white;
  transform: translateY(-3px);
}

.ac-hero-visual {
  position: relative;
}

.ac-hero-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.ac-hero-image-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.ac-hero-image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ac-hero-image-card:nth-child(1) {
  transform: translateY(-30px);
}

.ac-hero-image-card:nth-child(3) {
  transform: translateY(-30px);
}

.ac-floating-badge {
  position: absolute;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.ac-floating-badge.ac-badge-1 {
  top: 20%;
  left: -10%;
}

.ac-floating-badge.ac-badge-2 {
  bottom: 15%;
  right: -10%;
}

.ac-badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.ac-badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #dc143c;
  font-family: 'Playfair Display', serif;
}

.ac-badge-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

/* Stats Section */
.ac-stats-section {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  padding: 3rem 2rem;
  position: relative;
}

.ac-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ac-stat-item {
  text-align: center;
  color: white;
}

.ac-stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.ac-stat-label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Results Carousel Section */
.ac-results-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
  position: relative;
  overflow: hidden;
}

.ac-results-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ac-results-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ac-results-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 20, 60, 0.1);
  color: #dc143c;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 2px solid rgba(220, 20, 60, 0.2);
}

.ac-results-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ac-results-title .ac-highlight {
  color: #dc143c;
}

.ac-results-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.ac-carousel-wrapper {
  position: relative;
  margin-bottom: 5rem;
}

.ac-carousel-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(255, 215, 0, 0.05));
  border-radius: 15px;
}

.ac-carousel-container {
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
}

.ac-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-result-card {
  min-width: calc(25% - 1.5rem);
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  text-align: center;
}

.ac-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
}

.ac-result-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(220, 20, 60, 0.25);
}

.ac-student-photo {
  width: 180px;
  height: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #ffd700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.ac-student-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ac-result-card:hover .ac-student-photo img {
  transform: scale(1.05);
}

.ac-student-rank {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
  border: 3px solid white;
}

.ac-student-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, #0066cc, #004999);
  color: white;
  border-radius: 8px;
}

.ac-student-percentage {
  font-size: 2rem;
  font-weight: 900;
  color: #dc143c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.ac-student-class {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  background: rgba(255, 215, 0, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Subject Scores Display */
.ac-subject-scores {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(220, 20, 60, 0.2);
}

.ac-subject-score-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}

.ac-subject-name {
  color: #64748b;
  font-weight: 500;
}

.ac-subject-marks {
  color: #dc143c;
  font-weight: 700;
}

.ac-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ac-carousel-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #dc143c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
  color: #dc143c;
}

.ac-carousel-btn:hover {
  background: #dc143c;
  color: white;
  transform: scale(1.1);
}

.ac-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ac-carousel-btn:disabled:hover {
  background: white;
  color: #dc143c;
  transform: scale(1);
}

.ac-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.ac-carousel-dot {
  width: 12px;
  height: 12px;
  background: #e2e8f0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.ac-carousel-dot.active {
  background: #dc143c;
  width: 32px;
  border-radius: 6px;
}

/* Year Selector Tabs */
.ac-year-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.ac-year-tab {
  padding: 0.8rem 2rem;
  background: white;
  border: 2px solid rgba(220, 20, 60, 0.2);
  border-radius: 50px;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.ac-year-tab:hover {
  border-color: #dc143c;
  color: #dc143c;
}

.ac-year-tab.active {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border-color: #dc143c;
}

/* Streams Section */
.ac-streams-section {
  padding: 6rem 2rem;
  background: white;
}

.ac-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.ac-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ac-section-title .ac-highlight {
  color: #dc143c;
}

.ac-section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}

.ac-streams-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ac-stream-card {
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ac-stream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.ac-stream-card:hover::before {
  transform: scaleX(1);
}

.ac-stream-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

.ac-stream-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.ac-stream-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ac-stream-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ac-stream-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ac-subject-tag {
  background: rgba(220, 20, 60, 0.1);
  color: #dc143c;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Features Section */
.ac-features-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}

.ac-features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.ac-feature-card {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

.ac-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.15);
}

.ac-feature-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ac-feature-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.ac-feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
}

.ac-feature-list {
  list-style: none;
}

.ac-feature-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #475569;
  line-height: 1.7;
}

.ac-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: 800;
  font-size: 1.2rem;
}

/* Methodology Section */
.ac-methodology-section {
  padding: 6rem 2rem;
  background: white;
}

.ac-methodology-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ac-methodology-card {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.4s;
}

.ac-methodology-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.15);
}

.ac-methodology-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
}

.ac-methodology-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.ac-methodology-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* CTA Section */
.ac-cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.ac-cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.2), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.ac-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ac-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.ac-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.ac-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.ac-btn-white {
  background: white;
  color: #dc143c;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.ac-btn-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.ac-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.ac-btn-outline:hover {
  background: white;
  color: #dc143c;
  transform: translateY(-5px);
}

/* Footer */
.ac-footer {
  background: #0f172a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.ac-footer p {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
  .ac-hero-container {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .ac-hero-images {
      max-width: 500px;
      margin: 0 auto;
  }

  .ac-result-card {
      min-width: calc(33.333% - 1.5rem);
  }

  .ac-streams-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .ac-methodology-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }

  .mobile-menu-btn {
      display: block;
  }

  .ac-hero-title {
      font-size: 2.5rem;
  }

  .ac-stats-container {
      grid-template-columns: repeat(2, 1fr);
  }

  .ac-result-card {
      min-width: calc(50% - 1rem);
  }

  .ac-student-photo {
      width: 140px;
      height: 180px;
  }

  .ac-student-name {
      font-size: 1.1rem;
  }

  .ac-student-percentage {
      font-size: 1.6rem;
  }

  .ac-streams-grid {
      grid-template-columns: 1fr;
  }

  .ac-features-grid {
      grid-template-columns: 1fr;
  }

  .ac-methodology-grid {
      grid-template-columns: 1fr;
  }

  .ac-cta-buttons {
      flex-direction: column;
      align-items: center;
  }

  .ac-floating-badge {
      display: none;
  }

  .ac-results-title {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .ac-result-card {
      min-width: 100%;
  }
}

/* Animations */
@keyframes ac-fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.ac-fade-in-up {
  animation: ac-fadeInUp 0.8s ease forwards;
}
/* Facilities Section */
.fc-hero-section {
  background: linear-gradient(
    135deg,
    #fff8f0 0%,
    #ffe5cc 50%,
    #ffd700 100%
  );
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.fc-hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.2),
    transparent
  );
  border-radius: 50%;
  animation: fc-pulse-glow 4s ease-in-out infinite;
}

.fc-hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  border-radius: 50%;
  animation: fc-pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes fc-pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.fc-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fc-hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fc-hero-text-section {
  padding-right: 2rem;
  animation: fc-fadeInUp 1s ease 0.3s backwards;
}

@keyframes fc-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fc-bounce 2s ease-in-out infinite;
}

@keyframes fc-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fc-hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.fc-hero-main-title span {
  display: inline-block;
  animation: fc-fadeInUp 0.8s ease backwards;
}

.fc-hero-main-title span:nth-child(1) {
  animation-delay: 0.5s;
}

.fc-hero-main-title span:nth-child(2) {
  animation-delay: 0.7s;
}

.fc-highlight-text {
  color: #dc143c;
  position: relative;
  background: linear-gradient(90deg, #dc143c, #ff4757, #dc143c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fc-gradient-shift 3s ease infinite;
}

@keyframes fc-gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.fc-hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fc-fadeInUp 1s ease 0.9s backwards;
}

.fc-hero-quick-stats {
  display: flex;
  gap: 2rem;
  animation: fc-fadeInUp 1s ease 1.1s backwards;
}

.fc-quick-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
}

.fc-quick-stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.fc-stat-icon {
  font-size: 2rem;
  animation: fc-rotate-wobble 3s ease-in-out infinite;
}

@keyframes fc-rotate-wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.fc-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #dc143c;
  line-height: 1;
}

.fc-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.fc-hero-image-section {
  position: relative;
  animation: fc-fadeInUp 1s ease 0.5s backwards;
}

.fc-hero-main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.5s;
}

.fc-hero-main-image:hover {
  transform: scale(1.05) rotate(2deg);
}

/* VIDEO STYLE (same as image) */
.fc-hero-main-image video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.fc-floating-element {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  animation: fc-float-smooth 3s ease-in-out infinite;
  transition: all 0.3s;
  z-index: 5;
}

.fc-floating-element:hover {
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.fc-element-icon {
  font-size: 1.5rem;
  animation: fc-spin-slow 4s linear infinite;
}

/* Positions */
.fc-element-1 {
  top: 10%;
  right: 20px;
}

.fc-element-2 {
  top: 50%;
  left: 20px;
}

.fc-element-3 {
  bottom: 15%;
  right: 20px;
}

/* Animations */
@keyframes fc-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fc-float-smooth {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Headers with Animated Underline */
.fc-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.fc-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.fc-section-title .fc-highlight {
  color: #dc143c;
  position: relative;
}

.fc-section-title .fc-highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  animation: fc-expand-contract 2s ease-in-out infinite;
}

@keyframes fc-expand-contract {
  0%,
  100% {
    width: 100%;
  }
  50% {
    width: 60%;
    margin-left: 20%;
  }
}

.fc-section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}

/* Facilities Section with Staggered Animation */
.fc-facilities-section {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.fc-facilities-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.fc-facility-card {
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  animation: fc-fadeInUpStagger 0.8s ease forwards;
}

@keyframes fc-fadeInUpStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-facility-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fc-facility-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fc-facility-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fc-facility-card:nth-child(4) {
  animation-delay: 0.4s;
}
.fc-facility-card:nth-child(5) {
  animation-delay: 0.5s;
}
.fc-facility-card:nth-child(6) {
  animation-delay: 0.6s;
}

.fc-facility-card:hover {
  transform: translateY(-20px) rotate(2deg);
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.fc-facility-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.fc-facility-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}

.fc-facility-card:hover .fc-facility-image::before {
  opacity: 1;
}

.fc-facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.fc-facility-card:hover .fc-facility-image img {
  transform: scale(1.2) rotate(3deg);
}

.fc-facility-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.4s;
}

.fc-facility-card:hover .fc-facility-icon {
  transform: rotate(360deg) scale(1.2);
  background: linear-gradient(135deg, #dc143c, #ff4757);
}

.fc-facility-content {
  padding: 2rem;
}

.fc-facility-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-facility-card:hover .fc-facility-title {
  color: #dc143c;
}

.fc-facility-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fc-facility-features {
  list-style: none;
  padding: 0;
}

.fc-facility-features li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #475569;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fc-slideInLeft 0.5s ease forwards;
}

@keyframes fc-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fc-facility-card:hover .fc-facility-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(4) {
  animation-delay: 0.4s;
}

.fc-facility-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: 800;
  font-size: 1.1rem;
  animation: fc-check-bounce 0.6s ease;
}

@keyframes fc-check-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* Infrastructure Section with Scale Animation */
.fc-infrastructure-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  position: relative;
}

.fc-infrastructure-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.fc-infrastructure-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  opacity: 0;
  transform: scale(0.8);
  animation: fc-scaleIn 0.6s ease forwards;
}

@keyframes fc-scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fc-infrastructure-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fc-infrastructure-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fc-infrastructure-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fc-infrastructure-card:nth-child(4) {
  animation-delay: 0.4s;
}

.fc-infrastructure-card:hover {
  transform: translateY(-20px) scale(1.1);
  border-color: #ffd700;
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.25);
}

.fc-infrastructure-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s;
}

.fc-infrastructure-card:hover .fc-infrastructure-icon {
  transform: rotate(360deg) scale(1.2);
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.fc-infrastructure-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-infrastructure-card:hover .fc-infrastructure-title {
  color: #dc143c;
}

.fc-infrastructure-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* Special Features with Flip Animation */
.fc-special-features-section {
  padding: 6rem 2rem;
  background: white;
}

.fc-special-features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.fc-special-feature-card {
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  border: 2px solid rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: rotateY(-90deg);
  animation: fc-flipIn 0.8s ease forwards;
}

@keyframes fc-flipIn {
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.fc-special-feature-card:nth-child(1) {
  animation-delay: 0.2s;
}
.fc-special-feature-card:nth-child(2) {
  animation-delay: 0.4s;
}
.fc-special-feature-card:nth-child(3) {
  animation-delay: 0.6s;
}
.fc-special-feature-card:nth-child(4) {
  animation-delay: 0.8s;
}

.fc-special-feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.fc-special-feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  transition: all 0.4s;
}

.fc-special-feature-card:hover .fc-special-feature-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #dc143c, #ff4757);
}

.fc-special-feature-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-special-feature-card:hover .fc-special-feature-content h3 {
  color: #dc143c;
}

.fc-special-feature-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* CTA Section with Pulsing Effect */
.fc-cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.fc-cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.3),
    transparent
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: fc-pulse-rotate 10s ease-in-out infinite;
}

@keyframes fc-pulse-rotate {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(180deg);
  }
}

.fc-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fc-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  animation: fc-fadeInUp 1s ease;
}

.fc-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fc-fadeInUp 1s ease 0.2s backwards;
}

.fc-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fc-fadeInUp 1s ease 0.4s backwards;
}

.fc-btn-white {
  background: white;
  color: #dc143c;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.fc-btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #dc143c;
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}

.fc-btn-white:hover::before {
  width: 300px;
  height: 300px;
}

.fc-btn-white:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.fc-btn-white span {
  position: relative;
  z-index: 1;
}

.fc-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.fc-btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s;
}

.fc-btn-outline:hover::before {
  left: 0;
}

.fc-btn-outline:hover {
  color: #dc143c;
  transform: translateY(-5px);
}

.fc-btn-outline span {
  position: relative;
  z-index: 1;
}

/* Footer */
.fc-footer {
  background: #0f172a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.fc-footer p {
  opacity: 0.9;
}

/* Scroll Reveal Animation */
.fc-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}

.fc-reveal.fc-active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .fc-hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fc-hero-text-section {
    padding-right: 0;
    text-align: center;
  }

  .fc-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .fc-hero-quick-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .fc-hero-main-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .fc-facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .fc-infrastructure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-special-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .fc-hero-main-title {
    font-size: 2.5rem;
  }

  .fc-hero-subtitle {
    font-size: 1rem;
  }

  .fc-hero-quick-stats {
    flex-direction: column;
  }

  .fc-quick-stat {
    width: 100%;
  }

  .fc-floating-element {
    display: none;
  }

  .fc-hero-main-image video {
    height: 400px;
  }

  .fc-section-title {
    font-size: 2rem;
  }

  .fc-facilities-grid {
    grid-template-columns: 1fr;
  }

  .fc-infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .fc-special-feature-card {
    flex-direction: column;
    text-align: center;
  }

  .fc-cta-title {
    font-size: 2rem;
  }

  .fc-cta-description {
    font-size: 1rem;
  }

  .fc-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .fc-btn-white,
  .fc-btn-outline {
    width: 100%;
    max-width: 300px;
  }
}

/* Gallery Section */
.mg-hero-slider-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mg-slider-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 500px;
  background: #f5f5f5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.mg-slider-container .mg-slide .mg-slider-item {
  width: 280px;
  height: 350px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: all 0.5s;
}

.mg-slide .mg-slider-item:nth-child(1),
.mg-slide .mg-slider-item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.mg-slide .mg-slider-item:nth-child(3) {
  left: 50%;
}

.mg-slide .mg-slider-item:nth-child(4) {
  left: calc(50% + 300px);
}

.mg-slide .mg-slider-item:nth-child(5) {
  left: calc(50% + 600px);
}

.mg-slide .mg-slider-item:nth-child(n + 6) {
  left: calc(50% + 900px);
  opacity: 0;
}

.mg-slider-item .mg-slider-content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 400px;
  text-align: left;
  color: #fff;
  transform: translate(0, -50%);
  display: none;
}

.mg-slide .mg-slider-item:nth-child(2) .mg-slider-content {
  display: block;
}

.mg-slider-content .mg-slider-name {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: mg-animate 1s ease-in-out 1 forwards;
}

.mg-slider-content .mg-slider-des {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: mg-animate 1s ease-in-out 0.3s 1 forwards;
}

.mg-slider-content button {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  opacity: 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: all 0.3s;
  animation: mg-animate 1s ease-in-out 0.6s 1 forwards;
}

.mg-slider-content button:hover {
  background-color: #dc143c;
  color: white;
  transform: scale(1.05);
}

@keyframes mg-animate {
  from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }
  to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}

.mg-slider-button-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 100;
}

.mg-slider-button-container button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  color: #dc143c;
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mg-slider-button-container button:hover {
  background: #dc143c;
  color: white;
  transform: scale(1.1);
}

.mg-slider-button-container button:active {
  transform: scale(0.95);
}



/* FILTER SECTION */
.filter-section {
  background: white;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.8rem 1.8rem;
  border: 2px solid #ddd;
  background: white;
  color: #555;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #dc143c;
  color: #dc143c;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #dc143c;
  color: white;
  border-color: #dc143c;
}



/* SECTION HEADERS */
.section-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.section-header h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ff6b9d);
  border-radius: 2px;
}

.section-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* CATEGORY TABS */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 2rem;
  border: none;
  background: white;
  color: #2c3e50;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 0.95rem;
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, #dc143c, #ff1744);
  color: white;
}

/* PHOTO GALLERY - MASONRY LAYOUT */
.photo-gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.masonry-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.masonry-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.photo-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
}

/* Multi-photo indicator */
.photo-count-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(220, 20, 60, 0.95);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* VIDEO GALLERY - GRID LAYOUT */
.video-gallery-container {
  background: #f8f9fa;
  padding: 4rem 2rem;
}

.video-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(220, 20, 60, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
  background: #dc143c;
}

.video-info {
  padding: 1.5rem;
}

.video-category {
  display: inline-block;
  background: linear-gradient(135deg, #dc143c, #ff1744);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.video-info h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.video-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-duration {
  background: rgba(220, 20, 60, 0.1);
  color: #dc143c;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* LIGHTBOX MODAL */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-content iframe {
  width: 90vw;
  max-width: 1000px;
  height: 70vh;
  border-radius: 10px;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: #dc143c;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: #ff1744;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(220, 20, 60, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: #dc143c;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-info {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.lightbox-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  opacity: 0.9;
}

.lightbox-counter {
  position: absolute;
  top: -50px;
  left: 0;
  color: white;
  font-size: 1rem;
  background: rgba(220, 20, 60, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .masonry-grid {
      column-count: 2;
  }

  .video-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }

  .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
  }

  .section-header h2 {
      font-size: 2rem;
  }

  .masonry-grid {
      column-count: 1;
  }

  .video-grid {
      grid-template-columns: 1fr;
  }

  .lightbox-content iframe {
      width: 95vw;
      height: 50vh;
  }

  .lightbox-nav {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
  }
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #dc143c, #ff1744);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

/* LOADING ANIMATION */
.loading {
  text-align: center;
  padding: 3rem;
  color: #7f8c8d;
}

.spinner {
  border: 4px solid rgba(220, 20, 60, 0.1);
  border-top: 4px solid #dc143c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* EVENTS SECTION */

.ev-hero-section {
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.ev-hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.4), transparent);
  border-radius: 50%;
  animation: ev-pulse-glow 4s ease-in-out infinite;
}

.ev-hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  border-radius: 50%;
  animation: ev-pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes ev-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.ev-hero-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 600px;
}

.ev-hero-slide {
  /* min-height: 20vh; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%) scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-radius: 20px;
  overflow: hidden;
}

.ev-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 1;
}

.ev-hero-slide.ev-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.ev-hero-slide.ev-prev {
  transform: translateX(-100%) scale(0.9);
}

.ev-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
}

.ev-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: ev-bounce 2s ease-in-out infinite;
}

@keyframes ev-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ev-hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  animation: ev-fadeInUp 1s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes ev-fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.ev-highlight-text {
  color: #e91e63;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ev-gradient-shift 3s ease infinite;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes ev-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.ev-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: ev-fadeInUp 1s ease 0.3s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ev-hero-visual {
  position: relative;
  margin-top: 3rem;
  height: 200px;
}

.ev-floating-icon {
  position: absolute;
  font-size: 4rem;
  animation: ev-float-icon 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.ev-floating-icon.ev-icon-1 {
  left: 20%;
  top: 0;
  animation-delay: 0s;
}

.ev-floating-icon.ev-icon-2 {
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  animation-delay: 0.5s;
}

.ev-floating-icon.ev-icon-3 {
  right: 20%;
  top: 0;
  animation-delay: 1s;
}

@keyframes ev-float-icon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-5deg); }
}

.ev-slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.ev-slider-arrow {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.ev-slider-arrow:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1e293b;
  border-color: #ffd700;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.ev-slider-arrow:active {
  transform: scale(0.95);
}

.ev-slider-dots {
  display: flex;
  gap: 1rem;
}

.ev-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ev-dot:hover {
  background: rgba(255, 215, 0, 0.5);
  transform: scale(1.2);
}

.ev-dot.ev-active {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-color: #ffd700;
  transform: scale(1.3);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.6);
}

      .ev-filter-section {
          padding: 3rem 2rem;
          background: white;
          position: sticky;
          top: 95px;
          z-index: 100;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      .ev-filter-container {
          max-width: 1400px;
          margin: 0 auto;
      }

      .ev-filter-buttons {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
          margin-bottom: 0;
      }

      .ev-filter-btn {
          background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
          color: #1e293b;
          border: 2px solid #e2e8f0;
          padding: 0.9rem 2rem;
          border-radius: 50px;
          cursor: pointer;
          font-size: 1rem;
          font-weight: 600;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      }

      .ev-filter-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
          border-color: #dc143c;
          background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
      }

      .ev-filter-btn:active {
          transform: translateY(0);
      }

      .ev-filter-btn.ev-active {
          background: linear-gradient(135deg, #dc143c, #ff4757);
          color: white;
          border-color: #dc143c;
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
      }

      .ev-gallery-section {
          padding: 4rem 2rem;
          background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
          min-height: 600px;
          position: relative;
      }

      .ev-gallery-container {
          max-width: 1400px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
      }

      .ev-category-info {
          text-align: center;
          margin-bottom: 3rem;
          animation: ev-fadeInUp 0.6s ease;
      }

      .ev-category-title {
          font-size: 2.5rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 0.5rem;
      }

      .ev-category-count {
          font-size: 1.1rem;
          color: #64748b;
          font-weight: 500;
      }

      .ev-gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
          gap: 2rem;
          margin-bottom: 3rem;
      }

      .ev-gallery-item {
          background: white;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          border: 2px solid rgba(255, 215, 0, 0.2);
          cursor: pointer;
          position: relative;
          animation: ev-fadeInUp 0.6s ease backwards;
      }

      .ev-gallery-item:nth-child(1) { animation-delay: 0.1s; }
      .ev-gallery-item:nth-child(2) { animation-delay: 0.2s; }
      .ev-gallery-item:nth-child(3) { animation-delay: 0.3s; }
      .ev-gallery-item:nth-child(4) { animation-delay: 0.4s; }
      .ev-gallery-item:nth-child(5) { animation-delay: 0.5s; }
      .ev-gallery-item:nth-child(6) { animation-delay: 0.6s; }

      .ev-gallery-item:hover {
          transform: translateY(-8px);
          box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
          border-color: #ffd700;
      }

      .ev-gallery-item:active {
          transform: translateY(-4px) scale(0.98);
      }

      .ev-gallery-item-media {
          width: 100%;
          height: 280px;
          overflow: hidden;
          position: relative;
          background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .ev-gallery-item-media::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
          z-index: 1;
          opacity: 0;
          transition: opacity 0.3s;
      }

      .ev-gallery-item:hover .ev-gallery-item-media::before {
          opacity: 1;
      }

      .ev-event-icon {
          font-size: 5rem;
          position: relative;
          z-index: 2;
          animation: ev-float 3s ease-in-out infinite;
      }

      @keyframes ev-float {
          0%, 100% { transform: translateY(0px); }
          50% { transform: translateY(-15px); }
      }

      .ev-event-content {
          padding: 1.8rem;
          position: relative;
      }

      .ev-event-date-badge {
          position: absolute;
          top: -25px;
          left: 1.8rem;
          background: linear-gradient(135deg, #ffd700, #ffed4e);
          color: #1e293b;
          padding: 0.6rem 1.5rem;
          border-radius: 50px;
          font-size: 0.85rem;
          font-weight: 700;
          box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
          z-index: 10;
      }

      .ev-event-title {
          font-size: 1.5rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 0.8rem;
          margin-top: 0.5rem;
          line-height: 1.3;
      }

      .ev-event-location {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          color: #64748b;
          font-size: 0.95rem;
          margin-bottom: 1rem;
          font-weight: 500;
      }

      .ev-event-description {
          color: #475569;
          font-size: 0.95rem;
          line-height: 1.7;
          margin-bottom: 1.2rem;
      }

      .ev-event-footer {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .ev-event-category {
          display: inline-flex;
          align-items: center;
          background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
          color: #dc143c;
          padding: 0.5rem 1.2rem;
          border-radius: 50px;
          font-size: 0.85rem;
          font-weight: 600;
          border: 2px solid rgba(220, 20, 60, 0.2);
      }

      .ev-event-status {
          display: inline-flex;
          align-items: center;
          padding: 0.5rem 1rem;
          border-radius: 50px;
          font-size: 0.8rem;
          font-weight: 700;
      }

      .ev-status-upcoming {
          background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
          color: #0369a1;
          border: 2px solid rgba(3, 105, 161, 0.2);
      }

      .ev-status-past {
          background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
          color: #6b7280;
          border: 2px solid rgba(107, 114, 128, 0.2);
      }

      .ev-no-events {
          text-align: center;
          padding: 4rem 2rem;
          color: #64748b;
          font-size: 1.2rem;
          animation: ev-fadeInUp 0.6s ease;
      }

      .ev-no-events-icon {
          font-size: 4rem;
          margin-bottom: 1rem;
          opacity: 0.5;
      }

      @media (max-width: 768px) {
          .top-bar-content {
              flex-direction: column;
              align-items: center;
              gap: 0.5rem;
          }

          .ev-hero-main-title {
              font-size: 2.5rem;
          }

          .ev-hero-subtitle {
              font-size: 1rem;
          }

          .ev-filter-section {
              top: 0;
              position: relative;
          }

          .ev-gallery-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
          }

          .ev-category-title {
              font-size: 2rem;
          }
      }
      .ev-gallery-item-media {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.ev-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ev-gallery-item:hover .ev-event-img {
  transform: scale(1.1);
}
/* ADMISSIONS SECTION */
.bg-decoration {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s infinite ease-in-out;
}
.bg-circle:nth-child(1) {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.bg-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  bottom: -150px;
  right: -150px;
  animation-delay: 2s;
}
.bg-circle:nth-child(3) {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #dc143c, #ff6b7a);
  top: 40%;
  right: 10%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.adm-hero-section {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 50%, #ffd700 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.adm-hero-section::before,
.adm-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: adm-pulse-glow 5s ease-in-out infinite;
}

.adm-hero-section::before {
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.15), transparent);
}

.adm-hero-section::after {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  animation-delay: 1s;
}

@keyframes adm-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.adm-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.adm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  color: #dc143c;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: adm-bounce 2s ease-in-out infinite;
  border: 2px solid #ffd700;
}

@keyframes adm-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.adm-hero-main-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  animation: adm-fadeInUp 1s ease;
}

@keyframes adm-fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.adm-highlight-text {
  color: #dc143c;
  background: linear-gradient(90deg, #dc143c, #ff4757, #ffd700, #dc143c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: adm-gradient-shift 4s ease infinite;
}

@keyframes adm-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.adm-hero-subtitle {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  animation: adm-fadeInUp 1s ease 0.3s backwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.adm-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: adm-fadeInUp 1s ease 0.5s backwards;
}

.adm-cta-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.adm-cta-btn-primary {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.adm-cta-btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
}

.adm-cta-btn-secondary {
  background: white;
  color: #dc143c;
  border: 3px solid #dc143c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.adm-cta-btn-secondary:hover {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  transform: translateY(-5px) scale(1.02);
}

.adm-stats-section {
  background: white;
  padding: 4rem 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.adm-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.adm-stat-item {
  text-align: center;
  animation: adm-fadeInUp 0.8s ease backwards;
}

.adm-stat-item:nth-child(1) { animation-delay: 0.1s; }
.adm-stat-item:nth-child(2) { animation-delay: 0.2s; }
.adm-stat-item:nth-child(3) { animation-delay: 0.3s; }
.adm-stat-item:nth-child(4) { animation-delay: 0.4s; }

.adm-stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.adm-stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #dc143c;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.adm-stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.adm-content-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  position: relative;
}

.adm-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.adm-section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: adm-fadeInUp 0.6s ease;
}

.adm-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.adm-section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.adm-admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.adm-step-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  text-align: center;
  animation: adm-fadeInUp 0.6s ease backwards;
  position: relative;
}

.adm-step-card:nth-child(1) { animation-delay: 0.1s; }
.adm-step-card:nth-child(2) { animation-delay: 0.2s; }
.adm-step-card:nth-child(3) { animation-delay: 0.3s; }
.adm-step-card:nth-child(4) { animation-delay: 0.4s; }

.adm-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 20, 60, 0.25);
  border-color: #ffd700;
}

.adm-step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #1e293b;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  border: 4px solid white;
}

.adm-step-icon {
  font-size: 4rem;
  margin: 1.5rem 0;
  animation: adm-float 3s ease-in-out infinite;
}

@keyframes adm-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.adm-step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.adm-step-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.adm-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.adm-info-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(220, 20, 60, 0.2);
  transition: all 0.4s ease;
  animation: adm-fadeInUp 0.6s ease backwards;
}

.adm-info-card:nth-child(1) { animation-delay: 0.1s; }
.adm-info-card:nth-child(2) { animation-delay: 0.2s; }

.adm-info-card:hover {
  transform: translateY(-8px);
  border-color: #dc143c;
  box-shadow: 0 15px 45px rgba(220, 20, 60, 0.25);
}

.adm-info-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.adm-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.adm-info-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
}

.adm-info-list {
  list-style: none;
  padding: 0;
}

.adm-info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: start;
  gap: 1rem;
  transition: all 0.3s;
}

.adm-info-list li:hover {
  padding-left: 0.5rem;
}

.adm-info-list li:last-child {
  border-bottom: none;
}

.adm-info-list li::before {
  content: "✓";
  color: #ffd700;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}


.adm-form-section {
  background: white;
  border-radius: 30px;
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 20, 60, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease;
}
.adm-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #dc143c, #ff4757, #ffd700);
}
@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.adm-form-section-title h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #dc143c;
  margin: 2.5rem 0 1.8rem;
  padding-bottom: 0.8rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.adm-form-section-title:first-child h4 { margin-top: 0; }
.adm-form-section-title h4::before {
  content: '';
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #dc143c, #ff4757);
  border-radius: 3px;
}
.adm-form-section-title h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, transparent);
  border-radius: 3px;
}

.adm-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}
.adm-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.adm-form-group.adm-full-width { grid-column: 1 / -1; }
.adm-form-label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.adm-form-label .required {
  color: #dc143c;
  font-size: 1.1rem;
}
.adm-form-input, .adm-form-select, .adm-form-textarea {
  padding: 1rem 1.3rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.adm-form-input:focus, .adm-form-select:focus, .adm-form-textarea:focus {
  outline: none;
  border-color: #dc143c;
  background: white;
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
  transform: translateY(-2px);
}
.adm-form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Enhanced Stream Sections */
.stream-section {
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-left: 5px solid;
}
.stream-section:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.stream-arts {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
  border-left-color: #dc143c;
}
.stream-commerce {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  border-left-color: #0284c7;
}
.stream-science {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-left-color: #16a34a;
}
.stream-preferences {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border-left-color: #ffd700;
}
.stream-header {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}
.stream-header input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #dc143c;
}
.subject-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.subject-checkbox-label:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}
.subject-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #dc143c;
}

.office-use-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 2px solid #cbd5e1;
}
.office-header {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.declaration-section {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
  padding: 2.5rem;
  border-radius: 20px;
  margin: 2.5rem 0;
  border-left: 6px solid #dc143c;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.1);
}
.declaration-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.declaration-text strong {
  color: #dc143c;
  font-weight: 700;
}

.adm-button-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.adm-submit-btn, .adm-download-btn {
  flex: 1;
  padding: 1.4rem;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}
.adm-submit-btn::before, .adm-download-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.adm-submit-btn:hover::before, .adm-download-btn:hover::before {
  width: 300px;
  height: 300px;
}
.adm-submit-btn {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  box-shadow: 0 10px 35px rgba(220, 20, 60, 0.4);
}
.adm-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(220, 20, 60, 0.5);
}
.adm-download-btn {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 10px 35px rgba(22, 163, 74, 0.4);
}
.adm-download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(22, 163, 74, 0.5);
}
.adm-submit-btn i, .adm-download-btn i {
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}
.adm-submit-btn span, .adm-download-btn span {
  position: relative;
  z-index: 1;
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
.loading-content {
  background: white;
  padding: 3rem 4rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #dc143c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loading-text {
  font-weight: 600;
  color: #1e293b;
  font-size: 1.1rem;
}

/* Progress Indicator */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  width: 0%;
  transition: width 0.3s ease;
  z-index: 10000;
}

/* Custom Checkbox Style */
input[type="checkbox"] {
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type="checkbox"]:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .adm-hero-main-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .adm-form-section { padding: 2rem; }
  .adm-form-grid { grid-template-columns: 1fr; }
  .adm-button-group { flex-direction: column; }
  .top-bar-content { flex-direction: column; gap: 0.8rem; }
  .hero-badges { flex-direction: column; }
  .stream-section { margin-left: 0; }
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 10000;
  max-width: 550px;
  width: 90%;
  animation: modalPop 0.5s ease;
}
@keyframes modalPop {
  0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }
}
.success-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.success-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #dc143c;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}
.success-message {
  color: #475569;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.success-ref {
  color: #64748b;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.success-ref strong {
  color: #dc143c;
  font-size: 1.3rem;
  display: block;
  margin-top: 0.5rem;
}
.success-close-btn {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
  transition: all 0.3s ease;
}
.success-close-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
}.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #dc143c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title.animate {
  animation: an 1s ease-out forwards;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #dc143c, #ffd700);
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

@keyframes an {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.director-photo {
  text-align: center;
  position: relative;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-container {
  position: relative;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
}

.image-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -15px;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-container:hover::before {
  opacity: 1;
  animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
  }
}

.director-photo img {
  width: 450px;
  height: 490px;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.director-photo img:hover {
  box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
}

.director-name {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.director-name:hover {
  color: #dc143c;
}

.director-name::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.director-name:hover::after {
  width: 100px;
}

.director-title {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-content {
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-content h3 {
  color: #dc143c;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  padding-left: 20px;
}

.about-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #dc143c, #ffd700);
  border-radius: 10px;
}

.about-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
  transition: transform 0.3s ease;
}

.about-content p:hover {
  transform: translateX(5px);
}

.about-content p strong {
  color: #dc143c;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #dc143c 0%, #c41e3a 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(118, 75, 162, 0.5);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: white;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6);
  background: linear-gradient(135deg, #ff4757, #dc143c);
}

.btn span {
  position: relative;
  z-index: 1;
}

.interactive-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.icon-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.icon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.icon-item:hover::before {
  left: 100%;
}

.icon-item:hover {
  transform: translateY(-8px);
  border-color: #007bff;
  box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.icon-item:active {
  transform: translateY(-4px) scale(0.98);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #ff4757, #dc143c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.icon-item:hover .icon-circle {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.3);
}

.icon-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.icon-item:hover .icon-label {
  color: #007bff;
}

.icon-description {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .interactive-icons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
}

/* Accessibility */
.icon-item:focus {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}

.icon-item:focus-visible {
  border-color: #007bff;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .director-photo img {
    width: 350px;
    height: 390px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
  } */

.facilities {
  background: #fff5e1;
}

.facilities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: center;
  border-top: 4px solid #dc143c;
  overflow: hidden;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
}

/* Image container */
.facility-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.08);
}

/* Icon badge on image */
.facility-icon {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Content spacing */
.facility-card h3 {
  margin-top: 3rem;
  color: #dc143c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.facility-card p {
  color: #666;
  line-height: 1.6;
  padding: 0 1.5rem 2rem;
}


.academics-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.academic-card {
  background: linear-gradient(135deg, #dc143c, #c41e3a);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
  border: 3px solid #ffd700;
}

.academic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.academic-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.academic-card ul {
  list-style: none;
  margin-top: 1rem;
}

.academic-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.academic-card li:last-child {
  border-bottom: none;
}

/* Gallery Section */
.gallery {
  max-width: 1500px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* .section-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
} */
.gallery-carousel {
  position: relative;
  padding: 0 60px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  min-width: calc((100% - 40px) / 3);
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-slide video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-slide:hover {
  transform: translateY(-10px);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-slide:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
}

.gallery-btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-btn.prev {
  left: 0;
}

.gallery-btn.next {
  right: 0;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-slide {
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .gallery-carousel {
    padding: 0 50px;
  }

  .gallery-slide {
    min-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.events-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 150px 1fr;
  transition: transform 0.3s;
  border-left: 5px solid #ffd700;
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
}

.event-date {
  background: linear-gradient(135deg, #dc143c, #c41e3a);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.event-day {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.event-month {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.event-content {
  padding: 2rem;
}

.event-content h3 {
  color: #dc143c;
  margin-bottom: 0.5rem;
}

.event-content p {
  color: #666;
  line-height: 1.6;
}

.admissions {
  background: linear-gradient(135deg,
      rgba(220, 20, 60, 0.95),
      rgba(196, 30, 58, 0.95)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23fff5e1" width="1200" height="400"/></svg>');
  color: white;
}

.admissions-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.admissions-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.admissions-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #ffd700;
  color: #dc143c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #dc143c;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc143c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info {
  background: linear-gradient(135deg, #dc143c, #c41e3a);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  border: 3px solid #ffd700;
}

.contact-info h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-container {
  margin-top: 2rem;
  height: 250px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.cont-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
  padding: 0;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.cont-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc143c, #ffd700, #dc143c);
  background-size: 200% auto;
  animation: cont-gradient-flow 3s linear infinite;
}

@keyframes cont-gradient-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.cont-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cont-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.cont-footer-wave .shape-fill {
  fill: #ffffff;
}

/*contact */
.cont-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.cont-hamburger span {
  width: 30px;
  height: 3px;
  background: #dc143c;
  border-radius: 3px;
  transition: all 0.3s;
}

.cont-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.cont-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.cont-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.cont-hero-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.cont-slides {
  height: 100%;
  position: relative;
}

.cont-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.cont-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.cont-hero-overlay {
  position: absolute;
  inset: 0;
}

.cont-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: cont-heroReveal 1.2s ease forwards;
}

.cont-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cont-hero-content p {
  font-size: 1.2rem;
  color: #f1f5f9;
  max-width: 650px;
  margin-bottom: 2rem;
}

.cont-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffb703);
  color: #1e293b;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.cont-hero-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.cont-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.cont-hero-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-hero-dots span.active {
  background: #ffd700;
  transform: scale(1.4);
}

@keyframes cont-heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cont-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cont-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #dc143c;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: cont-bounce 2s ease-in-out infinite;
  border: 2px solid #ffd700;
}

@keyframes cont-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cont-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  animation: cont-fadeInUp 1s ease;
}

@keyframes cont-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cont-highlight-text {
  color: #dc143c;
  background: linear-gradient(90deg, #dc143c, #ff4757, #ffd700, #dc143c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cont-gradient-shift 4s ease infinite;
}

@keyframes cont-gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.cont-hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.9;
  animation: cont-fadeInUp 1s ease 0.3s backwards;
  max-width: 700px;
  margin: 0 auto;
}

.cont-contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  position: relative;
}

.cont-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.cont-contact-info-section {
  animation: cont-fadeInLeft 0.8s ease;
}

@keyframes cont-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cont-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.cont-section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cont-contact-card {
  background: white;
  border-radius: 25px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(220, 20, 60, 0.1);
  transition: all 0.4s ease;
}

.cont-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
  border-color: #dc143c;
}

.cont-contact-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cont-contact-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s;
}

.cont-contact-card:hover .cont-contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.cont-contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
}

.cont-contact-details {
  padding-left: 4.5rem;
}

.cont-contact-details p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.cont-contact-details a {
  color: #dc143c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cont-contact-details a:hover {
  color: #ff4757;
  text-decoration: underline;
}

.cont-social-links {
  display: flex;
  gap: 1rem;
  padding-left: 4.5rem;
  margin-top: 1rem;
}

.cont-social-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cont-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.cont-contact-form-section {
  animation: cont-fadeInRight 0.8s ease;
}

@keyframes cont-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cont-form-container {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cont-form-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.05),
    transparent
  );
  pointer-events: none;
}

.cont-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cont-form-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.cont-form-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.cont-form-group {
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.cont-form-label {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  display: block;
}

.cont-form-input,
.cont-form-select,
.cont-form-textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.cont-form-input:focus,
.cont-form-select:focus,
.cont-form-textarea:focus {
  outline: none;
  border-color: #dc143c;
  background: white;
  box-shadow: 0 0 0 5px rgba(220, 20, 60, 0.1);
  transform: translateY(-2px);
}

.cont-form-input.error,
.cont-form-select.error,
.cont-form-textarea.error {
  border-color: #dc143c;
  background: #fff5f5;
}

.cont-error-message {
  color: #dc143c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.cont-error-message.show {
  display: block;
}

.cont-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.cont-submit-btn {
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
  letter-spacing: 0.5px;
}

.cont-submit-btn:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
}

.cont-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cont-map-section {
  margin-top: 5rem;
  animation: cont-fadeInUp 1s ease;
}

.cont-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cont-map-container {
  background: white;
  border-radius: 25px;
  padding: 1.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  overflow: hidden;
}

.cont-map-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
}

.cont-quick-contact-section {
  background: linear-gradient(135deg, #dc143c 0%, #b91432 100%);
  padding: 4rem 2rem;
  margin-top: 5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.cont-quick-contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15),
    transparent
  );
  border-radius: 50%;
}

.cont-quick-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont-quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.cont-quick-contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.cont-quick-contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cont-quick-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cont-quick-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
}

.cont-quick-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cont-quick-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: white;
  color: #dc143c;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.cont-quick-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cont-faq-section {
  padding: 5rem 2rem;
  background: #fff;
}

.cont-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cont-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cont-faq-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cont-faq-item:hover {
  border-color: #ffd700;
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.15);
}

.cont-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.cont-faq-toggle {
  font-size: 1.5rem;
  color: #dc143c;
  transition: transform 0.3s;
}

.cont-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #475569;
  line-height: 1.8;
  padding-top: 0;
}

.cont-faq-answer.active {
  max-height: 500px;
  padding-top: 1.5rem;
}

.cont-faq-item.active .cont-faq-toggle {
  transform: rotate(180deg);
}

.cont-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.cont-modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cont-fadeIn 0.3s ease;
}

@keyframes cont-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cont-success-modal {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: cont-scaleIn 0.4s ease;
}

@keyframes cont-scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .cont-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cont-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .cont-hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .cont-hamburger {
    display: flex;
  }

  .cont-section-title {
    font-size: 2rem;
  }

  .cont-form-container {
    padding: 2rem 1.5rem;
  }

  .cont-contact-details,
  .cont-social-links {
    padding-left: 0;
  }

  .cont-map-iframe {
    height: 350px;
  }

  .cont-quick-contact-grid {
    grid-template-columns: 1fr;
  }
}
/*Footer */
.cont-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
  padding: 0;
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

.cont-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc143c, #ffd700, #dc143c);
  background-size: 200% auto;
  animation: cont-gradient-flow 3s linear infinite;
}

@keyframes cont-gradient-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.cont-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.cont-footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.cont-footer-wave .shape-fill {
  fill: #ffffff;
}

.adm-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: white;
  padding: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.adm-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700, #dc143c);
  background-size: 200% auto;
  animation: adm-gradient-flow 3s linear infinite;
}

@keyframes adm-gradient-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.adm-footer-main {
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.adm-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.adm-footer-about {
  animation: adm-fadeInUp 0.6s ease;
}

.adm-footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.adm-footer-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.adm-footer-logo-text h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
  color: white;
  font-family: "Playfair Display", serif;
}

.adm-footer-tagline {
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.adm-footer-description {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.adm-footer-social {
  display: flex;
  gap: 0.8rem;
}

.adm-footer-social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.adm-footer-social-link:hover {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-color: #ffd700;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(220, 20, 60, 0.5);
}

.adm-footer-section {
  animation: adm-fadeInUp 0.6s ease;
}

.adm-footer-section:nth-child(2) { animation-delay: 0.1s; }
.adm-footer-section:nth-child(3) { animation-delay: 0.2s; }
.adm-footer-section:nth-child(4) { animation-delay: 0.3s; }

.adm-footer-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
  color: #ffd700;
  font-family: "Playfair Display", serif;
  position: relative;
  padding-bottom: 0.6rem;
}

.adm-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  border-radius: 2px;
}

.adm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adm-footer-links li {
  margin-bottom: 0.7rem;
}

.adm-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.adm-footer-links a::before {
  content: "▸";
  color: #ffd700;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.adm-footer-links a:hover {
  color: #ffd700;
  padding-left: 0.3rem;
}

.adm-footer-links a:hover::before {
  transform: translateX(3px);
}

.adm-footer-contact-item {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.9rem;
}

.adm-footer-contact-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.3);
}

.adm-footer-contact-item a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.adm-footer-contact-item a:hover {
  color: #ffed4e;
  text-decoration: underline;
}

.adm-footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.2rem;
  margin-top: 1.3rem;
}

.adm-footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffd700;
}

.adm-footer-newsletter p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 0.8rem;
}

.adm-newsletter-form {
  display: flex;
  gap: 0.4rem;
}

.adm-newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s;
}

.adm-newsletter-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
}

.adm-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.adm-newsletter-btn {
  padding: 0.7rem 1.3rem;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 3px 12px rgba(220, 20, 60, 0.4);
  white-space: nowrap;
}

.adm-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
}

.adm-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  margin: 2rem 0;
}

.adm-footer-bottom {
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.adm-footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.adm-footer-copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.adm-footer-copyright strong {
  color: #ffd700;
  font-weight: 700;
}

.adm-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.adm-footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  position: relative;
}

.adm-footer-bottom-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s;
}

.adm-footer-bottom-links a:hover {
  color: #ffd700;
}

.adm-footer-bottom-links a:hover::after {
  width: 100%;
}

.adm-footer-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.adm-footer-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 1024px) {
  .adm-footer-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .adm-footer-main {
      padding: 3rem 1.5rem 1.5rem;
  }
  
  .adm-footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .adm-footer-bottom-container {
      flex-direction: column;
      text-align: center;
  }
  
  .adm-newsletter-form {
      flex-direction: column;
  }
  
  .adm-footer-badges {
      flex-direction: column;
      width: 100%;
  }
  
  .adm-footer-badge {
      width: 100%;
      justify-content: center;
  }
}
.floating-inquiry-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:linear-gradient(135deg,#dc143c,#ff4757);
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
    z-index:9999;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:0 8px 25px rgba(220,20,60,.4);
}

/* MODAL */
.floating-inquiry-btn{
  position:fixed;
  right:20px;
  bottom:20px;
  background:linear-gradient(135deg,#dc143c,#ff4757);
  color:#fff;
  padding:14px 22px;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 8px 25px rgba(220,20,60,.4);
}

/* ================= MODAL ================= */
.inquiry-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:none;
  justify-content:center;
  align-items:flex-start;
  overflow-y:hidden;
  overflow-x: hidden;
  z-index:10000;
  padding:3rem 1rem;
}
.inquiry-modal-content{
  max-width:1300px;
  width:100%;
  position:relative;
  animation:fadeUp .4s ease;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}
.inquiry-modal-close{
  position:absolute;
  top:18px;
  right:18px;
  background:#dc143c;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  z-index:10001;
}

/* ================= INQUIRY FORM (YOUR SAME DESIGN) ================= */

.inquiry-section{
  padding:2rem 1rem;
  background:linear-gradient(135deg,#fff8f0,#fff,#fff8f0);
  border-radius:30px;
}
.inquiry-container{max-width:1200px;margin:auto}
.inquiry-header{text-align:center;margin-bottom:3rem}
.inquiry-badge{
  display:inline-flex;
  gap:.5rem;
  background:linear-gradient(135deg,#dc143c,#ff4757);
  color:#fff;
  padding:.6rem 1.5rem;
  border-radius:50px;
  font-weight:700;
}
.inquiry-title{
  font-size:2rem;
  font-weight:900;
  color:#1e293b;
  margin:1rem 0;
  font-family:Playfair Display,serif;
}
.inquiry-title-highlight{
  background:linear-gradient(90deg,#dc143c,#ff4757);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.inquiry-subtitle{color:#64748b;max-width:600px;margin:auto}

.inquiry-form-wrapper{
  background:#fff;
  border-radius:30px;
  padding:3rem;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}
.inquiry-form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}
.inquiry-form-group{display:flex;flex-direction:column;gap:.5rem}
.inquiry-form-group.full-width{grid-column:1/-1}
.inquiry-form-label{font-weight:700;color:#1e293b}
.inquiry-form-input,
.inquiry-form-select,
.inquiry-form-textarea{
  padding:1rem 1.3rem;
  border:2px solid #e2e8f0;
  border-radius:15px;
}
.inquiry-form-textarea{min-height:120px}
.inquiry-submit-btn{
  width:100%;
  margin-top:1.5rem;
  padding:1.3rem;
  border:none;
  border-radius:50px;
  background:linear-gradient(135deg,#dc143c,#ff4757);
  color:#fff;
  font-size:1.1rem;
  font-weight:800;
  cursor:pointer;
}

/* Responsive */
@media(max-width:768px){
  .inquiry-title{font-size:2rem}
  .inquiry-form-grid{grid-template-columns:1fr}
}
/* ================= WHATSAPP FLOATING BUTTON ================= */

.floating-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 90px; /* Above the inquiry button */
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.floating-whatsapp-btn:active {
  transform: scale(1.05);
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
  0% {
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }
  100% {
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

.floating-whatsapp-btn {
  animation: whatsapp-pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-whatsapp-btn {
      width: 55px;
      height: 55px;
      font-size: 28px;
      bottom: 80px;
      right: 15px;
  }
  
  .floating-inquiry-btn {
      right: 15px;
      bottom: 15px;
  }
}

/* Optional: Tooltip on hover */
.floating-whatsapp-btn::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #128c7e;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-whatsapp-btn::after {
  content: "";
  position: absolute;
  right: 60px;
  border: 8px solid transparent;
  border-left-color: #128c7e;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-whatsapp-btn:hover::before,
.floating-whatsapp-btn:hover::after {
  opacity: 1;
}
/* About Us Page */
 /* Hero Section */
 .ab-hero-about {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  overflow: hidden;
  padding: 6rem 2rem;
  position: relative;
}

.ab-hero-about::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: ab-pulse 8s ease-in-out infinite;
}

@keyframes ab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.ab-hero-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.ab-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  color: #fff;
  font-weight: 800;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
  animation: ab-badgeFloat 3s ease-in-out infinite;
}

@keyframes ab-badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ab-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.ab-hero-title .ab-story {
  background: linear-gradient(135deg, #dc143c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: ab-slideFromLeft 1s ease-out forwards;
}

.ab-hero-title .ab-legacy {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: ab-slideFromRight 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes ab-slideFromLeft {
  from { transform: translateX(-60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes ab-slideFromRight {
  from { transform: translateX(60px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.ab-hero-content p {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: ab-fadeIn 1s ease 0.6s backwards;
}

@keyframes ab-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.ab-hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: ab-fadeIn 1s ease 0.9s backwards;
}

.ab-btn-primary {
  background: #dc143c;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.ab-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.ab-btn-primary:hover::before {
  left: 100%;
}

.ab-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.ab-btn-outline {
  border: 3px solid #dc143c;
  color: #dc143c;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.ab-btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #dc143c;
  transition: width 0.4s;
  z-index: -1;
}

.ab-btn-outline:hover::before {
  width: 100%;
}

.ab-btn-outline:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* Video Section */
.ab-video-section {
  position: relative;
  animation: ab-fadeIn 1s ease 1.2s backwards;
}

.ab-video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: all 0.5s;
}

.ab-video-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 40px 100px rgba(220, 20, 60, 0.4);
}

.ab-video-wrapper video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.ab-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 5px solid rgba(255, 215, 0, 0.3);
  animation: ab-borderGlow 2s ease-in-out infinite;
}

@keyframes ab-borderGlow {
  0%, 100% {
      border-color: rgba(255, 215, 0, 0.3);
      box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.2);
  }
  50% {
      border-color: rgba(220, 20, 60, 0.5);
      box-shadow: inset 0 0 50px rgba(220, 20, 60, 0.3);
  }
}

/* Section Title */
.ab-section-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1e293b;
  font-family: 'Playfair Display', serif;
  position: relative;
  letter-spacing: -2px;
}

.ab-section-title span {
  background: linear-gradient(135deg, #dc143c, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ab-section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Director Section */
.ab-director-section {
  padding: 8rem 2rem;
  background: white;
  position: relative;
  overflow: hidden;
}

.ab-director-card {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0;
  transition: all 0.6s;
  border: 4px solid rgba(255, 215, 0, 0.3);
}

.ab-director-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 100px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.ab-director-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #dc143c, #ffd700);
}

.ab-director-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.ab-director-card:hover .ab-director-image img {
  transform: scale(1.15) rotate(3deg);
}

.ab-director-info {
  padding: 5rem;
  position: relative;
}

.ab-director-title-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc143c, #ffd700);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.ab-director-name {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.ab-director-position {
  font-size: 1.3rem;
  color: #dc143c;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.ab-director-message p {
  font-size: 1.1rem;
  line-height: 2;
  color: #64748b;
  margin-bottom: 1.8rem;
}

/* Team Section - CORRECTED */
.ab-team-section {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  position: relative;
}

.ab-team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.ab-team-member {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
}

.ab-team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  transform: scaleX(0);
  transition: transform 0.5s;
  z-index: 2;
}

.ab-team-member:hover::before {
  transform: scaleX(1);
}

.ab-team-member:hover {
  transform: translateY(-20px);
  border-color: #ffd700;
  box-shadow: 0 30px 70px rgba(220, 20, 60, 0.25);
}

.ab-team-member-image {
  height: 450px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ab-team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.6s;
}

.ab-team-member:hover .ab-team-member-image img {
  transform: scale(1.1);
}

.ab-team-member-image i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
}

.ab-team-member-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 70%
  );
  animation: ab-shine 3s ease-in-out infinite;
}

@keyframes ab-shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.ab-team-member-info {
  padding: 2.5rem;
}

.ab-team-member-name {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.ab-team-member-role {
  color: #dc143c;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.ab-team-member-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

/* Full Team Card */
.ab-team-full {
  max-width: 1400px;
  margin: 0 auto;
}

.ab-team-full .ab-team-member-image {
  height: 500px;
}

.ab-team-full .ab-team-member-info {
  padding: 4rem;
  text-align: center;
}

.ab-team-full .ab-team-member-name {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1e293b;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.ab-team-full .ab-team-member-name::after {
  content: '';
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  display: block;
  margin: 1rem auto 0;
  border-radius: 3px;
}

.ab-team-full .ab-team-member-desc {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Values Section */
.ab-values-section {
  padding: 8rem 2rem;
  background: white;
  position: relative;
}

.ab-values-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.ab-value-card {
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  padding: 3.5rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.ab-value-card:hover {
  transform: translateY(-20px) scale(1.05);
  border-color: #ffd700;
  box-shadow: 0 30px 70px rgba(220, 20, 60, 0.25);
}

.ab-value-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all 0.5s;
}

.ab-value-card:hover .ab-value-icon {
  transform: scale(1.3) rotateY(360deg);
}

.ab-value-card h3 {
  color: #1e293b;
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
  font-weight: 800;
}

.ab-value-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 1.1rem;
}

/* Animation Classes */
.ab-animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-animate-on-scroll.ab-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ab-hero-title {
      font-size: 3.5rem;
  }

  .ab-section-title {
      font-size: 3rem;
  }

  .ab-director-card {
      grid-template-columns: 400px 1fr;
  }
}

@media (max-width: 992px) {
  .ab-hero-container {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .ab-hero-title {
      font-size: 3rem;
  }

  .ab-hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
  }

  .ab-video-wrapper video {
      height: 400px;
  }

  .ab-director-card {
      grid-template-columns: 1fr;
  }

  .ab-director-image {
      height: 400px;
  }

  .ab-director-info {
      padding: 3rem;
  }
}

@media (max-width: 768px) {
  .ab-hero-title {
      font-size: 2.5rem;
  }

  .ab-section-title {
      font-size: 2.5rem;
  }

  .ab-section-subtitle {
      font-size: 1rem;
  }

  .ab-team-grid {
      grid-template-columns: 1fr;
  }

  .ab-values-grid {
      grid-template-columns: 1fr;
  }

  .ab-director-info {
      padding: 2rem;
  }

  .ab-director-name {
      font-size: 2rem;
  }

  .ab-btn-primary,
  .ab-btn-outline {
      padding: 1rem 2rem;
      font-size: 0.95rem;
  }

  .ab-team-section,
  .ab-director-section,
  .ab-values-section {
      padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ab-hero-title {
      font-size: 2rem;
  }

  .ab-section-title {
      font-size: 2rem;
  }

  .ab-team-member-image {
      height: 300px;
  }

  .ab-value-card {
      padding: 2rem;
  }

  .ab-value-icon {
      font-size: 3.5rem;
  }
}
/* Acadmics Page */
  /* Hero Section - Inspired by Reference */
  .ac-hero-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.ac-hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.ac-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ac-hero-content {
    padding-right: 2rem;
}

.ac-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    color: #dc143c;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.ac-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.ac-hero-title .ac-highlight {
    color: #dc143c;
    position: relative;
}

.ac-hero-title .ac-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.ac-hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ac-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.ac-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ac-hero-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ac-hero-feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.ac-hero-cta {
    display: flex;
    gap: 1rem;
}

.ac-btn-primary {
    background: linear-gradient(135deg, #dc143c, #ff4757);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.ac-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.ac-btn-secondary {
    background: white;
    color: #dc143c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid #dc143c;
}

.ac-btn-secondary:hover {
    background: #dc143c;
    color: white;
    transform: translateY(-3px);
}

.ac-hero-visual {
    position: relative;
}

.ac-hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.ac-hero-image-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.ac-hero-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ac-hero-image-card:nth-child(1) {
    transform: translateY(-30px);
}

.ac-hero-image-card:nth-child(3) {
    transform: translateY(-30px);
}

.ac-floating-badge {
    position: absolute;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.ac-floating-badge.ac-badge-1 {
    top: 20%;
    left: -10%;
}

.ac-floating-badge.ac-badge-2 {
    bottom: 15%;
    right: -10%;
}

.ac-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ac-badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #dc143c;
    font-family: 'Playfair Display', serif;
}

.ac-badge-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* Stats Section */
.ac-stats-section {
    background: linear-gradient(135deg, #dc143c, #ff4757);
    padding: 3rem 2rem;
    position: relative;
}

.ac-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ac-stat-item {
    text-align: center;
    color: white;
}

.ac-stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.ac-stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Results Carousel Section */
.ac-results-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
    position: relative;
    overflow: hidden;
}

.ac-results-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ac-results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ac-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.ac-results-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.ac-results-title .ac-highlight {
    color: #dc143c;
}

.ac-results-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.ac-carousel-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.ac-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
}

.ac-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-result-card {
    min-width: calc(25% - 1.5rem);
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    text-align: center;
}

.ac-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc143c, #ffd700);
}

.ac-result-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(220, 20, 60, 0.25);
}

.ac-student-photo {
    width: 180px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffd700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.ac-student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.ac-result-card:hover .ac-student-photo img {
    transform: scale(1.05);
}

.ac-student-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    border: 3px solid white;
}

.ac-student-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #0066cc, #004999);
    color: white;
    border-radius: 8px;
}

.ac-student-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: #dc143c;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.ac-student-class {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Subject Scores Display */
.ac-subject-scores {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(220, 20, 60, 0.2);
}

.ac-subject-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

.ac-subject-name {
    color: #64748b;
    font-weight: 500;
}

.ac-subject-marks {
    color: #dc143c;
    font-weight: 700;
}

.ac-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ac-carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #dc143c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    color: #dc143c;
}

.ac-carousel-btn:hover {
    background: #dc143c;
    color: white;
    transform: scale(1.1);
}

.ac-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ac-carousel-btn:disabled:hover {
    background: white;
    color: #dc143c;
    transform: scale(1);
}

.ac-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.ac-carousel-dot {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.ac-carousel-dot.active {
    background: #dc143c;
    width: 32px;
    border-radius: 6px;
}

/* Year Selector Tabs */
.ac-year-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.ac-year-tab {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ac-year-tab:hover {
    border-color: #dc143c;
    color: #dc143c;
}

.ac-year-tab.active {
    background: linear-gradient(135deg, #dc143c, #ff4757);
    color: white;
    border-color: #dc143c;
}

/* Streams Section */
.ac-streams-section {
    padding: 6rem 2rem;
    background: white;
}

.ac-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.ac-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.ac-section-title .ac-highlight {
    color: #dc143c;
}

.ac-section-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.ac-streams-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ac-stream-card {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.ac-stream-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #ffd700);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.ac-stream-card:hover::before {
    transform: scaleX(1);
}

.ac-stream-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.2);
}

.ac-stream-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc143c, #ff4757);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ac-stream-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.ac-stream-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ac-stream-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ac-subject-tag {
    background: rgba(220, 20, 60, 0.1);
    color: #dc143c;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Features Section */
.ac-features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}

.ac-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.ac-feature-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.ac-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.15);
}

.ac-feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ac-feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.ac-feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
}

.ac-feature-list {
    list-style: none;
}

.ac-feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.ac-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dc143c;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Methodology Section */
.ac-methodology-section {
    padding: 6rem 2rem;
    background: white;
}

.ac-methodology-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ac-methodology-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s;
}

.ac-methodology-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.15);
}

.ac-methodology-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c, #ff4757);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.ac-methodology-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.ac-methodology-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.ac-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.ac-cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2), transparent);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.ac-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ac-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.ac-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.ac-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.ac-btn-white {
    background: white;
    color: #dc143c;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.ac-btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.ac-btn-outline {
    border: 2px solid white;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.ac-btn-outline:hover {
    background: white;
    color: #dc143c;
    transform: translateY(-5px);
}

/* Footer */
.ac-footer {
    background: #0f172a;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.ac-footer p {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .ac-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ac-hero-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .ac-result-card {
        min-width: calc(33.333% - 1.5rem);
    }

    .ac-streams-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .ac-hero-title {
        font-size: 2.5rem;
    }

    .ac-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-result-card {
        min-width: calc(50% - 1rem);
    }

    .ac-student-photo {
        width: 140px;
        height: 180px;
    }

    .ac-student-name {
        font-size: 1.1rem;
    }

    .ac-student-percentage {
        font-size: 1.6rem;
    }

    .ac-streams-grid {
        grid-template-columns: 1fr;
    }

    .ac-features-grid {
        grid-template-columns: 1fr;
    }

    .ac-methodology-grid {
        grid-template-columns: 1fr;
    }

    .ac-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ac-floating-badge {
        display: none;
    }

    .ac-results-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ac-result-card {
        min-width: 100%;
    }
}

/* Animations */
@keyframes ac-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ac-fade-in-up {
    animation: ac-fadeInUp 0.8s ease forwards;
}
/* Facility Page */
 /* Hero Section with Advanced Animations */
 .fc-hero-section {
  background: linear-gradient(
    135deg,
    #fff8f0 0%,
    #ffe5cc 50%,
    #ffd700 100%
  );
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.fc-hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.2),
    transparent
  );
  border-radius: 50%;
  animation: fc-pulse-glow 4s ease-in-out infinite;
}

.fc-hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2),
    transparent
  );
  border-radius: 50%;
  animation: fc-pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes fc-pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.fc-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fc-hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fc-hero-text-section {
  padding-right: 2rem;
  animation: fc-fadeInUp 1s ease 0.3s backwards;
}

@keyframes fc-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-hero-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fc-bounce 2s ease-in-out infinite;
}

@keyframes fc-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fc-hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.fc-hero-main-title span {
  display: inline-block;
  animation: fc-fadeInUp 0.8s ease backwards;
}

.fc-hero-main-title span:nth-child(1) {
  animation-delay: 0.5s;
}

.fc-hero-main-title span:nth-child(2) {
  animation-delay: 0.7s;
}

.fc-highlight-text {
  color: #dc143c;
  position: relative;
  background: linear-gradient(90deg, #dc143c, #ff4757, #dc143c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fc-gradient-shift 3s ease infinite;
}

@keyframes fc-gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.fc-hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fc-fadeInUp 1s ease 0.9s backwards;
}

.fc-hero-quick-stats {
  display: flex;
  gap: 2rem;
  animation: fc-fadeInUp 1s ease 1.1s backwards;
}

.fc-quick-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
}

.fc-quick-stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.fc-stat-icon {
  font-size: 2rem;
  animation: fc-rotate-wobble 3s ease-in-out infinite;
}

@keyframes fc-rotate-wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.fc-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #dc143c;
  line-height: 1;
}

.fc-stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.fc-hero-image-section {
  position: relative;
  animation: fc-fadeInUp 1s ease 0.5s backwards;
}

.fc-hero-main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.5s;
}

.fc-hero-main-image:hover {
  transform: scale(1.05) rotate(2deg);
}

/* VIDEO STYLE (same as image) */
.fc-hero-main-image video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* Floating cards */
.fc-floating-element {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  animation: fc-float-smooth 3s ease-in-out infinite;
  transition: all 0.3s;
  z-index: 5;
}

.fc-floating-element:hover {
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.fc-element-icon {
  font-size: 1.5rem;
  animation: fc-spin-slow 4s linear infinite;
}

/* Positions */
.fc-element-1 {
  top: 10%;
  right: 20px;
}

.fc-element-2 {
  top: 50%;
  left: 20px;
}

.fc-element-3 {
  bottom: 15%;
  right: 20px;
}

/* Animations */
@keyframes fc-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fc-float-smooth {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Headers with Animated Underline */
.fc-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.fc-section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.fc-section-title .fc-highlight {
  color: #dc143c;
  position: relative;
}

.fc-section-title .fc-highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc143c, #ffd700);
  animation: fc-expand-contract 2s ease-in-out infinite;
}

@keyframes fc-expand-contract {
  0%,
  100% {
    width: 100%;
  }
  50% {
    width: 60%;
    margin-left: 20%;
  }
}

.fc-section-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}

/* Facilities Section with Staggered Animation */
.fc-facilities-section {
  padding: 6rem 2rem;
  background: white;
  position: relative;
}

.fc-facilities-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.fc-facility-card {
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  animation: fc-fadeInUpStagger 0.8s ease forwards;
}

@keyframes fc-fadeInUpStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fc-facility-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fc-facility-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fc-facility-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fc-facility-card:nth-child(4) {
  animation-delay: 0.4s;
}
.fc-facility-card:nth-child(5) {
  animation-delay: 0.5s;
}
.fc-facility-card:nth-child(6) {
  animation-delay: 0.6s;
}

.fc-facility-card:hover {
  transform: translateY(-20px) rotate(2deg);
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.fc-facility-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.fc-facility-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}

.fc-facility-card:hover .fc-facility-image::before {
  opacity: 1;
}

.fc-facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.fc-facility-card:hover .fc-facility-image img {
  transform: scale(1.2) rotate(3deg);
}

.fc-facility-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: all 0.4s;
}

.fc-facility-card:hover .fc-facility-icon {
  transform: rotate(360deg) scale(1.2);
  background: linear-gradient(135deg, #dc143c, #ff4757);
}

.fc-facility-content {
  padding: 2rem;
}

.fc-facility-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-facility-card:hover .fc-facility-title {
  color: #dc143c;
}

.fc-facility-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fc-facility-features {
  list-style: none;
  padding: 0;
}

.fc-facility-features li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #475569;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fc-slideInLeft 0.5s ease forwards;
}

@keyframes fc-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fc-facility-card:hover .fc-facility-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.fc-facility-card:hover .fc-facility-features li:nth-child(4) {
  animation-delay: 0.4s;
}

.fc-facility-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-weight: 800;
  font-size: 1.1rem;
  animation: fc-check-bounce 0.6s ease;
}

@keyframes fc-check-bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* Infrastructure Section with Scale Animation */
.fc-infrastructure-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  position: relative;
}

.fc-infrastructure-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.fc-infrastructure-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  opacity: 0;
  transform: scale(0.8);
  animation: fc-scaleIn 0.6s ease forwards;
}

@keyframes fc-scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fc-infrastructure-card:nth-child(1) {
  animation-delay: 0.1s;
}
.fc-infrastructure-card:nth-child(2) {
  animation-delay: 0.2s;
}
.fc-infrastructure-card:nth-child(3) {
  animation-delay: 0.3s;
}
.fc-infrastructure-card:nth-child(4) {
  animation-delay: 0.4s;
}

.fc-infrastructure-card:hover {
  transform: translateY(-20px) scale(1.1);
  border-color: #ffd700;
  box-shadow: 0 20px 60px rgba(220, 20, 60, 0.25);
}

.fc-infrastructure-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s;
}

.fc-infrastructure-card:hover .fc-infrastructure-icon {
  transform: rotate(360deg) scale(1.2);
  background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.fc-infrastructure-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-infrastructure-card:hover .fc-infrastructure-title {
  color: #dc143c;
}

.fc-infrastructure-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* Special Features with Flip Animation */
.fc-special-features-section {
  padding: 6rem 2rem;
  background: white;
}

.fc-special-features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.fc-special-feature-card {
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  border: 2px solid rgba(255, 215, 0, 0.2);
  opacity: 0;
  transform: rotateY(-90deg);
  animation: fc-flipIn 0.8s ease forwards;
}

@keyframes fc-flipIn {
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.fc-special-feature-card:nth-child(1) {
  animation-delay: 0.2s;
}
.fc-special-feature-card:nth-child(2) {
  animation-delay: 0.4s;
}
.fc-special-feature-card:nth-child(3) {
  animation-delay: 0.6s;
}
.fc-special-feature-card:nth-child(4) {
  animation-delay: 0.8s;
}

.fc-special-feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 70px rgba(220, 20, 60, 0.3);
  border-color: #ffd700;
}

.fc-special-feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  transition: all 0.4s;
}

.fc-special-feature-card:hover .fc-special-feature-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #dc143c, #ff4757);
}

.fc-special-feature-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  transition: color 0.3s;
}

.fc-special-feature-card:hover .fc-special-feature-content h3 {
  color: #dc143c;
}

.fc-special-feature-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

/* CTA Section with Pulsing Effect */
.fc-cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.fc-cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(220, 20, 60, 0.3),
    transparent
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: fc-pulse-rotate 10s ease-in-out infinite;
}

@keyframes fc-pulse-rotate {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(180deg);
  }
}

.fc-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fc-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  animation: fc-fadeInUp 1s ease;
}

.fc-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fc-fadeInUp 1s ease 0.2s backwards;
}

.fc-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fc-fadeInUp 1s ease 0.4s backwards;
}

.fc-btn-white {
  background: white;
  color: #dc143c;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.fc-btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #dc143c;
  transition: all 0.4s;
  transform: translate(-50%, -50%);
}

.fc-btn-white:hover::before {
  width: 300px;
  height: 300px;
}

.fc-btn-white:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.fc-btn-white span {
  position: relative;
  z-index: 1;
}

.fc-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.fc-btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.4s;
}

.fc-btn-outline:hover::before {
  left: 0;
}

.fc-btn-outline:hover {
  color: #dc143c;
  transform: translateY(-5px);
}

.fc-btn-outline span {
  position: relative;
  z-index: 1;
}

/* Footer */
.fc-footer {
  background: #0f172a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.fc-footer p {
  opacity: 0.9;
}

/* Scroll Reveal Animation */
.fc-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s;
}

.fc-reveal.fc-active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .fc-hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fc-hero-text-section {
    padding-right: 0;
    text-align: center;
  }

  .fc-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .fc-hero-quick-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .fc-hero-main-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .fc-facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .fc-infrastructure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-special-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .fc-hero-main-title {
    font-size: 2.5rem;
  }

  .fc-hero-subtitle {
    font-size: 1rem;
  }

  .fc-hero-quick-stats {
    flex-direction: column;
  }

  .fc-quick-stat {
    width: 100%;
  }

  .fc-floating-element {
    display: none;
  }

  .fc-hero-main-image video {
    height: 400px;
  }

  .fc-section-title {
    font-size: 2rem;
  }

  .fc-facilities-grid {
    grid-template-columns: 1fr;
  }

  .fc-infrastructure-grid {
    grid-template-columns: 1fr;
  }

  .fc-special-feature-card {
    flex-direction: column;
    text-align: center;
  }

  .fc-cta-title {
    font-size: 2rem;
  }

  .fc-cta-description {
    font-size: 1rem;
  }

  .fc-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .fc-btn-white,
  .fc-btn-outline {
    width: 100%;
    max-width: 300px;
  }
}
/* gallery page */
/* HERO SLIDER SECTION */
.mg-hero-slider-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mg-slider-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 500px;
  background: #f5f5f5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.mg-slider-container .mg-slide .mg-slider-item {
  width: 280px;
  height: 350px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: all 0.5s;
}

.mg-slide .mg-slider-item:nth-child(1),
.mg-slide .mg-slider-item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.mg-slide .mg-slider-item:nth-child(3) {
  left: 50%;
}

.mg-slide .mg-slider-item:nth-child(4) {
  left: calc(50% + 300px);
}

.mg-slide .mg-slider-item:nth-child(5) {
  left: calc(50% + 600px);
}

.mg-slide .mg-slider-item:nth-child(n + 6) {
  left: calc(50% + 900px);
  opacity: 0;
}

.mg-slider-item .mg-slider-content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 400px;
  text-align: left;
  color: #fff;
  transform: translate(0, -50%);
  display: none;
}

.mg-slide .mg-slider-item:nth-child(2) .mg-slider-content {
  display: block;
}

.mg-slider-content .mg-slider-name {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: mg-animate 1s ease-in-out 1 forwards;
}

.mg-slider-content .mg-slider-des {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: mg-animate 1s ease-in-out 0.3s 1 forwards;
}

.mg-slider-content button {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  opacity: 0;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: all 0.3s;
  animation: mg-animate 1s ease-in-out 0.6s 1 forwards;
}

.mg-slider-content button:hover {
  background-color: #dc143c;
  color: white;
  transform: scale(1.05);
}

@keyframes mg-animate {
  from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }
  to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}

.mg-slider-button-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 100;
}

.mg-slider-button-container button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  color: #dc143c;
  font-size: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mg-slider-button-container button:hover {
  background: #dc143c;
  color: white;
  transform: scale(1.1);
}

.mg-slider-button-container button:active {
  transform: scale(0.95);
}



/* FILTER SECTION */
.filter-section {
  background: white;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.8rem 1.8rem;
  border: 2px solid #ddd;
  background: white;
  color: #555;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #dc143c;
  color: #dc143c;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #dc143c;
  color: white;
  border-color: #dc143c;
}

/* GALLERY SECTION */
.gallery-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.gallery-info {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-info h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  color: #777;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #dc143c;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #dc143c;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-category {
  background: #dc143c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.card-date {
  color: #777;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* LOAD MORE */
.load-more {
  text-align: center;
  margin: 3rem 0;
}

.load-more-btn {
  background: #dc143c;
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #c41230;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: #dc143c;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-media {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.modal-media img,
.modal-media video {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.modal-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
}

.modal-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.modal-info .card-category {
  margin-bottom: 1rem;
  display: inline-block;
}

.modal-info .card-date {
  margin-bottom: 1rem;
}

.modal-info p {
  color: #666;
  line-height: 1.7;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #dc143c;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 500;
}

.scroll-top.show {
  display: flex;
}

.scroll-top:hover {
  background: #c41230;
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-hero h1 {
      font-size: 2rem;
  }

  .gallery-hero p {
      font-size: 1rem;
  }

  .filter-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
  }

  .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .modal {
      padding: 1rem;
  }

  .modal-close {
      top: 10px;
      right: 10px;
  }
}
/* Event page */
.ev-hero-section {
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.ev-hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.4), transparent);
  border-radius: 50%;
  animation: ev-pulse-glow 4s ease-in-out infinite;
}

.ev-hero-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  border-radius: 50%;
  animation: ev-pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes ev-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.ev-hero-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
}

.ev-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%) scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ev-hero-slide.ev-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.ev-hero-slide.ev-prev {
  transform: translateX(-100%) scale(0.9);
}

.ev-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ev-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: ev-bounce 2s ease-in-out infinite;
}

@keyframes ev-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ev-hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  animation: ev-fadeInUp 1s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes ev-fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.ev-highlight-text {
  color: #e91e63;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  animation: ev-gradient-shift 3s ease infinite;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes ev-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.ev-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: ev-fadeInUp 1s ease 0.3s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ev-hero-visual {
  position: relative;
  margin-top: 3rem;
  height: 200px;
}

.ev-floating-icon {
  position: absolute;
  font-size: 4rem;
  animation: ev-float-icon 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.ev-floating-icon.ev-icon-1 {
  left: 20%;
  top: 0;
  animation-delay: 0s;
}

.ev-floating-icon.ev-icon-2 {
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  animation-delay: 0.5s;
}

.ev-floating-icon.ev-icon-3 {
  right: 20%;
  top: 0;
  animation-delay: 1s;
}

@keyframes ev-float-icon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(0px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-5deg); }
}

.ev-slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.ev-slider-arrow {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  color: #ffd700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.ev-slider-arrow:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1e293b;
  border-color: #ffd700;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.ev-slider-arrow:active {
  transform: scale(0.95);
}

.ev-slider-dots {
  display: flex;
  gap: 1rem;
}

.ev-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ev-dot:hover {
  background: rgba(255, 215, 0, 0.5);
  transform: scale(1.2);
}

.ev-dot.ev-active {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-color: #ffd700;
  transform: scale(1.3);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.6);
}

      .ev-filter-section {
          padding: 3rem 2rem;
          background: white;
          position: sticky;
          top: 95px;
          z-index: 100;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      }

      .ev-filter-container {
          max-width: 1400px;
          margin: 0 auto;
      }

      .ev-filter-buttons {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
          margin-bottom: 0;
      }

      .ev-filter-btn {
          background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
          color: #1e293b;
          border: 2px solid #e2e8f0;
          padding: 0.9rem 2rem;
          border-radius: 50px;
          cursor: pointer;
          font-size: 1rem;
          font-weight: 600;
          transition: all 0.3s ease;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      }

      .ev-filter-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
          border-color: #dc143c;
          background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
      }

      .ev-filter-btn:active {
          transform: translateY(0);
      }

      .ev-filter-btn.ev-active {
          background: linear-gradient(135deg, #dc143c, #ff4757);
          color: white;
          border-color: #dc143c;
          transform: translateY(-2px);
          box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
      }

      .ev-gallery-section {
          padding: 4rem 2rem;
          background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
          min-height: 600px;
          position: relative;
      }

      .ev-gallery-container {
          max-width: 1400px;
          margin: 0 auto;
          position: relative;
          z-index: 1;
      }

      .ev-category-info {
          text-align: center;
          margin-bottom: 3rem;
          animation: ev-fadeInUp 0.6s ease;
      }

      .ev-category-title {
          font-size: 2.5rem;
          font-weight: 800;
          color: #1e293b;
          margin-bottom: 0.5rem;
      }

      .ev-category-count {
          font-size: 1.1rem;
          color: #64748b;
          font-weight: 500;
      }

      .ev-gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
          gap: 2rem;
          margin-bottom: 3rem;
      }

      .ev-gallery-item {
          background: white;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          border: 2px solid rgba(255, 215, 0, 0.2);
          cursor: pointer;
          position: relative;
          animation: ev-fadeInUp 0.6s ease backwards;
      }

      .ev-gallery-item:nth-child(1) { animation-delay: 0.1s; }
      .ev-gallery-item:nth-child(2) { animation-delay: 0.2s; }
      .ev-gallery-item:nth-child(3) { animation-delay: 0.3s; }
      .ev-gallery-item:nth-child(4) { animation-delay: 0.4s; }
      .ev-gallery-item:nth-child(5) { animation-delay: 0.5s; }
      .ev-gallery-item:nth-child(6) { animation-delay: 0.6s; }

      .ev-gallery-item:hover {
          transform: translateY(-8px);
          box-shadow: 0 15px 40px rgba(220, 20, 60, 0.25);
          border-color: #ffd700;
      }

      .ev-gallery-item:active {
          transform: translateY(-4px) scale(0.98);
      }

      .ev-gallery-item-media {
          width: 100%;
          height: 280px;
          overflow: hidden;
          position: relative;
          background: linear-gradient(135deg, #dc143c 0%, #ff4757 100%);
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .ev-gallery-item-media::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
          z-index: 1;
          opacity: 0;
          transition: opacity 0.3s;
      }

      .ev-gallery-item:hover .ev-gallery-item-media::before {
          opacity: 1;
      }

      .ev-event-icon {
          font-size: 5rem;
          position: relative;
          z-index: 2;
          animation: ev-float 3s ease-in-out infinite;
      }

      @keyframes ev-float {
          0%, 100% { transform: translateY(0px); }
          50% { transform: translateY(-15px); }
      }

      .ev-event-content {
          padding: 1.8rem;
          position: relative;
      }

      .ev-event-date-badge {
          position: absolute;
          top: -25px;
          left: 1.8rem;
          background: linear-gradient(135deg, #ffd700, #ffed4e);
          color: #1e293b;
          padding: 0.6rem 1.5rem;
          border-radius: 50px;
          font-size: 0.85rem;
          font-weight: 700;
          box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
          z-index: 10;
      }

      .ev-event-title {
          font-size: 1.5rem;
          font-weight: 700;
          color: #1e293b;
          margin-bottom: 0.8rem;
          margin-top: 0.5rem;
          line-height: 1.3;
      }

      .ev-event-location {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          color: #64748b;
          font-size: 0.95rem;
          margin-bottom: 1rem;
          font-weight: 500;
      }

      .ev-event-description {
          color: #475569;
          font-size: 0.95rem;
          line-height: 1.7;
          margin-bottom: 1.2rem;
      }

      .ev-event-footer {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .ev-event-category {
          display: inline-flex;
          align-items: center;
          background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
          color: #dc143c;
          padding: 0.5rem 1.2rem;
          border-radius: 50px;
          font-size: 0.85rem;
          font-weight: 600;
          border: 2px solid rgba(220, 20, 60, 0.2);
      }

      .ev-event-status {
          display: inline-flex;
          align-items: center;
          padding: 0.5rem 1rem;
          border-radius: 50px;
          font-size: 0.8rem;
          font-weight: 700;
      }

      .ev-status-upcoming {
          background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
          color: #0369a1;
          border: 2px solid rgba(3, 105, 161, 0.2);
      }

      .ev-status-past {
          background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
          color: #6b7280;
          border: 2px solid rgba(107, 114, 128, 0.2);
      }

      .ev-no-events {
          text-align: center;
          padding: 4rem 2rem;
          color: #64748b;
          font-size: 1.2rem;
          animation: ev-fadeInUp 0.6s ease;
      }

      .ev-no-events-icon {
          font-size: 4rem;
          margin-bottom: 1rem;
          opacity: 0.5;
      }

      @media (max-width: 768px) {
          .top-bar-content {
              flex-direction: column;
              align-items: center;
              gap: 0.5rem;
          }

          .ev-hero-main-title {
              font-size: 2.5rem;
          }

          .ev-hero-subtitle {
              font-size: 1rem;
          }

          .ev-filter-section {
              top: 0;
              position: relative;
          }

          .ev-gallery-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
          }

          .ev-category-title {
              font-size: 2rem;
          }
      }
/* admission page */
.adm-hero-section {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 50%, #ffd700 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.adm-hero-section::before,
.adm-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: adm-pulse-glow 5s ease-in-out infinite;
}

.adm-hero-section::before {
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.15), transparent);
}

.adm-hero-section::after {
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  animation-delay: 1s;
}

@keyframes adm-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.adm-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.adm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  color: #dc143c;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: adm-bounce 2s ease-in-out infinite;
  border: 2px solid #ffd700;
}

@keyframes adm-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.adm-hero-main-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  animation: adm-fadeInUp 1s ease;
}

@keyframes adm-fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.adm-highlight-text {
  color: #dc143c;
  background: linear-gradient(90deg, #dc143c, #ff4757, #ffd700, #dc143c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: adm-gradient-shift 4s ease infinite;
}

@keyframes adm-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.adm-hero-subtitle {
  font-size: 1.3rem;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  animation: adm-fadeInUp 1s ease 0.3s backwards;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.adm-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: adm-fadeInUp 1s ease 0.5s backwards;
}

.adm-cta-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.adm-cta-btn-primary {
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.adm-cta-btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.5);
}

.adm-cta-btn-secondary {
  background: white;
  color: #dc143c;
  border: 3px solid #dc143c;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.adm-cta-btn-secondary:hover {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  transform: translateY(-5px) scale(1.02);
}

.adm-stats-section {
  background: white;
  padding: 4rem 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.adm-stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.adm-stat-item {
  text-align: center;
  animation: adm-fadeInUp 0.8s ease backwards;
}

.adm-stat-item:nth-child(1) { animation-delay: 0.1s; }
.adm-stat-item:nth-child(2) { animation-delay: 0.2s; }
.adm-stat-item:nth-child(3) { animation-delay: 0.3s; }
.adm-stat-item:nth-child(4) { animation-delay: 0.4s; }

.adm-stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.adm-stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #dc143c;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
}

.adm-stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.adm-content-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  position: relative;
}

.adm-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.adm-section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: adm-fadeInUp 0.6s ease;
}

.adm-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.adm-section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.adm-admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.adm-step-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  text-align: center;
  animation: adm-fadeInUp 0.6s ease backwards;
  position: relative;
}

.adm-step-card:nth-child(1) { animation-delay: 0.1s; }
.adm-step-card:nth-child(2) { animation-delay: 0.2s; }
.adm-step-card:nth-child(3) { animation-delay: 0.3s; }
.adm-step-card:nth-child(4) { animation-delay: 0.4s; }

.adm-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 20, 60, 0.25);
  border-color: #ffd700;
}

.adm-step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #1e293b;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  border: 4px solid white;
}

.adm-step-icon {
  font-size: 4rem;
  margin: 1.5rem 0;
  animation: adm-float 3s ease-in-out infinite;
}

@keyframes adm-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.adm-step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.adm-step-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.adm-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.adm-info-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(220, 20, 60, 0.2);
  transition: all 0.4s ease;
  animation: adm-fadeInUp 0.6s ease backwards;
}

.adm-info-card:nth-child(1) { animation-delay: 0.1s; }
.adm-info-card:nth-child(2) { animation-delay: 0.2s; }

.adm-info-card:hover {
  transform: translateY(-8px);
  border-color: #dc143c;
  box-shadow: 0 15px 45px rgba(220, 20, 60, 0.25);
}

.adm-info-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.adm-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.adm-info-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
}

.adm-info-list {
  list-style: none;
  padding: 0;
}

.adm-info-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: start;
  gap: 1rem;
  transition: all 0.3s;
}

.adm-info-list li:hover {
  padding-left: 0.5rem;
}

.adm-info-list li:last-child {
  border-bottom: none;
}

.adm-info-list li::before {
  content: "✓";
  color: #ffd700;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.adm-form-section {
  background: white;
  border-radius: 35px;
  padding: 4rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 215, 0, 0.4);
  animation: adm-fadeInUp 0.6s ease;
}

.adm-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.adm-form-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.adm-form-subtitle {
  color: #64748b;
  font-size: 1.1rem;
}

.adm-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.adm-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.adm-form-group.adm-full-width {
  grid-column: 1 / -1;
}

.adm-form-label {
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
}

.adm-form-input,
.adm-form-select,
.adm-form-textarea {
  padding: 1.1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.adm-form-input:focus,
.adm-form-select:focus,
.adm-form-textarea:focus {
  outline: none;
  border-color: #dc143c;
  background: white;
  box-shadow: 0 0 0 5px rgba(220, 20, 60, 0.1);
}

.adm-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.adm-submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

.adm-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
}

.adm-footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.adm-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.adm-footer-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.adm-footer-section p,
.adm-footer-section li {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.adm-footer-section ul {
  list-style: none;
  padding: 0;
}

.adm-footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.adm-footer-section a:hover {
  color: #ffd700;
}

.adm-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

@media (max-width: 768px) {
  .top-bar-content {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
  }

  .adm-hero-main-title {
      font-size: 2.5rem;
  }

  .adm-hero-subtitle {
      font-size: 1.1rem;
  }

  .adm-cta-buttons {
      flex-direction: column;
      width: 100%;
  }

  .adm-cta-btn {
      width: 100%;
      justify-content: center;
  }

  .nav-links {
      display: none;
  }

  .adm-admission-steps,
  .adm-info-grid {
      grid-template-columns: 1fr;
  }

  .adm-section-title {
      font-size: 2rem;
  }

  .adm-form-section {
      padding: 2rem 1.5rem;
  }

  .adm-form-grid {
      grid-template-columns: 1fr;
  }

  .adm-stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
  }
}
/*contact page */
.cont-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.cont-hamburger span {
  width: 30px;
  height: 3px;
  background: #dc143c;
  border-radius: 3px;
  transition: all 0.3s;
}

.cont-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.cont-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.cont-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.cont-hero-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.cont-slides {
  height: 100%;
  position: relative;
}

.cont-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.cont-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.cont-hero-overlay {
  position: absolute;
  inset: 0;
}

.cont-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: cont-heroReveal 1.2s ease forwards;
}

.cont-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.cont-hero-content p {
  font-size: 1.2rem;
  color: #f1f5f9;
  max-width: 650px;
  margin-bottom: 2rem;
}

.cont-hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffb703);
  color: #1e293b;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.cont-hero-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.cont-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.cont-hero-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cont-hero-dots span.active {
  background: #ffd700;
  transform: scale(1.4);
}

@keyframes cont-heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cont-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cont-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #dc143c;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: cont-bounce 2s ease-in-out infinite;
  border: 2px solid #ffd700;
}

@keyframes cont-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cont-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  animation: cont-fadeInUp 1s ease;
}

@keyframes cont-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cont-highlight-text {
  color: #dc143c;
  background: linear-gradient(90deg, #dc143c, #ff4757, #ffd700, #dc143c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cont-gradient-shift 4s ease infinite;
}

@keyframes cont-gradient-shift {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.cont-hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.9;
  animation: cont-fadeInUp 1s ease 0.3s backwards;
  max-width: 700px;
  margin: 0 auto;
}

.cont-contact-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  position: relative;
}

.cont-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.cont-contact-info-section {
  animation: cont-fadeInLeft 0.8s ease;
}

@keyframes cont-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cont-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.cont-section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cont-contact-card {
  background: white;
  border-radius: 25px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(220, 20, 60, 0.1);
  transition: all 0.4s ease;
}

.cont-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.2);
  border-color: #dc143c;
}

.cont-contact-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cont-contact-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
  transition: transform 0.3s;
}

.cont-contact-card:hover .cont-contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.cont-contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
}

.cont-contact-details {
  padding-left: 4.5rem;
}

.cont-contact-details p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.cont-contact-details a {
  color: #dc143c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cont-contact-details a:hover {
  color: #ff4757;
  text-decoration: underline;
}

.cont-social-links {
  display: flex;
  gap: 1rem;
  padding-left: 4.5rem;
  margin-top: 1rem;
}

.cont-social-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.cont-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.cont-contact-form-section {
  animation: cont-fadeInRight 0.8s ease;
}

@keyframes cont-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cont-form-container {
  background: white;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cont-form-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.05),
    transparent
  );
  pointer-events: none;
}

.cont-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cont-form-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.cont-form-subtitle {
  color: #64748b;
  font-size: 1rem;
}

.cont-form-group {
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.cont-form-label {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  display: block;
}

.cont-form-input,
.cont-form-select,
.cont-form-textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.cont-form-input:focus,
.cont-form-select:focus,
.cont-form-textarea:focus {
  outline: none;
  border-color: #dc143c;
  background: white;
  box-shadow: 0 0 0 5px rgba(220, 20, 60, 0.1);
  transform: translateY(-2px);
}

.cont-form-input.error,
.cont-form-select.error,
.cont-form-textarea.error {
  border-color: #dc143c;
  background: #fff5f5;
}

.cont-error-message {
  color: #dc143c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.cont-error-message.show {
  display: block;
}

.cont-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.cont-submit-btn {
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
  letter-spacing: 0.5px;
}

.cont-submit-btn:hover:not(:disabled) {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.5);
}

.cont-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cont-map-section {
  margin-top: 5rem;
  animation: cont-fadeInUp 1s ease;
}

.cont-map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cont-map-container {
  background: white;
  border-radius: 25px;
  padding: 1.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  overflow: hidden;
}

.cont-map-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
}

.cont-quick-contact-section {
  background: linear-gradient(135deg, #dc143c 0%, #b91432 100%);
  padding: 4rem 2rem;
  margin-top: 5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.cont-quick-contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15),
    transparent
  );
  border-radius: 50%;
}

.cont-quick-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont-quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.cont-quick-contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.cont-quick-contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cont-quick-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.cont-quick-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffd700;
}

.cont-quick-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cont-quick-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: white;
  color: #dc143c;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.cont-quick-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cont-faq-section {
  padding: 5rem 2rem;
  background: #fff;
}

.cont-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cont-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cont-faq-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cont-faq-item:hover {
  border-color: #ffd700;
  box-shadow: 0 12px 40px rgba(220, 20, 60, 0.15);
}

.cont-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

.cont-faq-toggle {
  font-size: 1.5rem;
  color: #dc143c;
  transition: transform 0.3s;
}

.cont-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #475569;
  line-height: 1.8;
  padding-top: 0;
}

.cont-faq-answer.active {
  max-height: 500px;
  padding-top: 1.5rem;
}

.cont-faq-item.active .cont-faq-toggle {
  transform: rotate(180deg);
}

.cont-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.cont-modal-overlay.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cont-fadeIn 0.3s ease;
}

@keyframes cont-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cont-success-modal {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: cont-scaleIn 0.4s ease;
}

@keyframes cont-scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .cont-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cont-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .cont-hero-title {
    font-size: 2.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .cont-hamburger {
    display: flex;
  }

  .cont-section-title {
    font-size: 2rem;
  }

  .cont-form-container {
    padding: 2rem 1.5rem;
  }

  .cont-contact-details,
  .cont-social-links {
    padding-left: 0;
  }

  .cont-map-iframe {
    height: 350px;
  }

  .cont-quick-contact-grid {
    grid-template-columns: 1fr;
  }
}