 /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #fff;
    }
    
    /* Skip Link for Accessibility */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 6px;
      background: #000;
      color: #fff;
      padding: 8px;
      text-decoration: none;
      z-index: 1000;
    }
    
    .skip-link:focus {
      top: 6px;
    }
    
    /* Header Styles */
    /* Header Styles */


/* body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
} */

/* Header Container */
header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo Styles */
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

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

/* Navigation Styles */
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 80%;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: absolute;
  right: 20px;  /* Distance from right edge */
  top: 50%;     /* Center vertically */
  transform: translateY(-50%);  /* Perfect vertical centering */
}
.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    height: 60px;
    display: flex;
    justify-content: space-between;  /* This ensures logo on left, menu on right */
    align-items: center;
  }

  .logo {
    font-size: 20px;
  }

   .mobile-menu-toggle {
    display: block;
    margin-left: auto;  /* This pushes it to the right */
  }

  nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    align-items: flex-start;
  }

  nav a {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    display: block;
    border-radius: 8px;
  }

  nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
  }

  nav a::after {
    display: none;
  }

  /* Hamburger Animation */
  .mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

/* Adjust main content for fixed header */
main {
  margin-top: 70px;
}

@media (max-width: 768px) {
  main {
    margin-top: 60px;
  }
}

/* Optional: Sticky header scroll effect */
header.scrolled {
  background: linear-gradient(135deg, #1a3263 0%, #24478f 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.scrolled .header-container {
  height: 60px;
}

@media (max-width: 768px) {
  header.scrolled .header-container {
    height: 55px;
  }
}
    /* Main Content */
    main {
      margin-top: 80px;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/image2.jpg');
      background-size: cover;
      background-position: center;
      height: 80vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    
    .hero-content {
      max-width: 800px;
      padding: 2rem;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    
    .cta-button {
      display: inline-block;
      background: #ff6b6b;
      color: white;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .cta-button:hover, .cta-button:focus {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    /* Section Styles */
    section {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
    text-align: center; margin-bottom: 1.5rem;
  }
    
    .section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: #667eea;
      margin: 1rem auto;
    }
    
    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    
    .about-text {
      font-size: 1.1rem;
      line-height: 1.8;
    }
    
    .about-image {
      text-align: center;
    }
    
    .about-image img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    /* Courses Section */
    .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem; max-width: 1200px; margin: 0 auto;
  }
    .course-card {
    background: #fff; border: 1px solid #eee; border-radius: 16px;
    padding: 1.1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .15s ease;
  }
    
   .course-card:hover, .course-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
    
     .course-icon {
    font-size: 2rem; line-height: 1; margin-bottom: .5rem;
    
  }
    
    .course-card h3 { font-size: 1.05rem; margin: .25rem 0 .35rem; }
    
   .course-card p { font-size: .95rem; color: #444; line-height: 1.45; }
    
    /* Contact Section */
    .contact {
      background: #f8f9fa;
    }
    
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
    
    .contact-info {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: #667eea;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      color: white;
      font-size: 1.2rem;
    }
    
    /* Footer */
    /* footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 2rem;
    }
     */
    /* Responsive Design */
    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
      }
      
      nav ul {
        gap: 1rem;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .about-content,
      .contact-content {
        grid-template-columns: 1fr;
      }
      
      section {
        padding: 2rem 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .courses-grid {
        grid-template-columns: 1fr;
      }
    }
     @media (prefers-reduced-motion: reduce) {
    .course-card { transition: none; }
  }

   /* Professional Footer Styles */
         .footer {
    background: #fff;
    color: #000;
    padding: 3rem 1rem;
    border-top: 1px solid #eee;
    font-family: "Segoe UI", sans-serif;
  }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem;
  } 
  .footer-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 1.5rem;
  }

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

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #ffd700;
            font-weight: 600;
        }

        .footer-section p, .footer-section li {
            margin-bottom: 0.5rem;
            color: #e8e8e8;
            font-size: 0.95rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            padding: 0.3rem 0;
            transition: color 0.3s ease;
        }

        .footer-section ul li:hover {
            color: #ffd700;
            cursor: pointer;
        }

        .footer-section ul li::before {
            content: "▸";
            color: #ffd700;
            margin-right: 0.5rem;
        }

       
      

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background-color: #ffd700;
            color: #1e3c72;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            color: #b8c5d6;
        }

        .footer-bottom p {
            margin-bottom: 0.5rem;
        }

        .footer-bottom .highlight {
            color: #080808;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-container {
                padding: 0 1rem;
            }
            
            footer {
                padding: 2rem 0 1rem 0;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        .footer-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 1.5rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .social-icons a {
    color: #000;
    transition: color 0.2s;
  }
  .social-icons a:hover {
    color: #f39c12;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: .75rem;
    font-weight: 600;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column li {
    margin: .35rem 0;
  }
  .footer-column a {
    color: #444;
    font-size: .95rem;
    text-decoration: none;
    transition: color .2s;
  }
  .footer-column a:hover {
    color: #080602;
  }

  .footer-bottom {
    text-align: center;
    font-size: .9rem;
    color: #666;
  }

  .highlight {
    font-weight: 600;
    color: #1b150b;
  }
  