/* Website Root Body section */
:root {
        --magenta: #C5297C;
        --teal: #00A89D;
        --charcoal-gray: #2D2D2D;
        --pure-white: #FFFFFF;
        --deep-purple: #832D6A;
        --soft-aqua: #66D5C7;
        
      }

      body {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background-color: var(--pure-white);
        color: var(--charcoal-gray);
      }

/* Header Section */
header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(90deg, var(--magenta), var(--teal));
      color: var(--pure-white);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    


      .logo-title {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .logo-title img {
        height: 40px;
        width: 40px;
        border-radius: 50%;
      }

      .logo-title span {
        font-size: 1.5rem;
        font-weight: bold;
      }

      nav {
        display: flex;
        gap: 1rem;
      }

      nav a {
        color: var(--pure-white);
        text-decoration: none;
        font-weight: 500;
      }

      nav a {
      color: var(--pure-white);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem;
      transition: color 0.3s ease, transform 0.3s ease;
    }

      nav a:hover {
      color: var(--orange); /* Highlight color on hover */
      transform: scale(1.05); /* Subtle zoom effect */
    }


      nav a {
      color: var(--pure-white);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem;
      border-radius: 6px;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

      nav a:hover,
      nav a:active,
      nav a:focus {
        background-color: rgba(255, 255, 255, 0.15); /* light background feedback */
        color: var(--orange); /* brand highlight */
        transform: scale(1.05); /* tap feedback */
      }


      

      .menu-toggle {
        display: none;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
      }

      .hamburger div {
        width: 25px;
        height: 3px;
        background-color: var(--pure-white);
      }

      @media (max-width: 768px) {
        nav {
          display: none;
          flex-direction: column;
          width: 100%;
          background-color: var(--deep-purple);
          padding: 1rem;
        }

        .menu-toggle:checked + .hamburger + nav {
          display: flex;
        }

        .hamburger {
          display: flex;
        }
      }

      /* Clickable Header */
  
    .logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--pure-white);
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-title:hover {
  opacity: 0.85;
}

      

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  /* Remove height: 80vh if using aspect ratio from amp-img */
}


  .hero-bg {
    object-fit: cover;
    z-index: 1;
  }

  .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pure-white);
  padding: 2rem;
  background: rgba(45, 45, 45, 0.5);
}


  .hero-overlay h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    color: var(--light-peach);
  }

  .hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--soft-aqua);
  }

  .cta-button {
    background-color: var(--orange, #F6A623);
    color: var(--charcoal-gray);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--magenta);
    color: var(--pure-white);
  }

  @media (max-width: 768px) {
    .hero-overlay h1 {
      font-size: 2rem;
    }

    .hero-overlay p {
      font-size: 1.2rem;
    }
  }

  .hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 80vh;
      background-color: #66D5C7;
      overflow: hidden;
    }
    .fire-flake {
      position: absolute;
      width: 20px;
      height: 30px;
      background: radial-gradient(ellipse at center, #FFF15A 40%, transparent 70%);
      clip-path: polygon(50% 0%, 70% 30%, 60% 100%, 40% 100%, 30% 30%);
      animation: drift 6s linear infinite;
      opacity: 0.8;
    }
    @keyframes drift {
      0% { transform: translateY(0) scale(1); opacity: 1; }
      100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
    }
    .hero svg {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 0;
    }
    .hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 90%;
  animation: fadeInUp 1s ease-out both;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .hero-content h1 {
      font-size: 3rem;
      color: #832D6A;
      margin-bottom: 1rem;
      animation: slideInDown 1.2s ease-out both;
    }
    @keyframes slideInDown {
      0% {
        opacity: 0;
        transform: translateY(-30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .hero-content p {
      font-size: 1.5rem;
      color: #2D2D2D;
      margin-bottom: 2rem;
      animation: fadeIn 1.4s ease-out both;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    .hero-content button {
      background-color: #F6A623;
      color: #2D2D2D;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      animation: bounceIn 1.6s ease-out both;
    }
    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.5);
      }
      60% {
        opacity: 1;
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }
    .hero-content button:hover {
      background-color: #C5297C;
      color: #FFFFFF;
    }

    .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Adjust for clarity */
}




/* Courses & Programs Section */
.courses-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--soft-aqua, #66D5C7), var(--light-peach, #FFE3B0));
  text-align: center;
}


  .courses-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--deep-purple, #832D6A);
  }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .course-card {
    background: var(--pure-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .course-card h3 {
    color: var(--magenta, #C5297C);
    font-size: 1.25rem;
    margin: 1rem 1rem 0.5rem;
  }

  .course-card p {
    font-size: 0.95rem;
    color: var(--charcoal-gray, #2D2D2D);
    padding: 0 1rem 1rem;
  }

  .course-card a {
    color: var(--orange, #F6A623);
    font-weight: bold;
    text-decoration: none;
  }

  .course-card a:hover {
    text-decoration: underline;
  }

  /* IT Courses & Programs */
 
  .it-courses-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--light-peach, #FFE3B0), var(--soft-aqua, #66D5C7));
  text-align: center;
}

.it-courses-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-purple, #832D6A);
}

.it-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.it-course-card {
  background: var(--pure-white, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.it-course-card:hover {
  transform: translateY(-5px);
}

.it-course-info {
  padding: 1rem;
}

.it-course-info h3 {
  color: var(--magenta, #C5297C);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.it-course-info p {
  font-size: 0.95rem;
  color: var(--charcoal-gray, #2D2D2D);
  margin-bottom: 1rem;
}

.it-course-info a {
  color: var(--orange, #F6A623);
  font-weight: bold;
  text-decoration: none;
}

.it-course-info a:hover {
  text-decoration: underline;
}

/* Language Courses */
.language-courses-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--light-peach, #FFE3B0), var(--soft-aqua, #66D5C7));
    text-align: center;
  }

  .language-courses-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--deep-purple, #832D6A);
  }

  .language-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .language-card {
    background: var(--pure-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
  }

  .language-card h3 {
    color: var(--magenta, #C5297C);
    font-size: 1.25rem;
    margin: 1rem 1rem 0.5rem;
  }

  .language-card p {
    font-size: 0.95rem;
    color: var(--charcoal-gray, #2D2D2D);
    padding: 0 1rem 1rem;
  }

  .language-card a {
    color: var(--orange, #F6A623);
    font-weight: bold;
    text-decoration: none;
  }

  .language-card a:hover {
    text-decoration: underline;
  }



/* Instructors Section */

  .instructors-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--soft-aqua, #66D5C7), var(--light-peach, #FFE3B0));
  text-align: center;
}

.instructors-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-purple, #832D6A);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.instructor-card {
  background: var(--pure-white, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.instructor-card:hover {
  transform: translateY(-5px);
}

.instructor-info {
  padding: 1rem;
}

.instructor-info h3 {
  color: var(--magenta, #C5297C);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.instructor-info p {
  font-size: 0.95rem;
  color: var(--charcoal-gray, #2D2D2D);
  margin-bottom: 1rem;
}

.instructor-info a {
  color: var(--orange, #F6A623);
  font-weight: bold;
  text-decoration: none;
}

.instructor-info a:hover {
  text-decoration: underline;
}



/* Footer Section */
footer {
      background-color: var(--dark-bg);
      padding: 60px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    .footer-section h3 {
      color: var(--magenta);
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .footer-section p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--gray);
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      color: var(--white);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: var(--orange);
    }

    .footer-contact p {
      margin: 6px 0;
      font-size: 0.95rem;
      color: var(--gray);
    }

    .footer-follow p {
      margin: 6px 0;
      font-size: 0.95rem;
      color: var(--gray);
    }

    .footer-payment li {
      color: var(--gray);
      font-size: 0.95rem;
    }

    .footer-social a {
      color: var(--teal);
      font-size: 1.2rem;
      margin-right: 15px;
      transition: color 0.3s;
    }

    .footer-social a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      font-size: 0.85rem;
      color: var(--gray);
      border-top: 1px solid var(--border-color);
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
      }
    }





/* About Us */


/* Contact Us */




