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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8f9fa;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Smooth scroll behavior */
    html {
      scroll-behavior: smooth;
    }

    /* Header with enhanced styling */
    header {
      background: linear-gradient(135deg, #006400, #228B22);
      color: #fff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      position: sticky;
        top: 0;
      z-index: 100;
    }

    .logo-section {
      display: flex;
      align-items: center;
      animation: slideInLeft 1s ease-out;
    }

    .logo-section img {
      height: 55px;
      margin-right: 15px;
      border-radius: 8px;
    }

    .logo-text {
      font-size: 18px;
      font-weight: bold;
    }

    nav {
      animation: slideInRight 1s ease-out;
    }

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

    nav a:hover {
      background: rgba(255,215,0,0.2);
      color: #ffd700;
      transform: translateY(-2px);
    }

    /* Enhanced Hero Section */
    .hero {
      text-align: center;
      padding: 120px 20px;
      /* background: linear-gradient(135deg, rgba(0,100,0,0.9), rgba(34,139,34,0.8)),
                  radial-gradient(circle at center, rgba(255,215,0,0.1), transparent); */
    background-image: url('../images/bacground1.png');
        background-size: cover;
      color: #fff;
      position: relative;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      animation: fadeIn 1.5s ease-out;
    }

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

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 48px;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      animation: slideInUp 1s ease-out 0.5s both;
    }

    .hero p {
      font-size: 22px;
      margin-bottom: 35px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      animation: slideInUp 1s ease-out 0.7s both;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      animation: slideInUp 1s ease-out 0.9s both;
    }

    .btn {
      padding: 14px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary {
      background: linear-gradient(45deg, #ffd700, #ffcc00);
      color: #006400;
      box-shadow: 0 4px 15px rgba(255,215,0,0.4);
    }

    .btn-primary:hover {
      background: linear-gradient(45deg, #ffcc00, #ffd700);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255,215,0,0.6);
    }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid #ffd700;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-secondary:hover {
      background: #ffd700;
      color: #006400;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255,215,0,0.4);
    }

    /* Enhanced Features Section */
    .features-section {
      padding: 80px 40px;
      background: #fff;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .section-header.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header h2 {
      font-size: 36px;
      color: #006400;
      margin-bottom: 15px;
      position: relative;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(45deg, #ffd700, #ffcc00);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 18px;
      color: #666;
      max-width: 500px;
      margin: 0 auto;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature {
      background: #fff;
      border-radius: 20px;
      padding: 40px 25px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(50px);
      position: relative;
      overflow: hidden;
    }

    .feature.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 4px;
      background: linear-gradient(45deg, #006400, #ffd700);
      transition: left 0.4s ease;
    }

    .feature:hover::before {
      left: 0;
    }

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

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(45deg, #006400, #228B22);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .feature:hover .feature-icon {
      background: linear-gradient(45deg, #ffd700, #ffcc00);
      transform: scale(1.1) rotateY(360deg);
    }

    .feature i {
      font-size: 36px;
      color: #fff;
      transition: color 0.3s ease;
    }

    .feature:hover i {
      color: #006400;
    }

    .feature h3 {
      color: #006400;
      margin-bottom: 15px;
      font-size: 22px;
      font-weight: 600;
    }

    .feature p {
      color: #666;
      line-height: 1.6;
    }

    /* Programs Section */
    .programs-section {
      padding: 80px 40px;
      background: #fff;
      position: relative;
    }

    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 60px;
    }

    .program-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(50px);
      position: relative;
      border: 2px solid transparent;
    }

    .program-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

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

    .program-card:nth-child(1) {
      border-top: 4px solid #ff6b6b;
    }

    .program-card:nth-child(2) {
      border-top: 4px solid #4ecdc4;
    }

    .program-card:nth-child(3) {
      border-top: 4px solid #ffd700;
    }

    .program-icon {
      text-align: center;
      padding: 30px 20px 20px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .program-icon i {
      font-size: 50px;
      color: #006400;
      transition: all 0.3s ease;
    }

    .program-card:nth-child(1) .program-icon i {
      color: #ff6b6b;
    }

    .program-card:nth-child(2) .program-icon i {
      color: #4ecdc4;
    }

    .program-card:nth-child(3) .program-icon i {
      color: #ffd700;
    }

    .program-card:hover .program-icon i {
      transform: scale(1.1);
    }

    .program-content {
      padding: 25px;
    }

    .program-content h3 {
      color: #006400;
      margin-bottom: 8px;
      font-size: 24px;
      font-weight: 600;
      text-align: center;
    }

    .program-age {
      text-align: center;
      background: linear-gradient(45deg, #006400, #228B22);
      color: #fff;
      padding: 5px 15px;
      border-radius: 20px;
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 15px;
      width: 100%;
      max-width: fit-content;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }

    .program-description {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: center;
    }

    .program-features {
      margin-bottom: 20px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      gap: 10px;
    }

    .feature-item i {
      color: #28a745;
      font-size: 14px;
    }

    .feature-item span {
      color: #555;
      font-size: 14px;
    }

    .program-subjects {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 25px;
      justify-content: center;
    }

    .program-subjects span {
      background: rgba(0,100,0,0.1);
      color: #006400;
      padding: 6px 12px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: 500;
      border: 1px solid rgba(0,100,0,0.2);
    }

    .program-btn {
      display: block;
      text-align: center;
      background: linear-gradient(45deg, #006400, #228B22);
      color: #fff;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .program-btn:hover {
      background: linear-gradient(45deg, #228B22, #006400);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0,100,0,0.3);
    }

    .programs-cta {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .programs-cta.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .programs-cta h3 {
      color: #006400;
      font-size: 28px;
      margin-bottom: 15px;
    }

    .programs-cta p {
      color: #666;
      font-size: 16px;
      margin-bottom: 25px;
    }

    .programs-cta .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .teachers-section {
      padding: 80px 40px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      position: relative;
    }

    .teachers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .teacher-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(50px);
      position: relative;
    }

    .teacher-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

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

    .teacher-image {
      position: relative;
      height: 250px;
      overflow: hidden;
      background: linear-gradient(135deg, #006400, #228B22);
    }

    .teacher-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .teacher-card:hover .teacher-image img {
      transform: scale(1.1);
    }

    .teacher-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(0,100,0,0.8), rgba(34,139,34,0.8));
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.3s ease;
    }

    .teacher-card:hover .teacher-overlay {
      opacity: 1;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      width: 45px;
      height: 45px;
      background: rgba(255,215,0,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #006400;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: #ffd700;
      transform: scale(1.1);
    }

    .teacher-info {
      padding: 25px;
      text-align: center;
    }

    .teacher-info h3 {
      color: #006400;
      margin-bottom: 8px;
      font-size: 22px;
      font-weight: 600;
    }

    .teacher-role {
      color: #ffd700;
      font-weight: 500;
      margin-bottom: 15px;
      font-size: 16px;
      background: linear-gradient(45deg, #006400, #228B22);
      color: #ffd700;
      padding: 5px 15px;
      border-radius: 20px;
      display: inline-block;
    }

    .teacher-description {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 14px;
    }

    .teacher-qualifications {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .teacher-qualifications span {
      background: rgba(0,100,0,0.1);
      color: #006400;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: 500;
      border: 1px solid rgba(0,100,0,0.2);
    }
    .cta-section {
      background: linear-gradient(135deg, #006400, #228B22);
      color: #fff;
      text-align: center;
      padding: 80px 40px;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .cta-section.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .cta-content h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #ffd700;
    }

    .cta-content p {
      font-size: 18px;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .btn-outline {
      background: transparent;
      color: #ffd700;
      border: 2px solid #ffd700;
    }

    .btn-outline:hover {
      background: #ffd700;
      color: #006400;
    }

    /* Enhanced Footer */
    footer {
      background: #1a1a1a;
      color: #fff;
      padding: 40px 40px 20px;
      text-align: center;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
      text-align: left;
    }

    .footer-section h3 {
      color: #ffd700;
      margin-bottom: 15px;
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: color 0.3s;
    }

    .footer-section a:hover {
      color: #ffd700;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
      color: #888;
    }

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

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

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
      }

      nav a {
        margin: 0 10px;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero p {
        font-size: 18px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .features-section {
        padding: 60px 20px;
      }

      .cta-section {
        padding: 60px 20px;
      }

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