:root {
      --primary: #4b4fb6;
      --secondary: #ffdc00;
      --dark: #111;
      --light: #f8f9fa;
      --gray: #6c757d;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
      padding-top: 80px; /* Account for fixed navbar */
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }

    /* ========== IMPROVED NAVBAR ========== */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 40px;
      height: 80px;
      background: #000;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    /* Logo */
    .logo img {
      height: 50px;
      transition: transform 0.3s;
    }
    
    .logo img:hover {
      transform: scale(1.05);
    }

    /* Navigation Links */
    .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links li a {
      text-decoration: none;
      color: white;
      font-size: 16px;
      font-weight: 500;
      padding: 28px 20px;
      display: block;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-links li a:hover {
      color: var(--secondary);
      background: rgba(255, 255, 255, 0.05);
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 4px;
      background: var(--secondary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

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

    /* Mobile menu button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 100%;
      height: 3px;
      background: white;
      margin: 2px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    /* Active state for mobile menu */
    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    /* ========== REST OF YOUR STYLES ========== */
    .banner {
      width: 100%;
      min-height: 90vh;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url(images/banner.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    
    .banner-content {
      max-width: 800px;
      padding: 20px;
    }
    
    .banner-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }
    
    .banner-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    
    .btn-primary {
      background: var(--secondary);
      color: var(--dark);
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn-primary:hover {
      background: #ffc800;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .imgs {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin: 40px auto;
      flex-wrap: wrap;
      max-width: 1200px;
    }
    
    .img {
      width: 260px;
      height: 180px;
      border: 4px solid var(--secondary);
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .img:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    }
    
    .img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    section {
      padding: 60px 20px;
    }
    
    .section-title {
      text-align: center;   
      color: var(--primary);
      margin: 0 auto 40px;
      padding: 0 20px 15px;
      border-bottom: 2px solid var(--secondary);
      display: inline-block; 
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      font-size: 2.2rem;
    }

    .about-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-content .text {
      flex: 1;
    }
    
    .about-content h3 {
      color: var(--primary);
      font-size: 2rem;
      margin-bottom: 20px;
    }
    
    .about-content p {
      margin-bottom: 15px;
      color: var(--gray);
      line-height: 1.8;
    }

    .about-content .image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .about-content .image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s;
    }
    
    .about-content .image:hover img {
      transform: scale(1.03);
    }

    .schedule {
      background: var(--light);
      padding: 60px 20px;
    }
    
    .schedule table {
      width: 80%;
      max-width: 800px;
      margin: 0 auto;
      border-collapse: collapse;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .schedule th, .schedule td {
      padding: 15px 20px;
      text-align: left;
    }
    
    .schedule th {
      background-color: var(--primary);
      color: white;
      font-weight: 500;
    }
    
    .schedule tr:nth-child(even) {
      background: #f2f2f2; 
    }
    
    .schedule tr:hover {
      background: #e9e9e9;
    }

    .news {
      padding: 60px 20px;
    }
    
    .cards {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    
    .card {
      width: 18rem;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    
    .card-body {
      padding: 20px;
    }
    
    .card-text {
      color: var(--gray);
    }
 
    .top-section {
      display: flex;
      background-color: var(--secondary);
      padding: 60px 20px;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .top-section img,
    .top-section iframe {
      width: 100%;
      max-width: 500px;
      height: 300px;
      border: 5px solid #fff;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .map-section {
      height: 500px;
      padding: 0;
    }

    iframe.map {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: var(--dark);
      color: #fff;
      font-size: 14px;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }
      
      .nav-links {
        gap: 0;
      }
      
      .nav-links li a {
        padding: 20px 15px;
      }
    }
    
    @media (max-width: 768px) {
      body {
        padding-top: 70px;
      }
      
      .navbar {
        padding: 0 20px;
        height: 70px;
      }
      
      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      
      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      
      .nav-links li {
        width: 100%;
        text-align: center;
      }
      
      .nav-links li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .banner-content h1 {
        font-size: 2.5rem;
      }
      
      .top-section {
        flex-direction: column;
      }
      
      .top-section img, 
      .top-section iframe {
        max-width: 100%;
      }
      
      .schedule table {
        width: 95%;
      }
    }
