 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      background: #fff;
    }
    header, nav, section, footer {
      padding: 20px;
    }
  body { font-family: 'Poppins', sans-serif; margin:0; }
    a { text-decoration:none; color:inherit; }

    /* NAVBAR */
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
text-align: justify;
}
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background-color: #063970;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.section {
  padding: 100px 20px;
  height: 100vh;
}

/* Navbar base styles */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo bigger */
.navbar .logo img {
  height: 100px;
  transition: transform 0.3s ease;
}

/* Nav links */
.nav-links a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline hover effect */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* When scrolled — light background, dark text */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
  color: #222;
}

.navbar.scrolled .nav-links a::after {
  background-color: #222;
}


/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .navbar{
    padding: 0px 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

   

   header {
  background-image: url('./assestes//medium-shot-rebellious-grannies.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  height: 100vh; /* Full viewport height */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin: 0; /* Remove margin */
  position: relative;
}

.header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #ff0004, #969696); /* Red to yellow */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header p {
  font-size: 1.2rem;
  background: linear-gradient(to right, #ff0000, #ffffff); /* Purple to blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.history-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.history-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.history-content {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  position: justify;
  color: #444;
}

.events-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.event-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.event-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 0.95rem;
  color: #555;
}

.event-card:hover {
  transform: translateY(-5px);
}


    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .sub-desc {
      text-align: center;
      margin-top: -60px;
      padding: 20px;
      font-size: 1.1rem;
      color: #333;
    }
    .about {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
 
  position: justify;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.about-text h2 span {
  color: #ff1111;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;

}

.about-image {
  flex: 1 1 400px;
  display: flex;
 
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 768px) {
  .about-text {
    text-align: center;
  }
}

    .parts-section {
      padding: 40px 20px;
      background: #f9f9f9;
    }
    .parts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .parts-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #222;

    }
    
    form {
      padding: 40px 20px;
      background: #eee;
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 600px;
      margin: 0 auto;
    }
    form input, form textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    form button {
      padding: 12px;
      background: #d17e25;
      color: white;
      font-weight: bold;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    footer {
      text-align: center;
      background: #111;
      color: #fff;
      padding: 20px;
      display: flex;
      justify-content: center;
    }

    .parts-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.parts-grid .card button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.parts-grid .card button:hover {
  background-color: #333;
}


.card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.card .btn {
  padding: 8px 16px;
  background-color: #ff4d00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.card .btn:hover {
  background-color: #e04400;
}

@media (max-width: 768px) {
  .parts-grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%;
  }
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.carousel-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-image.active {
  opacity: 1;
}

#contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea,
#contact-form button {
  padding: 12px 16px;
  border: 1px solid #ff0000;
  border-radius: 6px;
  font-size: 16px;
}

#contact-form button {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

#contact-form button:hover {
  background-color: #ff0000;
}



.leaders-section {
  padding: 60px 20px;
  background: #f4f4f4;
  text-align: center;
}

.leaders-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.leader-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  gap: 30px;
  flex-wrap: wrap;
}

.leader-card.reverse {
  flex-direction: row-reverse; /* Image on right */
  text-align: left;
}

.leader-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.leader-info {
  max-width: 500px;
  text-align: left;
}

.leader-info h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 10px;
}

.leader-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
