/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f9fafb;
  line-height: 1.6;
  color: #374151;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Utility Classes */
.gradient-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stats-counter {
  font-feature-settings: "tnum";
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #1e3a8a;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1e3a8a;
}

.enroll-btn {
  background-color: #1e3a8a;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.enroll-btn:hover {
  background-color: #1e40af;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 4rem 0 6rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 0 2rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(30, 58, 138, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.rating-badge i {
  color: #fbbf24;
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  display: block;
  color: #9bb4d3;
  font-size: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    text-align: left;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #bfdbfe;
  line-height: 1.6;
  max-width: 42rem;
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-description {
    text-align: left;
  }
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .stats-grid {
    justify-content: flex-start;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  color: #bfdbfe;
  font-size: 0.875rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .cta-buttons {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.btn-primary {
  background-color: white;
  color: #1e3a8a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-primary i {
  margin-right: 0.5rem;
}

.btn-secondary {
  border: 2px solid white;
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a8a;
}

.btn-secondary i {
  margin-right: 0.5rem;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .quick-info {
    justify-content: flex-start;
  }
}

.info-item {
  display: flex;
  align-items: center;
}

.info-item i {
  color: #bfdbfe;
  margin-right: 0.5rem;
}

.hero-image {
  flex: 1;
}

.image-container {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container img {
  border-radius: 0.75rem;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: #fbbf24;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge i {
  margin-right: 0.25rem;
}

/* Course Overview */
.overview {
  padding: 4rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.learning-outcomes {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .learning-outcomes {
    grid-template-columns: 1fr 1fr;
  }
}

.outcomes-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.outcome-icon {
  width: 2rem;
  height: 2rem;
  background-color: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.outcome-icon i {
  color: #1e3a8a;
}

/* Skills and Certification Sections */
.container-24 {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skills-section {
  margin-bottom: 80px;
}

.skills-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.skill-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  color: #555;
}

.skill-item::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 12px;
  font-size: 16px;
}

.certification-section {
  margin-bottom: 80px;
}

.cert-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
}

.cert-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.certificate-display {
  flex: 0 0 500px;
  position: relative;
}

.certificate-display img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.certificate-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.cert-number {
  background: #2a5298;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  position: absolute;
  top: 10px;
  right: 20px;
}

.logo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.startup-logo {
  color: #4caf50;
  font-size: 14px;
  font-weight: bold;
}

.startup-logo::before {
  content: "🌱";
  margin-right: 5px;
}

.ime-logo {
  text-align: center;
  flex: 1;
}

.ime-text {
  color: #2a5298;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.ime-subtitle {
  color: #666;
  font-size: 10px;
  margin-top: -5px;
}

.ship-icon {
  color: #2a5298;
  font-size: 20px;
}

.made-in-india {
  color: #333;
  font-size: 12px;
  font-weight: bold;
}

.certificate-title {
  color: #daa520;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
  margin: 30px 0 10px 0;
  text-transform: uppercase;
}

.of-completion {
  color: #daa520;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.awarded-text {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.recipient-name {
  font-size: 32px;
  font-weight: bold;
  color: #999;
  margin: 20px 0;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.cert-divider {
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, #daa520, transparent);
  margin: 20px auto;
}

.completion-text {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}

.course-title {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

.golden-seal {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffd700, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.seal-content {
  text-align: center;
  color: #333;
}

.seal-star {
  font-size: 20px;
  margin-bottom: 5px;
}

.seal-text {
  font-size: 8px;
  font-weight: bold;
}

.cert-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signature-section {
  text-align: center;
}

.signature {
  font-family: cursive;
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.signature-line {
  width: 120px;
  height: 1px;
  background: #daa520;
  margin: 0 auto 5px;
}

.signature-text {
  font-size: 12px;
  color: #daa520;
  font-weight: 600;
}

.incubated-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.incubated-text {
  background: #2a5298;
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}

.logo-placeholder {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
}

.tides-logo {
  background: #4caf50;
  color: white;
}

.openai-logo {
  background: #00a67e;
  color: white;
}

.azure-logo {
  background: #0078d4;
  color: white;
}

.microsoft-logo {
  background: #00bcf2;
  color: white;
}

.program-details {
  flex: 1;
  min-width: 300px;
}

.program-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.program-list {
  list-style: none;
}

.program-list li {
  padding: 10px 0;
  color: #555;
  border-bottom: 1px solid #ecf0f1;
}

.program-list li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  margin-right: 10px;
}

.program-list li:last-child {
  border-bottom: none;
}

/* Curriculum Section */
.curriculum-section {
  margin-top: 60px;
}

.curriculum-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.curriculum-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.curriculum-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.curriculum-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  cursor: pointer;
  transition: background 0.3s ease;
}

.curriculum-header:hover {
  background: #e9ecef;
}

.curriculum-bullet {
  width: 12px;
  height: 12px;
  background: #2a5298;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
}

.curriculum-title-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.curriculum-toggle {
  font-size: 18px;
  color: #666;
  transition: transform 0.3s ease;
}

.curriculum-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.curriculum-content.active {
  max-height: 200px;
  padding: 20px;
}

.curriculum-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Tabs */
.program-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.tab-btn:hover {
    color: #1e3a8a;
}
.tab-btn.active {
    color: #1e3a8a;
    border-bottom-color: #1e3a8a;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* Program Structure */
.program-structure {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.program-structure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 275px));
  gap: 1.5rem;
}

.program-structure > a {
    width: 275px !important;   /* FORCE FIXED CARD WIDTH */
    min-width: 275px !important;
    max-width: 275px !important;
    flex: 0 0 275px !important;
}


/* Slider wrapper */
.course-slider {
    position: relative;
    display: flex;
    align-items: center;
}

/* Cards container */
.program-structure {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

/* Hide scrollbars (Chrome, Safari, Edge) */
.program-structure::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar (Firefox) */
.program-structure {
    scrollbar-width: none;
}

/* Card width */
.program-structure > a {
    flex: 0 0 275px;
    scroll-snap-align: start;
}

/* Arrow buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}
.slide-btn i {
    font-size: 20px;
}

/* Left button */
.slide-btn.left {
    left: -5px;
}

/* Right button */
.slide-btn.right {
    right: -5px;
}

.slide-btn:hover {
    background: #000fff;
    color: white;
}

.course-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* NEW: wrapper around scroll area */
.slider-window {
    overflow: hidden;
    width: 100%;
}

/* The actual scrolling container */
.program-structure {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    padding: 0.5rem 0;
    scrollbar-width: none;
}
.program-structure::-webkit-scrollbar { display: none; }

/* Disable behavior */
.slide-btn.disabled,
.slide-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
}


/* Prevent cards from expanding */
.program-structure > a {
    flex: 0 0 275px;
    scroll-snap-align: start;
}


.no-link-style {
  text-decoration: none;
  color: inherit;
}

.no-link-style {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .program-section {
    padding: 2rem 1rem;
  }
}



.structure-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.structure-card.blue {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border-color: #bfdbfe;
}

.structure-card.green {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-color: #bbf7d0;
}

.structure-card.purple {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border-color: #d8b4fe;
}

.structure-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.structure-card.blue .structure-icon {
  background-color: #1e3a8a;
}

.structure-card.green .structure-icon {
  background-color: #059669;
}

.structure-card.purple .structure-icon {
  background-color: #7c3aed;
}

.structure-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.8rem;
}

.structure-description {
  color: #6b7280;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.structure-features {
  list-style: none;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0;
  margin: 0;
}

.structure-features li {
  margin-bottom: 0.5rem;
}

.card-hover {
  transition: all 0.3s ease-in-out;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.structure-btn {
  width: 100%;
  background-color: #1e3a8a;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Course Curriculum */
.curriculum {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.curriculum-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .curriculum-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.curriculum-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.curriculum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.curriculum-week {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blue-week {
  background-color: #dbeafe;
  color: #1e3a8a;
}

.green-week {
  background-color: #d1fae5;
  color: #065f46;
}

.purple-week {
  background-color: #e9d5ff;
  color: #581c87;
}

.orange-week {
  background-color: #fed7aa;
  color: #9a3412;
}

.curriculum-icon {
  font-size: 1.25rem;
  color: #1e3a8a;
}

.curriculum-icon.green-icon {
  color: #065f46;
}

.curriculum-icon.purple-icon {
  color: #581c87;
}

.curriculum-icon.orange-icon {
  color: #9a3412;
}

.curriculum-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.curriculum-topics {
  list-style: none;
  font-size: 0.875rem;
  color: #6b7280;
}

.curriculum-topics li {
  margin-bottom: 0.5rem;
}

/* Meet the Faculty */
.instructors {
  padding: 4rem 0;
  background-color: white;
}

.faculty-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faculty-card {
  border-radius: 1rem;
  padding: 2rem;
}

.faculty-card.blue-card {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
}

.faculty-card.green-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.faculty-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.faculty-image {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  object-fit: cover;
}

.faculty-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.faculty-role {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.blue-role {
  color: #1e3a8a;
}

.green-role {
  color: #065f46;
}

.faculty-bio {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.faculty-social {
  display: flex;
  gap: 0.75rem;
}

.faculty-social i {
  color: #3b82f6;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faculty-social i:hover {
  color: #1d4ed8;
}

/* Student Success Stories */
.testimonials {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
}

.testimonials .section-subtitle {
  color: #bfdbfe;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.author-name {
  font-weight: 600;
}

.author-title {
  color: #bfdbfe;
  font-size: 0.875rem;
}

/* Pricing and Enrollment */
.pricing {
  padding: 4rem 0;
  background-color: white;
}

.pricing-container {
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-content {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.pricing-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.price-subtitle {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 0.5rem;
}

.pricing-btn {
  width: 100%;
  background-color: #1e3a8a;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pricing-btn:hover {
  background-color: #1e40af;
}

.pricing-info {
  font-size: 0.875rem;
  color: #787878;
}

/* Contact Section */
.contact-section {
  background: #f8f9fa;
  padding: 4rem 0;
  color: #333;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.contact-info {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-info {
    text-align: left;
  }
}

.contact-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2a5298;
}

.contact-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  color: #2a5298;
  font-size: 1.25rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}

.contact-form {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background-color: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.subject-selection {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subject-selection label {
  font-weight: 500;
  color: #374151;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn {
  background-color: #1e3a8a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #1e40af;
}

#responseMessage {
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 15px;
  display: none;
}

#responseMessage.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#responseMessage.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.btn-send.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer Styles */
.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-main {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-main {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #3b82f6;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social i {
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-social i:hover {
  color: #3b82f6;
}

.footer-links-title,
.footer-support-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links-list,
.footer-support-list {
  list-style: none;
  color: #9ca3af;
}

.footer-links-list li,
.footer-support-list li {
  margin-bottom: 0.5rem;
}

.footer-links-list a,
.footer-support-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover,
.footer-support-list a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-contact {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-contact-item i {
  margin-right: 0.5rem;
}