/* Root and base styles */
:root {
  --palette-1: #fbfbfb;
  --palette-2: #e8f9ff;
  --palette-3: #c4d9ff;
  --palette-4: #c5baff;
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #3b82f6;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background-color: #ffffff;
  --section-bg: #f3f4f6;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: var(--palette-1);
  margin: 0;
  padding: 0;
}

img.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: transparent;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: "Albert Sans", sans-serif;
  color: black;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .logo {
  height: 50px;
  width: 100px;
}

.header .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #2196f3;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2196f3;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header .button {
  border: 2px solid #c5baff;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header .button:hover {
  background-color: #c5baff;
  color: white;
  transform: translateY(-2px);
}

.header .bars {
  display: none;
  font-size: 1.6rem;
}

/* Dropdown Styles */
.nav-menu .dropdown .link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #333;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #2196f3;
  border-left: 3px solid #2196f3;
}

.dropdown i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown:hover i {
  transform: rotate(180deg);
  color: #2196f3;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1001;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  font-family: "Albert Sans", sans-serif;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 1002;
  transition: color 0.3s ease;
}

.mobile-menu .close-btn:hover {
  color: #2196f3;
}

.mobile-menu nav {
  width: 100%;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
  width: 100%;
  gap: 1.5rem;
}

.mobile-menu .nav-menu li {
  width: 100%;
}

.mobile-menu .nav-menu a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu .nav-menu a:hover {
  color: #2196f3;
}

.mobile-menu .dropdown {
  padding: 0;
  width: 100%;
}

.mobile-menu .dropdown .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 0rem 0;
}

.mobile-menu .dropdown .link span {
  font-weight: 500;
  color: #333;
  font-size: 1.2rem;
  font-family: "Albert Sans", sans-serif;
  margin-right: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-menu .dropdown-content {
  position: static;
  box-shadow: none;
  display: none;
  width: 100%;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: transparent;
}

.mobile-menu .dropdown.active .dropdown-content {
  display: block;
}

.mobile-menu .dropdown-content a {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: #555;
  display: block;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-menu .dropdown-content a:hover {
  color: #2196f3;
  border-left: 2px solid #2196f3;
  padding-left: 0.5rem;
}

.mobile-menu .dropdown i {
  transition: transform 0.3s ease;
  color: #333;
}

.mobile-menu .dropdown.active i {
  transform: rotate(180deg);
  color: #2196f3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  backdrop-filter: blur(3px);
}

.overlay.active {
  display: block;
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  position: relative;
  height: 450px;
  margin: 10rem 5rem 3rem 5rem;
  border-radius: 30px;
  background: url("./public/images/usa1.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: #fff;
  border: 10px solid var(--palette-4);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  border-radius: 30px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}
.breadcrumb {
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.breadcrumb a:hover {
  opacity: 1;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Overview Section */
.overview-section {
  /* background: linear-gradient(
    135deg,
    var(--palette-2) 60%,
    var(--palette-3) 100%
  ); */
  padding: 3rem 0;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}
.section-subtitle {
  font-size: 0.9rem;
  color: #868686;
}
.overview-content {
  display: grid;
  gap: 2rem;
}
.overview-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
}
.overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.overview-card {
  /* background: linear-gradient(
    120deg,
    var(--palette-2) 60%,
    var(--palette-4) 100%
  ); */
  background-color: #e8f9ff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 24px 0 rgba(197, 186, 255, 0.13);
  /* border: 1.5px solid var(--palette-4); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #2d2d2d;
}
.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.overview-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
}
.overview-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}
.overview-card p {
  color: #6b7280;
}

/* About & Enquiry */
.about-main,
.about-flex,
.about-para,
.enquiry-form {
  display: none !important;
}

/* Highlight Section */
.highlight-section {
  background: linear-gradient(
    135deg,
    var(--palette-1) 0%,
    var(--palette-2) 100%
  );
  padding: 4rem 0;
  border-radius: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.highlight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(197, 186, 255, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.highlight-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.highlight-img {
  flex: 1.5;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.highlight-img::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  /* background: linear-gradient(45deg, var(--palette-4), var(--palette-3)); */
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.highlight-img img {
  height: 320px;
  border-radius: 16px;
  /* box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-img img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

.highlight-content {
  flex: 2;
  min-width: 260px;
  padding: 1rem 0;
}

.highlight-content h3 {
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.3;
}

.highlight-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 2px;
}

.highlight-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a5568;
  margin-top: 1.5rem;
  text-align: justify;
}

/* Features Section */
.features-section {
  background: linear-gradient(
    135deg,
    var(--palette-2) 0%,
    var(--palette-3) 100%
  );
  color: #2d2d2d;
  padding: 4rem 0;
  border-radius: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(197, 186, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.features-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.features-content {
  flex: 2;
  min-width: 260px;
  padding: 1rem 0;
}

.features-content h3 {
  color: #3a2e5a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.3;
}

.features-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 2px;
}

.features-content ul {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}

.features-content ul li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features-content ul li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--palette-4);
  font-weight: bold;
  font-size: 1.1rem;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.features-content ul li:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.features-img {
  flex: 2;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-img::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--palette-3), var(--palette-4));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.features-img img {
  height: 380px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-img img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

/* Why Section */
.why-section {
  background: linear-gradient(
    135deg,
    var(--palette-1) 0%,
    var(--palette-2) 100%
  );
  padding: 4rem 0;
  border-radius: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(197, 186, 255, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.why-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ytvid {
  display: none;
}

.why-video {
  flex: 1.3;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-video::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--palette-4), var(--palette-3));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.why-video iframe {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-video iframe:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
}

.why-content {
  flex: 2;
  min-width: 260px;
  padding: 1rem 0;
}

.why-content h3 {
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.3;
}

.why-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 2px;
}

.why-content ul {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}

.why-content ul li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-content ul li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--palette-4);
  font-weight: bold;
  font-size: 1.1rem;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.why-content ul li:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

/* Benefits & Fee Structure */
.benefits-section {
  background: linear-gradient(
    135deg,
    var(--palette-1) 0%,
    var(--palette-2) 100%
  );
  border-radius: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(197, 186, 255, 0.1);
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(197, 186, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.benefits-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.benefits-list {
  background: linear-gradient(
    135deg,
    var(--palette-2) 0%,
    var(--palette-3) 100%
  );
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(197, 186, 255, 0.15);
  padding: 2.5rem 2rem;
  min-width: 280px;
  max-width: 450px;
  flex: 1 1 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
}

.benefits-list:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(197, 186, 255, 0.25);
}

.benefits-list h3 {
  color: #3a2e5a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.3;
}

.benefits-list h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 2px;
}

.benefits-list ul {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  color: #222;
  font-size: 1.05rem;
  line-height: 1.7;
  width: 100%;
}

.benefits-list ul li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefits-list ul li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--palette-4);
  font-weight: bold;
  font-size: 1.1rem;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.benefits-list ul li:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.benefits-list ul li b {
  color: #3a2e5a;
  font-weight: 600;
}

/* Eligibility Section */
.eligibility-section {
  background: linear-gradient(
    135deg,
    var(--palette-2) 0%,
    var(--palette-3) 100%
  );
  border-radius: 2rem;
  margin-bottom: 3rem;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.eligibility-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(197, 186, 255, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.eligibility-flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.eligibility-content {
  flex: 1 1 400px;
  min-width: 320px;
  max-width: 700px;
  background: linear-gradient(135deg, #fff 0%, var(--palette-1) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid rgba(197, 186, 255, 0.2);
  box-shadow: 0 8px 32px rgba(197, 186, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eligibility-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
}

.eligibility-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(197, 186, 255, 0.25);
}

.eligibility-content h3 {
  color: #2d2d2d;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.eligibility-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 2px;
}

.eligibility-content ul {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  width: 100%;
}

.eligibility-content ul li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;
  margin-bottom: 0.8rem;
  background: rgba(197, 186, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.eligibility-content ul li::before {
  content: "✓";
  color: var(--palette-4);
  font-size: 1.1em;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.eligibility-content ul li:hover {
  background: rgba(197, 186, 255, 0.2);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.eligibility-content h4 {
  margin-top: 2rem;
  color: #3a2e5a;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.eligibility-content h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--palette-4), var(--palette-3));
  border-radius: 1px;
}

/* Testimonial Section (refactored) */
.testimonial-section {
  /* background: linear-gradient(
    135deg,
    var(--palette-2) 60%,
    var(--palette-3) 100%
  ); */
  padding: 4rem 0 3rem 0;
  text-align: center;
  font-family: "Albert Sans", "Poppins", sans-serif;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.testimonial-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* background-color: #e8f9ff; */
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(197, 186, 255, 0.1);
}
.testimonial-items {
  width: 100%;
  position: relative;
  min-height: 180px;
}
.testimonial-item {
  display: none;
  font-size: 1.1rem;
  color: #222;
  /* background: linear-gradient(
    120deg,
    var(--palette-2) 60%,
    var(--palette-4) 100%
  ); */
  background-color: #e8f9ff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  font-family: inherit;
  transition: opacity 0.3s;
  border: 1.5px solid var(--palette-4);
}
.testimonial-item.active {
  display: block;
  opacity: 1;
}
.testimonial-btn {
  background: var(--palette-4);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.testimonial-btn:focus {
  outline: 2px solid #2196f3;
}
.testimonial-btn:hover {
  background: var(--palette-3);
  color: #3a2e5a;
  transform: scale(1.08);
}

/* Footer */
.modern-footer {
  background: #c5baff;
  color: #000;
  padding: 4rem 0 2rem;
  font-family: "Inter", sans-serif;
  border-radius: 2rem 2rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-company .img {
  height: 50px;
  width: 90px;
  background-image: url("./public/images/logo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-links ul li a:focus {
  color: #fff;
  background: #c4d9ff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover,
.social-links a:focus {
  background: #3a3a3a;
  transform: translateY(-3px);
  outline: 2px solid #c5baff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  color: #000;
  margin: 0;
}

.students-section {
  /* background: var(--palette-2); */
  padding: 3rem 0 2rem 0;
  margin-bottom: 2rem;
  border-radius: 2rem;
  box-shadow: 0 4px 16px 0 rgba(197, 186, 255, 0.1);
}
.students-header {
  text-align: center;
  margin-bottom: 2rem;
}
.students-header h2 {
  font-size: 2rem;
  color: #3a2e5a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.students-subtitle {
  /* color: #6b7280; */
  font-size: 1rem;
}
.students-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  background: var(--palette-1);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(197, 186, 255, 0.1);
}
.students-slider::-webkit-scrollbar {
  display: none;
}
.student-card {
  min-width: 180px;
  max-width: 200px;
  background: linear-gradient(
    120deg,
    var(--palette-2) 60%,
    var(--palette-3) 100%
  );
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem 1rem 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 0 0 auto;
  border: 1.5px solid var(--palette-3);
  color: #2d2d2d;
}
.student-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--palette-4);
  background: var(--palette-2);
}
.student-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3a2e5a;
  margin-top: 0.5rem;
  text-align: center;
}
.student-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

/* Remove all Accreditation and Counters Section styles (including media queries) */
.accreditation-section,
.accreditation-logos,
.counters-section,
.counters-flex,
.counter-wrapper,
.counter-info {
  display: none !important;
}

/* --- Responsive Hero Section --- */

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  border-radius: 30px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
  /* color: #fff; */
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  /* background-color: #007bff; */
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

.unread-message {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Container Responsive Adjustments */
@media (max-width: 1280px) {
  .container {
    padding: 0 1.2rem;
  }

  .header {
    padding: 1rem 3rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 1.5rem;
  }

  .hero-section {
    margin: 8rem 4rem 1rem 4rem;
    height: 400px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }

  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 3rem 0;
    margin-bottom: 2rem;
  }

  .highlight-flex,
  .features-flex,
  .why-flex {
    gap: 2rem;
  }

  .benefits-flex {
    gap: 2rem;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1.6rem;
  }

  .highlight-img img,
  .features-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .why-video iframe {
    height: 280px;
    width: 100%;
  }

  .hero-section {
    margin: 8rem 4rem 1rem 4rem;
    height: 400px;
  }

  .overview-section,
  .students-section {
    padding: 2.5rem 0;
  }

  .overview-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .students-slider {
    gap: 1.5rem;
  }

  .student-card {
    min-width: 160px;
    max-width: 180px;
  }

  .testimonial-section {
    padding: 3rem 0 2rem 0;
  }
}

@media (max-width: 1050px) {
  .container {
    padding: 0 1rem;
  }

  .accreditation-section,
  .accreditation-logos,
  .counters-section,
  .counters-flex,
  .counter-wrapper,
  .counter-info {
    display: none !important;
  }

  .hero-section {
    margin: 8rem 3rem 1rem 3rem;
    height: 350px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .header {
    padding: 1rem 2rem;
  }
  .nav-menu a {
    font-size: 0.9rem;
  }
  .header .button {
    font-size: 0.9rem;
  }
  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }
  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }

  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 2.5rem 0;
    border-radius: 1.5rem;
  }

  .highlight-img img {
    height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .features-img img {
    height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .why-video iframe {
    height: 260px;
    width: 100%;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1.4rem;
  }

  .benefits-list {
    padding: 2rem 1.5rem;
    min-width: 260px;
    max-width: 400px;
  }

  .eligibility-content {
    padding: 2rem 1.5rem;
    min-width: 280px;
    max-width: 600px;
  }

  .hero-section {
    margin: 8rem 3rem 1rem 3rem;
    height: 350px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .overview-section,
  .students-section {
    padding: 2rem 0;
  }

  .overview-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .overview-card {
    padding: 1.5rem;
  }

  .students-slider {
    gap: 1.2rem;
  }

  .student-card {
    min-width: 140px;
    max-width: 160px;
    padding: 1rem 0.8rem;
  }

  .student-card img {
    width: 80px;
    height: 80px;
  }

  .testimonial-section {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-company {
    grid-column: 1 / -1;
  }
  .footer-links h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 860px) {
  .header {
    padding: 1rem 0.9rem;
  }
  .header .logo {
    height: 40px;
    width: 80px;
  }
  .nav-menu {
    gap: 1.5rem;
  }
  .nav-menu a {
    font-size: 0.89rem;
  }
  .header .button {
    font-size: 0.8rem;
  }
  .nav-menu .dropdown .link {
    font-size: 0.9rem;
  }
  .nav-menu .dropdown .link i {
    font-size: 0.95rem;
  }
  .hero-section {
    margin: 8rem 1.5rem 1rem 1.5rem;
    height: 300px;
    border-width: 6px;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .students-slider {
    gap: 1.2rem;
  }
  .student-card {
    min-width: 140px;
    max-width: 150px;
    padding: 0.8rem 0.5rem 0.7rem 0.5rem;
  }
  .student-card img {
    width: 70px;
    height: 70px;
  }
  .students-header h2 {
    font-size: 1.3rem;
  }

  .overview-section,
  .students-section,
  .features-section,
  .benefits-section,
  .eligibility-section,
  .testimonial-section {
    border-radius: 1.2rem;
  }
  .modern-footer {
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 2rem 0;
    border-radius: 1.2rem;
  }

  .highlight-flex,
  .features-flex,
  .why-flex {
    gap: 1.5rem;
  }

  .benefits-flex {
    gap: 1.5rem;
  }

  .highlight-img img {
    height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .features-img img {
    height: 320px;
    width: 100%;
    object-fit: cover;
  }

  .why-video iframe {
    height: 240px;
    width: 100%;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1.3rem;
  }

  .highlight-content p,
  .features-content ul li,
  .why-content ul li,
  .benefits-list ul li,
  .eligibility-content ul li {
    font-size: 0.85rem;
  }

  .highlight-content p {
    font-size: 0.8rem;
  }

  .benefits-list {
    padding: 1.8rem 1.2rem;
    min-width: 240px;
    max-width: 350px;
  }

  .eligibility-content {
    padding: 1.8rem 1.2rem;
    min-width: 260px;
    max-width: 500px;
  }

  .hero-section {
    margin: 8rem 1.5rem 1rem 1.5rem;
    height: 300px;
    border-width: 6px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .overview-section,
  .students-section {
    padding: 1.5rem 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .overview-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }

  .overview-card {
    padding: 1.2rem;
  }

  .overview-card i {
    font-size: 1.5rem;
  }

  .overview-card h3 {
    font-size: 0.9rem;
  }

  .students-header h2 {
    font-size: 1.5rem;
  }

  .students-subtitle {
    font-size: 0.8rem;
  }

  .students-slider {
    gap: 1rem;
  }

  .student-card {
    min-width: 120px;
    max-width: 140px;
    padding: 0.8rem 0.5rem;
  }

  .student-card img {
    width: 60px;
    height: 60px;
  }

  .student-name {
    font-size: 0.9rem;
  }

  .testimonial-section {
    padding: 2rem 0 1rem 0;
  }

  .testimonial-slider {
    max-width: 95vw;
  }

  .testimonial-item {
    font-size: 0.95rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.8rem;
  }
  /* .hero-section {
    margin-top: 7rem;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    height: 220px;
    border-radius: 16px;
    border-width: 4px;
  } */
  /* .hero-content {
    padding: 0 2rem;
  } */
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .testimonial-section {
    padding: 2.5rem 0 1.5rem 0;
  }
  .testimonial-slider {
    max-width: 98vw;
  }
  .testimonial-item {
    font-size: 0.98rem;
    padding: 1.2rem 0.7rem 1.1rem 0.7rem;
  }
  .testimonial-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .header {
    padding: 1rem 2rem;
  }
  .nav-menu {
    display: none;
  }
  .button {
    display: none;
  }
  .header .logo {
    height: 50px;
    width: 100px;
  }
  .header .bars {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
  }
  .header .bars:hover {
    color: #2196f3;
  }
  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 1.5rem 0;
    border-radius: 1rem;
  }

  .highlight-flex,
  .features-flex,
  .why-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .benefits-flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight-img,
  .features-img,
  .why-video {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-video {
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .features-img img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .why-video iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  .highlight-content,
  .features-content,
  .why-content {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  .highlight-content h3::after,
  .features-content h3::after,
  .why-content h3::after,
  .benefits-list h3::after,
  .eligibility-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .benefits-list {
    padding: 1.5rem 1rem;
    /* padding-bottom: 4.5rem; */
    min-width: 220px;
    max-width: 100%;
    text-align: center;
  }

  .bl1 {
    padding-bottom: 4rem;
  }

  .eligibility-content {
    padding: 1.5rem 1rem;
    min-width: 240px;
    max-width: 100%;
    text-align: center;
  }

  .eligibility-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .eligibility-content h4 {
    text-align: center;
  }

  .eligibility-content h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .features-content ul li,
  .why-content ul li {
    text-align: left;
    padding-left: 2.5rem;
  }

  .features-content ul li::before,
  .why-content ul li::before {
    left: 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .overview-section,
  .students-section {
    padding: 1.2rem 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .overview-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .overview-card {
    padding: 1rem;
    text-align: center;
  }

  .overview-card i {
    font-size: 1.3rem;
  }

  .overview-card h3 {
    font-size: 0.85rem;
  }

  .overview-card p {
    font-size: 0.75rem;
  }

  .students-header h2 {
    font-size: 1.3rem;
  }

  .students-subtitle {
    font-size: 0.8rem;
  }

  .students-slider {
    gap: 1rem;
  }

  .ytvid {
    display: block;
  }

  .student-card {
    min-width: 100px;
    max-width: 120px;
    padding: 0.5rem 0.2rem;
  }

  .student-card img {
    width: 50px;
    height: 50px;
  }

  .student-name {
    font-size: 0.8rem;
  }

  .testimonial-section {
    padding: 1.5rem 0 1rem 0;
  }

  .testimonial-slider {
    max-width: 95vw;
  }

  .testimonial-item {
    font-size: 0.9rem;
    padding: 1.2rem 0.8rem;
  }

  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 0.6rem;
  }

  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 1rem 0;
    border-radius: 0.8rem;
  }

  .highlight-flex,
  .features-flex,
  .why-flex {
    gap: 1rem;
  }

  .benefits-flex {
    gap: 1rem;
  }

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

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

  .why-video iframe {
    height: 180px;
    width: 100%;
    border-radius: 10px;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1.1rem;
  }

  .highlight-content p,
  .features-content ul li,
  .why-content ul li,
  .benefits-list ul li,
  .eligibility-content ul li {
    font-size: 0.95rem;
  }

  /* .benefits-list {
    padding: 1.2rem 0.8rem;
    min-width: 200px;
  } */

  .benefits-list {
    padding: 1.5rem 1rem;
    max-width: 100%;
    text-align: center;
  }

  .bl1 {
    padding-bottom: 4rem;
  }

  .eligibility-content {
    padding: 1.2rem 0.8rem;
    min-width: 220px;
  }

  .features-content ul li,
  .why-content ul li,
  .benefits-list ul li,
  .eligibility-content ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    margin-bottom: 0.4rem;
  }

  .features-content ul li::before,
  .why-content ul li::before,
  .benefits-list ul li::before,
  .eligibility-content ul li::before {
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    left: 0.8rem;
  }

  .students-section {
    padding: 1.5rem 0 1rem 0;
  }
  .students-slider {
    gap: 0.7rem;
  }
  .student-card {
    min-width: 110px;
    max-width: 120px;
    padding: 0.5rem 0.2rem 0.5rem 0.2rem;
  }
  .student-card img {
    width: 48px;
    height: 48px;
  }
  .student-name {
    font-size: 0.85rem;
  }
  .overview-section,
  .students-section,
  .features-section,
  .benefits-section,
  .eligibility-section,
  .testimonial-section {
    border-radius: 0.7rem;
  }
  .modern-footer {
    border-radius: 0.7rem 0.7rem 0 0;
  }

  .header {
    padding: 1rem 1.8rem;
  }
  .hero-content {
    padding: 0 0.5rem;
  }
  .hero-content h1 {
    font-size: 1rem;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .overview-section,
  .students-section {
    padding: 1rem 0;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 0.8rem;
  }

  .overview-cards {
    gap: 0.8rem;
  }

  .overview-text p {
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
  }

  .overview-card {
    padding: 0.8rem;
  }

  .overview-card i {
    font-size: 1.1rem;
  }

  .overview-card h3 {
    font-size: 0.8rem;
  }

  .overview-card p {
    font-size: 0.75rem;
  }

  .students-header h2 {
    font-size: 1.1rem;
  }

  .students-subtitle {
    font-size: 0.8rem;
  }

  .students-slider {
    gap: 0.6rem;
  }

  .student-card {
    min-width: 80px;
    max-width: 100px;
    padding: 0.5rem 0.2rem;
  }

  .student-card img {
    width: 40px;
    height: 40px;
  }

  .student-name {
    font-size: 0.7rem;
  }

  .testimonial-section {
    padding: 1rem 0 0.8rem 0;
  }

  .testimonial-item {
    font-size: 0.85rem;
    padding: 1rem 0.6rem;
  }

  .testimonial-btn {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

@media (max-width: 460px) {
  .container {
    padding: 0 0.4rem;
  }
  .hero-content h1 {
    font-size: 0.8rem;
  }
  .hero-subtitle {
    font-size: 0.7rem;
  }

  .highlight-section,
  .features-section,
  .why-section,
  .benefits-section,
  .eligibility-section {
    padding: 0.8rem 0;
    border-radius: 0.6rem;
  }

  .highlight-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .features-img img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .why-video iframe {
    height: 250px;
    width: 100%;
    border-radius: 8px;
  }

  .highlight-content h3,
  .features-content h3,
  .why-content h3,
  .benefits-list h3,
  .eligibility-content h3 {
    font-size: 1rem;
  }

  .highlight-content p,
  .features-content ul li,
  .why-content ul li,
  .benefits-list ul li,
  .eligibility-content ul li {
    font-size: 0.9rem;
  }

  /* .benefits-list {
    padding: 1rem 0.6rem;
    min-width: 180px;
  } */

  .bl1 {
    padding-bottom: 5.5rem;
  }

  .eligibility-content {
    padding: 1rem 0.6rem;
    min-width: 200px;
  }

  .overview-text p {
    font-size: 0.85rem;
    margin: 0;
  }

  .hero-content h1 {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
  }

  .overview-section,
  .students-section {
    padding: 0.8rem 0;
  }

  .section-header h2 {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .overview-cards {
    gap: 0.5rem;
  }

  .overview-card {
    padding: 0.6rem;
  }

  .overview-card i {
    font-size: 2rem;
  }

  .overview-card h3 {
    font-size: 0.85rem;
  }

  .overview-card p {
    font-size: 0.75rem;
  }

  .students-header h2 {
    font-size: 1rem;
  }

  .students-subtitle {
    font-size: 0.75rem;
  }

  .students-slider {
    gap: 0.5rem;
  }

  .student-card {
    min-width: 70px;
    max-width: 90px;
    padding: 0.4rem 0.1rem;
  }

  .student-card img {
    width: 35px;
    height: 35px;
  }

  .student-name {
    font-size: 0.65rem;
  }

  .testimonial-section {
    padding: 0.8rem 0 0.6rem 0;
  }

  .testimonial-item {
    font-size: 0.8rem;
    padding: 0.8rem 0.5rem;
  }

  .testimonial-btn {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}
