/* Start Header Styles */

.landing-contain {
    padding: 0 136px;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for blending */
    backdrop-filter: blur(15px); /* Adjust the blur amount as needed */
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.06);
    z-index: 1000; /* Ensure it stays above other content */
}
       .header-contain {
            width: 100%;
            position: relative;
        }

        .nav-container-web {
            display: flex;
            align-items: center;
            justify-content: space-between;

        }

        .navbar-brand img {
            width: 73px;
            height: 34px;
        }

        .navbar-nav {
            display: flex;
            gap: 40px;
            flex-direction: row;
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            text-align: center;
        }

        .nav-link {
            color: rgba(0, 0, 0, 1);
            font-family: "Poppins", sans-serif !important;
            font-size: 16px;
            font-weight: 400;
            line-height: 22.4px;
            text-align: center;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
        }

        .nav-link:hover {
            color: #7239d4;
        }

        .btns-navbar {
            display: flex;
            gap: 16px;
        }

        .btn-signin,
        .btn-signup {
            padding: 12px 32px;
            border-radius: 8px;
            font-family: Poppins;
            font-size: 16px;
            font-weight: 500;
            line-height: 22.4px;
            text-align: left;
            transition: all 0.5s ease-in-out;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .nav-container-web .btn-signin {
          padding: 12px 32px;
          border-radius: 8px;
          background: white;
          font-family: Poppins;
          font-size: 16px;
          font-weight: 500;
          line-height: 22.4px;
          text-align: left;
          color: var(--m, rgba(12, 20, 33, 1));
          border: 1px white solid;
          transition: all 0.5s ease-in-out;
        }
        .nav-container-web .btn-signin:hover {
          padding: 12px 32px;
          border-radius: 8px;
          background: linear-gradient(270deg, #f94399 0%, #7239d4 100%);
          font-family: Poppins;
          font-size: 16px;
          font-weight: 500;
          line-height: 22.4px;
          text-align: left;
          color: white;
          border: 1px linear-gradient(270deg, #f94399 0%, #7239d4 100%) solid;
        }

        .nav-container-web .btn-signup {
          padding: 12px 32px;
          border-radius: 8px;
          background: linear-gradient(270deg, #f94399 0%, #7239d4 100%);
          font-family: Poppins;
          font-size: 16px;
          font-weight: 500;
          line-height: 22.4px;
          text-align: left;
          color: white;
          border: 1px white solid;
          transition: all 0.5s ease-in-out;
        }

        .nav-container-web .btn-signup:hover {
          padding: 12px 32px;
          border-radius: 8px;
          background: white;
          font-family: Poppins;
          font-size: 16px;
          font-weight: 500;
          line-height: 22.4px;
          text-align: left;
          color: var(--m, rgba(12, 20, 33, 1));
          border: 1px linear-gradient(270deg, #f94399 0%, #7239d4 100%) solid;
        }

        @media (max-width: 1100px) {
          .landing-contain {
            padding: 0 50px;
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for blending */
            backdrop-filter: blur(15px); /* Adjust the blur amount as needed */
            box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.06);
            z-index: 1000; /* Ensure it stays above other content */
        }
      }
        @media (max-width: 900px) {
          .landing-contain {
            padding: 0 10px;
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for blending */
            backdrop-filter: blur(15px); /* Adjust the blur amount as needed */
            box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.06);
            z-index: 1000; /* Ensure it stays above other content */
        }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container-web {
                flex-direction: column;
                align-items: center;
                padding: 20px;
            }
            .navbar-brand img {
              display: none;
            }

            .navbar-nav {
                display: none; /* Hide navbar links initially on small screens */
                flex-direction: column;
                gap: 20px;
                width: 100%;
                margin-top: 10px;
            }

            .btns-navbar {
                display: none; /* Hide buttons initially on small screens */
                flex-direction: column;
                gap: 10px;
                width: 100%;
                margin-top: 10px;
            }

            /* Burger Menu */
            .burger-menu {
                display: block;
                cursor: pointer;
                font-size: 24px;
            }

            /* Active State for Mobile Menu */
            .navbar.active .navbar-nav,
            .navbar.active .btns-navbar {
                display: flex;
            }
        }

        @media (max-width: 480px) {
            .btn-signin,
            .btn-signup {
                padding: 10px 20px;
                font-size: 14px;
            }

            .nav-link {
                font-size: 14px;
            }
        }

        .sidebar {
          width: 250px;
          background-color: #fff;
          position: fixed;
          top: 0;
          left: 0;
          height: 100vh;
          padding: 30px 0 0 0 ;
          box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
          transform: translateX(-100%);
          transition: transform 0.3s ease;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          z-index: 10;
      }

      .sidebar.open {
          transform: translateX(0);
      }

      .toggle-btn {
          position: fixed;
          top: 10px;
          left: 10px;
          padding: 10px;
          cursor: pointer;
          /* background: linear-gradient(45deg, #7d3cff, #e91e63); */
          color: black;
          font-weight: 700;
          font-size: 20px;
          z-index: 1001;
      }

      .sidebar ul {
          list-style: none;
          padding: 15px;
      }

      .sidebar ul li, .bottom-menu li {
          padding: 10px 20px;
          display: flex;
          align-items: center;
          color: #333;
          cursor: pointer;
          transition: background 0.2s;
      }

      .sidebar ul li:hover, .bottom-menu li:hover {
          background: #f4f4f4;
      }

      .sidebar ul li i, .bottom-menu li i {
          margin-right: 10px;
          font-size: 18px;
      }

      .bottom-menu {
          padding: 15px;
          list-style: none;
          border-top: 1px solid #e0e0e0;
      }

      .bottom-menu .profile {
          display: flex;
          align-items: center;
          padding-top: 15px;
      }

      .bottom-menu .profile img {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          margin-right: 10px;
      }

      /* Only show sidebar and toggle button on small screens */
      @media (max-width: 768px) {
          .sidebar {
              display: flex;
          }
          .toggle-btn {
              display: block;
          }
      }

      @media (min-width: 769px) {
          .sidebar {
              display: none;
          }
          .toggle-btn {
              display: none;
          }
      }
/* End Header Styles */

/* Start Hero Section Styles */

.hero-section {
  margin-top: 42px;
  padding: 0px 0 0 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  z-index: 1 !important;
}

.hero-image {
  height: 100%;
  max-width: 741px;
}

.hero-image img {
  max-width: 741px;
  max-height: 641px;
  object-fit: cover;
}
.hero-section .hero-content {
  margin-top: 150px;
}


.hero-section .hero-content h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 89.6px;
  font-family: "Oduda", sans-serif;
  color: black;
}

.hero-section .hero-content h2 span {
  color: #b03eb9 !important;
}

.hero-section .hero-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 21.6px;
  font-family: "Oduda", sans-serif;
  color: rgba(140, 140, 140, 1);
  position: relative;
  padding-left: 10px;
}

.hero-section .hero-content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, #f94399 0%, #7239d4 100%);
}

.hero-section .hero-content .border-wrapper {
  display: inline-block;
  /* border-radius: 8px; */
  /* padding: 2px; */
  /* background: linear-gradient(180deg, #f94399 0%, #7239d4 100%); */
  /* transition: all 0.5s ease-in-out; */
  /* cursor: pointer; */
  /* overflow: hidden; */
  /* box-shadow: 0 4px 10px rgba(255, 255, 255, 0.7); */
}



.hero-section .hero-content .border-wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 28.8px;
  font-family: "Oduda", sans-serif;
  padding: 8px 40px;
  border-radius: 8px;
  background: white;
  color: rgba(140, 140, 140, 1);
  border: 2px solid #b03eb9;
  text-decoration: none;
  transition: all 0.5s linear;
  overflow: hidden;
}

.hero-section .hero-content .border-wrapper:hover a {
  border: 2px solid white;
  color: white;
  background-color: #b03eb9;
}



.hero-section .hero-content .border-wrapper a img {
  animation: upDown 3s ease-in-out infinite;
  width: 24px;
  height: 24px;
  opacity: 0;
}

@keyframes upDown {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}

.hero-section .hero-content a img:nth-child(1) {
  animation-delay: 0s;
}
.hero-section .hero-content a img:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-section .hero-content a img:nth-child(3) {
  animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 40px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    height: 100%;

  }

  .hero-image img {

    max-height: 500px;
    object-fit: cover;
  }
  .hero-section .hero-content {
    margin-top: 130px;
  }


  .hero-section .hero-content h2 {
    font-size: 48px;
    line-height: 64px;
  }

  .hero-section .hero-content p {
    font-size: 16px;
    line-height: 20px;
  }

  .hero-section .hero-content .border-wrapper a {
    padding: 8px 20px;
  }

  .hero-section .hero-image {
    display: black;
    margin-top: 20px; /* Hide image on smaller screens */
  }
}

@media (max-width: 768px) {
  .hero-section .hero-content h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .hero-image {
    height: 100%;

  }
.hero-image img {

  max-height: 300px;
  object-fit: cover;
}
.hero-section .hero-content {
  margin-top: 0px;
}

  .hero-section .hero-content p {
    font-size: 14px;
    line-height: 18px;
  }

  .hero-section .hero-content .border-wrapper a {
    font-size: 14px;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin-top: 0px;
    padding: 20px;
  }

  .hero-section .hero-content h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-section .hero-content p {
    font-size: 12px;
    line-height: 16px;
  }

  .hero-section .hero-content .border-wrapper a {
    font-size: 12px;
    padding: 4px 12px;
  }
}

/* Continue for more images as needed */
/* End Hero Section Styles */

/* Start Cards Section Styles */

.cards-section {
  margin-top: 50px !important;
}

.cards-section .title-cards-section {
  display: flex;
  justify-content: center;
  font-family: "Oduda", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  text-align: center;
color: var(--B, rgba(34, 34, 34, 1));

}
.cards-section .cards-contain {
  margin-top: 40px;
  padding: 40px 96px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr); /* Four items per row */
}

.cards-section .cards-contain-mobile{
  display: none;
}
.cards-section .cards-contain .card-example {
  position: relative;
  max-width: 297px;
  width: 100%;
  max-height: 520px;
  height: 520px;
  overflow: hidden;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
transition: all 0.5s ease-in-out;
cursor: pointer;
border-radius: 12px;
}

.cards-section .cards-contain .card-example .image-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease 0.4s;/* Smooth transition */
  opacity: 1; /* Visible by default */
}

.cards-section .cards-contain .card-example .image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease 0.4s; /* Delayed transition */
  opacity: 0; /* Hidden by default */
}

.cards-section .cards-contain .card-example:hover  {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
}


.cards-section .cards-contain .card-example:hover .image-overlay {
  opacity: 0; /* Hide overlay on hover */
}

.cards-section .cards-contain .card-example:hover .image-content {
  opacity: 1; /* Show content on hover */
}



.cards-section .cards-contain-mobile .card-example {
  position: relative;
  max-width: 157px;
  width: 100%;
  max-height: 260px;
  height: 260px;
  overflow: hidden;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
transition: all 0.5s ease-in-out;
cursor: pointer;
border-radius: 8px;
margin: 0 auto;
}

.cards-section .cards-contain-mobile .card-example .image-overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease 0.4s;/* Smooth transition */
  opacity: 1; /* Visible by default */
}

.cards-section .cards-contain-mobile .card-example .image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease 0.4s; /* Delayed transition */
  opacity: 0; /* Hidden by default */
}

.cards-section .cards-contain-mobile .card-example:hover  {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
}


.cards-section .cards-contain-mobile .card-example:hover .image-overlay {
  opacity: 0; /* Hide overlay on hover */
}

.cards-section .cards-contain-mobile .card-example:hover .image-content {
  opacity: 1; /* Show content on hover */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .cards-section .cards-contain {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 30px;
      padding: 30px 72px;
  }
}

@media (max-width: 768px) {
  .cards-section .cards-contain {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 20px;
      padding: 20px 50px;
  }
}

@media (max-width: 480px) {
  .cards-section .title-cards-section {
    display: flex;
    justify-content: center;
    font-family: "Oduda", sans-serif;

    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: center;

  color: var(--B, rgba(34, 34, 34, 1));

  }
  .cards-section .cards-contain {
      display: none; /* One item per row */
  }
  .cards-section .cards-contain-mobile{
    margin-top: 16px;
    padding: 0px 10px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-section .cards-contain-mobile .card-example {
    position: relative;
    max-width: 180px;
    width: 100%;
    max-height: 315px;
    height: 315px;
    overflow: hidden;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
  margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .cards-section .cards-contain {
      display: none; /* One item per row */
  }
  .cards-section .cards-contain-mobile{
    margin-top: 16px;
    padding: 0px 10px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}
/* End Cards Section Styles */



/* Start Our Services Section */
.our-services {
  padding: 96px;
  background: rgba(114, 57, 212, 1);
  margin-bottom: 80px;
}
.our-services .our-service-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-bottom: 64px;
}

.our-services .our-service-title h2 {
  color: white;
  font-family: "Oduda", sans-serif;
font-size: 32px;
font-weight: 700;
line-height: 38.4px;
text-align: center;


}
.our-services .our-service-title p {
color: white;
  font-family: "Oduda", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;


}
.our-services .our-services-cards {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  justify-content: center;

  gap: 20px;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  /* Hide scrollbars if desired */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.our-services .our-services-cards::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.our-services .our-services-cards .card-contain {
  flex: 0 0 100vw; /* Makes each card take full width */
  border-radius: 12px;
  max-height: 305px;
  height: 305px;
  max-width: 297px;
  width: 297px;
  padding: 24px 16px;
  box-sizing: border-box;
  background-color: transparent;
  transition: all 0.7s ease-in-out;
  border: none;
  color: white;
  scroll-snap-align: start;
}

.our-services .our-services-cards .card-contain:hover {
  background-color: white;
  color: var(--B, rgba(34, 34, 34, 1));
}

.our-services .our-services-cards .card-contain .image-contain {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  margin: 0 auto;
  background: transparent;
  transition: all 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-services .our-services-cards .card-contain .image-contain img {
  width: 48px;
  height: 48px;
}

.our-services .our-services-cards .card-contain:hover .image-contain {
  background: linear-gradient(180deg, #F94399 0%, #7239D4 100%);
}

.our-services .our-services-cards .card-contain h2 {
  font-family: "Oduda", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0px;
}

.our-services .our-services-cards .card-contain p {
  font-family: "Oduda", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
  margin-top: 12px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .our-services {
    padding: 84px;
  }
}

@media (max-width: 768px) {
  .our-services .our-services-cards {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    justify-content: flex-start;

    gap: 20px;
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    /* Hide scrollbars if desired */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
  }
  .our-services {
    padding: 40px 15px;
  }
  .our-services .our-services-cards .card-contain {
    height: 270px;
    width: 300px;
    padding: 20px 12px;
  }
  .our-services .our-services-cards .card-contain .image-contain {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    margin: 0 auto;
    background: transparent;
    transition: all 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .our-services .our-services-cards .card-contain .image-contain img {
    width: 32px;
    height: 32px;
  }

}

@media (max-width: 480px) {
  .our-services {
    padding: 24px 0;
    margin: 24px 0 80px;
  }
  .our-services .our-service-title {
    display: none;
  }
  .our-services .our-services-cards {
    padding: 10px;
  }
  .our-services .our-services-cards .card-contain {
    height: 141px;
    width: 157px;
    max-width: 157px;
    padding: 12px ;
  }
  .our-services .our-services-cards .card-contain .image-contain {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto;
    background: transparent;
    transition: all 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .our-services .our-services-cards .card-contain .image-contain img {
    width: 24px;
    height: 24px;
  }

  .our-services .our-services-cards .card-contain h2 {
    font-family: "Oduda", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 14.4px;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0px;
  }

  .our-services .our-services-cards .card-contain p {
    font-family: "Oduda", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: 12px;
    text-align: center;

    margin-top: 4px;
  }
}


/* End Our Services Section */



/* Start Links Section Styles */
.links-section-contain {
  padding: 40px 0 0;
  box-sizing: border-box;

}
.links-section-contain .title-links-section {
  display: flex;
  justify-content: center;
  font-family: "Oduda", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  text-align: center;
color: var(--B, rgba(34, 34, 34, 1));

}

.links-section-contain  .links-contain {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  /* Hide scrollbars if desired */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.links-section-contain  .links-contain::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (max-width: 768px) {
  .links-section-contain  .links-contain {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    justify-content: flex-start;

    gap: 20px;
    overflow-x: auto;
    width: 100%;
    scroll-snap-type: x mandatory;
    /* Hide scrollbars if desired */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
  } }
@media (max-width: 480px) {
  .links-section-contain .title-links-section {
    display: flex;
    justify-content: center;
    font-family: "Oduda", sans-serif;

    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: center;

  color: var(--B, rgba(34, 34, 34, 1));

  } }
 /* Center the Swiper container horizontally */
/* Center the Swiper container and set padding */
.swiper {
  width: 100%;
  padding: 30px 96px;
  margin: 0 auto;
  height: 100%;

}

@media (max-width: 768px) {
  .swiper {
    width: 100%;
    padding: 30px 5px;
    margin: 0 auto;
    height: 100%;
  }
}

.swiper .swiper-wrapper {
  justify-content: space-around;
  align-items: start !important;
  display: flex;
}

/* Set minimum height for each slide */
.swiper-slide {
  margin: auto 0 !important;
  min-height: fit-content;
  display: flex;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  position: relative;
  padding: 30px 0 !important;
}

.swiper-slide .slide-content {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Hide all images initially */
.swiper-slide .slide-content img {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Display desktop images only on screens wider than 567px */
@media (min-width: 567px) {
  .swiper-slide .slide-content img:nth-child(1) {
    display: block;
    opacity: 1;
  }
}

/* Display mobile images only on screens less than 567px */
@media (max-width: 567px) {
  .swiper-slide .slide-content img:nth-child(2) {
    display: block;
    opacity: 1;
  }
}

/* Keyframe animation for smooth height expansion */
@keyframes expandHeight {
  0% {
    height: 216px;
    object-fit: cover;
    width: 100%;
    opacity: 1;
  }
  100% {
    height: 520px;
    object-fit: cover;
    width: 100%;
    opacity: 1;
  }
}
@keyframes expandHeightMobile {
  0% {
    height: 120px;
    object-fit: cover;
    width: 100%;
    opacity: 1;
  }
  100% {
    height: 260px;
    object-fit: cover;
    width: 100%;
    opacity: 1;
  }
}

@media (min-width: 567px) {


  /* Hover effect to hide the example image and show content image */
.swiper-slide:hover .slide-content img:nth-child(1) {
  display: none !important;
}

.swiper-slide:hover .slide-content img:nth-child(3) {
  display: block;
  height: 216px;
  width: 100%;
  animation: expandHeight 0.5s ease forwards;
}

}


/* Responsive hover effect for mobile */
@media (max-width: 567px) {
  .swiper-slide:hover .slide-content img:nth-child(2) {
    display: none;
  }
  .swiper-slide:hover .slide-content img:nth-child(4) {
    display: block;
    height: 120px;
    animation: expandHeightMobile 0.5s ease forwards;
  }
}



/* End Links Section Styles */




/* Start Faq Section Styles */

.faq-section {
  padding: 64px 96px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 52px ;
    margin-bottom: 30px;

  }
}
@media (max-width: 567px) {
  .faq-section {
    padding: 40px 15px ;
    margin-bottom: 20px;

  }
}
.faqs-container {
  background-color: white;
  transition: all 1s linear
}

.faqs-container:hover {
  background-color: #f94399;
}

.faq-section .faq-title-contain {
  display: flex;
  justify-content: center;
}
.faq-section .faq-title-contain  .faq-title{
  font-family: "Oduda", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
  text-align: center;
  margin-bottom: 40px;
  transition: all 1s linear ;

}.faqs-container:hover  .faq-section .faq-title-contain  .faq-title {
color: white;
}
.accordion-button  {
  padding:  24px;
  font-family: "Oduda", sans-serif;
font-size: 24px;
font-weight: 500;
line-height: 24px;


}
@media (max-width: 768px) {
  .accordion-button  {
    padding:  12px;
    font-family: "Oduda", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;


  }
}
@media (max-width: 567px) {
  .accordion-button  {
    padding:  12px;
    font-family: "Oduda", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;


  }
}
 .accordion-body {
  padding: 12px 24px;
 }

 @media (max-width: 768px) {
  .accordion-body {
    padding: 12px ;
   }
}
@media (max-width: 567px) {
  .accordion-body {
    padding: 12px;
   }
}
.accordion-button {

font-size: 18px;
font-weight: 300;
line-height: 21.6px;
color: rgba(0, 0, 0, 1);

}
.accordion-button .icon {
  background-color: white;
  padding: 8px;
  width: 32px; /* Corrected typo from 32p8 to 32px */
  height: 32px;
  margin-left: auto;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-button .icon i {
  width: 10px; /* This sets the width of the icon container */
  height: 10px; /* This sets the height of the icon container */
  font-size: 10px !important; /* This sets the font size of the icon itself */
  line-height: 1; /* Optional: Prevents extra space around the icon */
}

 .accordion-button:not(.collapsed) {
  background: rgba(245, 245, 245, 1);
  border-bottom: 0.5px solid rgba(234, 234, 234, 1)
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-button {
  background: rgba(245, 245, 245, 1);

}
.accordion-body {
  background: rgba(245, 245, 245, 1);
}

button:not(:disabled) {
  background: rgba(245, 245, 245, 1);
}



.faqs-container:hover .accordion-button:not(.collapsed) {
  background: white;
}

.faqs-container:hover .accordion-button {
  background: white;

}
.faqs-container:hover .accordion-body {
  background: white;
}


.accordion-button::after {
  display: none ;
}

.accordion-button {
  position: relative; /* Ensures the icon is positioned relative to the button */
  padding-right: 30px; /* Add space for the custom icon */
  background: none; /* Remove default background */
  border: none; /* Remove default border */
}

/* Remove
/* End Faq Section Styles */


/* Start Footer Styles */

.footer-section {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-top: 1px solid #ddd;
  width: 100%;

}

.logo {
  font-size: 36px;
  color: #e746e0;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}

.logo .dot {
  color: #ffbd3b;
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 20px;
}

nav {
  margin-bottom: 20px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #e746e0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  color: #e746e0;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
  background-color: #e746e0;
  color: white;
}

.copyright {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.copyright span {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .footer-section {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-top: none;
    width: 100%;

  }

  nav {
   display: none;
  }

  nav a {
      margin: 0 10px;
      font-size: 14px;
  }
  .social-icons {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  .social-icons a {
      width: 35px;
      height: 35px;
      font-size: 16px;
  }
  .copyright {
    display: flex;
    justify-content: start;
    align-items: center;

    gap: 10px;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
}

/* End Footer Styles */


/* Start Package Section Styles */

.package-section {
  display: flex;
  flex-direction: column; /* Default to column layout for small screens */
  width: 100%;
  padding: 0 16px; /* Reduce padding for better responsiveness */
  gap: 20px; /* Space between sidebar and content */
}

/* Large screens: set sidebar width and use row layout */
@media (min-width: 992px) {
  .package-section {
    flex-direction: row;
    justify-content: space-between;/* Side-by-side layout on larger screens */
    padding: 0 96px; /* Increased padding on large screens */
  }

  .sidebar-package {
    width: 500px; /* Fixed width for sidebar on large screens */
    margin-right: 20px; /* Space between sidebar and content */
    padding: 138px 0;
  }

  .content {
    flex: 1; /* Content takes up remaining space */
  }
}
.package-section  {
  margin: 80px 0;
}

.package-section .sidebar-package {
  display: flex;
  flex-direction: column;

}

/* Sidebar button container styles */
.sidebar-button-container {
  position: relative;
  padding-left: 60px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.sidebar-button-container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15px;
  width: 3px;
  height: 80%;
  background-color: #e0e0e0;
  transition: background-color 0.4s ease;
  border-radius: 8px;
}

/* Sidebar button styles */
.sidebar-button {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  text-align: left;
  background: #e0e0e0;
  border: none;
  outline: none;
  transition: all 0.4s ease;
  border-radius: 12px;


}

.sidebar-button .btn-title {
  font-family: "Oduda", sans-serif;
font-size: 24px;
font-weight: 700;
line-height: 38.4px;
text-align: left;

}
.sidebar-button .btn-sub-title {
  font-family: "Oduda", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 28.8px;
  text-align: left;

}

/* Index number */
.sidebar-button-container .index-number {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #e0e0e0;
  color: #333;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

/* Active styles */
.sidebar-button-container.active::before {
  background-color: #ff007b;
  border-radius: 8px;

}

.sidebar-button-container.active .index-number {
  background-color: #ff007b;
  border-radius: 8px;

  color: white;
}

.sidebar-button-container.active .sidebar-button {
  background: linear-gradient(270deg, #f94399 0%, #7239d4 100%);
  color: white;
  font-weight: bold;
  border-radius: 8px;

}

.sidebar-button-container:not(.active) .sidebar-button:hover {
  background: #d4d4d4;
  border-radius: 8px;

}

/* Content styles */
.content {
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

/* Content section animations */
.content-section {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-section img {
  max-height: 630px;
 height: 630px;
 max-width: 435px;
}

.content-section.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateX(0);
}
/* End Package Section Styles */



/* Container for the slider */
.slider-container {
  max-width: 100%;
  margin-top: 48px;
  padding: 0 20px; /* Max width of the slider */
  margin: auto; /* Center the slider */
  text-align: center;
  font-family: Arial, sans-serif;
  overflow: hidden; /* Hide any overflow */
  position: relative;
}

.slider-container h2 {
  margin-top: 48px !important;
  margin-bottom: 16px;
color: rgba(0, 0, 0, 1);
font-size: 18px;
font-weight: 700;
line-height: 21.6px;
text-align: center;

}
/* Progress bar container */
.progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0; /* Light gray background for the progress bar */
  margin: 10px 0;
  position: relative;
}

/* Progress bar indicator */
.progress {
  width: 0%;
  height: 100%;
  background:linear-gradient(180deg, #F94399 0%, #7239D4 100%); /* Gradient color for progress */
  transition: width 0.3s ease-in-out; /* Smooth width transition */
}


/* Slide number controls */
.slide-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* Space between buttons and slide number */
}
.current-slide {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(180deg, #F94399 0%, #7239D4 100%);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* Adjusted to match the height for centering */
  display: flex; /* Added to center text */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

.slide-number button {
  padding: 5px 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: linear-gradient(180deg, #F94399 0%, #7239D4 100%);

  border-radius: 4px;
  transition: background-color 0.3s ease;
}



/* Main slider container */
.slider {
  width: 100%;
  overflow: hidden; /* Hide overflow content */
  position: relative;
}

/* Individual slides */
.slide {
  min-width: 100%;
  display: none;
  animation: fadeIn 0.5s; /* Fade-in animation */
}

/* Active slide */
.slide.active {
  display: block;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide content styles */
.slide .content img {
  width: 100%; /* Image width */
   /* Image height */
  object-fit: cover; /* Ensure image fits within the specified dimensions */
  border-radius: 10px; /* Add rounded corners */
  display: block;
  margin: 10px auto;
}

.content h3 {
  margin: 10px 0 5px;
  color: #333; /* Dark gray color for heading */
  font-size: 18px;
}

.content p {
  color: #666; /* Lighter gray color for text */
  font-size: 14px;
  margin-bottom: 15px;
}

@media  (max-width: 567px) {
  .package-section {
    display: none;
    flex-direction: column; /* Default to column layout for small screens */
    width: 100%;
    padding: 0 16px; /* Reduce padding for better responsiveness */
    gap: 20px; /* Space between sidebar and content */
  }

}

@media (min-width: 567px) {
  .slider-container {
    display: none;
  }
}

.container-content {
  background: linear-gradient(180deg, #F94399 0%, #7239D4 100%);
  margin: 16px 0 24px;
  color: white;
  padding: 8px 12px 8px 12px;
  border-radius: 12px ;

}
.container-content h3 {
font-size: 18px;
font-weight: 700;
line-height: 21.6px;
text-align: center;
color: white !important;
}

.container-content p {
font-size: 12px;
font-weight: 300;
line-height: 14.4px;
text-align: center;
color: white !important;
}
