*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 96px 80px;
  background: linear-gradient(135deg, #0f2c5c, #123a7a);
  color: white;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

/* Text container */
.hero-content {
  max-width: 560px;
}

/* Heading */
.hero-content h1 {
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  font-weight: 700;
}

/* Paragraph */
.hero-content p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 42px;
  max-width: 480px; /* Aligns visually with image */
  color: #dbeafe;
}

/* Button wrapper */
.cta-buttons {
  display: flex;
  gap: 16px;
}

/* Base button */
.btn {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* spacing between text & icon */
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Icon inside button */
.btn i {
  font-size: 22px;      /* increased icon size */
  line-height: 1;       /* vertical alignment fix */
  display: inline-flex;
  align-items: center;
  pointer-events: none; /* disables icon hover */
}

/* Primary button */
.primary {
  background: white;
  color: #0f2c5c;
  border: none;
}

.primary:hover {
  background: #e5edff;
}

/* Outline button */
.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
}

.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


/*    WHY BANKING SECTION */

.features {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.features h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 56px;
  color: #0f172a;
}

/* Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* Icon circle */
.card i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e0ecff;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

/* Title */
.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #0f172a;
}

/* List */
.card ul {
  list-style-position: inside;   /* key fix */
  padding: 0;                    /* remove default gap */
  margin: 0;
}

.card ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 10px;
  padding-left: 4px;             /* micro control */
}


/* ==========================
   ABOUT SECTION
========================== */

.about {
  padding: 96px 20px 70px;
  background: #ffffff;
}

/* Grid */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Text */
.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 30px;
  max-width: 520px;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

/* List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  margin-bottom: 14px;
}

.about-list i {
  color: #2563eb;
  font-size: 18px;
}

.about-highlight {
  /* Layout & Centering */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px auto; 
  width: fit-content;

  /* Styling */
  background-color: var(--bg-highlight);
  color: var(--primary-blue); /* Sets a consistent theme color */
  padding: 12px 32px;
  border-radius: 9999px; /* Ensures a perfect pill shape */
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-sm);
  
  /* Animation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Interactive Hover Effect */
.about-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 1.5rem;
  /* Adds a subtle bounce or pulse if you want to get fancy */
}

.about-highlight strong {
  color: #1e40af; /* Darker blue for the number to make it pop */
  margin: 0 4px;
}

/* Improved Image Styling */
.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  
  /* Improves image rendering */
  aspect-ratio: 16 / 9; 
  transition: transform 0.5s ease;
}

/* Subtle zoom on image hover */
.about-image:hover img {
  transform: scale(1.02);
}



/* Learn Section Styling */
.learn-section {
  background-color: #f0f8ff; /* light blue */
  padding: 60px 20px;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Section Heading */
.learn-section h2 {
  font-size: 2.5rem;
  color: #0a3d62;
  font-weight: 700;
  margin-bottom: 10px;
}

.learn-section p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   Cards Container
   ======================== */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ========================
   Individual Card */
.card {
  background: linear-gradient(145deg, #ffffff, #f9fbff);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  justify-content: center; /* center vertically */
  min-height: 260px; /* compact height */
  text-align: center; /* center text */
}

/* Card hover effect */
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon + Heading Container */
.card-header {
  display: flex;
  flex-direction: column; /* stack icon and heading vertically */
  align-items: center;    /* center horizontally */
  gap: 8px;               /* space between icon and heading */
  margin-bottom: 12px;
}

/* Icon styling */
.card-header .icon {
  font-size: 2.4rem;
  color: #1976d2;
  flex-shrink: 0;
  transition: transform 0.3s, color 0.3s;
}

.card:hover .icon {
  transform: rotate(12deg) scale(1.1);
  color: #0a3d62;
}

/* Heading styling */
.card-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0a3d62;
  margin: 0;
}

/* Paragraph styling */
.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
 

/* Section Wrapper */
.why-choose {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* Main Container */
.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image Styling */
.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Content */
.why-content h2 {
  font-size: 2.6rem;
  color: #0a2540;
  margin-bottom: 30px;
  font-weight: 700;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

/* Check Icon */
.check-icon {
  width: 26px;
  height: 26px;
  border: 2px solid #0a3d62;
  border-radius: 50%;
  color: #0a3d62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Text */
.why-list h4 {
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: #0a2540;
  font-weight: 600;
}

.why-list p {
  margin: 0;
  font-size: 0.95rem;
  color: #5a6c7d;
  line-height: 1.5;
}

 
/* ===============================
   STUDENT SUCCESS STORIES
================================ */

.success-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", "Segoe UI", sans-serif;
  text-align: center;
}

/* Headings */
.success-section h2.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 10px;
}

.success-section .section-subtitle {
  font-size: 1.1rem;
  color: #6b7c93;
  margin-bottom: 50px;
}

/* ===============================
   VIDEO GRID – FINAL FIX
================================ */

.video-grid {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* DEFAULT: 3 per row */
  gap: 30px;
}

/* Reels row: ONLY 2 per row */
.video-grid.reels-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

/* Uploaded videos stay 3 per row */
.video-grid.videos-grid {
  grid-template-columns: repeat(2 , 1fr);
}

/* ===============================
   VIDEO CARD
================================ */

.video-card {
  background: #e6f0ff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===============================
   INSTAGRAM REELS
================================ */

.insta-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 420px;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

/* Force Instagram embed to fit card */
.insta-container blockquote,
.insta-container iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  margin: 0 !important;
}

/* ===============================
   UPLOADED VIDEOS
================================ */

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

/* ===============================
   PLACEMENT SECTION
================================ */

.placement-title {
  font-size: 1.8rem;
  color: #0a2540;
  margin: 60px 0 30px;
  font-weight: 700;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 800px;
  margin: 40px auto; /* Added margin for spacing */
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center; /* Ensures text is centered inside the spans */
}

/* Base style for bank names - Clean & Borderless */
.company-grid span {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  color: #b0bccb;       
  border: none;         
  transition: all 0.3s ease;
}

.company-grid span:not(.more-label):hover {
    background: #ffffff;
    color: #0a2540;
}

.more-label {
  grid-column: 1 / -1;
  justify-self: center;
  background: none !important;
  color: #0a2540 !important;
  font-weight: 600;
  padding-top: 15px;
}


.fees-section {
    padding: 60px 20px;
    background-color: #fcfdfe; /* Very light subtle bg */
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.section-title {
    color: #0a2540;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.fees-card {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid #dbeafe; /* Light blue border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    padding: 20px 0;
}


.details-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Matching the screenshot's icon style */
.icon-wrapper {
    background-color: #e0ebff; /* Light blue box */
    color: #1e3a8a;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.text-group .label {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.text-group .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2540;
    margin: 2px 0 0 0;
}

.sub-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}
/* Styling for the text line */
.sub-text {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px; /* Space between text and icon */
}

/* The icon container */
.info-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Remix Icon styling */
.info-icon {
  color: #1a4f8b; /* Professional deep blue */
  font-size: 16px; /* Slightly larger than text for clarity */
  transition: color 0.3s;
}

.info-icon:hover {
  color: #9fc1ea; /* Changes to your light blue on hover */
}

/* The popup box */
.info-popup {
  visibility: hidden;
  width: 180px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 10;
  bottom: 150%; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 12px;
  pointer-events: none; /* Prevents flickering */
}

/* Arrow for the popup */
.info-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

/* Show the popup on hover */
.info-container:hover .info-popup {
  visibility: visible;
  opacity: 1;
  bottom: 160%; /* Subtle "pop up" animation */
}

.card-divider {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 25px 0;
}

.enroll-btn {
    width: 100%;
    max-width: 600px;
    background-color: #1e3a8a; /* Deep Navy Blue */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.enroll-btn:hover {
    background-color: #172554;
    transform: translateY(-2px);
}

 
/* =========================
   WHO CAN JOIN SECTION
========================= */

.who-can-join {
  padding: 100px 20px;
  background: #f0f8ff;
}

.wcj-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.wcj-container h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.wcj-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 60px;
}

/* Grid */
.wcj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.wcj-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wcj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* Icon */
.wcj-card i {
  font-size: 26px;
  color: #1d4ed8;
  margin-bottom: 16px;
  display: inline-block;
}

/* Text */
.wcj-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.wcj-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
}
 


/* =========================
   CTA SECTION
========================= */

.cta {
  position: relative;
  padding: 110px 20px;
  background: url("../assets/images/cta-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* Blue overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.95),
    rgba(29, 78, 216, 0.9)
  );
}

/* Content */
.cta-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

/* Heading */
.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Text */
.cta-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e7ff;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary button */
.btn-primary {
  background: #ffffff;
  color: #1e3a8a;
}

.btn-primary:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

/* Outline button */
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
 


/* =========================
   FOOTER
========================= */

.site-footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #cbd5f5;
  padding: 80px 20px 30px;
  font-size: 14.5px;
}

/* Layout */
.footer-container {
  max-width: 1100px;          /* smaller than screen */
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;

  align-items: flex-start;
}

.footer-col {
  width: 100%;
  justify-self: center;   /* centers each column in grid cell */
}

.footer-col > * {
  max-width: 320px;
}



/* Logo */
.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Text */
.footer-text {
  color: #94a3b8;
  line-height: 1.7;
  max-width: 320px;
}

/* Headings */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}
 

 
/* Lists */
/* Base styles for the footer links */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  text-decoration: none;
  color: #6b7c93; /* Subtle neutral color */
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease; /* Smooth transition */
}

/* Specific Hover Colors for each platform */

/* Instagram: Soft Pink/Purple */
.footer-list a:has(.ri-instagram-line):hover {
  color: #E1306C;
  transform: translateX(5px); /* Subtle shift to the right */
}

/* YouTube: Classic Red */
.footer-list a:has(.ri-youtube-line):hover {
  color: #FF0000;
  transform: translateX(5px);
}

/* Facebook: Corporate Blue */
.footer-list a:has(.ri-facebook-circle-line):hover {
  color: #1877F2;
  transform: translateX(5px);
}

/* Icon scaling on hover */
.footer-list a:hover i {
  transform: scale(1.2);
}

.footer-list i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

/* Bottom bar */
 
.footer-bottom {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 22px 24px 0;

  border-top: 1px solid rgba(148, 163, 184, 0.2);

  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
}


/* Credit */
.footer-credit span {
  color: #ffffff;
  font-weight: 600;
}
.footer-credit a {
  color: #1a4f8b;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.footer-credit a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0); /* Line starts with 0 width */
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0077b5;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out; /* Smooth sliding motion */
}

.footer-credit a:hover::after {
  transform: scaleX(1); /* Line grows to full width on hover */
  transform-origin: bottom left;
}


/* =====================================
   LARGE TABLETS (≤ 1200px)
===================================== */

@media (max-width: 1200px) {

  .hero {
    padding: 80px 50px;
    gap: 40px;
  }

  .about-container,
  .why-container {
    gap: 40px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================
   TABLETS (≤ 992px)
===================================== */

@media (max-width: 992px) {

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 70px 30px;
  }

  .hero-content,
  .hero-content p {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-buttons {
    justify-content: center;
  }

  /* ABOUT & WHY */
  .about-container,
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-desc,
  .why-content p {
    margin-left: auto;
    margin-right: auto;
  }

  /* FEATURES */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* LEARN SECTION */
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* VIDEOS */
  .video-grid.videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid.reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

/* =====================================
   MOBILE (≤ 576px)
===================================== */

@media (max-width: 576px) {

  /* GENERAL SPACING */
  section {
    padding: 60px 16px !important;
  }

  /* HERO */
  .hero {
    padding: 60px 16px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  /* FEATURES */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT */
  .about-content h2 {
    font-size: 30px;
  }

  /* LEARN */
  .cards-container {
    grid-template-columns: 1fr;
  }

  /* WHY CHOOSE */
  .why-content h2 {
    font-size: 30px;
  }

  /* VIDEOS */
  .video-grid {
    grid-template-columns: 1fr !important;
  }

  .insta-container {
    max-height: 520px;
  }

  .video-placeholder {
    aspect-ratio: 16 / 9;
  }

  /* PLACEMENT */
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* WHO CAN JOIN */
  .wcj-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 30px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col > * {
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================
   FEES SECTION RESPONSIVE FIX
========================= */

@media (max-width: 992px) {

  .fees-card {
    padding: 24px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .details-column {
    width: 100%;
    align-items: center;
  }

  .info-block {
    justify-content: center;
    text-align: left;
    max-width: 320px;
  }

  .icon-wrapper {
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {

  .fees-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .fees-card {
    padding: 20px;
  }

  .info-block {
    gap: 12px;
  }

  .text-group .value {
    font-size: 1.15rem;
  }

  .enroll-btn {
    font-size: 1rem;
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .details-column {
    max-width: 100%;
  }

  .info-block {
    align-items: flex-start;
  }
}

