/* 
===============================================
   CLATPREP JAIPUR - STATIC LANDING PAGE
   GLOBAL STYLES & TOKENS
===============================================
*/

:root {
  /* Brand Colors - Extracted from Old Site */
  --cp-primary: #e2231a; /* Red - Buttons, Highlights */
  --cp-secondary: #1d3557; /* Dark Blue - Headers, Active States */
  --cp-accent: #fcd535; /* Yellow - Results highlight */

  /* Neutral Colors */
  --cp-text-main: #333333;
  --cp-text-muted: #6c757d;
  --cp-bg-light: #fdfaf6; /* Very light warm background for form area */
  --cp-bg-white: #ffffff;
  --cp-border: #eaeaea;

  /* Typography */
  --font-heading: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

/* =========================================
   Base Resets & Typography
========================================= */

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--cp-text-main);
  background-color: var(--cp-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--cp-secondary);
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Standardize phone icons to library default for 'normal' look */
.fa-phone,
.fa-phone-alt,
.fa-phone-flip,
svg.bi-telephone-fill {
  display: inline-block;
  transform: none !important; /* Force removal of any inherited transforms */
}

/* =========================================
   Shared Section Components (Design System)
========================================= */

/* Badge Pill — used above section titles */
.section-badge {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* Light badge (default — blue on light bg) */
.section-badge--light {
  background: #e7effc;
  color: var(--cp-secondary);
}

/* Yellow badge */
.section-badge--yellow {
  background: var(--cp-accent);
  color: #1a1a1a;
}

/* Glass badge (for dark/gradient backgrounds) */
.section-badge--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* Section Heading */
.section-heading {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

/* Section Subtitle */
.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 2.1rem;
  }
}

/* =========================================
   Global Utility Classes
========================================= */

/* Typography Utilities */
.text-primary {
  color: var(--cp-primary) !important;
}
.text-secondary {
  color: var(--cp-secondary) !important;
}
.text-accent {
  color: var(--cp-accent) !important;
}

.bg-primary {
  background-color: var(--cp-primary) !important;
}
.bg-secondary {
  background-color: var(--cp-secondary) !important;
}
.bg-light {
  background-color: var(--cp-bg-light) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--cp-primary);
  border-color: var(--cp-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition:
    background-color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c91f16;
  border-color: #c91f16;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(226, 35, 26, 0.25);
}

.btn-outline-primary {
  color: var(--cp-secondary);
  border-color: var(--cp-border);
  font-family: var(--font-heading);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}

.btn-outline-primary:hover {
  background-color: var(--cp-bg-light);
  color: var(--cp-primary);
  border-color: var(--cp-border);
}

.btn-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  font-family: var(--font-heading);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Shimmer Effect for CTA Buttons */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 30%; /* Thinner, sharper shine beam */
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 4.5s ease-in-out infinite; /* Slower, smoother loop */
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  25% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* Shadows & Cards */
.card-shadow {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.header-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* =========================================
   Header Section
========================================= */
header {
  z-index: 1030;
}

@media (max-width: 768px) {
  .logo img {
    max-height: 46px !important;
    width: auto !important;
  }

  header .btn-whatsapp,
  header .btn-outline-primary {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
  }

  header .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  header .d-flex.gap-3 {
    gap: 0.2rem !important;
  }
}

/* Announcement Marquee */
.announcement-bar {
  background-color: var(--cp-secondary);
  color: var(--cp-bg-white);
  padding: 0.5rem 1rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.announcement-icon {
  background-color: var(--cp-secondary);
  padding-right: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 10px 0px 10px var(--cp-secondary); /* Blend icon background with scrolling text */
}

.marquee-container {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%; /* Start off-screen right */
  animation: marquee-scroll 25s linear infinite;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

/* =========================================
   Hero Section & Form
========================================= */
.hero-section {
  background: linear-gradient(180deg, var(--cp-bg-white) 0%, #f0f4f8 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Ensure the image column spans the full height */
.hero-img-col {
  display: flex;
  align-self: stretch; /* Makes it stretch to match the form column height */
}

/* Force the image to cover the full flex container height */
.hero-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-form-card {
  background-color: var(--cp-bg-light);
}

.write-us-heading {
  color: var(--cp-text-main);
}

/* Custom underline under the heading (like the screenshot) */
.write-us-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--cp-primary);
  border-radius: 2px;
}

/* Form Inputs */
.custom-input {
  background-color: #f1efea; /* Matching the slight gray/beige in the screenshot */
  border: 1px solid transparent;
  border-radius: 30px; /* Fully rounded inputs */
  padding: 0.5rem 1rem; /* Squeezing the inputs */
  font-size: 0.9rem;
  color: var(--cp-text-main);
  transition: all 0.3s ease;
}

.custom-input::placeholder {
  color: #a0a0a0;
  font-size: 0.85rem;
}

.custom-input:focus {
  background-color: var(--cp-bg-white);
  border-color: #d1d1d1;
  box-shadow: 0 0 0 4px rgba(29, 53, 87, 0.05); /* Soft focus ring */
  outline: none;
}

/* Form Labels */
.form-label {
  margin-bottom: 0.25rem;
  margin-left: 0.5rem; /* Slight indent to align with rounded input text */
  color: var(--cp-text-main);
  font-size: 0.85rem;
}

/* Checkbox specific styles */
.form-check-input {
  border-radius: 4px;
  border-color: #ccc;
}

/* =========================================
   Programs Section
========================================= */
.programs-section {
  background-color: #fcfdfe;
}

.programs-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(226, 35, 26, 0.08);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(29, 53, 87, 0.08);
  bottom: -50px;
  right: -50px;
}

.shape-svg {
  position: absolute;
  opacity: 1;
}

.svg-1 {
  top: 15%;
  right: 5%;
}

.svg-2 {
  bottom: 20%;
  left: 5%;
}

.svg-3 {
  z-index: 1;
}

.shape-half-circle {
  position: absolute;
  width: 200px;
  height: 100px;
  background: rgba(29, 53, 87, 0.06);
  border-radius: 200px 200px 0 0;
  bottom: 10%;
  right: -50px;
  transform: rotate(-45deg);
  z-index: 1;
}

.program-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.program-img {
  transition: transform 0.6s ease;
}

.program-card:hover .program-img {
  transform: scale(1.1);
}

.program-title {
  transition: color 0.3s ease;
}

.program-card:hover .program-title {
  color: var(--cp-primary) !important;
}

.program-btn {
  border-radius: 12px;
  background-color: var(--cp-primary);
  border: 2px solid var(--cp-primary);
  color: white !important;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(226, 35, 26, 0.2);
}

.program-card:hover .program-btn {
  background-color: var(--cp-secondary);
  border-color: var(--cp-secondary);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(29, 53, 87, 0.25);
}

.program-btn:active {
  transform: scale(0.98);
}

/* =========================================
   Global Swiper Styles
========================================= */
/* Pagination Dots */
.swiper-pagination-bullet {
  background-color: var(--cp-text-muted);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--cp-primary) !important;
  opacity: 1 !important;
  transform: scale(1.2);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--cp-secondary) !important;
  background-color: var(--cp-bg-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--cp-secondary);
  color: var(--cp-bg-white) !important;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

/* =========================================
   CTA Banner Section — Bright Card Design
========================================= */
.cta-banner-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fd 100%);
  padding: 5rem 0 4rem;
  position: relative;
}

.cta-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(29, 53, 87, 0.08);
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--cp-primary),
    var(--cp-accent),
    var(--cp-primary)
  );
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cp-secondary);
  margin-bottom: 0.8rem;
}

.cta-card p {
  color: #666;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.btn-cta-primary {
  background: var(--cp-primary);
  color: #ffffff;
  border-radius: 50px;
  padding: 0.9rem 2.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(226, 35, 26, 0.2);
}

.btn-cta-primary:hover {
  background: #c41e17;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(226, 35, 26, 0.3);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 2.5rem 1.5rem;
  }
  .cta-card h2 {
    font-size: 1.8rem;
  }
}

/* =========================================
   Testimonial Section
========================================= */
.testimonials-section {
  background-color: #f8fbff;
}

/* (testimonial-badge replaced by shared .section-badge) */

.testimonial-card {
  background: var(--cp-bg-white);
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cp-secondary);
  padding: 3px;
}

.testimonial-info h6 {
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-info span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cp-secondary);
  text-transform: uppercase;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.quote-icon-lg {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3rem;
  color: #eee;
  pointer-events: none;
}

/* Custom testimonial swiper navigation */
.testimonial-swiper-container {
  position: relative;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .testimonial-swiper-container {
    padding: 0;
  }
}

/* =========================================
   Premium Course Offerings Section (Compact)
========================================= */
.course-features-section {
  background-color: #f8fbff;
  position: relative;
}

.compact-feature-card {
  background: var(--cp-bg-white);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.compact-feature-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--cp-secondary);
}

.feature-check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--cp-secondary);
  color: var(--cp-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

.compact-feature-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .compact-feature-card {
    padding: 1rem 1.2rem;
  }
}

/* =========================================
   Urgency Section
========================================= */
.urgency-section {
  background-color: #ffffff;
  padding: 6rem 0;
}

.urgency-title {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-size: 2.22rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.55rem;
  border-left: 5px solid var(--cp-primary);
}

.urgency-title .highlight {
  color: var(--cp-primary);
}

.urgency-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
}

.ready-to-outrun {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--cp-secondary);
  margin: 1.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Abstract Image Composition */
.urgency-image-wrapper {
  position: relative;
  padding: 2.5rem;
  z-index: 1;
}

.urgency-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.1) 0%,
    rgba(220, 53, 69, 0.05) 100%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: morphBlob 15s linear infinite alternate;
}

.urgency-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(220, 53, 69, 0.08) 0%,
    transparent 70%
  );
  z-index: -1;
}

.urgency-img-container {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18);
  border: 10px solid #fff;
  transition: transform 0.4s ease;
}

.urgency-img-container:hover {
  transform: scale(1.02);
}

@keyframes morphBlob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  33% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  66% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  100% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.btn-urgency {
  background-color: var(--cp-primary);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border: none;
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
}

.btn-urgency:hover {
  background-color: #b02a37;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 53, 69, 0.3);
  color: #fff;
}

/* Feature Grid Adjustments */
@media (max-width: 991px) {
  .urgency-title {
    font-size: 2rem;
  }
  .urgency-image-wrapper {
    padding: 0 !important;
    margin-top: 2rem;
  }
  .urgency-img-container {
    border-radius: 1rem !important;
    border-width: 5px !important;
  }
}
/* =========================================
   Who Is This For (Eligibility) Section
========================================= */
.eligibility-section {
  background-color: #fcfdfe;
  padding: 6rem 0;
  overflow: hidden;
}

.eligibility-title {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-size: 2.22rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}

.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
  padding: 0.2rem 0;
}

.eligibility-item i {
  color: var(--cp-primary);
  font-size: 1.4rem;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.2));
}

.eligibility-item p {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Abstract Image Composition (Left Alignment) */
.eligibility-image-wrapper {
  position: relative;
  padding: 0;
  z-index: 1;
}

.eligibility-image-wrapper::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 90%;
  height: 90%;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.08) 0%,
    rgba(0, 86, 179, 0.05) 100%
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  animation: morphBlobLeft 18s linear infinite alternate;
}

@keyframes morphBlobLeft {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.eligibility-img-container {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  /* box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff; */
  transition: transform 0.4s ease;
}

.eligibility-img-container:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .eligibility-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .eligibility-image-wrapper {
    margin-bottom: 2rem;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .eligibility-section {
    padding: 3rem 0 0rem !important;
  }
  .methodology-section {
    padding: 3.5rem 0;
  }
}
/* =========================================
   360° Methodology Section (Colorful Flow)
========================================= */
.methodology-section {
  background: #f8fbff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* (methodology badge/title/subtitle replaced by shared .section-badge / .section-heading / .section-subtitle) */

/* Flow Container */
.methodology-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-top: 2rem;
}

/* Individual Step */
.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
  max-width: 200px;
}

/* Icon Circles - Colorful Gradients */
.flow-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.flow-step:hover .flow-icon {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Color Variants */
.flow-icon--blue {
  background: linear-gradient(135deg, #4361ee, #3a86ff);
}
.flow-icon--green {
  background: linear-gradient(135deg, #06d6a0, #1b9e77);
}
.flow-icon--orange {
  background: linear-gradient(135deg, #f77f00, #e36414);
}
.flow-icon--purple {
  background: linear-gradient(135deg, #7b2ff7, #9d4edd);
}
.flow-icon--teal {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
}

/* Step Number Tag */
.flow-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cp-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.flow-title {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.flow-desc {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* Arrow Connectors */
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d0d0d0;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .methodology-flow {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .flow-step {
    max-width: 300px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* =========================================
   ClatPrep Advantage Section
========================================= */
.advantage-section {
  background: #ffffff;
  padding: 5rem 0;
}

/* (advantage-badge / advantage-heading replaced by shared .section-badge / .section-heading) */

/* Advantage List */
.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(-5deg);
}

.advantage-icon--blue {
  background: linear-gradient(135deg, #4361ee, #3a86ff);
}
.advantage-icon--green {
  background: linear-gradient(135deg, #06d6a0, #1b9e77);
}
.advantage-icon--orange {
  background: linear-gradient(135deg, #f77f00, #e36414);
}
.advantage-icon--purple {
  background: linear-gradient(135deg, #7b2ff7, #9d4edd);
}

.advantage-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.advantage-item-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Achievement Panel */
.achievement-panel {
  background: linear-gradient(135deg, var(--cp-secondary) 0%, #2a4d7d 100%);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.achievement-panel::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.achievement-hero {
  margin-bottom: 1.5rem;
}

.air-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3rem;
}

.air-numbers {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #fcd535, #f7971e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.achievement-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-value--yellow {
  color: var(--cp-accent);
}

.stat-value--white {
  color: #ffffff;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .advantage-list {
    margin-bottom: 3rem;
  }
}

@media (max-width: 576px) {
  .achievement-panel {
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
  }

  .air-numbers {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .achievement-desc {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

/* =========================================
   Flashy FOMO Conversion Section
========================================= */
.fomo-conversion-section {
  padding: 3rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.fomo-conversion-section::before {
  display: none;
}

.fomo-card {
  background: var(--cp-secondary);
  border-radius: 2.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Abstract Shapes inside FOMO Card */
.fomo-shape {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.fomo-shape--1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(226, 35, 26, 0.3) 0%,
    transparent 70%
  );
  top: -80px;
  left: -80px;
  border-radius: 50%;
  animation: morphBlobLeft 15s infinite alternate;
}

.fomo-shape--2 {
  bottom: 10px;
  right: 10px;
  opacity: 0.3;
  animation: rotate-infinite 20s linear infinite;
}

@keyframes rotate-infinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fomo-shape--3 {
  top: 15%;
  right: 5%;
  opacity: 0.2;
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.fomo-badge-glow {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
  position: relative; /* Ensure it stays above shapes */
  z-index: 2;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

.fomo-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.fomo-subtext {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* Scarcity Progress Bar */
.scarcity-container {
  max-width: 350px;
  margin: 0 auto 2.5rem;
}

.scarcity-label {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.scarcity-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.scarcity-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #e2231a, #ff6b6b);
  border-radius: 10px;
  position: relative;
  animation: fillProgress 2s ease-out;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }
  to {
    width: 87%;
  }
}

.btn-extra-flashy {
  background: linear-gradient(135deg, #fcd535, #f7971e);
  color: #000 !important;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 25px rgba(252, 213, 53, 0.3);
  transition: all 0.3s;
  animation: btn-glow-beat 1.5s infinite;
}

@keyframes btn-glow-beat {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(252, 213, 53, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(252, 213, 53, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(252, 213, 53, 0.4);
  }
}

.btn-extra-flashy:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .fomo-conversion-section {
    padding: 2rem 0;
  }
  .fomo-card {
    padding: 2.5rem 1.5rem;
  }
  .fomo-heading {
    font-size: 1.8rem;
  }
  .fomo-subtext {
    font-size: 0.95rem;
  }
}

/* =========================================
   Our Jaipur Centres Section
========================================= */
.centres-section {
  background: #f8fbff;
  padding: 5rem 0;
}

/* (centres-badge / centres-heading / centres-subtitle replaced by shared classes) */

/* Centre Card */
.centre-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.centre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Location Pin */
.centre-pin {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cp-primary), #ff6b6b);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(226, 35, 26, 0.2);
}

.centre-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #f0f0f0;
}

/* Detail Items */
.centre-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.centre-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}

.centre-detail-item i {
  color: var(--cp-secondary);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  min-width: 16px;
}

.centre-detail-item a {
  color: var(--cp-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.centre-detail-item a:hover {
  color: var(--cp-primary);
}

/* Map Button */
.centre-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cp-primary);
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(226, 35, 26, 0.15);
}

.centre-map-btn:hover {
  background: #c41e17;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(226, 35, 26, 0.25);
  color: #ffffff;
}

/* (centres-heading responsive handled by shared .section-heading) */

/* =========================================
   Footer
========================================= */
.site-footer {
  background: var(--cp-secondary);
  color: #ffffff;
  padding-top: 3.5rem;
}

.footer-main {
  text-align: center;
  padding-bottom: 2rem;
}

.footer-logo {
  height: 80px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-tagline-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-address {
  display: inline-flex;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
  max-width: 500px;
}

.footer-address i {
  color: var(--cp-primary);
  margin-top: 0.2rem;
}

.footer-gst {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--cp-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   YouTube Shorts Section
========================================= */
.shorts-section {
  background-color: #f8fbff;
}

.short-card {
  background: var(--cp-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  aspect-ratio: 9/16;
  height: 500px; /* Base height */
}

@media (max-width: 576px) {
  .short-card {
    height: 480px;
  }
}

.short-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.short-card iframe {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  pointer-events: auto;
}

/* Fix for touch swipe on iframes in Swiper */
.shortsSwiper .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}
.shortsSwiper .swiper-slide {
  pointer-events: auto;
}

@media (min-width: 768px) {
  .position-md-absolute {
    position: absolute !important;
  }
}

.shorts-swiper-container {
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shorts-swiper-container {
    padding: 0;
  }
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes blobAnim {
  0% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.05) translate(10px, -10px);
  }
  66% {
    transform: scale(0.95) translate(-10px, 10px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.animate-spin-slow {
  animation: spin 15s linear infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-blob1 {
  animation: blobAnim 8s ease-in-out infinite;
}

.animate-blob2 {
  animation: blobAnim 6s ease-in-out infinite reverse;
}

/* Hide Swiper Arrows on Mobile except for Shorts Swiper */
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .shortsSwiper .swiper-button-next,
  .shortsSwiper .swiper-button-prev {
    display: flex !important;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    z-index: 10;
  }

  .shortsSwiper .swiper-button-prev {
    left: 5px !important;
  }

  .shortsSwiper .swiper-button-next {
    right: 5px !important;
  }

  .shorts-swiper-container {
    padding: 0; /* Remove squeezing padding */
    margin: 0 -25px; /* Slight bleed for better centered peek-a-boo effect */
  }
}

/* =========================================
   Mobile Bottom Action Bar
========================================= */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--cp-bg-white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1040;
  padding: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-action-bar.visible {
  transform: translateY(0);
}

.mobile-action-bar .btn {
  border-radius: 8px !important;
  font-size: 0.95rem !important; /* Force priority over global classes */
  padding: 0 !important;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700 !important; /* Bolder for bottom triggers */
  border: none !important;
}

@media (max-width: 576px) {
  .mobile-action-bar {
    display: flex;
  }

  /* Add padding to body so content isn't hidden behind the fixed bar */
  body {
    padding-bottom: 75px !important;
  }
}

/* Premium Modal Styling */
#demoFormModal .modal-content {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#demoFormModal .btn-close {
  background-color: #f8f9fa;
  opacity: 1;
  padding: 0.8rem;
  border-radius: 50%;
  transition: all 0.2s;
}

#demoFormModal .btn-close:hover {
  background-color: #e9ecef;
  transform: rotate(90deg);
}

#demoFormModal .btn-close.modal-close-top-right {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1100;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#demoFormModal .modal-header {
  border-bottom: 0;
  padding: 1.5rem 1.5rem 0.5rem;
}

#demoFormModal .modal-body {
  padding: 0 1.5rem 1.5rem;
}

/* Modal Split View Image Styling */
.modal-image-wrapper {
  position: relative;
  background-color: var(--cp-secondary);
}

.modal-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(29, 53, 87, 0) 0%,
    rgba(29, 53, 87, 0.8) 100%
  );
  z-index: 1;
}

@media (max-width: 991px) {
  .modal-image-wrapper img {
    height: 245px !important;
    min-height: 245px !important;
  }
}

/* =========================================
   Meet Your Mentor & Faculty Section
========================================= */
.mentor-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.mentor-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2.5rem;
  padding: 3rem;
  box-shadow: 0 40px 100px -20px rgba(29, 53, 87, 0.1);
  position: relative;
}

.mentor-image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 8px solid #fff;
}

.mentor-exp-tag {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--cp-primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px 0 0 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(226, 35, 26, 0.3);
  z-index: 2;
  animation: slideInRight 0.8s ease-out;
}

.mentor-card .row {
  /* Removed manual gap as it breaks Bootstrap column wrapping */
}

.mentor-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cp-secondary);
  margin-top: 0;
}

.mentor-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cp-secondary);
  margin-bottom: 0.5rem;
}

.mentor-designation {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cp-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: block;
}

.mentor-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px solid var(--cp-accent);
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.m-stat-item {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.m-stat-item .m-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cp-secondary);
}

.m-stat-item .m-lbl {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

@media (max-width: 991px) {
  .mentor-card {
    padding: 2.5rem 1.5rem;
  }
  .mentor-card .row {
    gap: 15px;
  }
  .mentor-info h2 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
  .mentor-info h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}

/* Faculty Grid */
.faculty-grid-section {
  padding: 4rem 0 6rem;
  background-color: #ffffff;
}

.faculty-card {
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.faculty-img-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #f8fbff;
}

.faculty-card h5 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--cp-secondary);
}

.faculty-card span {
  font-size: 0.9rem;
  color: var(--cp-primary);
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mentor-section {
    padding: 4rem 0;
  }
  .mentor-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* =========================================
   Floating Contact Icons (Desktop)
========================================= */
.floating-contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
  transition: all 0.3s ease;
}

.floating-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-icon:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.whatsapp-btn {
  background-color: #25d366;
  animation: pulse-whatsapp 2s infinite;
}

.call-btn {
  background-color: var(--cp-primary);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hide on Mobile as per user request */
@media (max-width: 576px) {
  .floating-contact-wrapper {
    display: none !important;
  }
}

/* =========================================
   Lite YouTube @PageSpeed Fix
========================================= */
.youtube-lite {
  background-color: #000;
  position: relative;
  z-index: 10; /* Increased to stay above all swiper layers */
  display: block;
  contain: content;
  background-position: center;
  background-size: cover;
  cursor: pointer !important;
  aspect-ratio: 9 / 16;
  border-radius: 1.5rem;
  overflow: hidden;
  width: 100%;
  pointer-events: auto !important; /* Explicitly allow pointer events */
}

.youtube-lite--horizontal {
  aspect-ratio: 16 / 9;
}

/* Play Button Overlay */
.youtube-lite::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.64 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24L27 14v20" fill="white"/></svg>') no-repeat center;
  z-index: 1;
  transition: all 0.3s ease;
  filter: grayscale(1);
  opacity: 0.8;
}

.youtube-lite:hover::before {
  filter: grayscale(0);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-lite iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  z-index: 2; /* Ensure iframe is above the play button */
}

/* Hide play button and background image once loaded */
.youtube-lite[data-loaded="true"]::before,
.youtube-lite[data-loaded="true"] {
  background-image: none !important;
}

.youtube-lite[data-loaded="true"]::before {
  display: none !important;
}
