/* Global Styles */
:root {
  --primary: #0056b3;
  --primary-light: #4a7abc;
  --secondary: #2de0a5;
  --dark: #0d2b4e;
  --light: #e8f0f9;
  --success: #2de0a5;
  --warning: #ffd166;
  --danger: #ff6b6b;
  --red-plan: #ff8080;
  --green-plan: #18b37e;
  --blue-plan: #4285f4;
  --dark-blue-plan: #3b71ca;
  --text-color: #333;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--light);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 20px;
}

/* Scroll Progress Indicator */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 100000;
  background: transparent;
  pointer-events: none;
}

.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  width: 0%;
  transition: width 0.2s ease-out;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 86, 179, 0.7);
  }
}

/* Top Banner */
.top-banner {
  background: var(--success);
  color: var(--dark);
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.top-banner-text {
  background-color: var(--warning);
  border-radius: var(--radius);
  padding: 0 0.5rem;
  color: var(--dark);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-animation 0.8s infinite;
  margin: auto 0;
  margin-left: 1rem;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.4);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 86, 179, 0);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Header/Navigation */
header {
  background: transparent;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(235, 242, 250, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}

.logo {
  font-family: "League Spartan", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
  position: relative;
  overflow: hidden;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition);
}

.logo:hover::before {
  left: 100%;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  color: var(--primary-light);
  font-weight: 600;
}

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

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  backdrop-filter: blur(5px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  animation: slideInLeft 1s ease-out;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-image {
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--dark);
  box-shadow: var(--shadow);
  transition: var(--transition);
  white-space: nowrap;
}

.benefit-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background-color: white;
}

.cta-btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.cta-btn.primary {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
}

.cta-btn.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-btn.primary:hover {
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
}

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

/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image img {
    max-height: 450px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-image img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    min-height: auto;
    order: 2;
  }

  .hero-image {
    order: 1;
    max-height: 300px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .benefit-tags {
    margin-top: 3rem;
    justify-content: center;
    gap: 0.6rem;
  }

  .benefit-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 40px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .benefit-tags {
    margin-top: 4rem;
    gap: 0.5rem;
  }

  .benefit-tag {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  background: var(--light);
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0.8rem auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Discover Internships Section */
.discover-internships {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(13, 43, 78, 0.05),
    rgba(74, 122, 188, 0.1)
  );
}

.discover-internships .section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.discover-internships .section-subtitle {
  font-size: 1.3rem;
  color: var(--dark);
  opacity: 0.9;
}

/* Responsive adjustments for section titles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .discover-internships .section-title {
    font-size: 2.4rem;
  }

  .discover-internships .section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

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

  .discover-internships .section-title {
    font-size: 2.2rem;
  }

  .discover-internships .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Grid Layouts */
.hero-grid,
.about-grid,
.steps-container,
.testimonials-container {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.steps-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonials-container {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Components */
.step-card,
.testimonial-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--dark);
}

/* Verify Section Styles */
.verify-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(13, 43, 78, 0.05),
    rgba(74, 122, 188, 0.1)
  );
  position: relative;
  z-index: 1;
}

.verify-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.verify-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(0, 86, 179, 0.2);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--dark);
}

.verify-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.verify-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.verify-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.verify-btn:active {
  transform: translateY(-1px);
}

.verify-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  display: none;
}

.verify-message.success {
  display: block;
  background: var(--success);
  color: white;
  animation: fadeIn 0.3s ease-out;
}

.verify-message.error {
  display: block;
  background: var(--danger);
  color: white;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for verify section */
@media (max-width: 768px) {
  .verify-section {
    padding: 4rem 0;
  }

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

  .verify-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .verify-section {
    padding: 3rem 0;
  }

  .verify-input {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .verify-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Footer Styles */
footer {
  background: var(--dark);
  position: relative;
  padding: 1rem 0 1rem;
  color: white;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.footer-heading {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after {
  width: 100%;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--secondary);
  transform: translateY(-3px) rotate(360deg);
  color: var(--dark);
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
  border-radius: var(--radius);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-description:hover {
  color: rgba(255, 255, 255, 0.9);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }

  .logo-col {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    width: 140px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 2.5rem 0 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    transform: translateX(0);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-heading {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* Hall of Fame Section */
.hall-of-fame {
  background: linear-gradient(
    135deg,
    rgba(13, 43, 78, 0.05),
    rgba(74, 122, 188, 0.1)
  );
}

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

.featured-intern {
  background-color: #e6f2ff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.featured-intern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.intern-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.intern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intern-info h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.intern-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.intern-achievement {
  color: var(--dark);
  margin-bottom: 1rem;
  font-style: italic;
}

.intern-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: var(--dark);
  font-size: 0.9rem;
}

.intern-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intern-stats i {
  color: var(--primary);
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.stat-item {
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--dark);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .program-card {
    padding: 2.5rem 1.5rem;
  }

  .program-title {
    font-size: 2rem;
  }

  .program-detail {
    font-size: 1.3rem;
  }

  .program-price {
    font-size: 2.6rem;
  }

  .program-price span {
    font-size: 1.6rem;
  }

  #programs .section-title {
    font-size: 2.8rem;
  }
}

/* About Section Styles */
.about-section {
  background: linear-gradient(
    135deg,
    rgba(13, 43, 78, 0.02),
    rgba(74, 122, 188, 0.05)
  );
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-content-box {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-content-box h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.about-content-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Feature Cards Styles */
.key-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 86, 179, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 86, 179, 0.05),
    rgba(74, 122, 188, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-light);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .key-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-content-box {
    padding: 2rem;
  }

  .about-content-box h2 {
    font-size: 2rem;
  }

  .about-content-box p {
    font-size: 1rem;
  }

  .key-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* About CTA Styles */
/* CTA styles removed */

@media (max-width: 576px) {
  .about-cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-category {
  background: white;
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 86, 179, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: 0 !important;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.category-header:hover {
  background: var(--light);
}

.category-title {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.category-icon {
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.faq-category.active .category-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.category-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  background: white;
  border-radius: 0 !important;
}

.faq-category.active .category-content {
  height: auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
}

.faq-item {
  background: var(--light);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(0, 86, 179, 0.08);
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item .faq-question {
  padding: 1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-item .faq-question:hover {
  background: rgba(0, 86, 179, 0.03);
}

.faq-item.active .faq-question {
  background: rgba(0, 86, 179, 0.05);
}

.faq-question h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--primary);
  font-weight: 600;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
  padding: 0 1.2rem;
  background: white;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  height: auto;
  padding: 0 1.2rem 1rem;
}

.faq-answer p {
  margin: 0;
  padding: 1rem 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item.active .fa-chevron-down {
  transform: rotate(180deg);
  color: var(--primary);
}

.fa-chevron-down {
  transition: transform 0.3s ease;
  color: #666;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .faq-category {
    border-radius: 10px;
  }

  .category-header {
    padding: 1rem 1.2rem;
  }

  .category-title {
    font-size: 1.1rem;
  }

  .faq-container {
    padding: 0.8rem 1.2rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Custom Scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the thumb on hover */
}

/* Custom Scrollbar for Firefox */
* {
  scrollbar-width: thin; /* Options: auto | thin */
  scrollbar-color: #0047ab #f1f1f1; /* thumb color and track color */
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6); /* Color of the ripple */
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none; /* Prevent interaction with the ripple */
}

@keyframes ripple-animation {
  to {
    transform: scale(4); /* Scale the ripple */
    opacity: 0; /* Fade out the ripple */
  }
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-light);
}

.benefit-title {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Key Features in About Section */
.key-features {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
  padding: 0.8rem;
  border-radius: 50%;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
}

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

/* Discover Internships Section */
.internship-tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.track-card {
  background-color: #e6f2ff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 179, 0.1);
}

.track-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.track-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.track-icon i {
  font-size: 1.5rem;
  color: white;
}

.track-card:hover .track-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-light);
}

.track-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 0;
  font-weight: 600;
}

.track-card p {
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.track-skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.track-skills li {
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--primary);
}

.track-skills li:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .internship-tracks-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .discover-internships {
    padding: 4rem 0;
  }

  .internship-tracks-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .track-card {
    padding: 1.5rem;
  }

  .track-icon {
    width: 42px;
    height: 42px;
  }

  .track-icon i {
    font-size: 1.3rem;
  }

  .track-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .internship-tracks-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    padding: 1.25rem;
  }

  .track-skills {
    gap: 0.5rem;
  }

  .track-skills li {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background: linear-gradient(135deg, #ffffff 0%, #eceff3 100%);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid rgba(236, 239, 243, 0.5);
  }

  .nav-links.active {
    left: 0;
    animation: slideInFromLeft 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .nav-links::-webkit-scrollbar {
    width: 4px;
  }

  .nav-links::-webkit-scrollbar-track {
    background: transparent;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(236, 239, 243, 0.5);
    border-radius: 2px;
  }

  .nav-links::-webkit-scrollbar-thumb:hover {
    background: rgba(236, 239, 243, 0.8);
  }

  .nav-section {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .section-label {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(236, 239, 243, 0.3);
    border-bottom: 1px solid rgba(236, 239, 243, 0.5);
    margin: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .section-label:hover {
    background: rgba(236, 239, 243, 0.5);
    color: var(--primary);
  }

  .section-links {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: none;
  }

  .section-links li {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .section-links a {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(236, 239, 243, 0.3);
    background: transparent;
    position: relative;
  }

  .section-links a:hover {
    background: linear-gradient(
      135deg,
      rgba(236, 239, 243, 0.4) 0%,
      rgba(255, 255, 255, 0.6) 100%
    );
    color: var(--primary);
    padding-left: 2.5rem;
    transform: translateX(2px);
  }

  .section-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .section-links a:hover::before {
    transform: scaleY(1);
  }

  .section-links li:last-child a {
    border-bottom: none;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Overlay for mobile menu */
  .mobile-menu-overlay {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 998;
    backdrop-filter: blur(5px);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .benefit-tags {
    margin-top: 3rem;
    justify-content: center;
    gap: 0.6rem;
  }

  .benefit-tag {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    padding: 0.5rem 0;
  }

  .section-label {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .section-links a {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-links a:hover {
    padding-left: 2rem;
  }
}

@media (max-width: 350px) {
  .nav-links {
    padding: 0.25rem 0;
  }

  .section-label {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .section-links a {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
}

.footer-col.logo-col .logo {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: inline-block;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: white;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer-col.logo-col .logo span {
  color: var(--primary-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-col.logo-col .logo {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-col.logo-col .logo {
    font-size: 1.8rem;
  }
}

/* Blob Animation Styles */
.blob-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    45deg,
    rgba(131, 58, 180, 0.15),
    rgba(253, 29, 29, 0.15),
    rgba(252, 176, 69, 0.15)
  );
  border-radius: 50%;
  filter: blur(30px);
  animation: blobAnimation 20s ease-in-out infinite,
    colorShift 15s ease-in-out infinite;
  transform-origin: center;
}

.blob:nth-child(1) {
  top: -100px;
  left: -100px;
}

.blob:nth-child(2) {
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes blobAnimation {
  0%,
  100% {
    border-radius: 50% 60% 70% 40% / 50% 60% 40% 50%;
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  75% {
    border-radius: 40% 60% 50% 80% / 40% 70% 50% 60%;
  }
}

@keyframes colorShift {
  0%,
  100% {
    background: linear-gradient(
      45deg,
      rgba(131, 58, 180, 0.15),
      rgba(253, 29, 29, 0.15),
      rgba(252, 176, 69, 0.15)
    );
  }
  50% {
    background: linear-gradient(
      45deg,
      rgba(252, 176, 69, 0.15),
      rgba(131, 58, 180, 0.15),
      rgba(253, 29, 29, 0.15)
    );
  }
}

.custom-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #4caf50; /* Green circle background */
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
  vertical-align: middle;
}

.custom-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Legal Page Specific Styles */
.legal-page-container {
  padding-top: 120px; /* Adjust based on header height */
  padding-bottom: 60px;
}

.legal-content {
  background-color: var(--card-bg-color);
  padding: 30px 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 40px; /* Add space before footer */
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color-secondary);
  margin-bottom: 15px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.contact-content .contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-content .contact-info i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 20px;
  }
  .legal-content h1 {
    font-size: 2rem;
  }
  .legal-content h2 {
    font-size: 1.5rem;
  }
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive adjustments for Top Banner */
@media (max-width: 768px) {
  .top-banner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0.2rem;
    font-size: 0.98rem;
  }
  .top-banner-text {
    padding: 0.2rem 0.5rem;
    font-size: 0.98rem;
    word-break: break-word;
    max-width: 90vw;
    display: inline-block;
  }
  .pulse-dot {
    margin-left: 0;
    margin-top: 0.4rem;
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .top-banner {
    font-size: 0.92rem;
    padding: 0.4rem 0.1rem;
  }
  .top-banner-text {
    font-size: 0.92rem;
    max-width: 95vw;
    padding: 0.15rem 0.3rem;
  }
  .pulse-dot {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
  .top-banner {
    font-size: 1.15rem;
    padding: 0.7rem 0;
  }
  .top-banner-text {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
}

/* General improvements for ultra-small screens */
@media (max-width: 350px) {
  .top-banner-text {
    font-size: 0.8rem;
    padding: 0.1rem 0.2rem;
  }
  .top-banner {
    font-size: 0.8rem;
    gap: 0.2rem;
  }
}

/* Responsive and aligned pricing card styles */
.pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  gap: 2rem;
}

.pricing-card {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid #e8f0f9;
  transition: all 0.3s ease;
}

.pricing-info {
  width: 100%;
  max-width: 600px;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  margin-top: 1rem;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-currency {
  font-size: 2rem;
  vertical-align: top;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--success);
  font-size: 1.2rem;
  min-width: 24px;
}

.pricing-cta {
  margin: 2rem 0;
}

.pricing-cta .btn {
  width: 100%;
  max-width: 300px;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-note {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--primary);
  text-align: left;
}

.pricing-info h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.pricing-info ul {
  list-style: none;
  padding: 0;
}

.pricing-info li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.1rem;
}

.pricing-info li:last-child {
  border-bottom: none;
}

.pricing-info i {
  color: var(--primary);
  min-width: 20px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 0.5rem;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

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

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

  .pricing-amount {
    font-size: 3.5rem;
    margin: 1.5rem 0;
  }

  .pricing-currency {
    font-size: 1.8rem;
  }

  .pricing-features li {
    font-size: 1rem;
    padding: 0.8rem 0;
  }

  .pricing-info {
    padding: 1.5rem;
  }

  .pricing-info h2 {
    font-size: 1.4rem;
  }

  .pricing-info li {
    font-size: 1rem;
    padding: 0.8rem 0;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    padding: 0.5rem;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .pricing-title {
    font-size: 1.6rem;
  }

  .pricing-amount {
    font-size: 3rem;
  }

  .pricing-currency {
    font-size: 1.6rem;
  }

  .pricing-features li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }

  .pricing-cta .btn {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }

  .pricing-note {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .pricing-info h2 {
    font-size: 1.3rem;
  }

  .pricing-info li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }
}

/* Features Section */
.features {
  background-color: #f3f7fd;
}

.features-grid {
  list-style: none;
  padding: 0;
  color: #2d3748;
  font-size: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1;
}

.feature-card h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  line-height: 1.6;
  color: var(--text-light);
}

.features-grid .feature-card:nth-child(1) .feature-icon {
  color: #4299e1;
}
.features-grid .feature-card:nth-child(2) .feature-icon {
  color: #319795;
}
.features-grid .feature-card:nth-child(3) .feature-icon {
  color: #805ad5;
}
.features-grid .feature-card:nth-child(4) .feature-icon {
  color: #ed8936;
}
.features-grid .feature-card:nth-child(5) .feature-icon {
  color: #38a169;
}
.features-grid .feature-card:nth-child(6) .feature-icon {
  color: #d69e2e;
}
.features-grid .feature-card:nth-child(7) .feature-icon {
  color: #e53e3e;
}
.features-grid .feature-card:nth-child(8) .feature-icon {
  color: #4a5568;
}

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

/* Discover Internships Section */
.discover-internships {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(13, 43, 78, 0.05),
    rgba(74, 122, 188, 0.1)
  );
}

.discover-internships .section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.discover-internships .section-subtitle {
  font-size: 1.3rem;
  color: var(--dark);
  opacity: 0.9;
}

/* Responsive adjustments for section titles */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .discover-internships .section-title {
    font-size: 2.4rem;
  }

  .discover-internships .section-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

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

  .discover-internships .section-title {
    font-size: 2.2rem;
  }

  .discover-internships .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Milestones Section */
.milestones {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.milestones .container {
  position: relative;
}

.milestones::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="6" height="6" patternUnits="userSpaceOnUse"><path d="M 6 0 L 0 0 0 6" fill="none" stroke="%23cbd5e1" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.milestones::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><filter id="f"><feTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="1" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23f)"/></svg>');
  opacity: 0.08;
  pointer-events: none;
}

.milestones-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.milestone-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  transition: all 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.milestone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
  transition: all 0.3s ease;
}

.milestone-card:hover .milestone-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.milestone-content {
  flex: 1;
}

.milestone-content h3 {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.milestone-card:hover .milestone-content h3 {
  color: var(--primary);
}

.milestone-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.milestone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.milestone-icon i {
  font-size: 1.3rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.milestone-card:hover .milestone-icon {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  transform: scale(1.1);
}

.milestone-card:hover .milestone-icon i {
  color: white;
}

/* Responsive Design for Milestones */
@media (max-width: 768px) {
  .milestone-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .milestone-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .milestone-content h3 {
    font-size: 1.2rem;
  }

  .milestone-content p {
    font-size: 0.95rem;
  }

  .milestone-icon {
    width: 40px;
    height: 40px;
  }

  .milestone-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .milestones-container {
    gap: 1.5rem;
  }

  .milestone-card {
    padding: 1.25rem;
  }

  .milestone-content h3 {
    font-size: 1.1rem;
  }

  .milestone-content p {
    font-size: 0.9rem;
  }
}

/* Paid vs Free Milestones */
.milestone-card.paid::before {
  background: linear-gradient(180deg, var(--green-plan) 0%, #2fdd9a 100%);
}

.milestone-card.free {
  opacity: 0.65;
  transition: all 0.4s ease;
}

.milestone-card.free:hover {
  opacity: 1;
}

.milestone-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.milestone-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 50px;
  pointer-events: none;
}

.milestone-separator .separator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.milestone-separator .separator-icon i {
  font-size: 1.5rem;
  color: white;
}

.milestone-separator p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.milestone-card:hover .milestone-content h3 {
  color: var(--primary);
}

.milestone-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.75rem;
  font-weight: 500;
  background: #f1f5f9;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  display: inline-flex;
}

/* Ensure consistent milestone-duration background for paid milestone cards */
.paid-milestones-content .milestone-duration {
  background: #f1f5f9;
  color: #475569;
}

.milestone-duration i {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .milestone-separator {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
  }

  .milestone-separator .separator-icon {
    width: 45px;
    height: 45px;
  }

  .milestone-separator .separator-icon i {
    font-size: 1.25rem;
  }

  .milestone-separator p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .milestone-separator {
    padding: 1rem 1.25rem;
    margin: 1rem 0;
  }

  .milestone-separator .separator-icon {
    width: 40px;
    height: 40px;
  }

  .milestone-separator .separator-icon i {
    font-size: 1.1rem;
  }

  .milestone-separator p {
    font-size: 0.95rem;
  }
}
