/* --- Variables & Modern Theme --- */
:root {
  --primary: #0d6efd;
  --accent: #0bb3d9;
  --primary-dark: #0a58ca;
  --gradient-primary: linear-gradient(120deg, var(--primary), var(--accent));
  --gradient-hover: linear-gradient(120deg, #0a58ca, #099ec2);
  --gradient-soft: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);

  --bg-body: #ffffff;
  --bg-card: #ffffff;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(13, 110, 253, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 20px 40px rgba(13, 110, 253, 0.12);

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  --font-main: 'Poppins', sans-serif;
}

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Bootstrap Reset/Override */
button:focus,
input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: var(--primary) !important;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--gradient-primary) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
}

.btn-primary:hover {
  background: var(--gradient-hover) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.35);
}

.btn-outline {
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.8rem;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* --- Navigation (Bootstrap Override) --- */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted) !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
  font-weight: 600;
}

/* --- Hero Section --- */
.hero {
  padding: 6rem 0;
  background: var(--gradient-primary);
  color: white;
  /* Force white text on gradient */
  position: relative;
  overflow: hidden;
}

/* Override hero text colors for specifically this section */
.hero h1,
.hero p,
.hero .stat-number,
.hero .stat-label {
  color: white !important;
}

.hero-tagline {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
}

.hero-highlight-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero .btn-outline {
  border-color: white !important;
  color: white !important;
}

.hero .btn-outline:hover {
  background: white !important;
  color: var(--primary) !important;
}

.hero .highlight {
  -webkit-text-fill-color: white !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* Hero Card (Floating) */
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  /* Reset color for card */
}

/* --- Sections --- */
.section-muted {
  background-color: #f8fafc;
}

/* --- Swiper --- */
.swiper {
  width: 100%;
  padding-bottom: 3rem !important;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

.college-card-slide {
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.college-card-slide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

/* --- FAQ Accordion (Bootstrap) --- */
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: #e0f2fe;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
}

/* --- Other Custom Classes reused --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: #e2e8f0;
}

.updates-section {
  margin-top: 2rem;
}

.update-container {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.update-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary);
}

.wcu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.wcu-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fff1f2;
  color: #e11d48;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.image-stack {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.img-1 {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.img-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
  z-index: 2;
}

.achievements-section {
  background: #0f172a;
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.a-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.a-label {
  color: #94a3b8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  position: relative;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  color: white;
}

.footer-social a:hover {
  background: var(--gradient-primary);
}

/* Mobile Sidebar Fix */
.offcanvas {
  max-width: 80%;
}

/* --- Redesigned Course Card --- */
.course-card {
  background: #ffffff;
  border: 1px solid #eaeff5;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.course-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.course-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #e0f2f1;
  /* Light Teal/Mint */
  color: #00897b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.course-duration {
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.course-eligibility {
  margin-bottom: 1rem;
}

.badge-eligibility {
  display: inline-block;
  background-color: #e0f2f1;
  color: #00695c;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.course-description {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.course-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  display: block;
}

.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag-highlight {
  background-color: #f1f5f9;
  color: #475569;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
}

.tag-career {
  background-color: #e0fbf9;
  color: #0d9488;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
}

.course-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.75rem;
}

.btn-card-primary {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  text-align: center;
}

.btn-card-primary:hover {
  background-color: #1d4ed8;
  color: white;
  transform: translateY(-2px);
}

.btn-card-outline {
  background-color: transparent;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-align: center;
}

.btn-card-outline:hover {
  background-color: #eff6ff;
  color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
}

/* --- Header Customization --- */
.navbar-brand-text {
  line-height: 1;
}

.navbar-brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.navbar-brand-subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155 !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

/* --- Redesigned Hero Section --- */
.hero-new {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  /* Royal Blue to Cyan */
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  color: white;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
}

.hero-new::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  clip-path: ellipse(60% 70% at 50% 100%);
}

.hero-title-large {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-highlight-text {
  background: linear-gradient(to right, #67e8f9, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-search-wrapper {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  display: flex;
  gap: 0.5rem;
}

.hero-search-input {
  background: transparent;
  border: none;
  color: white;
  padding-left: 1rem;
  font-size: 1rem;
  flex-grow: 1;
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search-input:focus {
  background: transparent;
  box-shadow: none;
  color: white;
  outline: none;
}

.btn-hero-search {
  background: #0ea5e9;
  /* Sky Blue */
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s;
}

.btn-hero-search:hover {
  background: #0284c7;
  color: white;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-hero-fill {
  background: #2dd4bf;
  /* Teal */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
}

.btn-hero-fill:hover {
  background: #14b8a6;
  color: white;
}

.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  width: 180px;
  color: white;
  transition: transform 0.3s;
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon-large {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #67e8f9;
  /* Cyan */
  opacity: 0.8;
}

.stat-value-large {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-small {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* --- Featured College Card --- */
.college-card-featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
}

.college-card-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.college-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.college-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.college-card-featured:hover .college-img-wrapper img {
  transform: scale(1.05);
}

.badge-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2dd4bf;
  /* Teal */
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.college-content {
  padding: 1.25rem;
}

.college-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 0.5rem;
}

.college-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.rating-badge {
  background: #fef3c7;
  /* Amber 100 */
  color: #d97706;
  /* Amber 600 */
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.course-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag-course-blue {
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.approvals-wrapper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.approval-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #64748b;
}

.approval-item i {
  color: #2dd4bf;
  /* Teal */
}

.card-actions {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.75rem;
}

.btn-card-view {
  background: #2563eb;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: center;
}

.btn-card-view:hover {
  background: #1d4ed8;
  color: white;
}

.btn-card-enquire {
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: center;
}

.btn-card-enquire:hover {
  background: #eff6ff;
}

/* --- Trusted Partner / Features Section --- */
.section-trust {
  background-color: #ffffff;
  padding: 6rem 0;
}

.badge-sub-title {
  background-color: #e0f2fe;
  /* Light Blue */
  color: #0284c7;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.trust-desc {
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card-new {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #e2e8f0;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  background-color: #2563eb;
  /* Brand Blue */
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* New Stats Banner within Trusted Section */
.stats-banner-new {
  background-color: #f0f9ff;
  border-radius: 20px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  border: 1px solid #e0f2fe;
}

.stat-item-new {
  flex: 1;
  min-width: 150px;
  position: relative;
}

.stat-item-new:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #cbd5e1;
  display: none;
  /* Hidden on mobile, shown on lg */
}

@media (min-width: 992px) {
  .stat-item-new:not(:last-child)::after {
    display: block;
  }
}

.stat-val-new {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0284c7;
  /* Sky 600 */
  margin-bottom: 0.25rem;
}

.stat-lbl-new {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* --- Reviews Section (Blue Theme) --- */
.section-reviews-blue {
  background-color: #1e40af;
  /* Dark Blue */
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  padding: 6rem 0 8rem;
  color: white;
  position: relative;
}

.badge-review-title {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.review-title-large {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.review-desc-white {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Review Card Styling */
.review-card-new {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.quote-icon-large {
  font-size: 3rem;
  color: #e2e8f0;
  line-height: 1;
  margin-bottom: 1rem;
}

.review-stars {
  color: #f59e0b;
  /* Amber 500 */
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.review-text-new {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: normal;
  flex-grow: 1;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f5f9;
}

.reviewer-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--text-main);
}

.reviewer-info span {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
}

.reviewer-info .college-link {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.75rem;
}

/* Stats Banner Blue */
.stats-banner-blue {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 4rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item-blue {
  text-align: center;
  color: white;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.stat-item-blue:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: none;
}

@media (min-width: 992px) {
  .stat-item-blue:not(:last-child)::after {
    display: block;
  }
}

.stat-val-blue {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-lbl-blue {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
}

/* --- Blog Section Redesign --- */
.section-blog-new {
  padding: 6rem 0;
  background: #f8fafc;
}

.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card-new {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-new:hover .blog-img-box img {
  transform: scale(1.05);
}

.badge-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2563eb;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
}

.blog-content-new {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.blog-meta i {
  margin-right: 0.25rem;
}

.blog-title-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt-new {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* --- Enquiry / Contact Form Section --- */
.section-enquiry {
  background-color: #f8fafc;
  padding: 5rem 0;
}

.enquiry-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.badge-enquiry {
  background-color: #dbeafe;
  color: #2563eb;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.contact-method-box {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-method-box:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon-small {
  width: 40px;
  height: 40px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-details h6 {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-details span {
  font-size: 0.85rem;
  color: #64748b;
}

.enquiry-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.enquiry-feature-list li {
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.enquiry-feature-list li i {
  color: #10b981;
  /* Emerald 500 */
}

/* Form Card */
.enquiry-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.5rem;
}

.form-control-custom,
.form-select-custom {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.2s;
}

.form-control-custom:focus,
.form-select-custom:focus {
  background-color: white;
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* --- Hero Modern (Split Layout) --- */
.hero-modern {
  padding: 6rem 0 4rem;
  /* Retain existing background or ensure a light gradient exists on the parent if needed. 
     The user said 'don't remove background color', assuming .hero-new styles or body has it.
     We will force the light blue gradient here just in case, similar to the screenshot. */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

.hero-modern .badge-hero {
  background-color: #e0f2fe;
  /* Light blue pill */
  color: #0284c7;
  /* Darker blue text */
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-modern-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  /* Dark slate */
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text-highlight {
  color: #0ea5e9;
  /* Cyan/Light Blue */
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.hero-modern-desc {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-modern-fill {
  background-color: #007bff;
  /* Bright Blue */
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-modern-fill:hover {
  background-color: #0056b3;
  color: white;
  transform: translateY(-2px);
}

.btn-hero-modern-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #007bff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-modern-outline:hover {
  background-color: #eff6ff;
  color: #0056b3;
}

/* Floating Card on Right */
.hero-floating-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  margin-left: auto;
  position: relative;
  z-index: 10;
}

.hero-card-badge {
  background-color: #007bff;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.hero-card-brand-text {
  font-weight: 700;
  color: #007bff;
  font-size: 0.95rem;
  vertical-align: middle;
}

.hero-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: #334155;
}

.hero-checklist i {
  color: #007bff;
  /* Checkmark Color */
  margin-top: 3px;
}

.hero-trusted-text {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-modern-title {
    font-size: 2.5rem;
  }

  .hero-floating-card {
    margin: 3rem auto 0;
  }
}

.btn-enquiry-submit {
  background: #2563eb;
  color: white;
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-enquiry-submit:hover {
  background: #1d4ed8;
}

/* --- New Footer Redesign --- */
.footer-cta-strip {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  padding: 4rem 1rem;
  text-align: center;
  color: white;
}

.footer-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.footer-cta-sub {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn-cta-white {
  background: white;
  color: #2563eb;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  color: #2563eb;
}

.btn-cta-outline-white {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.btn-cta-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.footer-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  opacity: 0.9;
  flex-wrap: wrap;
}

.footer-highlights span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-highlights i {
  color: #67e8f9;
  /* Cyan 300 */
}

/* Main Footer */
.footer-new {
  background-color: #0f172a;
  /* Slate 900 */
  color: #94a3b8;
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-brand h2 {
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  max-width: 300px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.footer-contact-item i {
  color: #0ea5e9;
}

.footer-col-title {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.social-icons-footer {
  display: flex;
  gap: 0.75rem;
}

.social-icon-circle {
  width: 36px;
  height: 36px;
  background: #1e293b;
  color: #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.social-icon-circle:hover {
  background: #2563eb;
  color: white;
}

/* --- Horizontal Filter Section --- */
.section-filter-bar {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  /* position: sticky; */
  top: 70px;
  /* Adjust based on header height */
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.filter-bar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.filter-select {
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  min-width: 180px;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-select:focus {
  border-color: #2563eb;
  background-color: white;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-search-input {
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  min-width: 250px;
  color: #334155;
}

.btn-filter-apply {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-filter-apply:hover {
  background-color: #1d4ed8;
}

/* --- New College Card (Screenshot Match) --- */
.college-card-v2 {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.college-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cc-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.cc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-badge-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #2dd4bf;
  /* Teal 400 */
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.cc-location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1rem 0.75rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.cc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
}

.cc-rating {
  background: #fef3c7;
  color: #d97706;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cc-tag {
  background-color: #eff6ff;
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.cc-approvals {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.cc-approvals i {
  color: #10b981;
  /* Green */
  margin-right: 0.25rem;
}

.cc-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-cc-view {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 0.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid #2563eb;
  transition: all 0.2s;
}

.btn-cc-view:hover {
  background-color: #1d4ed8;
  color: white;
}

.btn-cc-enquire {
  background-color: white;
  color: #2563eb;
  text-align: center;
  padding: 0.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid #2563eb;
  transition: all 0.2s;
}

.btn-cc-enquire:hover {
  background-color: #eff6ff;
}

/* --- Detailed College Redesign (Screenshot Match) --- */

/* Hero Banner Style */
.college-hero-header {
  position: relative;
  background-color: #fff;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.college-banner {
  height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('../images/college-banner.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.college-header-content {
  margin-top: -220px;
  position: relative;
  z-index: 2;
  padding-left: 1rem;
}

.college-logo-box {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.college-logo-box img {
  max-width: 100%;
  max-height: 100%;
}

.college-badges .badge {
  font-weight: 500;
  padding: 0.5em 0.8em;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge-inc {
  background-color: #e0e7ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
}

.badge-state {
  background-color: #d1fae5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* Mission & Vision Boxes */
.mission-box,
.vision-box {
  padding: 1.5rem;
  border-radius: 12px;
  height: 100%;
}

.mission-box {
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
}

.vision-box {
  background-color: #ecfdf5;
  border: 1px solid #d1fae5;
}

.mv-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-box .mv-title {
  color: #1d4ed8;
}

.vision-box .mv-title {
  color: #059669;
}

/* Quick Facts Icons */
.fact-card {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  height: 100%;
}

.fact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.fact-icon.blue {
  background: #eff6ff;
  color: #2563eb;
}

.fact-icon.green {
  background: #ecfdf5;
  color: #10b981;
}

.fact-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.fact-icon.yellow {
  background: #fffbeb;
  color: #f59e0b;
}

.fact-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
}

.fact-label {
  font-size: 0.8rem;
  color: #64748b;
}

/* Detailed Course Card */
.course-card-detailed {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.2s;
}

.course-card-detailed:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.course-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.course-name-det {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0px;
  color: #0f172a;
}

.course-meta-det {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Facility Box */
.facility-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: 0.2s;
}

.facility-box:hover {
  background: #f1f5f9;
}

.facility-icon {
  width: 45px;
  height: 45px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.1rem;
}

.facility-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

/* Stepper */
.stepper-wrapper {
  position: relative;
  padding-left: 20px;
}

.step-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1.5rem;
  width: 2px;
  background: #e2e8f0;
}

.step-item:last-child::before {
  display: none;
}

.step-circle {
  position: absolute;
  left: -14px;
  top: 0;
  width: 30px;
  height: 30px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 1;
}

/* Placement Stats */
.placement-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.place-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

.place-stat-lbl {
  font-size: 0.85rem;
  color: #64748b;
}

/* Sidebar Widgets */
.sidebar-widget {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.interested-widget {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border: none;
}

.interested-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #1e3a8a;
}

.btn-sidebar-primary {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 0.75rem;
  border: none;
}

.btn-sidebar-primary:hover {
  color: white;
  background: #1d4ed8;
}

.btn-sidebar-outline {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: white;
  color: #2563eb;
  border: 1px solid #2563eb;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 0.75rem;
}

.btn-sidebar-green {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #10b981;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  border: none;
}

.info-list-item {
  display: flex;
  margin-bottom: 1rem;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #64748b;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-content small {
  display: block;
  color: #64748b;
  font-size: 0.75rem;
}

.info-content strong {
  display: block;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Sticky Bottom Bar */
.sticky-enquiry-bar {
  /* position: fixed; */
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem 0;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1040;
}

.sticky-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* --- Additional Sections (Placement & Contact Main) --- */

/* Placement Section */
.placement-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.placement-stat-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.place-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.place-icon-circle.green {
  background: #d1fae5;
  color: #10b981;
}

.place-icon-circle.blue {
  background: #dbeafe;
  color: #2563eb;
}

.place-icon-circle.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.recruiters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.recruiter-badge {
  background: #0f766e;
  /* Teal-700 style from screenshot */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact Information (Main Body) */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  /* Adjust for map */
  gap: 1.5rem;
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-box .icon {
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder {
  background: #f1f5f9;
  border-radius: 16px;
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  border: 2px dashed #cbd5e1;
}

@media (max-width: 768px) {
  .placement-stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  /* College Detail Mobile Fixes */
  .college-banner {
    height: 500px;
  }

  .college-header-content {
    margin-top: -325px;
    padding-left: 0;
    text-align: center;
  }

  .college-header-content .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .college-logo-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
  }

  .college-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .college-badges .badge {
    margin-right: 0;
  }

  .college-header-content h1 {
    font-size: 1.75rem;
    /* Smaller font on mobile */
  }
}


/* --- Services Page Redesign (Screenshot Match) --- */

/* Services Hero Blue */
.services-hero-blue {
  background-color: #1e5faf;
  /* Approximate blue from screenshot */
  background: linear-gradient(180deg, #1d4ed8 0%, #2563eb 100%);
  padding: 6rem 0;
  text-align: center;
  color: white;
}

.badge-services-hero {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.services-hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Card Clean */
.service-card-clean {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #bfdbfe;
}

.service-icon-box-blue {
  width: 50px;
  height: 50px;
  background-color: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-title-clean {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.service-desc-clean {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-link-clean {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.service-link-clean:hover {
  gap: 0.75rem;
}

/* Bottom CTA Simple */
.cta-simple-section {
  padding: 5rem 0;
  text-align: center;
  background-color: #f8fafc;
}

.cta-title-simple {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta-desc-simple {
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Guidance Timeline Process (Screenshot Match) --- */

.timeline-process-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Vertical Line */
.timeline-process-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  /* Adjust based on circle size */
  width: 2px;
  background-color: #e2e8f0;
  z-index: 1;
}

.timeline-step {
  display: flex;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Icons Colors */
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-right: 2rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 4px solid #fff;
}

.step-circle .step-number-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: #0ea5e9;
  /* Light blue badge */
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Specific Step Colors */
.step-circle.blue {
  background-color: #2563eb;
}

.step-circle.indigo {
  background-color: #4f46e5;
}

.step-circle.cyan {
  background-color: #06b6d4;
}

.step-circle.sky {
  background-color: #0ea5e9;
}

.step-circle.green {
  background-color: #10b981;
}

.step-circle.teal {
  background-color: #14b8a6;
}

.timeline-content {
  flex-grow: 1;
  padding-top: 0.25rem;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Bottom CTA Blue */
.cta-blue-full {
  background-color: #2563eb;
  /* Royal Blue */
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.cta-blue-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-blue-desc {
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* --- Blog Page Redesign (Screenshot Match) --- */

/* Blog Hero Blue */
.blog-hero-blue {
  background: linear-gradient(180deg, #1d4ed8 0%, #2563eb 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  color: white;
}

.blog-search-container {
  max-width: 600px;
  margin: 2rem auto 0;
  position: relative;
}

.blog-search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-left: 3rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

/* Category Filters */
.blog-filters-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 1rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-filter-btn {
  background: white;
  border: 1px solid #2563eb;
  color: #2563eb;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
  background: #2563eb;
  color: white;
}

/* Featured Article Card */
.featured-article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
}

.featured-img-col {
  width: 50%;
  position: relative;
}

.featured-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.featured-content-col {
  width: 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-badge {
  background-color: #10b981;
  /* Green badge */
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.featured-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.meta-info {
  font-size: 0.85rem;
  color: #94a3b8;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

/* Featured Badge Over Image option if needed, but screenshot shows text side */
.badge-overlay {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #0ea5e9;
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Latest Articles Grid */
.article-card-std {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.article-card-std:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.article-img-std {
  /* height: 200px; */
  width: 100%;
  object-fit: cover;
  position: relative;
}

.article-badge-abs {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #2563eb;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.article-body-std {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-title-std {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-desc-std {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-meta-std {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
}

@media (max-width: 991px) {
  .featured-article-card {
    flex-direction: column;
  }

  .featured-img-col,
  .featured-content-col {
    width: 100%;
  }

  .featured-img-col img {
    min-height: 250px;
  }

  .featured-content-col {
    padding: 2rem;
  }
}


/* --- News & Events Page (Screenshot Match) --- */

/* Event Card Wide */
.event-card-wide {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  display: flex;
  padding: 1.5rem;
  gap: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  align-items: flex-start;
}

.event-card-wide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #bfdbfe;
}

.event-date-badge {
  background: #eff6ff;
  color: #2563eb;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
}

.event-date-day {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.event-date-month {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.event-content {
  flex-grow: 1;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.event-desc {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.event-meta-row {
  display: flex;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.event-btn {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}

.event-btn:hover {
  background-color: #1d4ed8;
  color: white;
}

@media (max-width: 768px) {
  .event-card-wide {
    flex-direction: column;
  }

  .event-date-badge {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: baseline;
    padding: 0.75rem;
  }

  .event-date-day {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}


/* --- Modern Sticky Header & Navigation --- */

/* Fixed Navbar base */
.navbar {
  transition: all 0.3s ease-in-out;
  padding: 1rem 0;
  /* Larger padding initially */
  background: white;
  /* Initial background */
  z-index: 1030;
}

/* Scrolled State (Sticky) */
.navbar.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 0;
  /* Smaller padding on scroll */
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border-bottom: none !important;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Navbar Brand & Logo */
.navbar-brand-title {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #0f172a;
}

.navbar-brand-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0.5px;
}

.navbar-brand:hover .navbar-brand-title {
  color: var(--primary);
  transition: color 0.3s;
}

/* Nav Links Modern */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #334155 !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

/* Underline effect for Desktop */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 80%;
  }
}

/* Mobile Offcanvas Premium */
.offcanvas {
  border-radius: 20px 0 0 20px;
  border: none;
}

.offcanvas-header {
  border-bottom: 1px solid #f1f5f9;
}

.offcanvas-body {
  padding: 2rem;
}

/* Mobile Nav Items */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0 !important;
    border-bottom: 1px dashed #e2e8f0;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* --- Custom Pagination --- */
.custom-pagination {
  margin-top: 3rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.custom-pagination .page-item .page-link {
  border: none;
  border-radius: 8px;
  /* Slightly rounded squares/rectangles */
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
  background-color: transparent;
  width: auto;
  min-width: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-pagination .page-item .page-link:hover {
  background-color: #f1f5f9;
  color: var(--primary);
  transform: translateY(-2px);
}

.custom-pagination .page-item.active .page-link {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.custom-pagination .page-item.disabled .page-link {
  color: #cbd5e1;
  background-color: transparent;
  cursor: not-allowed;
}

/* Mobile Responsiveness for Pagination */
@media (max-width: 576px) {
  .custom-pagination .page-item .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    min-width: 36px;
  }
}

/* --- Responsive Hero Background --- */
.hero-modern-bg {
  background: linear-gradient(to right, rgb(0 0 0 / 68%), rgba(0, 0, 0, 0)), url('../img/8906.jpg') no-repeat center center/cover;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .hero-modern-bg {
    background: linear-gradient(to right, rgb(0 0 0 / 68%), rgba(0, 0, 0, 0)), url('../img/hero-mob.jpeg') no-repeat center center/cover;
  }
}