 :root {
  --accent1: #ff3b30;
  --accent2: #8b0000;

  /* Light Theme Colors */
  --bg-light: #ffffff;
  --glass-bg-light: rgba(0, 0, 0, 0.03);
  --glass-border-light: rgba(0, 0, 0, 0.1);
  --text-primary-dark: #000000;
  --text-secondary-dark: #333333;
  --text-muted-dark: #666666;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --blur: blur(20px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-primary-dark);
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */

.custom-navbar {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff3b30;
}

.nav-link {
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.nav-link:hover {
  color: #ff3b30;
  transform: scale(1.05);
}

.dropdown-menu {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
}

.dropdown-item {
  color: #555;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.dropdown-item i {
  margin-right: 0.5rem;
}

.dropdown-item:hover {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  transform: translateX(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-gradient {
  background: linear-gradient(90deg, #ff3b30, #d70b1f);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(255, 59, 48, 0.3);
  cursor: pointer;
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 59, 48, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
  /* Make button flow inside the menu */
  .btn-gradient {
    position: static !important; /* Reset fixed position */
    margin: 1rem auto;
    display: block;
    width: 90%;
    animation: none;
    box-shadow: none;
    text-align: center;
  }

  .navbar-collapse {
    padding-top: 0;
  }
}

/* Center menu items */
.navbar-nav {
  margin: 0 auto; /* Center items */
  text-align: center;
  gap: 1.5rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

     /* Hero Section */
.hero-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: black;
}

.rocket-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff3b30, #ff6e48);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    margin-bottom: 1rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
   color: white;
   background: linear-gradient(135deg, #fffcfc 0%, #dc2626 50%, #c7bfbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.hero-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Pills */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 0.5rem;
    color: white;
}

.pill i {
    color: #ff3b30;
}

/* Buttons */
.btn-primary-custom {
    background: radial-gradient(circle at center, #ff3b30 10%, #d70b1f 50%, #000000 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 4px 15px rgba(215, 11, 31, 0.4), /* red glow */
      inset 0 0 10px rgba(255, 255, 255, 0.05); /* soft inner light */
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 59, 48, 0.5);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Image Gallery */
.image-gallery {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-column.animate-up {
    animation: scrollUp 25s linear infinite;
}

.gallery-column.animate-down {
    animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 11, 0.9), transparent 30%, transparent 70%, rgba(10, 10, 11, 0.9));
    pointer-events: none;
    z-index: 1;
}

.gallery-overlay-vertical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.9), transparent 30%, transparent 70%, rgba(10, 10, 11, 0.9));
    pointer-events: none;
    z-index: 2;
}

/* Modal */
.modal-content {
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-weight: 700;
}

/* Form controls */
.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: white;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff3b30;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 59, 48, 0.25);
}

.form-control-custom::placeholder {
    color: #666;
}

/* Select controls */
.form-select-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: white;
}

.form-select-custom:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff3b30;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 59, 48, 0.25);
}

.form-select-custom option {
    background: #1a1a1b;
    color: white;
}

.btn-close {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }

    .rocket-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .image-gallery {
        height: 400px;
        margin-top: 3rem;
    }
}

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

    .pill {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .image-gallery {
        height: 350px;
    }

    .gallery-img {
        height: 150px;
    }
}
   /* General Section Styles */
    .section {
      max-width: 1200px;
      margin: 2rem auto;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 4rem;
      padding: 2rem;
      background: #ffffff;
      color: var(--text-primary-dark);
      border-radius: 20px;
      box-shadow: var(--shadow-light);
    }

    .section-left {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      animation: fadeInUp 1s ease-out;
    }

    .content-block h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2;
      margin-bottom: 1rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--text-primary-dark);
    }

    .subheadline, .subsubheadline {
      margin-bottom: 2rem;
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--text-secondary-dark);
    }

    .subsubheadline {
      font-style: italic;
      font-size: 1.1rem;
      color: var(--text-muted-dark);
    }

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

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: var(--glass-bg-light);
      border: 1px solid var(--glass-border-light);
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      color: var(--text-primary-dark);
    }

    .benefit-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border-color: rgba(255, 59, 48, 0.3);
    }

    .benefit-icon {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      animation: pulse 2s infinite;
    }

    .benefit-text strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .section-cta {
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--accent1);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .section-cta:hover {
      transform: translateX(5px);
      color: var(--text-primary-dark);
    }

    .program-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--glass-bg-light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
    }

    .program-table th,
    .program-table td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid var(--glass-border-light);
    }

    .program-table th {
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: white;
    }

    .program-table tr:hover {
      background: rgba(255, 59, 48, 0.05);
    }

    .sticky-form {
      position: sticky;
      top: 100px;
      height: fit-content;
      background: var(--glass-bg-light);
      border: 1px solid var(--glass-border-light);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: var(--shadow-light);
      animation: fadeInRight 1s ease-out;
      color: var(--text-primary-dark);
    }

    .sticky-form h3 {
      margin-bottom: 1rem;
      font-size: 1.5rem;
      text-align: center;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .sticky-form p {
      text-align: center;
      color: var(--text-muted-dark);
      margin-bottom: 1.5rem;
    }

    .sticky-form input,
    .sticky-form select {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border-radius: 8px;
      background: #f9f9f9;
      border: 1px solid var(--glass-border-light);
      font-size: 1rem;
    }

    .sticky-form input:focus,
    .sticky-form select:focus {
      border-color: var(--accent1);
      outline: none;
      box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.1);
    }

    .sticky-form .btn {
      width: 100%;
      padding: 1rem;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      color: white;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .sticky-form .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @media (max-width: 1024px) {
      .section {
        grid-template-columns: 1fr;
        padding: 1.5rem;
      }

      .sticky-form {
        position: static;
        max-width: 400px;
        margin: 2rem auto 0;
      }

      .benefit-item {
        max-width: 600px;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .content-block h2 {
        font-size: 2rem;
      }

      .program-table th, .program-table td {
        padding: 0.75rem;
      }

      .sticky-form {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .section {
        padding: 1rem;
      }

      .sticky-form {
        padding: 1rem;
      }
    }
	      /* carrier path */
			.program-tracks-section {
            position: relative;
            background: white;
            padding: 80px 20px;
            overflow: hidden;
        }

        /* Radial Gradient Backgrounds */
        .radial-bg-red {
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
        }

        .radial-bg-black {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(26, 26, 26, 0.2) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
        }

        /* Floating Circles */
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            border: 4px solid;
            animation: float 3s ease-in-out infinite;
        }

        .floating-circle-1 {
            top: 80px;
            left: 40px;
            width: 80px;
            height: 80px;
            border-color: rgba(239, 68, 68, 0.2);
        }

        .floating-circle-2 {
            bottom: 80px;
            right: 40px;
            width: 120px;
            height: 120px;
            border-color: rgba(26, 26, 26, 0.2);
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Header Styles */
        .main-heading {
            font-size: 3.5rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 1rem;
            animation: fadeInUp 0.6s ease-out;
        }

        .gradient-text {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #1a1a1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sub-heading {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 3rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        /* Section Dividers */
        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 3rem;
        }

        .divider-line {
            height: 4px;
            width: 60px;
            background: linear-gradient(to right, transparent, currentColor);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }

        .it-title {
            color: #ef4444;
        }

        .non-it-title {
            color: #1a1a1a;
        }

        /* Track Cards */
        .track-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .track-card.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .track-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .track-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
            opacity: 0;
            transition: opacity 0.5s;
        }

        .track-card:hover::before {
            opacity: 0.1;
        }

        .icon-container {
            position: relative;
            display: inline-flex;
            margin-bottom: 1.5rem;
        }

        .icon-wrapper {
            background: linear-gradient(135deg, var(--card-color-1), var(--card-color-2));
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.5s;
            position: relative;
            z-index: 2;
        }

        .track-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(3deg);
        }

        .icon-wrapper i {
            font-size: 2rem;
            color: white;
        }

        .track-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            transition: color 0.3s;
            position: relative;
            z-index: 2;
        }

        .track-card:hover .track-title {
            color: #ef4444;
        }

        /* Bottom border animation */
        .track-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            width: 0;
            background: linear-gradient(to right, #ef4444, #1a1a1a);
            transition: width 0.5s;
        }

        .track-card:hover::after {
            width: 100%;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 4rem;
            animation: fadeInUp 0.6s ease-out 0.6s both;
        }

        .cta-button {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            padding: 1.25rem 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            border: none;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(239, 68, 68, 0.3);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #dc2626 0%, #1a1a1a 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .floating-circle-1,
            .floating-circle-2 {
                display: none;
            }
        }

        /* Staggered animation delays */
        .track-card:nth-child(1) { animation-delay: 0.1s; }
        .track-card:nth-child(2) { animation-delay: 0.2s; }
        .track-card:nth-child(3) { animation-delay: 0.3s; }
        .track-card:nth-child(4) { animation-delay: 0.4s; }
        .track-card:nth-child(5) { animation-delay: 0.5s; }
        .track-card:nth-child(6) { animation-delay: 0.6s; }
		/* Internship with Real Projects*/
		 .section-hero {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
            padding: 60px 0;
            border-radius: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 0, 0, 0.1);
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
        }
        .section-hero h2 {
            font-weight: 700;
            font-size: 2.5rem;
            background: linear-gradient(135deg, #ff0000, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .section-hero p {
            font-size: 1.1rem;
            font-weight: 400;
            color: #555;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .highlight-card {
            background: #fff;
            border: 1px solid #f0f0f0;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff0000, #000000);
        }
        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
        }
        .highlight-card i {
            font-size: 2.5rem;
            color: #ff0000;
            margin-bottom: 15px;
        }
        .highlight-card h5 {
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
        }
        .timeline_1 {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 0;
        }
        .timeline_1::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #ff0000, #000000);
            transform: translateX(-50%);
        }
        .timeline_1-item {
            position: relative;
            margin: 50px 0;
            width: 50%;
        }
        .timeline_1-item:nth-child(odd) {
            left: 0;
        }
        .timeline_1-item:nth-child(even) {
            left: 50%;
        }
        .timeline_1-item:nth-child(even)::before {
            left: -50%;
        }
        .timeline_1-item::before {
            content: '';
            position: absolute;
            top: 20px;
            right: -30px;
            width: 20px;
            height: 20px;
            
            border-radius: 50%;
            z-index: 1;
        }
        .timeline_1-content {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #ff0000;
            position: relative;
        }
        .timeline_1-content h5 {
            font-weight: 600;
            color: #000;
            margin-bottom: 10px;
        }
        .timeline_1-content p {
            color: #666;
            margin-bottom: 0;
        }
        .step-icon {
            position: absolute;
            left: -40px;
            top: 25px;
            background: linear-gradient(135deg, #ff0000, #000000);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .cta-section {
            background: linear-gradient(135deg, #ff0000, #000000);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 20px;
            margin-top: 50px;
        }
        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cta-btn {
            background: white;
            color: #ff0000;
            border: 2px solid white;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }
        .cta-btn:hover {
            background: transparent;
            color: white;
            border-color: #ff0000;
            transform: scale(1.05);
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-hero h2 {
                font-size: 2rem;
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                left: 0 !important;
            }
            .timeline-item::before {
                left: 20px;
                right: auto;
            }
            .timeline-item:nth-child(even)::before {
                left: 20px;
            }
            .step-icon {
                left: 0;
            }
            .timeline-content {
                margin-left: 60px;
                border-left: none;
                border-top: 4px solid #ff0000;
            }
            .highlight-grid {
                grid-template-columns: 1fr;
            }
        }
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
		        /* Section 7: Program Fee & Finance Options */
        #section-7 {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            text-align: center;
        }

        #section-7 .headline {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 20px;
            font-weight: bold;
        }

        #section-7 .body-text {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        #section-7 .program-fee {
            background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
            color: #fff;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
            font-size: 1.5rem;
            font-weight: bold;
        }

        #section-7 .payment-options {
            list-style: none;
            margin-bottom: 30px;
        }

        #section-7 .payment-options li {
            font-size: 1.1rem;
            margin: 10px 0;
            padding: 10px;
            background: #f0f0f0;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        #section-7 .payment-options li:hover {
            background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
            color: #fff;
        }

        #section-7 .note {
            font-size: 1rem;
            color: #666;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }

        #section-7 .cta {
            font-size: 1.3rem;
            color: black;
            text-decoration: none;
            padding: 15px 30px;
            border: 2px solid #ff0000;
            border-radius: 50px;
            display: inline-block;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        #section-7 .cta:hover {
            background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
            color: #fff;
        }

        /* Section 8: Who Can Apply? */
        #section-8 {
            padding: 80px 0;
            background: #fff;
            text-align: center;
        }

        #section-8 .headline {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 40px;
        }

        #section-8 .checklist {
            list-style: none;
            max-width: 600px;
            margin: 0 auto;
        }

        #section-8 .checklist li {
            font-size: 1.2rem;
            margin: 15px 0;
            padding: 15px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            border-left: 5px solid #ff0000;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #section-8 .checklist li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Visual Suggestion Placeholder */
        #section-8 .visual {
            margin-top: 40px;
            height: 300px;
            background: radial-gradient(circle, #ff0000 0%, #000 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Section 9: Real Success Stories */
        #section-9 {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        #section-9 .headline {
            font-size: 2.5rem;
            color: #000;
            text-align: center;
            margin-bottom: 60px;
        }

        #section-9 .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        #section-9 .testimonial {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #ff0000;
        }

        #section-9 .testimonial:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        #section-9 .testimonial p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
        }

        #section-9 .testimonial cite {
            font-weight: bold;
            color: #000;
            font-size: 1rem;
        }

        /* Section 10: FAQs */
        #section-10 {
            padding: 80px 0;
            background: #fff;
        }

        #section-10 .headline {
            font-size: 2.5rem;
            color: #000;
            text-align: center;
            margin-bottom: 60px;
        }

        #section-10 .faqs {
            max-width: 800px;
            margin: 0 auto;
        }

        #section-10 .faq-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        #section-10 .faq-item:hover {
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
        }

        #section-10 .faq-question {
            background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
            color: #fff;
            padding: 20px;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        #section-10 .faq-question:hover {
            background: radial-gradient(circle, #cc0000 0%, #990000 100%);
        }

        #section-10 .faq-answer {
            padding: 20px;
            background: #f8f9fa;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        #section-10 .faq-answer.active {
            display: block;
        }

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

        /* Section 11: Final CTA */
        #section-11 {
               padding-bottom: 0;
               margin-bottom: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
            text-align: center;
        }

        #section-11 .headline {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        #section-11 .subheading {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        #section-11 .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        #section-11 .cta-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: radial-gradient(circle, #ff0000 0%, #cc0000 100%);
        }

        #section-11 .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #000;
            color: #fff;
            text-align: center;
            margin-top: -5px; 
        }

        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        footer p {
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .headline {
                font-size: 2rem;
            }

            #section-7 .program-fee,
            #section-7 .body-text {
                font-size: 1.1rem;
            }

            #section-8 .checklist li,
            #section-9 .testimonial p {
                font-size: 1rem;
            }

            #section-11 .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            #section-11 .cta-btn {
                width: 100%;
                max-width: 250px;
            }

            .container {
                padding: 0 15px;
            }
        }

        @media (max-width: 480px) {
            #section-7,
            #section-8,
            #section-9,
            #section-10,
            #section-11 {
                padding: 50px 0;
            }

            .headline {
                font-size: 1.8rem;
            }
        }
		
		/* about us section*/
		.about-intro-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Image Styling */
.image-wrapper img {
  border-radius: 1.2rem;
  transition: transform 0.6s ease;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}
.image-overlay {
  background: radial-gradient(circle at center, #ff3b30 10%, #d70b1f 50%, #000000 100%);
  opacity: 0.4;
}
.image-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 150%;
  height: 150px;
  background: radial-gradient(ellipse at center, rgba(0,123,255,0.3), transparent);
  transform: translateX(-50%);
  filter: blur(40px);
}

/* Content Section */
.section-title {
  font-size: 2.2rem;
  color: #1b1b1b;
}
.underline {
  width: 70px;
  height: 4px;
  background: radial-gradient(circle at center, #ff3b30 10%, #d70b1f 50%, #000000 100%);
  border-radius: 5px;
  margin-bottom: 1.5rem;
}
.highlight-text {
  color: #ff3b30;
  font-weight: 600;
}

/* Button */
.btn-gradient {
  background: radial-gradient(circle at center, #ff3b30 10%, #d70b1f 50%, #000000 100%);
  border: none;
  color: white;
  box-shadow: 0 8px 20px rgba(0,123,255,0.3);
  transition: all 0.4s ease;
}
.btn-gradient:hover {
  background:radial-gradient(circle at center, #ff3b30 10%, #d70b1f 50%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,123,255,0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 1.8rem;
  }
  .underline {
    margin: 0 auto 1.5rem auto;
  }
  .content-wrapper {
    text-align: center;
  }
}


/* General Section Styles */
.journey-section, .what-we-do-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-red);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: radial-gradient(circle, var(--accent1), var(--accent2)); /* Attractive radial underline */
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 120px;
}

.icon-glow {
  color: var(--primary-red);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
}

.icon-glow:hover {
  text-shadow: 0 0 20px rgba(220, 53, 69, 0.6);
  transform: scale(1.1);
}

.primary-red { color: var(--primary-red) !important; }

.key-highlight {
  color: var(--primary-red);
  font-weight: 600;
  position: relative;
}

.key-highlight i {
  font-size: 0.9rem;
}

/* Our Journey Section */
.journey-section {
  background: var(--light-gray);
}

.journey-content p {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* What We Do Section */
.what-we-do-section {
  background: var(--white);
}

.intro-para .lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.core-card {
  background: var(--white);
  border: 1px solid rgba(220, 53, 69, 0.1);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.core-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: radial-gradient(circle, var(--accent1), var(--accent2)); /* Radial top border */
}

.core-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(220, 53, 69, 0.2);
}

.core-card h6 {
  color: var(--accent2);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.core-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.closing-para {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Animations - Staggered for Flow */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.transition-all {
  transition: all 0.4s ease;
}

/* Responsive Layout - Adaptive & Attractive */
@media (max-width: 992px) {
  .journey-section, .what-we-do-section { padding: 60px 0; }
  .section-title { font-size: 2.4rem; }
  .journey-content p, .intro-para .lead, .closing-para { font-size: 1.1rem; max-width: 100%; }
  .core-card { margin-bottom: 20px; }
  .core-card h6 { font-size: 1rem; }
  .section-title::after { width: 60px; height: 3px; }
}

@media (max-width: 768px) {
  .journey-section, .what-we-do-section { padding: 50px 0; }
  .section-title { font-size: 2.1rem; }
  .journey-content p, .intro-para .lead, .closing-para { font-size: 1.05rem; line-height: 1.6; text-align: left; }
  .core-card { padding: 20px 15px; text-align: center; }
  .core-card i { font-size: 1.8rem; }
  .core-card h6 { font-size: 1.05rem; }
  .core-card p { font-size: 0.85rem; }
  .section-title::after { width: 50px; height: 2px; }
  .row.g-4 { g-3: 20px; } /* Tighter grid on tablet */
}

@media (max-width: 576px) {
  .journey-section, .what-we-do-section { padding: 40px 0; }
  .section-title { font-size: 1.8rem; }
  .journey-content p, .intro-para .lead, .closing-para { font-size: 1rem; line-height: 1.5; padding: 0 10px; }
  .core-card { padding: 15px; border-radius: 10px; margin-bottom: 15px; }
  .core-card i { font-size: 1.6rem; }
  .core-card h6 { font-size: 1rem; }
  .core-card p { font-size: 0.8rem; }
  .icon-glow { font-size: 1rem; }
  .section-title::after { width: 40px; height: 2px; }
  .container { padding-left: 15px; padding-right: 15px; } /* Full use on small screens */
}
/*job page  */

/* Section Base Styles - Professional Clean Look */

/* Additional Pro Touches - Smooth Transitions */
.transition-all {
  transition: all 0.4s ease;
}

.job-guarantee-section ul {
  padding-left: 0;
}

.job-guarantee-section li {
  list-style: none;
}


/* Section Base Styles - Enhanced Overflow & Background */
.admission-section, .job-guarantee-note {
  font-family: 'Poppins', sans-serif;
  padding: 90px 0;
  position: relative;
}

.admission-section {
  background: var(--bg-gradient-light);
}

.job-guarantee-note {
  background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.admission-section::before, .job-guarantee-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--radial-accent);
  opacity: 0.3;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.2);
}

/* Title & Lead - Enhanced Glow & Responsive Clamp */
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--primary-red);
  text-shadow: 0 2px 12px rgba(220, 53, 69, 0.2);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
 
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(220, 53, 69, 0.4);
  transition: all 0.4s ease;
}

.section-title:hover::after {
  width: 140px;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.5);
}

.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 35px;
  line-height: 1.7;
  opacity: 0.95;
}

.max-width-800 {
  max-width: 800px !important;
}

/* Icon Glow Effects - Enhanced Pulse & Shine */
.icon-glow {
  color: var(--primary-red);
  text-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
  transition: all 0.4s ease;
}

.icon-glow:hover {
  text-shadow: 0 0 25px rgba(220, 53, 69, 0.5);
  transform: scale(1.08) rotate(5deg);
}

.icon-glow-large {
  font-size: 1.4em;
}

.icon-glow-small {
  font-size: 1.2em;
  min-width: 25px;
}

.icon-pulse {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { text-shadow: 0 0 10px rgba(40, 167, 69, 0.5); }
  100% { text-shadow: 0 0 20px rgba(40, 167, 69, 0.8), 0 0 30px rgba(40, 167, 69, 0.4); }
}

/* Timeline Container - Enhanced with Dashed Lines & Numbers */
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding: 30px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.25);
  z-index: 1;
}

.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-left: 70px;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  z-index: 2;
}

.timeline-step:nth-child(1) { animation-delay: 0.2s; }
.timeline-step:nth-child(2) { animation-delay: 0.4s; }
.timeline-step:nth-child(3) { animation-delay: 0.6s; }
.timeline-step:nth-child(4) { animation-delay: 0.8s; }
.timeline-step:nth-child(5) { animation-delay: 1s; }

.timeline-icon {
  position: absolute;
  left: 0;
  top: 8px;
  width: 56px;
  height: 56px;
  background: var(--radial-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
  transition: all 0.4s ease;
  z-index: 3;
  border: 2px solid rgba(255,255,255,0.3);
}

.timeline-icon i {
  font-size: 1.3rem;
  margin-bottom: 1px;
  transition: all 0.3s ease;
}

.timeline-icon .step-number {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.5), inset 0 2px 6px rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
}

.timeline-step:hover .timeline-icon i {
  transform: scale(1.1);
}

.timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(220, 53, 69, 0.08);
  transition: all 0.4s ease;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--radial-accent);
  opacity: 0.7;
}

.timeline-step:hover .timeline-content {
  box-shadow: var(--shadow-xl);
  transform: translateX(8px);
  border-color: rgba(220, 53, 69, 0.15);
}

.timeline-content h5 {
  color: var(--primary-black);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

/* Confirmation Box - Simple Elegant Card */
.admission-confirm-box {
  background: var(--bg-light);
  border: 1px solid rgba(220, 53, 69, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  min-height: 180px;
  display: flex;
  align-items: center;
}

.admission-confirm-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(220, 53, 69, 0.15);
}

/* Radial Accent Line - Subtle Top Border */
.confirm-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--radial-accent);
  opacity: 0.8;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

/* Icon Container - Red Glow Checkmark */
.icon-container {
  position: relative;
  display: inline-block;
}

.icon-glow-large {
  color: var(--primary-red);
  text-shadow: 0 0 15px rgba(220, 53, 69, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.icon-glow-large:hover {
  text-shadow: 0 0 25px rgba(220, 53, 69, 0.6);
  transform: scale(1.05);
}

.icon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.15), transparent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.admission-confirm-box:hover .icon-ring {
  width: 130%;
  height: 130%;
  opacity: 0.9;
}

/* Text Content - Bold & Clean Highlights */
.admission-confirm-box h5 {
  color: var(--primary-black);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.confirm-underline {
  background: var(--radial-accent);
  opacity: 0.9;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.admission-confirm-box:hover .confirm-underline {
  opacity: 1;
}

.admission-confirm-box p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.95;
}

.admission-confirm-box strong {
  color: var(--primary-black);
  font-weight: 600;
}

/* Highlight Box - Red Border Accent */
.highlight-box {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 53, 69, 0.1);
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--radial-accent);
  opacity: 0.7;
}

.highlight-box:hover {
  background: rgba(220, 53, 69, 0.02);
  border-color: rgba(220, 53, 69, 0.2);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.highlight-box p {
  color: var(--primary-red);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.5;
  margin: 0;
}

.highlight-box i {
  color: var(--primary-red);
  text-shadow: 0 0 8px rgba(220, 53, 69, 0.3);
}

/* Responsive - Clean & Attractive on All Devices */
@media (max-width: 992px) {
  .admission-confirm-box {
    padding: 25px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  .row.align-items-center {
    flex-direction: column;
  }
  .col-md-3, .col-md-9 {
    width: 100%;
    text-align: center;
  }
  .col-md-9 {
    padding-top: 20px;
  }
  .admission-confirm-box h5 {
    font-size: 1.3rem;
    text-align: center;
  }
  .highlight-box {
    border-radius: 8px;
    padding: 12px;
  }
  .highlight-box p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .admission-confirm-box {
    padding: 20px 15px;
  }
  .icon-glow-large {
    font-size: 2.8rem;
  }
  .admission-confirm-box h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .admission-confirm-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .highlight-box {
    padding: 10px;
  }
  .highlight-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .admission-confirm-box {
    padding: 18px 12px;
    border-radius: 12px;
  }
  .icon-glow-large {
    font-size: 2.5rem;
  }
  .admission-confirm-box h5 {
    font-size: 1.1rem;
  }
  .admission-confirm-box p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .highlight-box {
    padding: 8px;
    border-radius: 6px;
  }
  .highlight-box p {
    font-size: 0.9rem;
  }
  .icon-glow-large {
    margin-bottom: 15px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Pro Touches - Smooth Transitions */
.confirm-hover:hover {
  cursor: default;
}

.admission-confirm-box strong {
  color: var(--primary-black);
  font-weight: 600;
  position: relative;
}

.admission-confirm-box strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-red);
  opacity: 0.6;
}

.admission-confirm-box .text-primary-red {
  color: var(--primary-red) !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(220, 53, 69, 0.1);
}

/* Fade-in Animation (If not already) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Pro Touches - Smooth & Attractive */
.confirm-hover:hover {
  cursor: default;
}

.admission-confirm-box strong {
  color: var(--primary-black);
  font-weight: 600;
  position: relative;
}

.admission-confirm-box strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--success-green);
  opacity: 0.6;
}

.admission-confirm-box .text-primary-red {
  color: var(--primary-red) !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(220, 53, 69, 0.1);
}
/* program */
  .program-container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
    }

    .program-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .program-header::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: var(--cta-gradient);
      border-radius: 2px;
    }

    .program-header h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--primary-red);
      font-weight: 700;
    }

    .program-header p {
      color: var(--text-muted);
      font-size: 1.1rem;
      margin-top: 10px;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .program-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 30px;
      border-top: 4px solid var(--primary-red);
      transition: all 0.4s ease;
    }

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

    .program-card h3 {
      color: var(--primary-red);
      font-size: 1.5rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .program-card p {
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .program-card ul {
      list-style: none;
    }

    .program-card ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
      color: #444;
    }

    .program-card ul li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--primary-red);
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 1rem;
    }

    .program-table {
      width: 100%;
      border-collapse: collapse;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border-radius: 10px;
    }

    .program-table th {
      background: var(--cta-gradient);
      color: white;
      padding: 12px;
      text-align: center;
      font-weight: 600;
    }

    .program-table td {
      padding: 12px;
      border: 1px solid rgba(233, 30, 99, 0.1);
      text-align: left;
      color: var(--text-muted);
    }

    .program-table tbody tr:hover {
      background: rgba(233, 30, 99, 0.05);
    }

    .program-cta {
      display: block;
      width: fit-content;
      margin: 50px auto 0;
      padding: 15px 40px;
      background: var(--cta-gradient);
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    }

    .program-cta:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: var(--shadow-hover);
    }

    .program-footer {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid rgba(233, 30, 99, 0.2);
      color: var(--text-muted);
    }

    .program-footer span {
      display: inline-block;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .program-footer span:hover {
      color: var(--primary-red);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .program-container {
        padding: 40px 15px;
      }

      .program-header h1 {
        font-size: 2.2rem;
      }

      .program-cta {
        width: 100%;
        text-align: center;
      }

      .program-footer span {
        display: block;
        margin: 5px 0;
      }
    }
	
	/* *Program section* /
	        .program-container {
            max-width: 1200px;
            margin: auto;
            padding: 70px 20px;
        }

        /* ---------- Animations ---------- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
            100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
        }

        .animate-fade { animation: fadeInUp 0.6s ease forwards; }
        .program-cta { animation: pulse 2s infinite; }

        /* ---------- Header ---------- */
        .program-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease;
        }

        .program-header h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            /*background: linear-gradient(135deg, #ff0018, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;*/
            color:white;
            text-shadow: 0 2px 5px rgba(233, 30, 99, 0.2);
            margin-bottom: 15px;
        }

        .program-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-top: 10px;
            max-width: 700px;
            margin-inline: auto;
            line-height: 1.8;
        }

        /* ---------- Grid Cards ---------- */
       .program-card {
  background: linear-gradient(145deg, #ffffff, #f6f6f6);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #ff3b30, #d70b1f, #000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(145deg, #fff, #f1f1f1);
}

.program-card h3 {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}

.program-card h3 i {
  color: var(--secondary-orange);
  font-size: 1.3rem;
}

.program-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.program-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.program-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.program-card ul li:hover {
  color: var(--primary-red);
}

.program-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-orange);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
}

/* ✨ Fade-in animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive tweaks */
@media (max-width: 768px) {
  .program-card {
    padding: 30px 20px;
  }
  .program-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .program-card p,
  .program-card ul li {
    font-size: 0.95rem;
  }
}

        /* ---------- Table (for Program Phases) ---------- */
        .program-table-section {
            margin: 50px 0;
            overflow-x: auto; /* For mobile scrolling */
        }

        .program-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: white;
        }

        .program-table th {
            background: linear-gradient(135deg, #ff0018, #000000);
            color: #ffffff;
            padding: 15px 10px;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
        }

        .program-table td {
            padding: 12px 10px;
            border-bottom: 1px solid rgba(233, 30, 99, 0.1);
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            transition: background 0.3s ease;
        }

        .program-table tbody tr:nth-child(even) {
            background: rgba(255, 245, 247, 0.8);
        }

        .program-table tbody tr:hover {
            background: rgba(233, 30, 99, 0.1);
            transform: scale(1.01);
        }

        /* ---------- CTA ---------- */
        .program-cta {
            display: block;
            margin: 60px auto 0;
            padding: 18px 50px;
            background: var(--cta-gradient);
            color: #fff;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
            font-size: 1.1rem;
            text-decoration: none;
            text-align: center;
            max-width: 300px;
        }

        .program-cta:hover, .program-cta:focus {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-hover);
            outline: none;
        }

        .program-cta i { margin-right: 8px; }

        /* ---------- Footer ---------- */
        .program-footer {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 2px solid rgba(233, 30, 99, 0.2);
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .program-footer h4 {
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .program-footer p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .program-footer span {
            margin: 0 12px;
            display: inline-block;
            transition: all 0.3s ease;
            color: var(--text-muted);
        }

        .program-footer span:hover {
            color: var(--primary-red);
            transform: scale(1.1);
        }

        .program-footer a {
            color: var(--secondary-orange);
            text-decoration: none;
        }

        .program-footer a:hover { text-decoration: underline; }

        /* ---------- Responsive ---------- */
        @media (max-width: 768px) {
            .program-container {
                padding: 50px 15px;
            }

            .program-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .program-card {
                padding: 25px 20px;
            }

            .program-table {
                font-size: 0.85rem;
            }

            .program-table th, .program-table td {
                padding: 8px 5px;
            }

            .program-cta {
                width: 100%;
                padding: 15px;
            }

            .program-footer span {
                display: block;
                margin: 10px 0;
            }
        }

        @media (max-width: 480px) {
            .program-header h1 { font-size: 2rem; }
            .program-table { font-size: 0.8rem; }
        }
		/* */
		.job-oriented-section {
    background: linear-gradient(135deg, var(--bg-light), rgba(255, 59, 48, 0.02));
    padding: clamp(40px,5vw,80px) clamp(20px,5vw,40px);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.job-header {
    text-align: center;
    margin-bottom: clamp(40px,5vw,60px);
}

.job-header h1 {
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.job-header h1 i { font-size: 1.2em; color: var(--accent1); }

.job-header h3 {
    font-size: clamp(1.1rem,2.5vw,1.3rem);
    font-weight: 600;
    color: var(--accent2);
    margin-bottom: 8px;
}

.job-header p { color: var(--text-muted-dark); font-size: 1rem; font-weight:400; }

.job-about {
    background: rgba(255,255,255,0.8);
    backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border-light);
    border-radius: 20px;
    padding: clamp(25px,4vw,40px);
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
}
.job-about:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 8px 35px rgba(255,59,48,0.15); border-color: var(--accent1); }

.job-about h2 { color: var(--accent1); font-size: clamp(1.3rem,3vw,1.6rem); font-weight:600; margin-bottom:18px; display:flex; align-items:center; gap:8px;}
.job-about h2 i { font-size:1.2em; }

.job-about p { color: var(--text-secondary-dark); font-size:1rem; margin-bottom:20px; line-height:1.7; }

/* Program Includes Cards */
.program-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin:25px 0;
    padding-top:20px;
}
.include-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--glass-border-light);
    border-radius: 16px;
    padding:20px 15px;
    text-align:center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.include-card:hover { transform: translateY(-5px); box-shadow:0 6px 25px rgba(255,59,48,0.1); border-color:var(--accent1); }
.include-card i { font-size:2rem; color: var(--accent1); margin-bottom:10px; display:block; }
.include-card h4 { color: var(--accent2); font-size:1.1rem; font-weight:600; margin-bottom:8px; }
.include-card p { color: var(--text-muted-dark); font-size:0.9rem; margin:0; line-height:1.5; }

/* Goal */
.job-goal { margin-top:20px; padding:15px; background: rgba(255,59,48,0.05); border-left:4px solid var(--accent1); border-radius:8px; }
.job-goal i { color: var(--accent1); margin-right:8px; font-size:1.1em; }

/* Offers Cards */
.job-offers {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-bottom:50px;
}
.job-offers h2 { color: var(--accent1); font-size:clamp(1.3rem,3vw,1.6rem); font-weight:600; margin-bottom:20px; text-align:center; grid-column:1/-1; display:flex; align-items:center; justify-content:center; gap:8px;}
.job-offers h2 i { font-size:1.2em; }
.offer-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: var(--blur);
    border:1px solid var(--glass-border-light);
    border-radius:16px;
    padding:25px 20px;
    box-shadow: var(--shadow-light);
    text-align:center;
    transition: all 0.3s ease;
}
.offer-card:hover { transform:translateY(-5px); box-shadow:0 6px 30px rgba(255,59,48,0.12); border-color:var(--accent1);}
.offer-card i { font-size:2rem; color:var(--accent1); margin-bottom:12px; }
.offer-card p { color: var(--text-secondary-dark); font-size:0.95rem; line-height:1.6; margin:0; }

/* CTA */
.job-cta { text-align:center; margin-top:40px; }
.job-cta button {
    background: linear-gradient(135deg,var(--accent1),var(--accent2));
    color:white;
    border:none;
    padding:14px 40px;
    font-size:1.05rem;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition: all 0.3s ease;
}
.job-cta button:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 25px rgba(255,59,48,0.4); }

/* Responsive */
@media(max-width:768px){
    .job-oriented-section { padding:40px 15px; border-radius:16px; margin:20px;}
    .job-about { padding:20px 15px; }
    .job-offers, .program-includes { grid-template-columns:1fr; gap:20px; }
    .job-cta button { width:100%; justify-content:center;}
}
@media(max-width:480px){
    .job-oriented-section { margin:10px; padding:30px 10px;}
}
/* mission vision */
.mission-vision-section {
  background-color: #ffffff;
  background-image: radial-gradient(circle at top left, rgba(255,59,48,0.1), transparent 60%);
}
.section-heading {
  font-weight: 700;
  color: #1a1a1a;
}
.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #ff3b30, #d70b1f);
  border-radius: 2px;
}
.mv-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
.mv-card:hover {
  background: #fff;
  transform: translateY(-10px);
  border-color: #ff3b30;
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.15);
}
.icon-wrapper i {
  transition: transform 0.4s ease, color 0.4s ease;
}
.mv-card:hover .icon-wrapper i {
  transform: scale(1.2);
  color: #ff3b30;
}

/* Responsive */
@media (max-width: 768px) {
  .section-heading {
    font-size: 1.8rem;
  }
  .mv-card {
    padding: 2rem 1.5rem;
  }
}
/* * emi cta blink*/
.cta-blink {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: blinkGlow 1.5s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.cta-blink:hover {
  transform: scale(1.05);
}

/* 🔥 Blink + Glow animation */
@keyframes blinkGlow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 25px rgba(255, 80, 80, 1);
  }
}
/* new css*/
* Program Fee Section Styles */
.program-fee-final {
    background: linear-gradient(135deg, #fff, #fff6f3 100%);
    padding: 5rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(255,59,48,0.04);
    position: relative;
    overflow: hidden;
}
.program-fee-final-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.program-fee-final-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.program-fee-final-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.18);
    font-size: 1.1rem;
}
.program-fee-final-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
.program-fee-final-title span {
    color: #22c55e;
    font-weight: 900;
    font-size: 2.2rem;
}
.program-fee-final-desc {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.program-fee-final-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.program-fee-final-info, .program-fee-final-finance {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255,59,48,0.07);
    padding: 2rem 1.5rem;
    position: relative;
    border: 1px solid rgba(255,59,48,0.08);
}
.program-fee-final-info h3, .program-fee-final-finance h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.program-fee-final-info ul, .program-fee-final-finance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.program-fee-final-info ul li, .program-fee-final-finance ul li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}
.program-fee-final-info ul li i, .program-fee-final-finance ul li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.program-fee-final-info ul li:hover, .program-fee-final-finance ul li:hover {
    background: rgba(255,59,48,0.06);
    transform: translateX(8px);
}
@media (max-width: 900px) {
    .program-fee-final {
        padding: 3rem 1rem;
    }
    .program-fee-final-title {
        font-size: 1.5rem;
    }
    .program-fee-final-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .program-fee-final-info, .program-fee-final-finance {
        padding: 1.2rem 1rem;
    }
}
@media (max-width: 600px) {
    .program-fee-final-title {
        font-size: 1.1rem;
    }
    .program-fee-final-title span {
        font-size: 1.3rem;
    }
    .program-fee-final-info, .program-fee-final-finance {
        padding: 1rem 0.5rem;
    }
}
/* What You'll Learn Section Styles */
.learning-tracks-final {
    background: linear-gradient(135deg, #fff, #f8f9fa 100%);
    padding: 5rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(255,59,48,0.04);
    position: relative;
    overflow: hidden;
}
.learning-tracks-final-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.learning-tracks-final-header {
    text-align: center;
    margin-bottom: 3rem;
}
.learning-tracks-final-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.18);
    font-size: 1.1rem;
}
.learning-tracks-final-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
.learning-tracks-final-desc {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.learning-tracks-final-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.learning-tracks-final-category {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255,59,48,0.07);
    padding: 2.5rem 2rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(255,59,48,0.08);
}
.learning-tracks-final-category:hover {
    box-shadow: 0 16px 32px rgba(255,59,48,0.13);
    transform: translateY(-6px);
}
.learning-tracks-final-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.learning-tracks-final-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.learning-tracks-final-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}
.learning-tracks-final-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.learning-tracks-final-list li:hover {
    background: rgba(255,59,48,0.06);
    transform: translateX(8px);
}
.learning-tracks-final-features {
    background: linear-gradient(135deg, #fff, #fff6f3 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255,59,48,0.07);
    padding: 2.5rem 2rem;
    margin-top: 2.5rem;
}
.learning-tracks-final-features-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.learning-tracks-final-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}
.learning-tracks-final-features-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    color: #555;
    background: rgba(255,59,48,0.04);
    border-radius: 8px;
    padding: 0.7rem 0.5rem;
    transition: background 0.3s, transform 0.3s;
}
.learning-tracks-final-features-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}
.learning-tracks-final-features-list li:hover {
    background: rgba(255,59,48,0.09);
    transform: translateY(-4px);
}
@media (max-width: 900px) {
    .learning-tracks-final {
        padding: 3rem 1rem;
    }
    .learning-tracks-final-title {
        font-size: 1.7rem;
    }
    .learning-tracks-final-category {
        padding: 1.5rem 1rem;
    }
    .learning-tracks-final-features {
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 600px) {
    .learning-tracks-final-title {
        font-size: 1.2rem;
    }
    .learning-tracks-final-category-title,
    .learning-tracks-final-features-title {
        font-size: 1rem;
    }
    .learning-tracks-final-category {
        padding: 1rem 0.5rem;
    }
    .learning-tracks-final-features {
        padding: 1rem 0.5rem;
    }
    .learning-tracks-final-features-list {
        grid-template-columns: 1fr;
    }
}
/* Final Admission Process Section Styles */
.admission-process-final {
    background: linear-gradient(135deg, #fff, #fff6f3);
    padding: 5rem 2rem;
    border-radius: 20px;
    position: relative;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(255,59,48,0.04);
    overflow: hidden;
}
.admission-process-final-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.admission-process-final-header {
    text-align: center;
    margin-bottom: 3rem;
}
.admission-process-final-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.18);
}
.admission-process-final-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
.admission-process-final-desc {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.admission-process-final-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    margin-bottom: 2.5rem;
}
.admission-process-final-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(255,59,48,0.07);
    padding: 2rem 2.5rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(255,59,48,0.08);
}
.admission-process-final-step:hover {
    box-shadow: 0 18px 40px rgba(255,59,48,0.13);
    transform: translateY(-6px);
}
.admission-process-final-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 18px rgba(255,59,48,0.12);
    flex-shrink: 0;
}
.admission-process-final-step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.admission-process-final-step-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}
.admission-process-final-step-last .admission-process-final-step-icon {
    background: linear-gradient(135deg, #22c55e, var(--primary));
}
.admission-process-final-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.admission-process-final-btn {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(255, 75, 43, 0.18);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.admission-process-final-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    transform: scale(1.05);
}
@media (max-width: 900px) {
    .admission-process-final {
        padding: 3rem 1rem;
    }
    .admission-process-final-step {
        padding: 1.5rem 1.2rem;
        gap: 1.2rem;
    }
    .admission-process-final-title {
        font-size: 1.7rem;
    }
}
@media (max-width: 600px) {
    .admission-process-final-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.2rem 0.7rem;
        gap: 0.7rem;
    }
    .admission-process-final-step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    .admission-process-final-title {
        font-size: 1.2rem;
    }
    .admission-process-final-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}
        :root {
            --primary: #ff3b30;
            --primary-dark: #8b0000;
            --secondary: #ff6b6b;
            --text-dark: #000000;
            --text-light: #666666;
            --bg-light: #ffffff;
            --white: #ffffff;
            --glass-bg: rgba(0, 0, 0, 0.03);
            --glass-border: rgba(0, 0, 0, 0.1);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 15px 40px rgba(255, 59, 48, 0.15);
            --blur: blur(20px);
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --card-bg: #f8f9fa;
            --section-spacing: 4rem;
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        html {
            scroll-behavior: smooth;
        }

        .section {
            
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        .grid {
            display: grid;
            gap: 2rem;
        }

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

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

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

        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: var(--white);
            margin-bottom: 1rem;
        }

        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0;
            width: 2px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background: var(--primary);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .price-tag {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 1rem 0;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 992px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section {
                padding: calc(var(--section-spacing) / 2) 0;
            }
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .navbar:hover {
            background: rgba(255, 255, 255, 1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            padding: 0.5rem 0;
            position: relative;
            z-index: 2;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            color: var(--primary-dark);
        }

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

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            display: block;
            letter-spacing: 0.2px;
        }

        @media (max-width: 1200px) {
            .nav-container, .stats-bar {
                padding: 0.8rem 1.5rem;
            }
        }

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

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 1.2rem;
                box-shadow: var(--shadow-md);
                border-radius: 0 0 15px 15px;
                flex-direction: column;
                gap: 1.2rem;
                z-index: 1;
                animation: slideDown 0.3s ease;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-container {
                padding: 0.5rem 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .hero {
                padding: 3rem 1.5rem 2.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 0.5rem;
            }

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

            .cta-button {
                padding: 1rem 2.5rem;
                font-size: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 0 1rem;
            }

            .stat-box {
                padding: 1.5rem 1rem;
            }

            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

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

            .auto-scroll-banner {
                font-size: 0.85rem;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 0.5rem 1rem;
            }
        }

        .nav-links a i {
            font-size: 1.1rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

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

        .nav-links a:hover i {
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
            border-radius: 2px;
        }

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

        /* Auto scroll animation */
        @keyframes autoScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .auto-scroll-banner {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 0.75rem 0;
            overflow: hidden;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .auto-scroll-banner::before,
        .auto-scroll-banner::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .auto-scroll-banner::before {
            left: 0;
            background: linear-gradient(90deg, var(--primary), transparent);
        }

        .auto-scroll-banner::after {
            right: 0;
            background: linear-gradient(-90deg, var(--primary), transparent);
        }

        .scroll-text {
            display: flex;
            animation: autoScroll 30s linear infinite;
            white-space: nowrap;
        }

        .scroll-text span {
            margin-right: 4rem;
            display: inline-flex;
            align-items: center;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .scroll-text span::before {
            content: '★';
            margin-right: 0.75rem;
            font-size: 0.9em;
            animation: pulse 2s infinite;
            display: inline-block;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* Floating Elements */
        .floating-box {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
            z-index: 999;
            animation: float 3s ease-in-out infinite;
            cursor: pointer;
            max-width: 280px;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floating-box:hover {
            transform: scale(1.05);
            animation: none;
        }

        .floating-box h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .floating-box p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .floating-box button {
            background: var(--white);
            color: var(--primary);
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 20px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .floating-box button:hover {
            transform: scale(1.05);
        }

        .close-floating {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Countdown Timer */
        .timer-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .timer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .timer-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem 1rem;
            border-radius: 12px;
            min-width: 80px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .timer-number {
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 1;
        }

        .timer-label {
            font-size: 0.8rem;
            margin-top: 0.5rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Popup Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: var(--white);
            margin: 50px auto;
            padding: 0;
            border-radius: 20px;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.4s ease;
        }

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

        .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 2rem;
            border-radius: 20px 20px 0 0;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 900;
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
        }

        .modal-footer {
            padding: 0 2rem 2rem 2rem;
        }

        .modal-footer button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-footer button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--white);
            cursor: pointer;
            background: none;
            border: none;
            transition: transform 0.3s ease;
        }

        .close-modal:hover {
            transform: rotate(90deg);
        }

        /* Limited Offer Badge */
        .offer-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Hover Glow Effect */
        .glow-on-hover {
            transition: all 0.3s ease;
        }

        .glow-on-hover:hover {
            box-shadow: 0 0 30px rgba(255, 59, 48, 0.4);
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 900;
            animation: fadeInUp 0.3s ease;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
        }

        .scroll-to-top.show {
            display: flex;
        }

        /* Attention Grabber */
        .attention-box {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border: 2px solid #ffa500;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 10px 30px rgba(255, 160, 0, 0.3);
            animation: slideInRight 0.6s ease;
        }

        .attention-box h3 {
            color: #cc5500;
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 900;
        }

        .attention-box p {
            color: #8b4513;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

     
    
        /* Stats Bar */
        .stats-bar {
            max-width: 1200px;
            margin: -3rem auto 0;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

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

        .stat-box {
            background: var(--bg-light);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 107, 107, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .stat-box:hover::before {
            opacity: 1;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2);
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-box {
            animation: fadeInUp 0.6s ease backwards;
        }

        .stat-box:nth-child(1) { animation-delay: 0.1s; }
        .stat-box:nth-child(2) { animation-delay: 0.2s; }
        .stat-box:nth-child(3) { animation-delay: 0.3s; }
        .stat-box:nth-child(4) { animation-delay: 0.4s; }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin: 0.5rem 0;
        }

        .stat-label {
            color: var(--text-light);
            font-weight: 600;
            margin-top: 0.5rem;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        /* Program Overview Section */
        .program-overview {
            padding: 4rem 2rem;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 0.6s ease;
        }

        .overview-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .company-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(139, 0, 0, 0.1) 100%);
            border-radius: 30px;
            font-weight: 600;
            color: var(--primary);
            margin-top: 0.5rem;
            border: 1px solid rgba(255, 59, 48, 0.2);
        }

        .overview-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            animation: fadeInUp 0.6s ease 0.2s backwards;
        }

        .main-desc {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

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

        .timeline-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--glass-border);
            animation: fadeInUp 0.6s ease backwards;
        }

        .timeline-card:nth-child(1) { animation-delay: 0.3s; }
        .timeline-card:nth-child(2) { animation-delay: 0.4s; }
        .timeline-card:nth-child(3) { animation-delay: 0.5s; }

        .timeline-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2);
        }

        .timeline-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .timeline-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .card-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(255, 59, 48, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

            .overview-goal {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 2rem 2.5rem;
            border-radius: 25px;
            text-align: center;
            max-width: 850px;
            margin: 1.5rem auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 59, 48, 0.15),
                       inset 0 2px 10px rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .overview-goal:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 20px 40px rgba(255, 59, 48, 0.2),
                       inset 0 2px 15px rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .overview-goal::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
            animation: shimmer 12s linear infinite;
            opacity: 0.8;
        }

        @keyframes shimmer {
            0% { transform: translate(-30%, -30%) rotate(0deg) scale(1); }
            50% { transform: translate(-30%, -30%) rotate(180deg) scale(1.1); }
            100% { transform: translate(-30%, -30%) rotate(360deg) scale(1); }
        }

        .overview-goal::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 70%),
                        radial-gradient(circle at bottom left, rgba(255,59,48,0.1), transparent 70%);
            z-index: 1;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .overview-goal:hover::after {
            opacity: 1;
        }

        .overview-goal p {
            font-size: 1.4rem;
            color: var(--white);
            font-weight: 500;
            line-height: 1.5;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.15);
            margin: 0;
            padding: 0 1rem;
            letter-spacing: 0.02em;
            animation: fadeInUp 0.5s ease;
            background: linear-gradient(120deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }

        .overview-goal:hover p {
            transform: scale(1.02);
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        @keyframes fadeScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .goal-icon {
            font-size: 2.2rem;
            color: var(--white);
            margin-bottom: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.15);
            width: 65px;
            height: 65px;
            border-radius: 18px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            animation: iconFloat 5s ease-in-out infinite;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
                       inset 0 2px 8px rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-6px) rotate(3deg); }
            75% { transform: translateY(4px) rotate(-3deg); }
        }

        .goal-icon:hover {
            transform: scale(1.1) rotate(5deg);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15),
                       inset 0 2px 12px rgba(255, 255, 255, 0.2);
        }

        .goal-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, 
                rgba(255,255,255,0.4) 0%, 
                rgba(255,255,255,0.1) 50%,
                rgba(255,255,255,0.4) 100%);
            border-radius: 18px;
            z-index: -1;
            opacity: 0.6;
            animation: borderGlow 3s linear infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.9; }
        }

        .goal-icon::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            z-index: -1;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
        }

        /* Responsive styles for goal section */
        @media (max-width: 768px) {
            .overview-goal {
                padding: 1.8rem 1.5rem;
                margin: 1.2rem auto;
            }

            .overview-goal p {
                font-size: 1.2rem;
                padding: 0 0.5rem;
            }

            .goal-icon {
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .overview-goal {
                padding: 1.5rem 1rem;
                border-radius: 15px;
                margin: 1rem auto;
            }

            .overview-goal p {
                font-size: 1.1rem;
                line-height: 1.4;
            }

            .goal-icon {
                width: 45px;
                height: 45px;
                font-size: 1.6rem;
                margin-bottom: 0.6rem;
                border-radius: 12px;
            }
        }        @media (max-width: 768px) {
            .program-overview {
                padding: 3rem 1.5rem;
            }

            .overview-header h2 {
                font-size: 2rem;
            }

            .main-desc {
                font-size: 1.1rem;
            }

            .timeline-cards {
                gap: 1.5rem;
            }

            .timeline-card {
                padding: 1.5rem;
            }

            .overview-goal {
                padding: 1.5rem;
            }

            .overview-goal p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .overview-header h2 {
                font-size: 1.8rem;
            }

            .company-badge {
                font-size: 0.9rem;
                padding: 0.4rem 1.2rem;
            }

            .main-desc {
                font-size: 1rem;
            }

            .card-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

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

        /* Program Details Section */
        .program-details {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,249,250,1) 100%);
        }

        .details-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            position: relative;
        }

        .program-offers {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,59,48,0.1);
            animation: slideInLeft 0.6s ease;
        }

        .program-offers:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 59, 48, 0.1);
            position: relative;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            animation: shimmerLine 2s infinite;
        }

        @keyframes shimmerLine {
            0% { width: 30%; }
            50% { width: 50%; }
            100% { width: 30%; }
        }

        .section-icon {
            font-size: 2.2rem;
            margin-right: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin: 1rem 0;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .offers-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .offers-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
            padding: 1rem 1.5rem;
            background: rgba(255,59,48,0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .offers-list li:hover {
            transform: translateX(10px);
            background: rgba(255,59,48,0.1);
        }

        .offers-list li i {
            color: var(--primary);
            margin-right: 1rem;
            font-size: 1.2rem;
            background: rgba(255, 59, 48, 0.1);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .offers-list li:hover i {
            transform: scale(1.1) rotate(5deg);
            background: rgba(255, 59, 48, 0.2);
        }

        .eligibility-section {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,59,48,0.1);
            animation: slideInRight 0.6s ease;
            background-image: linear-gradient(to bottom right, rgba(255,255,255,0.9), rgba(255,255,255,0.95)),
                            radial-gradient(circle at top left, rgba(255,59,48,0.1), transparent 60%),
                            radial-gradient(circle at bottom right, rgba(255,59,48,0.05), transparent 60%);
        }

        .eligibility-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .eligibility-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .eligibility-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
            padding: 1rem 1.5rem;
            background: rgba(255,59,48,0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .eligibility-list li:hover {
            transform: translateX(10px);
            background: rgba(255,59,48,0.1);
        }

        .eligibility-list li i {
            color: #22c55e;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .highlight-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-dark);
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(255,59,48,0.08) 0%, rgba(255,59,48,0.03) 100%);
            border-radius: 15px;
            margin-top: 2rem;
            position: relative;
            animation: fadeInUp 0.6s ease 0.4s forwards;
            opacity: 0;
            box-shadow: inset 0 2px 5px rgba(255,59,48,0.05);
            border: 1px solid rgba(255,59,48,0.1);
        }

        .highlight-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
            border-radius: 4px 0 0 4px;
            animation: glowBar 2s infinite;
        }

        @keyframes glowBar {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive styles for program details */
        @media (max-width: 992px) {
            .details-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

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

            .program-offers,
            .eligibility-section {
                padding: 2rem;
            }

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

            .offers-list li,
            .eligibility-list li {
                padding: 0.8rem 1.2rem;
                font-size: 0.95rem;
            }

            .highlight-text {
                font-size: 1rem;
                padding: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .program-details {
                padding: 2rem 1rem;
            }

            .program-offers,
            .eligibility-section {
                padding: 1.5rem;
                border-radius: 20px;
            }

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

            .offers-list li,
            .eligibility-list li {
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }

            .highlight-text {
                font-size: 0.9rem;
                padding: 1rem;
            }
        }

        /* Program Duration Section Styles */
        .program-duration {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .duration-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header-main {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-icon-main {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: inline-block;
            animation: floatIcon 3s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .section-title-main {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .total-duration {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .total-duration span {
            color: var(--primary);
            font-weight: 600;
        }

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

        .phase-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,59,48,0.1);
            position: relative;
            overflow: hidden;
        }

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

        .phase-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            transform: rotate(-5deg);
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2);
            color: white;
            font-size: 2.5rem;
        }

        .phase-card:hover .phase-icon {
            transform: rotate(0deg) scale(1.1);
            box-shadow: 0 15px 30px rgba(255, 59, 48, 0.3);
        }

        .phase-icon i {
            transform: rotate(5deg);
            transition: all 0.4s ease;
        }

        .phase-card:hover .phase-icon i {
            transform: rotate(0deg) scale(1.1);
        }

        .phase-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 50%;
            z-index: -1;
            animation: pulseGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulseGlow {
            0% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.5); opacity: 0; }
            100% { transform: scale(1); opacity: 0.5; }
        }

        .phase-card h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .phase-card h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 2px;
        }

        .duration {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(255,59,48,0.1);
            border-radius: 20px;
        }

        .focus {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .phase-details {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .phase-details li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .phase-details li i {
            color: #22c55e;
            font-size: 1rem;
        }

        .phase-details li:hover {
            transform: translateX(5px);
            color: var(--text-dark);
        }

        .phase-icon-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: 50%;
            z-index: -1;
            animation: iconPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes iconPulse {
            0% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.3); opacity: 0; }
            100% { transform: scale(1); opacity: 0.5; }
        }

        /* Enhanced Admission Process Styles */
        .admission-process {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(255,59,48,0.02) 0%, rgba(255,255,255,1) 50%, rgba(255,59,48,0.02) 100%);
            position: relative;
            overflow: hidden;
        }

        .admission-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,59,48,0.2), transparent);
        }

        .admission-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .process-path {
            position: absolute;
            top: 60px;
            left: 50px;
            bottom: 60px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            opacity: 0.2;
        }

        .process-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-top: 1rem;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .step-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

        .step-number {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .step-card h3 {
            font-size: 1.3rem;
            margin: 1rem 0;
            color: var(--text-dark);
        }

        .step-card p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .step-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            color: var(--primary);
            font-size: 2rem;
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-icon {
            transform: scale(1.2);
            opacity: 0.4;
        }

        .confirmation-note {
            text-align: center;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255,59,48,0.05);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .confirmation-note i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .confirmation-note p {
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Learning Tracks Styles */
        .learning-tracks {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .tracks-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tracks-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-top: 1rem;
        }

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

        .track-category {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .track-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.1);
        }

        .category-title {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
        }

        .category-number {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary);
            opacity: 0.7;
            letter-spacing: 1px;
        }

        .track-bullet {
            display: inline-block;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            margin-right: 12px;
            opacity: 0.6;
            position: relative;
        }

        .track-list {
            list-style: none;
            padding: 0;
        }

        .track-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.8rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .track-list li:hover {
            background: rgba(255,59,48,0.05);
            transform: translateX(10px);
        }

        .track-list li i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .track-features {
            margin-top: 3rem;
            padding: 3rem 2rem;
            background: linear-gradient(145deg, var(--white), rgba(255,255,255,0.95));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

.program-section {
  background: linear-gradient(135deg, #fff, #fff6f3);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.program-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 90, 60, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ee0404ff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.duration-badge {
  display: inline-block;
  background: linear-gradient(90deg, #000000ff, #ff0000ff);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 3.5rem;
  box-shadow: 0 8px 25px rgba(255, 75, 43, 0.25);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.timeline::before {
 
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 850px;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 25px;
  height: 25px;
  background: #ff4b2b;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
  margin: 0 auto;
  position: relative;
  top: 10px;
}

.timeline-content {
  background: #fff;
  border-radius: 15px;
  padding: 1.8rem 2.2rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  width: 45%;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 75, 43, 0.15);
}

.timeline-content h4 {
  color: #ff4b2b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content .duration {
  display: inline-block;
  font-weight: 600;
  color: #333;
  background: rgba(255, 75, 43, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.timeline-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 3rem;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-icon {
    left: 0;
    margin: 0;
  }
}

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

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

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }
}


.step-card {
  position: relative;
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border-light);
  backdrop-filter: var(--blur);
  border-radius: 15px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--accent1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-desc span.check {
  color: var(--accent2);
  font-weight: bold;
}

/* Animation */
.step-card {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeSlide 0.6s forwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(2) { animation-delay: 0.4s; }
.step-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeSlide {
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .admission-container {
    padding-left: 20px;
    border-left: 2px solid var(--accent1);
  }
  .step-number {
    left: -35px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .step-card {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .admission-container {
    padding-left: 10px;
  }
  .step-number {
    left: -25px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  .step-title {
    font-size: 1.2rem;
  }
  .step-desc {
    font-size: 0.95rem;
  }
}
// ...existing code...
/* Override: single-row, white background, attractive & responsive admission cards */
.admission-process {
  background: var(--white); /* keep background white as requested */
  padding: 4rem 1.5rem;
  position: relative;
  overflow: visible;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

/* Make cards in a single horizontal row (no wrap), allow horizontal scroll on small screens */
.process-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;          /* single row */
  overflow-x: auto;           /* horizontal scroll when needed */
  padding-bottom: 8px;        /* space for scrollbar */
  -webkit-overflow-scrolling: touch;
  justify-content: center;    /* center row on wide screens */
  align-items: stretch;
}

/* Card sizing: fixed base so they sit in one row */
.process-card {
  flex: 0 0 360px;            /* width of each card in the row */
  max-width: 360px;
  min-width: 280px;
  display: flex;
  align-items: stretch;
}

/* visual appearance of inner card */
.card-inner {
  background: #ffffff; /* ensure inner is white */
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16,24,40,0.06);
  border: 1px solid rgba(15,23,42,0.04);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-inner h3 { margin-top: 0.25rem; }
.card-inner p { margin-bottom: 1rem; color: var(--text-light); }

/* prominent step number (small, subtle style to fit white background) */
.process-card .step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255,59,48,0.06);
  pointer-events: none;
}

/* icon box more subtle on white */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 18px rgba(255,59,48,0.12);
}

/* hover uplift */
.process-card:hover .card-inner {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(16,24,40,0.12);
  border-color: rgba(255,59,48,0.12);
}

/* scrollbar styling */
.process-cards::-webkit-scrollbar { height: 8px; }
.process-cards::-webkit-scrollbar-track { background: transparent; }
.process-cards::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 8px;
}

/* success area keep compact on right/bottom */
.success-note {
  margin-top: 2.25rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(16,24,40,0.06);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(15,23,42,0.04);
}

/* responsive adjustments */
@media (max-width: 1200px) {
  .process-card { flex: 0 0 320px; max-width: 320px; }
}

@media (max-width: 900px) {
  .admission-process { padding: 3rem 1rem; }
  .process-card { flex: 0 0 300px; max-width: 300px; min-width: 260px; }
  .process-title { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  /* smaller cards, comfortable scrolling on phones */
  .process-card { flex: 0 0 260px; max-width: 260px; min-width: 220px; }
  .card-inner { padding: 1.25rem; border-radius: 12px; }
  .process-title { font-size: 1.6rem; }
  .success-note { flex-direction: column; text-align: center; gap: 0.75rem; }
}
  
/* ensure no leftover left-border or variables conflict: neutralize previous overrides */
.admission-container { padding-left: 0; border-left: none; }
.step-card { /* keep old step-card style unaffected */ }
/* ...existing code... */
/* Program Benefits & Certification Section Styles */
.program-benefits-final {
    background: linear-gradient(120deg, #fff6f3 0%, #ffe3db 100%);
    padding: 5rem 2rem;
    border-radius: 32px;
    margin-top: 3rem;
    box-shadow: 0 16px 48px rgba(255,59,48,0.13);
    position: relative;
    overflow: visible;
}
.program-benefits-final-container {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.program-benefits-final-header {
    text-align: center;
    margin-bottom: 2.7rem;
}
.program-benefits-final-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 24px rgba(255, 75, 43, 0.18);
    letter-spacing: 0.03em;
    animation: badgePop 1s cubic-bezier(.68,-0.55,.27,1.55) 0.2s both;
}
@keyframes badgePop {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}
.program-benefits-final-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ee0404ff;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}
.program-benefits-final-desc {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.program-benefits-final-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.program-benefits-final-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(255,59,48,0.10);
    padding: 2.2rem 2rem 2rem 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,59,48,0.08);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    animation: cardFadeIn 0.7s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.program-benefits-final-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(255,59,48,0.13);
    border-color: #ff4b2b;
}
.program-benefits-final-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 18px rgba(255,59,48,0.12);
}
.program-benefits-final-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ee0404ff;
    margin-bottom: 0.7rem;
}
.program-benefits-final-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}
.program-benefits-final-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}
.program-benefits-final-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #333;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}
.program-benefits-final-list li i {
    color: #22c55e;
    font-size: 1.1rem;
}
.program-benefits-final-note {
    font-size: 0.95rem;
    color: #ff4b2b;
    margin-top: 0.7rem;
    font-weight: 500;
}
@keyframes cardFadeIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    80% { opacity: 1; transform: translateY(-8px) scale(1.04); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .program-benefits-final-container { padding: 0 1rem; }
    .program-benefits-final-title { font-size: 1.7rem; }
    .program-benefits-final-grid { gap: 1.2rem; grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .program-benefits-final { padding: 2.5rem 0.5rem; }
    .program-benefits-final-title { font-size: 1.2rem; }
    .program-benefits-final-card { padding: 1.2rem 1rem; min-height: 180px; }
}
