/* Base Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

section {
  padding: 40px 20px;
  /* max-width: 1200px; */
  margin: auto;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  background: #fff;
  padding: 60px 20px;
}

.hero-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.hero-icons img {
  height: 100px;
  max-width: 100%;
}

/* Vision & Mission */
.vm-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  flex: 1 1 45%;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

.mission {
  background-color: #ff7f7f;
}

.vision {
  background-color: #7fdd7f;
}

/* Our Products */
.products .product-grid,
.books .book-grid,
.clan-members,
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-card,
.book-card,
.member-card,
.benefit-card {
  background: #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 200px;
  text-align: center;
  box-sizing: border-box;
}

/* Why Choose Us */
.why-us {
  background: #fff0b3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-us img {
  height: 80px;
  max-width: 100%;
}

.why-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Clan Section */
.clan {
  background: #111;
  color: #fff;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}

/* ========================= */
/* 📱 Mobile Responsiveness  */
/* ========================= */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .vm-section {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
  }

  .why-us {
    flex-direction: column;
    text-align: center;
  }

  .why-content {
    flex-direction: column;
  }

  .product-card,
  .book-card,
  .member-card,
  .benefit-card {
    flex: 1 1 100%;
  }

  .hero-icons img {
    height: 80px;
  }
}
.top-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
.Innovative{
  color: #111219;
  font-weight: 800;
  font-size: 48px;
  font-family: Inter,sans-serif;
  text-align: left;
}
.padding-innvoative{
  padding: 10px 0px 0 140px;
}
.sub-innvoative{
  color: #111219;
  font-weight: 400;
  font-size: 14px;
  font-family: Inter,sans-serif;
  text-align: left;
}
.store-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.store-btn {
  display: flex;
  align-items: center;
  border: 1.5px solid #000;
  border-radius: 30px;
  padding: 5px 16px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-family: sans-serif;
  transition: all 0.3s ease;
  border-right: 1.5px solid #000;
  font-size: 14px;
}

.store-btn img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.icon-wrapper {
  display: flex;
  align-items: center;
  padding-right: 0px;
  margin-right: 12px;
  border-right: 1.5px solid #000;
}

.icon-wrapper img {
  width: 20px;
  height: 20px;
}
.decorator {
  position: absolute;
    top: 20%;
    left: 6%;
    width: 100px;
}

.decorator img {
  width: 100%;
  height: auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .decorator {
    top: 20px;
    left: 5%;
    width: 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


    .education-section {
      display: flex;
      flex-wrap: wrap;
      padding: 40px;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .education-image {
      flex: 1 1 300px;
      max-width: 450px;
    }

    .education-image img {
      width: 70%;
      height: auto;
    }

    .education-content {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .education-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .education-content p strong {
      font-weight: bold;
    }

    .grid-boxes {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .info-box {
      padding: 16px;
      border: 1px solid #ccc;
      border-radius: 16px;
      background: white;
      box-shadow: 6px 6px 0 #000000;
      transition: transform 0.2s ease;
    }

    .info-box:hover {
      transform: translateY(-4px);
    }

    .info-title {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .info-blue { color: #7B61FF; }
    .info-pink { color: #FF5F96; }
    .info-orange { color: #FF8C00; }
    .info-green { color: #00C774; }

    @media (max-width: 768px) {
      .education-section {
        flex-direction: column;
        padding: 20px;
      }

      .education-content p {
        font-size: 1rem;
        text-align: center;
      }
    }
    .mv-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .mv-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 30px;
    }

    .mv-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .mv-card {
      flex: 1 1 300px;
      padding: 30px;
      border-radius: 32px;
      background-color: #f5f5f5;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .mv-card:hover {
      transform: translateY(-5px);
    }

    .mv-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #ff7d7d; /* default red */
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .mv-card h3 {
      margin-top: 0;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

    .mv-card p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* Specific background colors */
    .mission {
      background-color: #f5ffa5;
    }

    .vision {
      background-color: #ccffe7;
    }

    .icon-red {
      background-color: #ff7d7d;
    }

    .icon-purple {
      background-color: #7b61ff;
    }

    @media (max-width: 768px) {
      .mv-title {
        font-size: 2rem;
        text-align: center;
      }

      .mv-cards {
        flex-direction: column;
      }

      .mv-card {
        width: 100%;
      }
    }
    .fueepz-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 40px 20px;
      /* border: 1px solid #007bff; */
      max-width: 1200px;
      margin: auto;
      position: relative;
    }

    .fueepz-image {
      flex: 1 1 300px;
      max-width: 450px;
    }

    .fueepz-image img {
      width: 80%;
      height: auto;
    }

    .fueepz-content {
      flex: 1 1 500px;
      max-width: 600px;
    }

    .fueepz-content p {
      font-size: 1.2rem;
      margin-bottom: 24px;
      color: #000;
    }

    .fueepz-content strong {
      font-weight: bold;
    }

    .fueepz-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .fueepz-box {
      border: 1.5px solid #000;
      border-radius: 16px;
      padding: 16px;
      background-color: #fff;
      box-shadow: 6px 6px 0 #000;
      transition: transform 0.2s ease;
    }

    .fueepz-box:hover {
      transform: translateY(-4px);
    }

    .box-title {
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .title-blue { color: #7B61FF; }
    .title-pink { color: #FF5F96; }
    .title-orange { color: #FF8C00; }
    .title-green { color: #00C774; }

    .fueepz-box p {
      margin: 0;
      font-size: 0.95rem;
      color: #333;
    }

    @media (max-width: 768px) {
      .fueepz-section {
        flex-direction: column;
        text-align: center;
      }

      .fueepz-content p {
        font-size: 1.1rem;
      }

      .fueepz-grid {
        grid-template-columns: 1fr;
      }

      .fueepz-box {
        box-shadow: 4px 4px 0 #000;
      }
    }
    .mv-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .mv-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 40px;
    }

    .mv-cards {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .mv-card {
      flex: 1 1 400px;
      background-color: #f5ffa5; /* Mission */
      padding: 30px;
      border-radius: 32px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .mv-card.vision {
      background-color: #ccffe7;
    }

    .mv-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background-color: #ff7d7d; /* Icon red for mission */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .mv-card.vision .mv-icon {
      background-color: #7b61ff;
    }

    .mv-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0;
    }

    .mv-card p {
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 768px) {
      .mv-title {
        font-size: 2rem;
        text-align: center;
      }

      .mv-cards {
        flex-direction: column;
      }

      .mv-card {
        padding: 24px;
      }

      .mv-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
    }
    hr:not([size]) {
      height: 0.2px;
  }
  .product-slider {
    /* border: 2px solid #0094FF; */
    padding: 24px;
    border-radius: 8px;
    position: relative;
  }

  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

  .slider-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .arrow-buttons {
    display: flex;
    gap: 12px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #0094FF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
  }

  .arrow-btn svg {
    width: 16px;
    height: 16px;
    fill: #0094FF;
  }

  .slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    scroll-behavior: smooth;
    padding: 8px 0;
  }

  .product-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    height: 320px;
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .highlight {
    background: #e6f4ff;
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .card-header img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .card-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .card-desc {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .product-card {
      flex: 0 0 85%;
    }
    .arrow-buttons {
      display: none;
    }
  }
  .card-header{
    background: transparent;
    border-bottom:none;
  }
  .books-grid {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .book-card {
    display: flex;
    background-color: #fff;
    border-radius: 24px;
    padding: 32px;
    align-items: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  }

  .book-card img {
    width: 96px;
    height: auto;
    margin-right: 32px;
  }

  .book-info {
    color: #333;
  }

  .book-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .book-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
  }

  @media (max-width: 768px) {
    .books-grid {
      grid-template-columns: 1fr;
    }

    .book-card {
      flex-direction: column;
      text-align: center;
    }

    .book-card img {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .tag.conceived,
    .tag.crafted {
      font-size: 1.2rem;
      margin: 10px;
    }
  }
  .books{
    background: #F3F8FA;
    position: relative;
    padding: 60px 20px;
    margin: 60px 0;
  }
  .tag {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c3d1db;
  }

  .books .tag.conceived {
    top: -16px;
    right: 0;
    margin: 0 20px;
  }

  .books .tag.crafted {
    bottom: -16px;
    right: 0;
    margin: 0 20px;
  }

  .why-choose-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: #fff3c4;
    border-radius: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .why-choose-image {
    flex: 1 1 300px;
    text-align: center;
  }

  .why-choose-image img {
    max-width: 100%;
    height: auto;
  }

  .why-choose-text {
    flex: 1 1 500px;
    color: #2f1d58;
  }

  .why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .why-choose-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
  }

  .why-choose-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .why-choose-text li {
    display: flex;
    align-items: center;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2f1d58;
  }

  .why-choose-text li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #ff5977;
    border-radius: 50%;
    margin-right: 12px;
  }

  @media (max-width: 768px) {
    .why-choose-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .why-choose-text {
      text-align: center;
    }

    .why-choose-text h2 {
      font-size: 2rem;
    }
  }
  .footer-container {
    padding: 80px 20px 30px;
    position: relative;
    color: white;
  }

  .join-section {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .join-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .join-section p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
  }

  .email-subscribe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
  }

  .email-subscribe input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 40px 0 0 40px;
    font-size: 1rem;
    outline: none;
  }

  .email-subscribe button {
    background-color: #ff728b;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 40px;
    cursor: pointer;
    transition: #ff728b 0.3s ease;
  }

  .email-subscribe button:hover {
    background-color: #ff5a77;
  }

  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
  }

  .footer-logo {
    font-family: serif;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.95rem;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  /* Background Circles (Illustration Placeholders) */
  .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
  }

  .bg-left {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: 50px;
    left: 0;
  }

  .bg-right {
    width: 300px;
    height: 300px;
    background: #fff;
    top: 50px;
    right: 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .join-section h2 {
      font-size: 2rem;
    }

    .email-subscribe {
      flex-direction: column;
      border-radius: 20px;
    }

    .email-subscribe input,
    .email-subscribe button {
      border-radius: 20px;
      width: 100%;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }

    .footer-links {
      justify-content: center;
    }
  }
  .logo{
    position: absolute;
    top: 100px;
  }
  .gradient-link {
    background: linear-gradient(90deg, #00c853, #9c27b0); /* Green to Purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .gradient-link:hover {
    opacity: 0.8;
  }
  .nav-bar {
    text-align: center;
    padding: 16px 0;
  }
  
  .nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 32px;
  }
  
  .nav-menu li {
    display: inline-block;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    padding: 6px 0;
    position: relative;
  }
  
  .nav-menu a.active {
    border-bottom: 2px solid #51C3E9;
    color: #51C3E9;
  }
  
  /* Gradient for 'Join Our Clan' only */
  .nav-menu a.gradient-link {
    background: linear-gradient(90deg, #00c853, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  html {
    scroll-behavior: smooth;
  }
  .unionsvgImg{
    position: absolute;
    bottom: -46px;
    right: -78px;
  }
  /* Scroll to Top Button Styles */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #F7DA30;
  color: #000;
  cursor: pointer;
  padding: 5px 18px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #F7DA30;
}