/*
Theme Name: ClasscodeITC Theme
Author: Raviraj Mane
Version: 1.0
Description: Custom theme for ClasscodeITC site.
*/


body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
  }

  .courses_nav_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f0f1fc;
    z-index: 2;
  }

  .courses_logo-container {
    display: flex;
    align-items: center;
  }

  .courses_nav-logo {
    width: 300px;
    min-width: 120px;
    transition: all 0.3s ease;
  }

  .courses_nav_buttons_container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .courses_nav_link {
    color: #173d7a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
  }

  .courses_nav_link:hover {
    color: #3898ec;
    transform: scale(1.05);
  }

  .dark_button_login {
    background-color: #3898ec;
    color: #fff;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .dark_button_login:hover {
    background-color: #173d7b;
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 768px) {
    .courses_nav_section {
      flex-direction: column;
      gap: 20px;
    }

    .courses_nav_buttons_container {
      justify-content: center;
      gap: 15px;
    }
  }

body {
      background-color: #f0f1fd;
      font-family: 'Raleway', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }

    h1, h2, h3 {
      color: #173d7b;
    }

    p {
      color: #4f6fae;
      font-size: 14px;
      margin: 10px 0;
    }

    section {
      padding: 80px 5%;
    }

    .section-heading {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
    }

    .sub-heading {
      text-align: center;
      color: #4f6fae;
      font-size: 14px;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .stats-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .stat-box {
      background: #f5f7fa;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 200px;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #173d7b;
    }

    .stat-label {
      font-size: 14px;
      color: #4f6fae;
    }

    .values-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }

    .value-box {
      background-color: #f5f7fa;
      padding: 30px;
      border-radius: 20px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .founder {
      text-align: center;
      font-weight: 600;
      color: #173d7b;
      margin-top: 30px;
    }

    /* Buttons */
    .dark_button_joinnow {
      background-color: #3898ec;
      color: #fff;
      padding: 10px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 20px;
    }

    .dark_button_joinnow:hover {
      background-color: #173d7b;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .stats-grid,
      .values-grid {
        flex-direction: column;
        align-items: center;
      }
    }

/* Footer styles */
:root {
  --card-width: 100%;
  --card-height: 300px;
  --card-max-width: 1200px;
  --card-padding: 40px;
  --card-border-radius: 20px;
  --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --footer-top-margin: 140px;
  --primary-blue: #4a77e8;
  --dark-blue: #1a2e66;
  --text-dark: #1a2e66;
  --text-medium: #4a5568;
  --text-light: #f8f9fa;
}

.training-section {
  padding: 80px 0 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
  background-color: #f0f1fc;
}

.training-container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.training-hero-card {
  height: var(--card-height);
  background: var(--primary-blue);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
  margin-bottom: calc(var(--footer-top-margin) * -1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  overflow: visible;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .training-hero-card {
    flex-direction: row;
    align-items: center;
  }
}

.training-hero-card .training-image {
  flex: 1;
  text-align: center;
  margin-top: -40px;
  animation: float 4s ease-in-out infinite;
}

.training-hero-card .training-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(.9) translateY(-60px);
}

.training-hero-card .training-text {
  flex: 1;
}

.training-hero-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  animation: fadeInUp 0.8s ease forwards;
}

.training-hero-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.training-form {
  margin-top: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.form-wrapper {
  position: relative;
  max-width: 400px;
  font-family: 'Raleway', sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 100px 10px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  box-sizing: border-box;
  height: 44px;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}

.form-input:focus,
.form-input:hover {
  transform: scale(1.05);
}

.form-button {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-button:hover,
.form-button:focus,
.form-button:active {
  transform: scale(1.1);
}

.training-footer {
  align-items: start;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.training-footer {
  padding-bottom: 30px;
}

.copyright {
  padding-top: 15px;
  margin-top: 0;
}

.training-footer-wrapper {
  background-color: #ffffff;
  padding-top: var(--footer-top-margin);
  margin-top: calc(var(--footer-top-margin) * -1);
  position: relative;
  z-index: 1;
}

.training-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
  max-width: var(--card-max-width);
  margin: 0 auto;
  align-items: start;
}

.footer-content-aligner {
  position: relative;
  top: calc(var(--footer-top-margin) * -0.3);
}

.footer-branding {
  padding: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  align-self: center;
  margin-top: -5px;
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: rotate(5deg) scale(1.1);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.footer-address {
  margin-top: 20px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  padding: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: var(--text-medium);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 0.9rem;
  transform-origin: left center;
}

.footer-link:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

.footer-contact {
  padding: 20px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s;
}

.contact-item:hover img {
  transform: scale(1.2);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  color: var(--text-medium);
  max-width: var(--card-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.copyright-links {
  display: flex;
  gap: 20px;
}

.copyright-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.copyright-links a:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .training-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .training-hero-card .training-image {
    margin-top: 0;
  }

  .training-hero-card .training-image img {
    transform: scale(.9) translateY(0);
  }

  .training-form {
    display: flex;
    justify-content: center;
  }

  .training-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .copyright {
    flex-direction: column;
    gap: 15px;
  }

  .copyright-links {
    justify-content: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-brand-text {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 28px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e66;
}

.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5f5f5f;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes vectorPulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.05);
        opacity: 0.9;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Navbar styles */
    body {
      margin: 0;
      font-family: 'Raleway', sans-serif;
      background-color: #f0f1fd;
      line-height: 1.6;
    }

    .courses_nav_section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #f0f1fc;
      z-index: 2;
    }

    .courses_logo-container {
      display: flex;
      align-items: center;
    }

    .courses_nav-logo {
      width: 300px;
      min-width: 120px;
      transition: all 0.3s ease;
    }

    .courses_nav_buttons_container {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .courses_nav_link {
      color: #173d7a;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 8px 12px;
      opacity: 0;
      animation: fadeInUp 0.5s ease forwards;
    }

    .courses_nav_link:nth-child(1) { animation-delay: 0.1s; }
    .courses_nav_link:nth-child(2) { animation-delay: 0.2s; }
    .courses_nav_link:nth-child(3) { animation-delay: 0.3s; }
    .courses_nav_link:nth-child(4) { animation-delay: 0.4s; }
    .courses_nav_link:nth-child(5) { animation-delay: 0.5s; }

    .courses_nav_link:hover {
      color: #3898ec;
      transform: scale(1.05);
    }

    .dark_button_login {
      background-color: #3898ec;
      color: #fff;
      padding: 8px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: inline-block;
      opacity: 0;
      animation: fadeInUp 0.5s ease forwards;
      animation-delay: 0.6s;
    }

    .dark_button_login:hover {
      background-color: #173d7b;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .courses_nav_section {
        flex-direction: column;
        gap: 20px;
      }

      .courses_nav_buttons_container {
        justify-content: center;
        gap: 15px;
      }
    }
    
    /* Main content styles */
    h1, h2, h3 {
      color: #173d7b;
    }

    p {
      color: #4f6fae;
      font-size: 14px;
      margin: 10px 0;
    }

    section {
      padding: 80px 5%;
    }

    .section-heading {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .sub-heading {
      text-align: center;
      color: #4f6fae;
      font-size: 14px;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.2s;
    }

    .activities-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .activity-section {
      margin-bottom: 60px;
    }

    .activity-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .activity-content {
        flex-direction: row;
        align-items: center;
      }
      
      .activity-content.reverse {
        flex-direction: row-reverse;
      }
    }

    .activity-text {
      flex: 1;
    }

    .activity-image-container {
      flex: 1;
      min-height: 300px;
      background-color: transparent;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Buttons */
    .dark_button_joinnow {
      background-color: #3898ec;
      color: #fff;
      padding: 10px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 20px;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.8s;
    }

    .dark_button_joinnow:hover {
      background-color: #173d7b;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    /* Footer styles */
    :root {
      --card-width: 100%;
      --card-height: 300px;
      --card-max-width: 1200px;
      --card-padding: 40px;
      --card-border-radius: 20px;
      --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      --footer-top-margin: 140px;
      --primary-blue: #4a77e8;
      --dark-blue: #1a2e66;
      --text-dark: #1a2e66;
      --text-medium: #4a5568;
      --text-light: #f8f9fa;
    }
  
    .training-section {
      padding: 80px 0 0;
      font-family: 'Raleway', sans-serif;
      position: relative;
      background-color: #f0f1fc;
    }
  
    .training-container {
      max-width: var(--card-max-width);
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }
  
    .training-hero-card {
      height: var(--card-height);
      background: var(--primary-blue);
      border-radius: var(--card-border-radius);
      box-shadow: var(--card-shadow);
      padding: var(--card-padding);
      display: flex;
      flex-direction: column;
      gap: 30px;
      position: relative;
      z-index: 10;
      margin-bottom: calc(var(--footer-top-margin) * -1);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: white;
      overflow: visible;
      animation: float 6s ease-in-out infinite;
    }
  
    @media (min-width: 768px) {
      .training-hero-card {
        flex-direction: row;
        align-items: center;
      }
    }
  
    .training-hero-card .training-image {
      flex: 1;
      text-align: center;
      margin-top: -40px;
      animation: float 4s ease-in-out infinite;
    }
  
    .training-hero-card .training-image img {
      max-width: 100%;
      height: auto;
      display: block;
      transform: scale(.9) translateY(-60px);
    }
  
    .training-hero-card .training-text {
      flex: 1;
    }
  
    .training-hero-card h1 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
      animation: fadeInUp 0.8s ease forwards;
    }
  
    .training-hero-card p {
      font-size: 0.8rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.2s;
    }
  
    .training-form {
      margin-top: 20px;
      animation: fadeInUp 0.8s ease forwards;
      animation-delay: 0.4s;
    }
  
    .form-wrapper {
      position: relative;
      max-width: 400px;
      font-family: 'Raleway', sans-serif;
    }
  
    .form-input {
      width: 100%;
      padding: 10px 100px 10px 40px;
      background-color: rgba(255, 255, 255, 0.15);
      border: none;
      border-radius: 40px;
      font-size: 0.9rem;
      box-sizing: border-box;
      height: 44px;
      color: white;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
  
    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.7);
      font-family: 'Raleway', sans-serif;
      font-size: 0.9rem;
    }
  
    .form-input:focus,
    .form-input:hover {
      transform: scale(1.05);
    }
  
    .form-button {
      position: absolute;
      top: 2px;
      right: 2px;
      height: 40px;
      padding: 0 20px;
      background: #ffffff;
      color: #000000;
      border: none;
      border-radius: 40px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
  
    .form-button:hover,
    .form-button:focus,
    .form-button:active {
      transform: scale(1.1);
    }
  
    .training-footer {
      align-items: start;
    }
  
    .footer-links h3,
    .footer-contact h3 {
      min-height: 40px;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
  
    .training-footer {
      padding-bottom: 30px;
    }
  
    .copyright {
      padding-top: 15px;
      margin-top: 0;
    }
  
    .training-footer-wrapper {
      background-color: #ffffff;
      padding-top: var(--footer-top-margin);
      margin-top: calc(var(--footer-top-margin) * -1);
      position: relative;
      z-index: 1;
    }
  
    .training-footer {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      padding: 60px 0 30px;
      max-width: var(--card-max-width);
      margin: 0 auto;
      align-items: start;
    }
  
    .footer-content-aligner {
      position: relative;
      top: calc(var(--footer-top-margin) * -0.3);
    }
  
    .footer-branding {
      padding: 20px;
    }
  
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
  
    .footer-logo img {
      height: 50px;
      width: auto;
      display: block;
      align-self: center;
      margin-top: -5px;
      transition: transform 0.3s;
    }
    
    .footer-logo img:hover {
      transform: rotate(5deg) scale(1.1);
    }
  
    .footer-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 5px;
    }
  
    .footer-slogan {
      font-size: 1rem;
      color: var(--text-medium);
      font-weight: 500;
    }
  
    .footer-address {
      margin-top: 20px;
      color: var(--text-medium);
      line-height: 1.6;
      font-size: 0.9rem;
    }
  
    .footer-links {
      padding: 20px;
    }
  
    .footer-links h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
  
    .footer-link {
      display: block;
      color: var(--text-medium);
      margin-bottom: 10px;
      text-decoration: none;
      transition: color 0.3s, transform 0.3s;
      font-size: 0.9rem;
      transform-origin: left center;
    }
  
    .footer-link:hover {
      color: var(--text-dark);
      transform: scale(1.05);
    }
  
    .footer-contact {
      padding: 20px;
    }
  
    .footer-contact h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
  
    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
      transition: transform 0.3s;
    }
    
    .contact-item:hover {
      transform: translateX(5px);
    }
  
    .contact-item img {
      width: 24px;
      height: 24px;
      display: block;
      transition: transform 0.3s;
    }
    
    .contact-item:hover img {
      transform: scale(1.2);
    }
  
    .contact-item span {
      font-size: 0.9rem;
      color: var(--text-medium);
    }
  
    .copyright {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-top: 1px solid #eee;
      color: var(--text-medium);
      max-width: var(--card-max-width);
      margin: 0 auto;
      font-size: 0.8rem;
    }
    
    .footer-links h3,
    .footer-contact h3 {
      min-height: 40px;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
  
    .copyright-links {
      display: flex;
      gap: 20px;
    }
  
    .copyright-links a {
      color: var(--text-medium);
      text-decoration: none;
      transition: color 0.3s;
    }
  
    .copyright-links a:hover {
      color: var(--text-dark);
    }
  
    @media (max-width: 768px) {
      .training-hero-card {
        flex-direction: column;
        text-align: center;
      }
  
      .training-hero-card .training-image {
        margin-top: 0;
      }
  
      .training-hero-card .training-image img {
        transform: scale(.9) translateY(0);
      }
  
      .training-form {
        display: flex;
        justify-content: center;
      }
  
      .training-footer {
        grid-template-columns: 1fr;
        text-align: center;
      }
  
      .footer-logo {
        justify-content: center;
      }
  
      .contact-item {
        justify-content: center;
      }
  
      .copyright {
        flex-direction: column;
        gap: 15px;
      }
  
      .copyright-links {
        justify-content: center;
      }
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
  
    .footer-logo img {
      width: 50px;
      height: auto;
    }
  
    .footer-brand-text {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: baseline;
      margin-top: 28px;
    }
  
    .footer-title {
      font-size: 1rem;
      font-weight: 700;
      color: #1a2e66;
    }
  
    .footer-slogan {
      font-size: 0.8rem;
      font-weight: 500;
      color: #5f5f5f;
    }

:root {
      --primary-blue: #173d7b;
      --secondary-blue: #3898ec;
      --light-blue: #f0f1fd;
      --text-dark: #173d7b;
      --text-medium: #4f6fae;
      --text-light: #ffffff;
      --success-green: #2ecc71;
      --warning-orange: #f39c12;
      --error-red: #e74c3c;
      --gray-light: #f5f7fa;
      --gray-medium: #e0e4f5;
      --gray-dark: #95a5a6;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Raleway', sans-serif;
    }

    body {
      background-color: var(--light-blue);
      min-height: 100vh;
    }

    /* Navigation Bar */
    .courses_nav_section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      max-width: 1400px;
      margin: 0 auto;
      background-color: #f0f1fc;
      z-index: 2;
    }

    .courses_logo-container {
      display: flex;
      align-items: center;
    }

    .courses_nav-logo {
      width: 200px;
      min-width: 120px;
      transition: all 0.3s ease;
    }

    .courses_nav_buttons_container {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .courses_nav_link {
      color: #173d7a;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 8px 12px;
    }

    .courses_nav_link:hover {
      color: #3898ec;
      transform: scale(1.05);
    }

    .dark_button_login {
      background-color: #3898ec;
      color: #fff;
      padding: 8px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .dark_button_login:hover {
      background-color: #173d7b;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    /* Contact Page Styles */
    .contact-hero {
      background-color: var(--primary-blue);
      color: white;
      padding: 80px 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .contact-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .contact-hero p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1rem;
      position: relative;
      z-index: 2;
    }

    .contact-container {
      max-width: 1200px;
      margin: -50px auto 50px;
      padding: 0 20px;
      position: relative;
      z-index: 3;
    }

    .contact-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .contact-form {
      padding: 50px;
    }

    .contact-form h2 {
      color: var(--primary-blue);
      margin-bottom: 30px;
      font-size: 1.8rem;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 14px;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid var(--gray-medium);
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s;
    }

    .form-control:focus {
      border-color: var(--secondary-blue);
      box-shadow: 0 0 0 3px rgba(56, 152, 236, 0.2);
      outline: none;
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background-color: var(--secondary-blue);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .submit-btn:hover {
      background-color: var(--primary-blue);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(23, 61, 123, 0.3);
    }

    .contact-info {
      background-color: var(--light-blue);
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-info h2 {
      color: var(--primary-blue);
      margin-bottom: 30px;
      font-size: 1.8rem;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .info-icon {
      background-color: var(--secondary-blue);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .info-content h3 {
      color: var(--text-dark);
      margin-bottom: 5px;
      font-size: 1.1rem;
    }

    .info-content p {
      color: var(--text-medium);
      font-size: 14px;
      line-height: 1.6;
    }

    .quick-links {
      margin-top: 40px;
    }

    .quick-links h3 {
      color: var(--text-dark);
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .quick-links ul {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .quick-links a {
      color: var(--text-medium);
      text-decoration: none;
      transition: all 0.3s;
      font-size: 14px;
      display: flex;
      align-items: center;
    }

    .quick-links a:hover {
      color: var(--secondary-blue);
      transform: translateX(5px);
    }

    .quick-links i {
      margin-right: 8px;
      color: var(--secondary-blue);
    }

    @media (max-width: 992px) {
      .contact-card {
        grid-template-columns: 1fr;
      }
      
      .contact-form, .contact-info {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .contact-hero h1 {
        font-size: 2rem;
      }
      
      .quick-links ul {
        grid-template-columns: 1fr;
      }
      
      .courses_nav_section {
        flex-direction: column;
        gap: 20px;
      }

      .courses_nav_buttons_container {
        justify-content: center;
        gap: 15px;
      }
    }

/* Footer styles */
:root {
  --card-width: 100%;
  --card-height: 300px;
  --card-max-width: 1200px;
  --card-padding: 40px;
  --card-border-radius: 20px;
  --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --footer-top-margin: 140px;
  --primary-blue: #4a77e8;
  --dark-blue: #1a2e66;
  --text-dark: #1a2e66;
  --text-medium: #4a5568;
  --text-light: #f8f9fa;
}

.training-section {
  padding: 150px 0 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
  background-color: #f0f1fc;
}

.training-container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.training-hero-card {
  height: var(--card-height);
  background: var(--primary-blue);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
  margin-bottom: calc(var(--footer-top-margin) * -1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  overflow: visible;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .training-hero-card {
    flex-direction: row;
    align-items: center;
  }
}

.training-hero-card .training-image {
  flex: 1;
  text-align: center;
  margin-top: -40px;
  animation: float 4s ease-in-out infinite;
}

.training-hero-card .training-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(.9) translateY(-60px);
}

.training-hero-card .training-text {
  flex: 1;
}

.training-hero-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  animation: fadeInUp 0.8s ease forwards;
}

.training-hero-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.training-form {
  margin-top: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.form-wrapper {
  position: relative;
  max-width: 400px;
  font-family: 'Raleway', sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 100px 10px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  box-sizing: border-box;
  height: 44px;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}

.form-input:focus,
.form-input:hover {
  transform: scale(1.05);
}

.form-button {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-button:hover,
.form-button:focus,
.form-button:active {
  transform: scale(1.1);
}

.training-footer {
  align-items: start;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.training-footer {
  padding-bottom: 30px;
}

.copyright {
  padding-top: 15px;
  margin-top: 0;
}

.training-footer-wrapper {
  background-color: #ffffff;
  padding-top: var(--footer-top-margin);
  margin-top: calc(var(--footer-top-margin) * -1);
  position: relative;
  z-index: 1;
}

.training-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
  max-width: var(--card-max-width);
  margin: 0 auto;
  align-items: start;
}

.footer-content-aligner {
  position: relative;
  top: calc(var(--footer-top-margin) * -0.3);
}

.footer-branding {
  padding: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  align-self: center;
  margin-top: -5px;
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: rotate(5deg) scale(1.1);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.footer-address {
  margin-top: 20px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  padding: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: var(--text-medium);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 0.9rem;
  transform-origin: left center;
}

.footer-link:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

.footer-contact {
  padding: 20px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s;
}

.contact-item:hover img {
  transform: scale(1.2);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  color: var(--text-medium);
  max-width: var(--card-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.copyright-links {
  display: flex;
  gap: 20px;
}

.copyright-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.copyright-links a:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .training-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .training-hero-card .training-image {
    margin-top: 0;
  }

  .training-hero-card .training-image img {
    transform: scale(.9) translateY(0);
  }

  .training-form {
    display: flex;
    justify-content: center;
  }

  .training-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .copyright {
    flex-direction: column;
    gap: 15px;
  }

  .copyright-links {
    justify-content: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-brand-text {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 28px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e66;
}

.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5f5f5f;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
      background-color: #f0f1fd;
      font-family: 'Raleway', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }

    /* Global Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Global Button Styles */
    .dark_button, .light_button {
      padding: 10px 20px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .dark_button {
      background-color: #173d7b;
      color: white;
    }

    .dark_button:hover {
      background-color: #0f2a56;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .light_button {
      background-color: #3898ec;
      color: white;
    }

    .light_button:hover {
      background-color: #2d87d6;
      animation: pulse 0.6s ease-in-out;
    }

    /* Updated Navbar Styles with proper z-index */
    .courses_nav_section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: transparent;
      position: relative;
      z-index: 1000; /* High z-index to ensure it stays on top */
    }

    .courses_logo-container {
      display: flex;
      align-items: center;
    }

    .courses_nav-logo {
      width: 300px;
      min-width: 120px;
      transition: all 0.3s ease;
    }

    .courses_nav_buttons_container {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .courses_nav_link {
      color: #173d7a;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 8px 12px;
    }

    .courses_nav_link:hover {
      color: #3898ec;
      transform: scale(1.05);
    }

    .dark_button_login {
      background-color: #3898ec;
      color: #fff;
      padding: 8px 24px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .dark_button_login:hover {
      background-color: #173d7b;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .light_button_signup {
      background-color: #3898ec;
      color: #fff;
      padding: 6px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .light_button_signup:hover {
      background-color: #238be6;
      transform: scale(1.08);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .courses_nav_section {
        flex-direction: column;
        gap: 20px;
      }

      .courses_nav_buttons_container {
        justify-content: center;
        gap: 15px;
      }
    }


   .courses_hero_section {
        background-color: #f0f1fc;
        position: relative;
        overflow: hidden;
        min-height: 650px;
        padding: 20px 0;
        animation: fadeInUp 1s ease-out both;
      }
      
      .courses_div_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        position: relative;
        z-index: 1; /* Lower than navbar */
      }
      
      .courses_text_content {
        max-width: 580px;
        padding-left: 20px;
        animation: fadeInUp 1.2s ease-out both;
      }
      
      .courses_heading {
        font-size: 2.2rem;
        color: #173d7a;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        animation: fadeInUp 1.4s ease-out both;
      }
      
      .courses_paragraph {
        color: #173d7a;
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 30px;
        animation: fadeInUp 1.6s ease-out both;
      }
      
      .courses_character {
        width: 40%;
        max-width: 480px;
        position: relative;
        animation: float 4s ease-in-out infinite;
        margin-left: -50px;
        margin-top: -40px;
        z-index: 1; /* Lower than navbar */
      }
      
      .character-svg {
        width: 100%;
        transform: scaleX(-1);
        display: block;
      }
      
      .courses-hero-bg-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0; /* Lowest z-index */
        max-width: 1600px;
        filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.3));
        object-fit: cover;
        transform: scale(0.9) translate(-15%, -10%);
      }
      
      .courses-bg-svg {
        width: 100%;
        height: auto;
      }
      
      /* Responsive */
      @media (max-width: 1024px) {
        .courses_div_block {
          flex-direction: column-reverse;
          text-align: center;
        }
        .courses_text_content {
          padding-left: 0;
        }
        .courses_character {
          width: 80%;
          margin-bottom: 30px;
        }
      }

.courses_intro_section {
        position: relative;
        background: transparent;
        padding: 60px 15px; /* Reduced from 100px 20px */
        overflow: hidden;
        z-index: 1;
        text-align: center;
    }
    
    .courses_intro_container {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0);
        padding: 20px; /* Reduced from 30px */
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    
    .courses_intro_heading {
        font-size: 3rem; /* Reduced from 2.4rem */
        font-weight: 700;
        color: #173d7a;
        margin-bottom: 15px; /* Reduced from 20px */
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        line-height: 1.2; /* Added for better control */
    }
    
    .courses_intro_paragraph {
        font-size: 1rem;
        color: #173d7a;
        line-height: 1.5; /* Reduced from 1.7 */
        max-width: 700px;
        margin: 0 auto 10px; /* Added bottom margin for control */
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        padding: 0 10px; /* Added horizontal padding for mobile */
    }
    
    /* Spacing Control Variables */
    .courses_intro_section {
        --section-padding: 60px; /* Control section padding */
        --heading-margin: 15px; /* Control heading bottom margin */
        --paragraph-margin: 10px; /* Control paragraph bottom margin */
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .courses_intro_section {
            padding: 40px 15px; /* Reduced from original */
            --section-padding: 40px;
            --heading-margin: 12px;
            --paragraph-margin: 8px;
        }
        
        .courses_intro_heading {
            font-size: 1.8rem; /* Reduced from 2rem */
            margin-bottom: var(--heading-margin);
        }
    
        .courses_intro_paragraph {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: var(--paragraph-margin);
        }
        
        .courses_intro_container {
            padding: 15px; /* Reduced from 20px */
        }
    }
    
    @media (max-width: 480px) {
        .courses_intro_section {
            padding: 30px 10px; /* Reduced from original */
            --section-padding: 30px;
            --heading-margin: 10px;
            --paragraph-margin: 6px;
        }
        
        .courses_intro_container {
            padding: 12px; /* Reduced from 15px */
        }
        
        .courses_intro_heading {
            font-size: 1.6rem; /* Further reduced */
        }
    }

/* ============== */
    /* BASE STYLING */
    /* ============== */
    .courses_java_fullstack_section {
      position: relative;
      padding: 60px 12%; /* Reduced from 80px */
      background-color: #f0f1fc;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
    }
  
    /* ============== */
    /* CONTENT SIDE */
    /* ============== */
    .courses_java_fullstack_container {
      flex: 1;
      min-width: 300px;
      padding-right: 40px;
      position: relative;
      z-index: 2;
    }
  
    .courses_java_fullstack_header {
      display: flex;
      align-items: center;
      margin-bottom: 20px; /* Reduced from 30px */
    }
  
    .java_logo {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      animation: floatLogo 4s ease-in-out infinite;
    }
  
    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
  
    .courses_java_fullstack_heading {
      font-size: 2rem;
      color: #173d7a;
      font-weight: 700;
      margin: 0;
      line-height: 1.2; /* Added to reduce space below heading */
    }
  
    .courses_java_content {
      max-width: 600px;
    }
  
    .courses_java_fullstack_short_description {
      font-size: 1.1rem;
      color: #173d7a;
      line-height: 1.4; /* Reduced from 1.6 */
      margin-bottom: 15px; /* Reduced from 25px */
    }
  
    .courses_java_fullstack_title {
      font-size: 1.5rem;
      color: #173d7a;
      font-weight: 700;
      margin-bottom: 12px; /* Reduced from 20px */
      line-height: 1.3; /* Added to reduce space below title */
    }
  
    .courses_java_fullstack_list {
      color: #173d7a;
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px; /* Reduced from 30px */
    }
  
    .courses_java_fullstack_list li {
      margin: 8px 0; /* Reduced from 12px */
      position: relative;
      padding-left: 25px; /* Reduced from 30px */
      font-size: 1.05rem;
      line-height: 1.3; /* Added to reduce line height */
    }
  
    .courses_java_fullstack_list li:before {
      content: "✓";
      color: #5d8bf4;
      font-weight: bold;
      position: absolute;
      left: 0;
    }
  
    /* ============== */
    /* PRICING & BUTTONS */
    /* ============== */
    .courses_duration_fee {
      display: flex;
      flex-direction: column;
      gap: 10px; /* Reduced from 15px */
      margin-bottom: 20px; /* Reduced from 30px */
    }
  
    .courses_duration, .courses_fee {
      font-size: 1.1rem;
      font-weight: 600;
      color: #173d7a;
      line-height: 1.3; /* Added to reduce line height */
    }
  
    .old_fee {
      text-decoration: line-through;
      color: #9e9e9e;
      margin-right: 8px;
    }
  
    .new_fee {
      color: #173d7a;
      font-weight: bold;
      margin-right: 12px;
    }
  
    .emi_text {
      font-weight: normal;
      font-size: 0.95rem;
      color: #5d8bf4;
    }
  
    .courses_java_fullstack_buttons {
      display: flex;
      gap: 15px; /* Reduced from 20px */
      flex-wrap: wrap;
    }
  
    .light_button_signup, .dark_button {
      padding: 10px 24px; /* Reduced from 12px 28px */
      font-weight: 600;
      text-decoration: none;
      border-radius: 30px;
      transition: all 0.3s ease;
      font-size: 1rem;
      line-height: 1.3; /* Added to reduce button height */
    }
  
    .light_button_signup {
      background: white;
      color: #173d7a;
      border: 2px solid #173d7a;
    }
  
    .light_button_signup:hover {
      background: #f0f4ff;
      transform: translateY(-2px);
    }
  
    .dark_button {
      background: #173d7a;
      color: white;
      border: 2px solid #173d7a;
    }
  
    .dark_button:hover {
      background: #0f2a56;
      transform: translateY(-2px);
    }
  
    /* ============== */
    /* IMAGE SIDE */
    /* ============== */
    .courses_java_image_wrapper {
      flex: 0 0 45%;
      max-width: 1000px;
      position: relative;
      z-index: 1;
    }
    
    .courses_java_image {
      width: 200%;
      height: auto;
      object-fit: contain;
      transform-origin: center;
      transform: translateY(-5%);
    }
    
    /* ============== */
    /* RESPONSIVE */
    /* ============== */
    @media (max-width: 1024px) {
      .courses_java_fullstack_section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%; /* Reduced from 60px */
      }
  
      .courses_java_fullstack_container {
        padding-right: 0;
        margin-bottom: 30px; /* Reduced from 40px */
      }
  
      .courses_java_fullstack_header {
        justify-content: center;
      }
  
      .courses_java_fullstack_list {
        text-align: left;
      }
  
      .courses_java_image_wrapper {
        margin-top: 20px; /* Reduced from 30px */
        flex: 1 1 100%;
      }
    }
  
    @media (max-width: 768px) {
      .courses_java_fullstack_heading {
        font-size: 1.8rem;
      }
  
      .courses_java_fullstack_buttons {
        justify-content: center;
      }
    }
  
    @media (max-width: 480px) {
      .courses_java_fullstack_heading {
        font-size: 1.6rem;
        flex-direction: column;
      }
  
      .java_logo {
        margin-right: 0;
        margin-bottom: 8px; /* Reduced from 10px */
      }
  
      .courses_java_fullstack_buttons {
        flex-direction: column;
        gap: 10px; /* Reduced from 12px */
      }
  
      .light_button_signup, .dark_button {
        width: 100%;
        text-align: center;
      }
    }

/* SECTION BASE */
    .courses_python_fullstack_section {
      position: relative;
      padding: 60px 12%;
      background-color: #f0f1fc;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
    }
  
    /* IMAGE SIDE (LEFT) */
    .courses_python_image_wrapper {
      flex: 0 0 45%;
      max-width: 1000px;
      position: relative;
      z-index: 1;
    }
  
    .courses_python_image {
      width: 200%;
      height: auto;
      object-fit: contain;
      transform-origin: center;
      transform: scaleX(1) translateY(-5%) translateX(-50%);
    }
  
    /* CONTENT SIDE (RIGHT) */
    .courses_python_fullstack_container {
      flex: 1;
      min-width: 300px;
      padding-left: 40px;
      position: relative;
      z-index: 2;
    }
  
    .courses_python_fullstack_header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
  
    .python_logo {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      animation: floatLogo 4s ease-in-out infinite;
    }
  
    .courses_python_fullstack_heading {
      font-size: 2rem;
      color: #173d7a;
      font-weight: 700;
      margin: 0;
      line-height: 1.2;
    }
  
    .courses_python_content {
      max-width: 600px;
    }
  
    .courses_python_fullstack_short_description {
      font-size: 1.1rem;
      color: #173d7a;
      line-height: 1.4;
      margin-bottom: 15px;
    }
  
    .courses_python_fullstack_title {
      font-size: 1.5rem;
      color: #173d7a;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }
  
    .courses_python_fullstack_list {
      color: #173d7a;
      list-style-type: none;
      padding: 0;
      margin-bottom: 20px;
    }
  
    .courses_python_fullstack_list li {
      margin: 8px 0;
      position: relative;
      padding-left: 25px;
      font-size: 1.05rem;
      line-height: 1.3;
    }
  
    .courses_python_fullstack_list li:before {
      content: "✓";
      color: #5d8bf4;
      font-weight: bold;
      position: absolute;
      left: 0;
    }
  
    /* Pricing & Buttons Shared */
    .courses_duration_fee {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 20px;
    }
  
    .courses_duration, .courses_fee {
      font-size: 1.1rem;
      font-weight: 600;
      color: #173d7a;
      line-height: 1.3;
    }
  
    .old_fee {
      text-decoration: line-through;
      color: #9e9e9e;
      margin-right: 8px;
    }
  
    .new_fee {
      color: #173d7a;
      font-weight: bold;
      margin-right: 12px;
    }
  
    .emi_text {
      font-weight: normal;
      font-size: 0.95rem;
      color: #5d8bf4;
    }
  
    .courses_python_fullstack_buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
  
    .light_button_signup, .dark_button {
      padding: 10px 24px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 30px;
      transition: all 0.3s ease;
      font-size: 1rem;
      line-height: 1.3;
    }
  
    .light_button_signup {
      background: white;
      color: #173d7a;
      border: 2px solid #173d7a;
    }
  
    .light_button_signup:hover {
      background: #f0f4ff;
      transform: translateY(-2px);
    }
  
    .dark_button {
      background: #173d7a;
      color: white;
      border: 2px solid #173d7a;
    }
  
    .dark_button:hover {
      background: #0f2a56;
      transform: translateY(-2px);
    }
  
    /* Animation */
    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
  
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .courses_python_fullstack_section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
      }
  
      .courses_python_image_wrapper {
        margin-bottom: 30px;
        flex: 1 1 100%;
      }
  
      .courses_python_fullstack_container {
        padding-left: 0;
      }
  
      .courses_python_fullstack_list {
        text-align: left;
      }
    }
  
    @media (max-width: 768px) {
      .courses_python_fullstack_heading {
        font-size: 1.8rem;
      }
  
      .courses_python_fullstack_buttons {
        justify-content: center;
      }
    }
  
    @media (max-width: 480px) {
      .courses_python_fullstack_heading {
        font-size: 1.6rem;
        flex-direction: column;
      }
  
      .python_logo {
        margin-right: 0;
        margin-bottom: 8px;
      }
  
      .courses_python_fullstack_buttons {
        flex-direction: column;
        gap: 10px;
      }
  
      .light_button_signup, .dark_button {
        width: 100%;
        text-align: center;
      }
    }

.courses_data_fullstack_section {
  position: relative;
  padding: 60px 12%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.courses_data_fullstack_container {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.courses_data_fullstack_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.data_logo {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  animation: floatLogo 4s ease-in-out infinite;
}

.courses_data_fullstack_heading {
  font-size: 2rem;
  color: #173d7a;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.courses_data_content {
  max-width: 600px;
}

.courses_data_fullstack_short_description {
  font-size: 1.1rem;
  color: #173d7a;
  line-height: 1.4;
  margin-bottom: 15px;
}

.courses_data_fullstack_title {
  font-size: 1.5rem;
  color: #173d7a;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.courses_data_fullstack_list {
  color: #173d7a;
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.courses_data_fullstack_list li {
  margin: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.courses_data_fullstack_list li:before {
  content: "✓";
  color: #5d8bf4;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Pricing & Buttons */
.courses_data_fullstack_buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.courses_data_science_image_wrapper {
  flex: 0 0 45%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.courses_data_science_image {
  width: 200%;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transform: translateY(-5%);
}

/* Responsive */
@media (max-width: 1024px) {
  .courses_data_fullstack_section {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .courses_data_fullstack_container {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .courses_data_fullstack_header {
    justify-content: center;
  }

  .courses_data_fullstack_list {
    text-align: left;
  }

  .courses_data_science_image_wrapper {
    margin-top: 20px;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .courses_data_fullstack_heading {
    font-size: 1.8rem;
  }

  .courses_data_fullstack_buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .courses_data_fullstack_heading {
    font-size: 1.6rem;
    flex-direction: column;
  }

  .data_logo {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .courses_data_fullstack_buttons {
    flex-direction: column;
    gap: 10px;
  }

  .light_button_signup, .dark_button {
    width: 100%;
    text-align: center;
  }
}

.courses_data_analytics_section {
    position: relative;
    padding: 60px 12%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
  }

  .courses_data_analytics_image_wrapper {
    flex: 0 0 45%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
  }

  .courses_data_analytics_image {
    width: 200%;
    height: auto;
    object-fit: contain;
    transform-origin: center;
    transform: scaleX(1) translateY(-5%) translateX(-50%);
  }

  .courses_data_analytics_container {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
    position: relative;
    z-index: 2;
  }

  .courses_data_analytics_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .data_logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    animation: floatLogo 4s ease-in-out infinite;
  }

  .courses_data_analytics_heading {
    font-size: 2rem;
    color: #173d7a;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .courses_data_content {
    max-width: 600px;
  }

  .courses_data_analytics_short_description {
    font-size: 1.1rem;
    color: #173d7a;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .courses_data_analytics_title {
    font-size: 1.5rem;
    color: #173d7a;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .courses_data_analytics_list {
    color: #173d7a;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .courses_data_analytics_list li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .courses_data_analytics_list li:before {
    content: "✓";
    color: #5d8bf4;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .courses_duration_fee {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .courses_duration, .courses_fee {
    font-size: 1.1rem;
    font-weight: 600;
    color: #173d7a;
    line-height: 1.3;
  }

  .old_fee {
    text-decoration: line-through;
    color: #9e9e9e;
    margin-right: 8px;
  }

  .new_fee {
    color: #173d7a;
    font-weight: bold;
    margin-right: 12px;
  }

  .emi_text {
    font-weight: normal;
    font-size: 0.95rem;
    color: #5d8bf4;
  }

  .courses_data_analytics_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .light_button_signup, .dark_button {
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.3;
  }

  .light_button_signup {
    background: white;
    color: #173d7a;
    border: 2px solid #173d7a;
  }

  .light_button_signup:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
  }

  .dark_button {
    background: #173d7a;
    color: white;
    border: 2px solid #173d7a;
  }

  .dark_button:hover {
    background: #0f2a56;
    transform: translateY(-2px);
  }

  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }

  @media (max-width: 1024px) {
    .courses_data_analytics_section {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
    }

    .courses_data_analytics_image_wrapper {
      margin-bottom: 30px;
      flex: 1 1 100%;
    }

    .courses_data_analytics_container {
      padding-left: 0;
    }

    .courses_data_analytics_list {
      text-align: left;
    }
  }

  @media (max-width: 768px) {
    .courses_data_analytics_heading {
      font-size: 1.8rem;
    }

    .courses_data_analytics_buttons {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .courses_data_analytics_heading {
      font-size: 1.6rem;
      flex-direction: column;
    }

    .data_logo {
      margin-right: 0;
      margin-bottom: 8px;
    }

    .courses_data_analytics_buttons {
      flex-direction: column;
      gap: 10px;
    }

    .light_button_signup, .dark_button {
      width: 100%;
      text-align: center;
    }
  }

.courses_business_analytics_section {
  position: relative;
  padding: 60px 12%;
  background-color: transparent; /* Lighter blue background */
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.courses_business_analytics_container {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  position: relative;
  z-index: 2;
}

.courses_business_analytics_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.courses_business_analytics_heading {
  font-size: 2rem;
  color: #1a3e8c; /* Darker blue for heading */
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.courses_business_content {
  max-width: 600px;
}

.courses_business_analytics_short_description {
  font-size: 1.1rem;
  color: #1a3e8c;
  line-height: 1.4;
  margin-bottom: 15px;
}

.courses_business_analytics_title {
  font-size: 1.5rem;
  color: #1a3e8c;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.courses_business_analytics_list {
  color: #1a3e8c;
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.courses_business_analytics_list li {
  margin: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.courses_business_analytics_list li:before {
  content: "✓";
  color: #4a7cff; /* Brighter blue for checkmarks */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Pricing & Buttons */
.courses_business_analytics_buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.courses_business_image_wrapper {
  flex: 0 0 45%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.courses_business_image {
  width: 200%;
  height: auto;
  object-fit: contain;
  transform-origin: center;
  transform: translateY(-5%);
}

/* Responsive */
@media (max-width: 1024px) {
  .courses_business_analytics_section {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .courses_business_analytics_container {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .courses_business_analytics_header {
    justify-content: center;
  }

  .courses_business_analytics_list {
    text-align: left;
  }

  .courses_business_image_wrapper {
    margin-top: 20px;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .courses_business_analytics_heading {
    font-size: 1.8rem;
  }

  .courses_business_analytics_buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .courses_business_analytics_heading {
    font-size: 1.6rem;
  }

  .courses_business_analytics_buttons {
    flex-direction: column;
    gap: 10px;
  }

  .light_button_signup, .dark_button {
    width: 100%;
    text-align: center;
  }
}

.courses_digital_marketing_section {
    position: relative;
    padding: 60px 12%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
  }

  .courses_digital_marketing_image_wrapper {
    flex: 0 0 45%;
    max-width: 1000px;
    position: relative;
    z-index: 1;
  }

  .courses_digital_marketing_image {
    width: 200%;
    height: auto;
    object-fit: contain;
    transform-origin: center;
    transform: scaleX(1) translateY(-5%) translateX(-50%);
  }

  .courses_digital_marketing_container {
    flex: 1;
    min-width: 300px;
    padding-left: 40px;
    position: relative;
    z-index: 2;
  }

  .courses_digital_marketing_header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .courses_digital_marketing_heading {
    font-size: 2rem;
    color: #173d7a;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .courses_digital_content {
    max-width: 600px;
  }

  .courses_digital_marketing_short_description {
    font-size: 1.1rem;
    color: #173d7a;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .courses_digital_marketing_title {
    font-size: 1.5rem;
    color: #173d7a;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .courses_digital_marketing_list {
    color: #173d7a;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .courses_digital_marketing_list li {
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .courses_digital_marketing_list li:before {
    content: "✓";
    color: #5d8bf4;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .courses_duration_fee {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .courses_duration, .courses_fee {
    font-size: 1.1rem;
    font-weight: 600;
    color: #173d7a;
    line-height: 1.3;
  }

  .old_fee {
    text-decoration: line-through;
    color: #9e9e9e;
    margin-right: 8px;
  }

  .new_fee {
    color: #173d7a;
    font-weight: bold;
    margin-right: 12px;
  }

  .emi_text {
    font-weight: normal;
    font-size: 0.95rem;
    color: #5d8bf4;
  }

  .courses_digital_marketing_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .light_button_signup, .dark_button {
    padding: 10px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.3;
  }

  .light_button_signup {
    background: white;
    color: #173d7a;
    border: 2px solid #173d7a;
  }

  .light_button_signup:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
  }

  .dark_button {
    background: #173d7a;
    color: white;
    border: 2px solid #173d7a;
  }

  .dark_button:hover {
    background: #0f2a56;
    transform: translateY(-2px);
  }

  @media (max-width: 1024px) {
    .courses_digital_marketing_section {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
    }

    .courses_digital_marketing_image_wrapper {
      margin-bottom: 30px;
      flex: 1 1 100%;
    }

    .courses_digital_marketing_container {
      padding-left: 0;
    }

    .courses_digital_marketing_list {
      text-align: left;
    }
  }

  @media (max-width: 768px) {
    .courses_digital_marketing_heading {
      font-size: 1.8rem;
    }

    .courses_digital_marketing_buttons {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .courses_digital_marketing_heading {
      font-size: 1.6rem;
      flex-direction: column;
    }

    .courses_digital_marketing_buttons {
      flex-direction: column;
      gap: 10px;
    }

    .light_button_signup, .dark_button {
      width: 100%;
      text-align: center;
    }
  }

/* Footer styles */
:root {
  --card-width: 100%;
  --card-height: 300px;
  --card-max-width: 1200px;
  --card-padding: 40px;
  --card-border-radius: 20px;
  --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --footer-top-margin: 140px;
  --primary-blue: #4a77e8;
  --dark-blue: #1a2e66;
  --text-dark: #1a2e66;
  --text-medium: #4a5568;
  --text-light: #f8f9fa;
}

.training-section {
  padding: 80px 0 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
  background-color: #f0f1fc;
}

.training-container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.training-hero-card {
  height: var(--card-height);
  background: var(--primary-blue);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
  margin-bottom: calc(var(--footer-top-margin) * -1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  overflow: visible;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .training-hero-card {
    flex-direction: row;
    align-items: center;
  }
}

.training-hero-card .training-image {
  flex: 1;
  text-align: center;
  margin-top: -40px;
  animation: float 4s ease-in-out infinite;
}

.training-hero-card .training-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(.9) translateY(-60px);
}

.training-hero-card .training-text {
  flex: 1;
}

.training-hero-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  animation: fadeInUp 0.8s ease forwards;
}

.training-hero-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.training-form {
  margin-top: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.form-wrapper {
  position: relative;
  max-width: 400px;
  font-family: 'Raleway', sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 100px 10px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  box-sizing: border-box;
  height: 44px;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}

.form-input:focus,
.form-input:hover {
  transform: scale(1.05);
}

.form-button {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-button:hover,
.form-button:focus,
.form-button:active {
  transform: scale(1.1);
}

.training-footer {
  align-items: start;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.training-footer {
  padding-bottom: 30px;
}

.copyright {
  padding-top: 15px;
  margin-top: 0;
}

.training-footer-wrapper {
  background-color: #ffffff;
  padding-top: var(--footer-top-margin);
  margin-top: calc(var(--footer-top-margin) * -1);
  position: relative;
  z-index: 1;
}

.training-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
  max-width: var(--card-max-width);
  margin: 0 auto;
  align-items: start;
}

.footer-content-aligner {
  position: relative;
  top: calc(var(--footer-top-margin) * -0.3);
}

.footer-branding {
  padding: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  align-self: center;
  margin-top: -5px;
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: rotate(5deg) scale(1.1);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.footer-address {
  margin-top: 20px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  padding: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: var(--text-medium);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 0.9rem;
  transform-origin: left center;
}

.footer-link:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

.footer-contact {
  padding: 20px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s;
}

.contact-item:hover img {
  transform: scale(1.2);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  color: var(--text-medium);
  max-width: var(--card-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.copyright-links {
  display: flex;
  gap: 20px;
}

.copyright-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.copyright-links a:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .training-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .training-hero-card .training-image {
    margin-top: 0;
  }

  .training-hero-card .training-image img {
    transform: scale(.9) translateY(0);
  }

  .training-form {
    display: flex;
    justify-content: center;
  }

  .training-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .copyright {
    flex-direction: column;
    gap: 15px;
  }

  .copyright-links {
    justify-content: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-brand-text {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 28px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e66;
}

.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5f5f5f;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
      background-color: #f0f1fd;
      font-family: 'Raleway', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      
    }

    /* GLOBAL ANIMATIONS */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* GLOBAL BUTTONS */
    .dark_button, .light_button {
      padding: 10px 20px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .dark_button {
      background-color: #173d7b;
      color: white;
    }

    .dark_button:hover {
      background-color: #0f2a56;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .light_button {
      background-color: #3898ec;
      color: white;
    }

    .light_button:hover {
      background-color: #2d87d6;
      animation: pulse 0.6s ease-in-out;
    }

/* HERO STYLES */
  .hero_section {
    background-color: #f0f1fc;
    position: relative;
    overflow: hidden;
    min-height: 630px;
    padding: 20px 0; /* Removed side padding */
    animation: fadeInUp 1s ease-out both;
  }

  /* Nav Section */
  .nav_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Logo Container */
  .logo-container {
    display: flex;
    align-items: center;
  }

  .nav-logo {
    width: 350px;
    min-width: 120px;
    transition: all 0.3s ease;
  }

  /* Nav Buttons */
  .nav_buttons_container {
    display: flex;
    gap: 40px;
  }

  .nav_link {
    color: #d2e0f5;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
  }

  .nav_link:hover {
    color: #b4cdf7;
    font-size: 14px;
    font-weight: 500;
    transform: scale(1.05);
  }

  /* Hero Content */
  .div-block-3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .hero-content {
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out both;
    padding-left: 0;
  }

  .hero_heading {
    font-size: 2.5rem;
    color: #bdd2f4;
    font-weight: 700;
    animation: fadeInUp 1.4s ease-out both;
    line-height: 1.2;
    margin-left: 0;
  }

  .hero_paragraph {
    color: #bdd2f4;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 30px;
    animation: fadeInUp 1.6s ease-out both;
    margin-left: 0;
  }

  /* Hero character */
  .hero_character {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 65%;
    animation: float 4s ease-in-out infinite;
    transform: translate(-1000%, 30%);
  }

  .hero_character img {
    width: 120%;
    transform: scale(1.1) !important;
  }

  /* Background SVG */
  .hero-bg-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-svg {
  width: 100%;
  max-width: 1600px;
  height: auto;
  transform: scale(1.1);
  transform-origin: center;
}

/* Button Styles */
.dark_button_login {
  background-color: #3898ec;
  color: #fff;
  padding: 6px 24px;  /* Reduced padding to decrease height */
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  transform: scale(1);
  display: inline-block;
}

.dark_button_login:hover {
  background-color: #173d7b;
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.light_button_signup {
  background-color: #3898ec;
  color: #fff;
  padding: 6px 24px;  /* Reduced padding to decrease height */
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  transform: scale(1);
  display: inline-block;
}

.light_button_signup:hover {
  background-color: #238be6;
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}


  /* Responsive Styles */
  @media (max-width: 1024px) {
    .hero-bg-svg {
      width: 70%;
      opacity: 0.9;
    }
  }

  @media (max-width: 768px) {
    .nav_section {
      flex-direction: column;
      gap: 20px;
    }

    .nav_buttons_container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }

    .nav_link {
      font-size: 14px;
    }

    .div-block-3 {
      flex-direction: column;
      text-align: center;
      padding: 0;
    }

    .hero_heading {
      font-size: 2rem;
    }

    .hero_paragraph {
      font-size: 13px;
    }

    .hero_character img {
      width: 100%;
    }

    .nav-logo {
      width: 250px;
    }
  }

  @media (max-width: 480px) {
    .hero-content {
      max-width: 600px;
      padding: 0 15px;
    }

    .nav-logo {
      width: 180px;
    }

    .hero-bg-svg {
      width: 100%;
      transform: translate(10%, -10%);
      opacity: 0.7;
    }
  }

/* CARD STYLES */
  ._3card {
    padding: 80px 5%;
    background-color: #f0f1fd;
  }

  .div-block-5 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .wf-layout-layout {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-bottom: 60px;
  }

  .cards {
    flex: 1;
    min-width: 220px;
    max-width: 220px;
    height: 300px;
    text-align: left;
    background-color: #f5f7fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0; /* Start hidden */
    transform: translateY(60px); /* Start from a lower position (more bottom) */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Slow down the transition to 1.5s */
    position: relative;
  }

  /* When card is visible, animate to normal position */
  .cards.visible {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move to the original position */
  }

  /* Hover effect (unchanged) */
  .cards:hover {
    background-color: #173d7b;
    transform: scale(1.05);
  }

  .cards:hover .card_heading,
  .cards:hover .card_para,
  .cards:hover .card_link {
    color: #bdd2f4;
  }

  .card_heading {
    font-size: 1.4rem;
    color: #173d7b;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.3s ease;
  }

  .card_para {
    color: #4f6fae;
    margin: 6px 0 10px;
    font-size: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
  }

  .card_link {
    color: #3898ec;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    margin-top: auto;
    align-self: flex-end;
  }

  .heading_below_card {
    font-size: 2rem;
    color: #173d7b;
    margin-top: 30px;
    font-weight: 700;
  }

  .para_below_card {
    color: #4f6fae;
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 14px;
  }

  .dark_button_joinnow {
    background-color: #3898ec;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform: scale(1);
    display: inline-block;
  }

  .dark_button_joinnow:hover {
    background-color: #173d7b;
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .wf-layout-layout {
      flex-direction: column;
      align-items: center;
    }

    .cards {
      width: 100%;
      max-width: 400px;
    }
  }

/* INTERACTIVE HELP STYLES */
  .interactive-help-section {
    background-color: #f0f1fd;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
  }

  .left-side,
  .middle-cards,
  .right-side {
    flex: 1;
  }

  .character-svg {
    width: 100%;
    max-width: 350px; /* Increased from 300px */
    transform: scale(1.1); /* Slightly scaled up */
    transform-origin: center;
  }

  .middle-cards {
  display: flex;
  flex-direction: column;
  gap: 12px; /* slightly smaller gap */
  transform: scale(0.9); /* scaled down */
  transform-origin: center;
}
  .help-card {
    background-color: #ffffff;
    border-radius: 12px;
    font-size: 13px; /* smaller font */
  min-height: 50px; /* reduced height */
  padding: 12px 16px; /* reduced padding 
    padding: 16px 20px; /* Reduced padding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px; /* Smaller font */
    min-height: 60px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8f0fe;
  }

  .help-card:hover {
    transform: translateY(-4px);
    background-color: #173d7b;
    color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .right-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* center-align content horizontally */
  text-align: center; /* ensure text is centered */
}

.right-side h2 {
  color: #173d7b;
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center; /* center-align heading text */
}

#help-description {
  font-size: 14px;
  color: #4f6fae;
  transition: opacity 0.3s ease;
  min-height: 60px;
  line-height: 1.6;
  text-align: center; /* center-align paragraph */
}
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      gap: 30px;
    }
    
    .character-svg {
      max-width: 250px;
      transform: scale(1);
    }
    
    .middle-cards {
      width: 100%;
    }
    
    .right-side {
      text-align: center;
    }
  }

/* AI SECTION STYLES */
  .aisection {
    background: linear-gradient(135deg, #173d7b 0%, #0f2a56 100%);
    padding: 60px 5%; /* reduced from 100px */
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .ai-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px; /* reduced from 60px */
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px; /* added space for PNG */
  }

  .ai-png {
    width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  }

  .ai-content {
    flex: 1;
  }

  .ai-heading {
    font-size: 2rem; /* reduced from 2.5rem */
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
  }

  .ai-subtext {
    font-size: 14px; /* reduced from 16px */
    color: #c9d6f5;
    margin-bottom: 20px; /* reduced */
    line-height: 1.4; /* tighter line spacing */
  }

  .ai-features {
    display: flex;
    flex-direction: column;
    gap: 16px; /* reduced from 20px */
    margin-bottom: 30px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-icon {
    background: rgba(56, 152, 236, 0.2);
    width: 36px; /* reduced */
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }

  .feature-text {
    font-size: 13px; /* reduced */
    color: #e6ecff;
    line-height: 1.4;
  }

  .ai-tools {
    display: flex;
    gap: 12px; /* reduced from 15px */
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .tool {
    background: rgba(56, 152, 236, 0.2);
    color: white;
    padding: 8px 16px; /* reduced padding */
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .tool:hover {
    background: #3898ec;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .light_button {
    background-color: #ffffff;
    color: #173d7b;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  .light_button:hover {
    background-color: #e6f0ff;
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  /* Background elements */
  .ai-bg-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
  }

  .ai-bg-element-1 {
    top: 10%;
    left: 5%;
    width: 80px; /* slightly smaller */
    animation: float 8s ease-in-out infinite;
  }

  .ai-bg-element-2 {
    bottom: 15%;
    right: 5%;
    width: 100px;
    animation: float 10s ease-in-out infinite reverse;
  }

  /* Keyframes */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .ai-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .ai-visual {
      order: -1;
      padding-left: 0;
    }

    .ai-png {
      width: 200px;
    }

    .feature-item {
      justify-content: center;
      text-align: left;
    }

    .ai-tools {
      justify-content: center;
    }
  }

.journey-partners-section {
    position: relative;
    background: #f0f1fc;
    padding: 100px 5%;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
  }

  .journey-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    color: #173d7a; /* Updated text color */
  }

  .journey-title {
    font-size: 1.8rem; /* Updated font size */
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    color: #173d7a; /* Updated text color */
  }

  .journey-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5d8bf4, #1a2e66);
    border-radius: 2px;
  }

  /* Inline Milestone Text */
  .milestone-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
    margin: 40px 0;
  }

  .milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
  }

  .milestone-number {
    font-size: 32px;
    font-weight: 800;
    color: #173d7a; /* Updated text color */
  }

  /* Partners Section - Now in single line with flex */
  .partners-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    overflow-x: auto;
    padding: 20px 0;
    width: 100%;
  }

  .partners-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
  }

  .partner-logo {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .milestone-inline {
      flex-direction: column;
      gap: 20px;
    }

    .partners-container {
      justify-content: flex-start;
    }

    .partners-inner {
      gap: 30px;
    }

    .partner-logo {
      height: 40px;
    }

    .milestone-number {
      font-size: 28px;
    }
  }

/* Footer styles */
:root {
  --card-width: 100%;
  --card-height: 300px;
  --card-max-width: 1200px;
  --card-padding: 40px;
  --card-border-radius: 20px;
  --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --footer-top-margin: 140px;
  --primary-blue: #4a77e8;
  --dark-blue: #1a2e66;
  --text-dark: #1a2e66;
  --text-medium: #4a5568;
  --text-light: #f8f9fa;
}

.training-section {
  padding: 80px 0 0;
  font-family: 'Raleway', sans-serif;
  position: relative;
  background-color: #f0f1fc;
}

.training-container {
  max-width: var(--card-max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.training-hero-card {
  height: var(--card-height);
  background: var(--primary-blue);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
  margin-bottom: calc(var(--footer-top-margin) * -1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  overflow: visible;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .training-hero-card {
    flex-direction: row;
    align-items: center;
  }
}

.training-hero-card .training-image {
  flex: 1;
  text-align: center;
  margin-top: -40px;
  animation: float 4s ease-in-out infinite;
}

.training-hero-card .training-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transform: scale(.9) translateY(-60px);
}

.training-hero-card .training-text {
  flex: 1;
}

.training-hero-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  animation: fadeInUp 0.8s ease forwards;
}

.training-hero-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.training-form {
  margin-top: 20px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.form-wrapper {
  position: relative;
  max-width: 400px;
  font-family: 'Raleway', sans-serif;
}

.form-input {
  width: 100%;
  padding: 10px 100px 10px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
  box-sizing: border-box;
  height: 44px;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
}

.form-input:focus,
.form-input:hover {
  transform: scale(1.05);
}

.form-button {
  position: absolute;
  top: 2px;
  right: 2px;
  height: 40px;
  padding: 0 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-button:hover,
.form-button:focus,
.form-button:active {
  transform: scale(1.1);
}

.training-footer {
  align-items: start;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.training-footer {
  padding-bottom: 30px;
}

.copyright {
  padding-top: 15px;
  margin-top: 0;
}

.training-footer-wrapper {
  background-color: #ffffff;
  padding-top: var(--footer-top-margin);
  margin-top: calc(var(--footer-top-margin) * -1);
  position: relative;
  z-index: 1;
}

.training-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0 30px;
  max-width: var(--card-max-width);
  margin: 0 auto;
  align-items: start;
}

.footer-content-aligner {
  position: relative;
  top: calc(var(--footer-top-margin) * -0.3);
}

.footer-branding {
  padding: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  align-self: center;
  margin-top: -5px;
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: rotate(5deg) scale(1.1);
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.footer-slogan {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: 500;
}

.footer-address {
  margin-top: 20px;
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links {
  padding: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: var(--text-medium);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 0.9rem;
  transform-origin: left center;
}

.footer-link:hover {
  color: var(--text-dark);
  transform: scale(1.05);
}

.footer-contact {
  padding: 20px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s;
}

.contact-item:hover img {
  transform: scale(1.2);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  color: var(--text-medium);
  max-width: var(--card-max-width);
  margin: 0 auto;
  font-size: 0.8rem;
}

.footer-links h3,
.footer-contact h3 {
  min-height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.copyright-links {
  display: flex;
  gap: 20px;
}

.copyright-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s;
}

.copyright-links a:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .training-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .training-hero-card .training-image {
    margin-top: 0;
  }

  .training-hero-card .training-image img {
    transform: scale(.9) translateY(0);
  }

  .training-form {
    display: flex;
    justify-content: center;
  }

  .training-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .copyright {
    flex-direction: column;
    gap: 15px;
  }

  .copyright-links {
    justify-content: center;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

.footer-brand-text {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 28px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e66;
}

.footer-slogan {
  font-size: 0.8rem;
  font-weight: 500;
  color: #5f5f5f;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

