   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f4f4f4;
      color: #333;
    }

.logo{
    height: 100px;
    width: 100px;
    z-index: 1000;
    position: absolute;
    top: 0;
  
    background-image: url(logo-removebg-preview.png);
    background-size: cover;
}

    /* Navbar */
    nav {
      background: #222;
      padding: 15px 30px;
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 100px;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
    }

    nav ul li {
      margin: 20px 15px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-size: 2rem;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #FFD700;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }

    /* Slider */
    .slider {
      width: 100%;
      max-height: 500px;
      overflow: hidden;
      position: relative;
    }

    .slides {
      display: flex;
      width: 400%;
      animation: slide 12s infinite;
    }

    .slides img {
      width: 100%;
      height: 900px;
      object-fit: cover;
    }

    @keyframes slide {
      0% { margin-left: 0%; }
      20% { margin-left: 0%; }
      25% { margin-left: -100%; }
      45% { margin-left: -100%; }
      50% { margin-left: -200%; }
      70% { margin-left: -200%; }
      75% { margin-left: -300%; }
      100% { margin-left: -300%; }
    }

    /* Events Section */
    .events {
      padding: 50px;
      background: white;
      text-align: center;
    }

    .events h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #2575fc;
    }

    .event-list {
      max-width: 800px;
      margin: auto;
      text-align: left;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* Gallery */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      padding: 40px;
    }

    .gallery img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      transition: transform 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 20px;
      
    }