 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }

    body {
      background: #ffffff;
      color: #333;
    }

    /* Container */
    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
 #preloader {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #fff;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 5px solid #ccc;
      border-top-color: #007bff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
     #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .spinner {
      border: 8px solid #f3f3f3;
      border-top: 8px solid #facc15; /* yellow-400 */
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    #main-content {
      display: none;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
    /* Header */
    header {
      background: #fff;
      padding: 20px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .logo span {
      font-weight: bold;
      font-size: 1.5rem;
      color: #c46464;
    }

    /* Navigation */
    nav ul.nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    nav ul.nav-links li a {
      text-decoration: none;
      color: #333;
      padding: 8px 12px;
      transition: all 0.3s;
    }

    nav ul.nav-links li a.active,
    nav ul.nav-links li a:hover {
      color: #812424;
      background-color: #f0f0f0;
      border-radius: 5px;
    }

    /* Contact Button */
    .btn-contact {
      background: linear-gradient(to right, #ff4545, #7c3f34);
      color: #fff !important;
      border-radius: 5px;
      padding: 10px 15px;
      font-weight: bold;
    }

    /* Hamburger Menu Button */
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      outline: none;
      padding: 10px;
      position: relative;
      z-index: 1100;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
      display: block;
      background-color: #333;
      height: 3px;
      width: 25px;
      border-radius: 3px;
      position: relative;
      transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .hamburger::before {
      top: -8px;
    }

    .hamburger::after {
      top: 8px;
    }

    .nav-toggle.active .hamburger {
      background-color: transparent;
    }

    .nav-toggle.active .hamburger::before {
      transform: rotate(45deg);
      top: 0;
    }

    .nav-toggle.active .hamburger::after {
      transform: rotate(-45deg);
      top: 0;
    }

    .slideshow-container {
  position: relative;
  width: 500px;  /* fixed width */
  height: 300px; /* fixed height */
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto;
}

.slide {
  position: absolute;
  width: 500px;  /* same as container */
  height: 300px; /* same as container */
  object-fit: cover; /* cover the container nicely */
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease; /* fade transition */
  border-radius: 8px;
  display: block; /* keep all slides stacked */
  pointer-events: none; /* disable clicks on hidden slides */
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Dots container */
.dots-container {
  text-align: center;
  padding: 10px 0;
  background: transparent;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}

.sme-overview {
  background: linear-gradient(to right, #f5f5f5, #ffffff);
  padding: 60px 20px;
}

.overview-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.overview-text {
  flex: 1;
  min-width: 300px;
}

.overview-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00796b;
  margin-bottom: 20px;
}

.overview-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.overview-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.overview-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.overview-img img:hover {
  transform: scale(1.03);
}

.hero-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Optional: catchy text overlay */
.hero-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  text-align: center;
}


/* Mobile responsive */
@media (max-width: 768px) {
  .overview-flex {
    flex-direction: column;
    text-align: center;
  }

  .overview-text h2 {
    font-size: 2rem;
  }
}



    /* Mobile styles */
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }

      nav ul.nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: #fff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding-top: 60px;
        transition: right 0.3s ease;
        z-index: 1050;
      }

      nav ul.nav-links.active {
        right: 0;
      }

      nav ul.nav-links li {
        margin: 20px 0;
        text-align: center;
      }

      nav ul.nav-links li a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
      }

      .container {
        justify-content: space-between;
      }
    }

    /* Rest of your styles (hero, info cards, etc.) */
    .hero {
      background: linear-gradient(135deg, #f5f5f5, #ffffff);
      padding: 60px 0 0;
      position: relative;
    }

    .hero-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .text {
      flex: 1 1 50%;
      padding: 20px;
    }

    .text h1 {
      font-size: 2.5rem;
      line-height: 1.3;
      color: #333;
    }

    .text h1 span {
      color: #8f0a0a;
      font-weight: bold;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 20px;
      background: linear-gradient(to right, #ff4545, #7c3f34);
      color: #fff;
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
    }

    .image {
      flex: 1 1 50%;
      padding: 20px;
      text-align: center;
    }

    .image img {
      max-width: 100%;
      height: auto;
    }

    .beige-section {
      background-color: #f5deb3;
      padding: 60px 20px 0;
      position: relative;
      overflow: hidden;
    }

    .wave {
      display: block;
      width: 100%;
      line-height: 0;
      margin: 0;
      padding: 0;
    }

    .wave svg {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
    }

    .info-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .info-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 30px 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      flex: 1 1 30%;
      min-width: 280px;
      max-width: 350px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .info-card:hover {
      transform: translateY(-5px);
    }

    .info-card h2 {
      font-size: 1.8rem;
      color: #a31313;
      margin-bottom: 10px;
    }

    .info-card p {
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
      flex-grow: 1;
    }

    .wave svg path {
      fill: #f5deb3;
    }

    @media (max-width: 992px) {
      .info-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .info-card {
        width: 90%;
        max-width: 600px;
      }
    }


    /* Membership Page Styles */

/* Container for the whole membership page */
.membership-container {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* Section Titles */
.membership-container h2.section-title {
  font-size: 2.8rem;
  color: #812424;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 3px solid #c46464;
  padding-bottom: 10px;
}

/* General Section Container */
.membership-section {
  margin-bottom: 50px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(124, 63, 52, 0.1);
  transition: box-shadow 0.3s ease;
}


.membership-section:hover {
  box-shadow: 0 8px 25px rgba(124, 63, 52, 0.25);
}

/* How to Become a Member - text */
.how-to-become p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Member Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.benefits-list li {
  background: linear-gradient(135deg, #812424, #c46464);
  color: #fff;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(124, 63, 52, 0.3);
  transition: background 0.4s ease;
  cursor: default;
}

.benefits-list li:hover {
  background: linear-gradient(135deg, #c46464, #812424);
}

/* Membership Requirements and Download Form */
/* Membership Requirements and Download Form */
.membership-requirements {
  font-size: 1.1rem;
  line-height: 1.7;
}


.membership-requirements ul {
  margin: 20px 0 30px 20px;
  list-style-type: disc;
}

.download-form {
  display: flex;
  justify-content: center;
}

.download-form a {
  background: #812424;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(124, 63, 52, 0.3);
  transition: background 0.3s ease;
}

.download-form a:hover {
  background: #c46464;
}

/* Member Testimonials Section */
/* Member Testimonials Section */
.testimonials {
  text-align: center;
}

.testimonials video {
  width: 100%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(124, 63, 52, 0.15);
  margin-bottom: 30px;
  display: block;               /* Add this */
  margin-left: auto;            /* Add this */
  margin-right: auto;           /* Add this */
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  border-left: 4px solid #c46464;
  padding-left: 20px;
  margin-bottom: 30px;
}


/* Header for Membership Page */
.membership-header {
  background: linear-gradient(135deg, #812424, #c46464);
  color: #fff;
  padding: 50px 20px 60px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 20px rgba(124, 63, 52, 0.4);
  margin-bottom: 50px;
}

.membership-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.membership-header p {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-list {
    flex-direction: column;
    max-width: 100%;
  }

  .benefits-list li {
    width: 100%;
    text-align: center;
  }

  .membership-header h1 {
    font-size: 2.6rem;
  }

  .membership-container h2.section-title {
  font-size: 2rem;
}


  .membership-section {
    padding: 25px 20px;
  }
}



/* Developer Section */
.developers {
  padding: 60px 20px;
  background: linear-gradient(to right, #fff7f7, #ffeaea);
}

.developers h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #812424;
  margin-bottom: 40px;
  font-weight: 700;
}

.dev-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.dev-member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
  max-width: 260px;
  width: 100%;
}

.dev-member:hover {
  transform: translateY(-8px);
}

.dev-member img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dev-info {
  padding: 20px;
}

.dev-info h4 {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}

.dev-info span {
  font-size: 14px;
  color: #888;
}

.dev-socials {
  margin-top: 15px;
}

.dev-socials a {
  color: #fcfcfc;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease;
  background-color: #812424;
  padding: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dev-socials a:hover {
  color: #fff;
  background-color: #007bff;
}

/* Responsive for Developer Section */
@media (max-width: 768px) {
  .dev-members {
    flex-direction: column;
    align-items: center;
  }

  .dev-member {
    max-width: 90%;
  }

  .developers h2 {
    font-size: 2rem;
  }
}
/* News */
#news-popup {
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
