 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
            line-height: 1.6;
        }

        /* Header Styles */
        .header {
            background: #fff;
            padding: 0.2rem 0;
            position: relative;
            overflow: hidden;
        }
        .color-white{
            color: white !important;
        }
        .header::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="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            opacity: 0.3;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
            gap: 3rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            order: 2;
        }

        .nav-left {
            order: 1;
            display: flex;
            gap: 2rem;
        }

        .nav-right {
            order: 3;
            display: flex;
            gap: 2rem;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .logo-text {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-left .nav-menu li a,
        .nav-right .nav-menu li a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .nav-left .nav-menu li a:hover,
        .nav-right .nav-menu li a:hover,
        .nav-left .nav-menu li a.active,
        .nav-right .nav-menu li a.active {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .nav-left .nav-menu li a.active,
        .nav-right .nav-menu li a.active {
            color: #dc2626;
            background: white;
        }

       .form-group .select-class {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

    .hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: flex;
  width: 500%;
  animation: slide 25s infinite ease-in-out;
}

.hero-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.hero-slide img {
  width: 1600px;
  object-fit: cover;
  display: block;
  height: 700px;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  height: auto;
  z-index: 5;
  pointer-events: none;
}



/* Smooth slide animation */
@keyframes slide {
  0%    { transform: translateX(0%); }
  20%   { transform: translateX(0%); }
  25%   { transform: translateX(-100%); }
  40%   { transform: translateX(-100%); }
  45%   { transform: translateX(-200%); }
  60%   { transform: translateX(-200%); }
  65%   { transform: translateX(-300%); }
  80%   { transform: translateX(-300%); }
  85%   { transform: translateX(-400%); }
  100%  { transform: translateX(-400%); }
}


        .cta-section {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            padding: 4rem 0;
            text-align: center;
            /* position: absolute;
            top: 90%; */
            width: 100%;
        }

        .cta-section::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"><polygon points="0,0 100,0 90,100 0,100" fill="%23ffffff" opacity="0.05"/></svg>');
            background-size: 50px 50px;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .cta-subtitle {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .join-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
     .input-field {
            position: relative;
            flex: 1;
            min-width: 200px;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            padding-right: 50px;
            border: none;
            background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
            color: white;
            font-size: 16px;
            font-style: italic;
            border-radius: 5px;
            outline: none;
            box-sizing: border-box;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        .form-input:focus {
            box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.3);
        }

        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 18px;
            pointer-events: none;
        }


        .join-btn {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .join-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .stats {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        /* user section*/

        .border-rad{
            border-radius: 20px;
        }
        .user-section{
            margin-top: 50px;
        }

         /* .news-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .news-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .news-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .news-cards {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
            padding: 1rem;
        }

        .news-card {
            flex: 0 0 300px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .news-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-date {
            position: absolute;
            top: 160px;
            right: 20px;
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 0.5rem;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            min-width: 60px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .date-number {
            display: block;
            font-size: 1.5rem;
            line-height: 1;
        }

        .date-month {
            display: block;
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-content h3 {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .news-content p {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .read-more {
            color: #dc2626;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #991b1b;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        } */


            /* Fixed Footer Styles */
        .fixed-footer {
          
            width: 100%;
            background-color: #1c1e5c;
            color: white;
            z-index: 1000;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }
        
        .footer-nav {
            display: flex;
            gap: 30px;
        }
        
        .footer-nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-nav a:hover {
            color: white;
            transform: translateY(-2px);
        }
        
        .footer-nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #64b5f6, #42a5f5);
            transition: width 0.3s ease;
        }
        
        .footer-nav a:hover::after {
            width: 100%;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .social-links svg {
            width: 20px;
            height: 20px;
        }
        
        .copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 10px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
            padding-bottom: 10px;
        }

















        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }

            .nav-left, .nav-right {
                order: 3;
            }

            .logo {
                order: 1;
            }

            .nav-left .nav-menu, .nav-right .nav-menu {
                gap: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .join-form {
                flex-direction: column;
                align-items: center;
            }

            .form-input {
                width: 100%;
                max-width: 300px;
            }

            .stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* join us pagee css*/

        .container.form-container {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }


        .qr-section {
            background-color: #d71920;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .qr-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-20px) rotate(360deg); }
        }

        .qr-content {
            text-align: center;
            z-index: 2;
        }

        .qr-title {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .qr-subtitle {
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .qr-code:hover {
            transform: scale(1.05);
        }

        .qr-placeholder {
            width: 160px;
            height: 160px;
            background: linear-gradient(45deg, #333, #666);
            border-radius: 10px;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            grid-template-rows: repeat(8, 1fr);
            gap: 2px;
            padding: 10px;
        }

        .qr-pixel {
            background: #000;
            border-radius: 1px;
        }

        .qr-pixel:nth-child(odd) {
            background: #000;
        }

        .qr-pixel:nth-child(even) {
            background: transparent;
        }

        .form-section {
            padding: 60px;
            background: #f8f9fa;
        }

        .form-title {
            font-size: 2.2em;
            color: #333;
            margin-bottom: 30px;
            font-weight: 600;
            margin-left: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 0.95em;
        }

        .form-group input
         {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e5e9;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s ease;
            background: #fafbfc;
        }


        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4facfe;
            background: white;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background-color: #d71920;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1em;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
        }

        .required {
            color: #e74c3c;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .qr-section,
            .form-section {
                padding: 40px 30px;
            }

            .qr-title {
                font-size: 2em;
            }

            .form-title {
                font-size: 1.8em;
            }
        }
.social-icon{
    display: inline-block;
    width: 100px;
    height: 150px;
}
.social-title{
    font-size: 35px !important;
}
.social-icon.youtube svg path {
    fill: #FF0000;
}

.social-icon.facebook svg path {
    fill: #1877F2;
}

.social-icon.whatsapp svg path {
    fill: #25D366;
}
.parallax-section {
  background-image: url('images/bnneroverlay.jpg'); /* Your background image */
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  padding-top: 120px;  /* Top padding */
  /* padding-bottom: 30px; Bottom padding */

  position: relative;
  color: white;
  padding-bottom: 120px;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional overlay */
  z-index: 0;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}
.height-200{
    height: 200px;
}
.activity-img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .activity-img:hover {
    transform: scale(1.03);
  }

  @media (max-width: 576px) {
    .activity-img {
      width: 100%;
      height: auto;
    }
  }

  /*contact section */

  body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.map-banner iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.contact-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form form button {
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info .location {
  margin-bottom: 30px;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #333;
}

.contact-info a {
  color: #1976d2;
  text-decoration: none;
}
/* === Privacy Policy Section Styling === */
.privacy-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    line-height: 1.7;
    font-size: 16px;
    color: #212529;
}

.privacy-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.privacy-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 30px;
    color: #495057;
}

.privacy-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-section p {
    margin-bottom: 1rem;
}

/* Optional: Styling for links inside policy */
.privacy-section a {
    color: #0d6efd;
    text-decoration: underline;
}

.privacy-section a:hover {
    text-decoration: none;
}

.card img {
      height: 350px;
      object-fit: cover;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: black;
      border-radius: 50%;
    }

     .hover-overlay {
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
  }

  .card:hover .hover-overlay {
    opacity: 1 !important;
  }

      /* New wrapper div to center content */
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh; /* full viewport height */
    }

    .thankyou-container {
      background: white;
      padding: 40px 50px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      max-width: 500px;
      width: 90%;
    }

    .thankyou-container .checkmark {
      font-size: 3rem;
      color: #28a745;
    }

    .thankyou-container h1 {
      font-size: 24px;
      margin: 20px 0 10px;
      color: #333;
    }

    .thankyou-container p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    .back-button {
      margin-top: 25px;
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .back-button:hover {
      background-color: #0056b3;
    }

    .events-gallery-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.events-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.events-gallery-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
}

.events-gallery-item {
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  /* transition: transform 0.3s ease; */
}
/* 
.events-gallery-item:hover {
  transform: scale(1.05);
} */

.events-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.events-gallery-caption {
  text-align: center;
  padding: 10px;
  font-weight: 500;
  background-color: #fff;
}
.message {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    max-width: 600px;
}

.success {
    background-color: #e6ffe6;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.error {
    background-color: #ffe6e6;
    color: #c62828;
    border: 1px solid #c62828;
}

.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.message {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-weight: bold;
    width: 100%;
    max-width: 600px;
}

.success {
    background-color: #e6ffe6;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.error {
    background-color: #ffe6e6;
    color: #c62828;
    border: 1px solid #c62828;
}

.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
