html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
 /* Banner Section */
.banner09 {
    background: url('../images/FD/banner_nidhi.jpg') no-repeat center center;
    background-size: cover;
    /* background-attachment: fixed; Parallax effect */
    height: 95vh; /* Full viewport height */
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: flex-end; /* Align content to the left */
    position: relative;
    color: #fff;
    padding: 0 5%; /* Add padding for content */
  }
  
  /* Overlay for smaller devices only */
  .banner09::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Content Inside Banner */
  .banner09 .content09 {
    position: relative;
    z-index: 2;
    max-width: 630px;
    bottom: -5pc;
    right: -10pc;
  }
  
  .banner09 .content09 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fcb21c;
  }
  
  .banner09 .content09 h1 .highlight09 {
    color:#2596be;;
  }
  
  .banner09 .content09 p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #000000;
  }
  
  .banner09 .btn09 {
    display: inline-block;
    padding: 12px 30px;
    background-color:#2596be;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .banner09 .btn09:hover {
    background-color:#fcb21c;
    color: #fff;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .banner09 {
      justify-content: flex-start; /* Align content to the left */
      padding: 0 5%; /* Reduce padding */
    }
  
    .banner09 .content09 {
      
        max-width: 630px;
        margin-top: 246px;
        right: 2px;
    
    }
  }
  
  @media (max-width: 750px) {
    .banner09 {
      justify-content: flex-start;
      align-items: flex-start; /* Align content to top-left */
      padding: 10% 5%; /* Add spacing at the top */
    }
  
    .banner09::before {
      background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    }
  
    .banner09 .content09 h1 {
      font-size: 2rem;
    }
  
    .banner09 .content09 p {
      font-size: 0.95rem;
      text-align: left; /* Align text to the left */
    }
  
    .banner09 .btn09 {
      font-size: 0.9rem;
      padding: 10px 25px;
    }
  }
  
  @media (max-width: 480px) {
    .banner09 {
      justify-content: flex-start;
      align-items: flex-start; /* Align content to top-left */
      padding: 10% 5%; /* Add spacing at the top */
      margin: auto;
    }
  
    .banner09 .content09 h1 {
      font-size: 1.8rem;
    }
  
    .banner09 .content09 p {
      font-size: 0.85rem;
      text-align: left; /* Align text to the left */
      color: white;
    }
  
    .banner09 .btn09 {
      font-size: 0.85rem;
      padding: 8px 20px;
    }
  }
  
  /* Default .banner .content for larger screens */
  .banner09 .content09 {
    position: relative;
    z-index: 2;
    max-width: 630px;
  }
  
  
  /* Programs section55 */
  .programs55 {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .programs55 h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .program-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .program-item {
    background: #f0f0f0;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .program-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .program-item p {
    font-size: 1rem;
  }
  
  

  
  /* Service Section */
  .service-section-unique {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 100px;
    border-bottom: 1px solid #ffffff;
    background-color: #ffffff;
  }
  
  .text-container-unique {
    flex: 1;
    padding: 20px;
  }
  
  .text-container-unique h2 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .text-container-unique h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 2.5px;
    background: linear-gradient(45deg, #ff6803, #ca5690);
    position: absolute;
    bottom: -10px;
    left: 0;
  }
  
  .text-container-unique p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #555;
  }
  
  /* Accordion Menu */
  .accordion-menu-unique {
    display: block;
    position: relative;
    border-radius: 5px;
  }
  
  .accordion-menu-unique h3 {
    font-size: 18px;
    line-height: 34px;
    font-weight: bolder;
    letter-spacing: 1px;
    display: block;
    margin: 0;
    cursor: pointer;
    color: #232323;
    margin-bottom: 10px; /* Spacing between the header and bullet list */
  }
  
  .accordion-menu-unique ul {
    list-style: none;
    padding: 0 0px 10px;
    margin-right: 30px;
    border-radius: 5px;
  }
  
  .accordion-menu-unique ul li {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 4px;
    padding-top: 18px;
    border-top: 1px dotted #dce7eb;
  }
  
  .accordion-menu-unique ul li:nth-child(1) {
    border: none;
  }
  
  /* Adding Bullets to the Accordion List */
  .accordion-menu-unique ul li ul {
    list-style-type: disc; /* Ensures that bullets are applied */
    padding-left: 20px; /* Indents the bullets */
    margin-top: 10px;
  }
  
  .accordion-menu-unique ul li ul li {
    margin-bottom: 5px;
    color: rgba(48, 69, 92, 0.8);
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 1px;
  }
  
  /* Arrow Styling */
  .accordion-menu-unique ul li .arrow-unique {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before,
  .accordion-menu-unique ul li .arrow-unique:after {
    content: "";
    position: absolute;
    /*background-color: #f6483b;*/
    background: linear-gradient(45deg, #764f8f, #da1f3e);
    width: 3px;
    height: 9px;
  }
  
  .accordion-menu-unique ul li .arrow-unique:before {
    transform: translate(-2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique ul li .arrow-unique:after {
    transform: translate(2px, 0) rotate(-45deg);
  }
  
  /* Checkbox Behavior */
  .accordion-menu-unique ul li input[type="checkbox"] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }
  
  .accordion-menu-unique ul li input[type="checkbox"]:checked ~ ul {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:before {
    transform: translate(2px, 0) rotate(45deg);
  }
  
  .accordion-menu-unique
    ul
    li
    input[type="checkbox"]:checked
    ~ .arrow-unique:after {
    transform: translate(-2px, 0) rotate(-45deg);
  }
  
  .transition,
  p,
  ul li .arrow-unique:before,
  ul li .arrow-unique:after {
    transition: all 0.25s ease-in-out;
  }
  
  /* Image Container */
  .image-container-unique {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 300px; /* Set a minimum height to avoid shifting */
  }
  
  /*.image-container-unique img {*/
  /*  max-width: 100%;*/
  /*  height: auto;*/
  /*  border-radius: 30px;*/
  /*}*/
  
  /* Media Queries */
  @media (max-width: 768px) {
    .service-section-unique {
      flex-direction: column;
      text-align: center;
      margin-top: 40px;
      padding: 0px 25px;
    }
  
    .key-services-unique {
      margin-bottom: 50px;
      left: 30px;
    }
  
    .text-container-unique {
      text-align: left;
      padding: 0%;
      line-height: 1.4;
    }
  
    .image-container-unique {
      height: 30%;
    }
  
    .image-container-unique img {
      max-width: 105%;
    }
  }
  
  .dropdown-item {
    position: relative;
    display: inline-block;
    padding-right: 40px; /* Adjust to give space for the label */
  }
  
  .new-label {
    position: absolute;
    right: 10px;
    background-color: blue;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
  }
  


  
  .new-content-item {
    display: none; /* Initially hide all content */
  }
  
  .new-content-item.active {
    display: block; /* Show only the active content */
  }
  
  /* Additional class */
  .new-class-66 {
    font-size: 18px; /* Example customization */
    margin-top: 10px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .new-menu {
      flex-direction: column;
      align-items: normal;
    }
    .new-quote-button {
      margin-left: 0;
    }
  }
  
  @media (max-width: 768px) {
      .navbar{
          padding-left: 0rem !important;
          padding-right: 1rem !important;
      }
  }
  


  .new-menu {
    position: fixed;
    top: -100px; /* Initially hidden (animated with transition) */
    left: 0;
    width: 100%;
    background-color: #00bcd457;
    color: rgb(12, 11, 11);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    z-index: 997;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px 20px; */
    transition: top 0.3s ease-in-out; /* Smooth show/hide transition */
  }
  
  .new-menu.visible {
    top: 100px; /* Visible when scrolled past the threshold */
    height: 3pc;
  }
  
  .new-menu-item {
    font-size: 16px;
    color: #3827cc;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffffff; /* White background */
    padding: 5px 10px; /* Add padding for spacing inside the box */
    border-radius: 5px; /* Rounded corners */
    display: inline-block; /* Ensure the background only wraps around the text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a slight shadow for depth */
}

.new-menu-item:hover {
    color: #08090a; /* Change text color on hover */
    background-color: #f8f9fa; /* Optional: Slightly change background color on hover */
}

  
  .new-quote-button {
    margin-left: 1%;
      padding: 3px 3px;
      color: #0056b3;
      background-color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 1.3s ease, color 0.3s ease;
  }
  
  .new-quote-button:hover {
    background-color: #ffffff;
  }
  
  
  /* Default visibility */
  .new-menu {
    display: flex; /* Ensure it is visible by default */
    flex-wrap: wrap; /* Adjust for responsiveness */
  }
  
  /* Hide the menu on screens smaller than 768px */
  @media (max-width: 1068px) {
    .new-menu {
        display: none; /* Hide the menu */
    }
  }
  








.share-wrapper {
  position: fixed; /* Ensure it stays in place even when scrolling */
  right: 20px; /* Distance from the right edge */
  top: 650px; /* Distance from the top */
  width: 45px;
  height: 45px;
  margin: 0; /* Remove the margin for precise placement */
  z-index: 1000; /* Ensure it's above other elements */
}

/* Adjustments for medium-sized screens (tablets) */
@media (max-width: 1024px) {
  .share-wrapper {
    right: 15px;
    bottom: 20px;
    top: 650px;  /* Adjust bottom distance for tablets */
  }
}

/* Adjustments for small screens (mobile) */
@media (max-width: 768px) {
  .share-wrapper {
    right: 10px;
    bottom: 15px; /* Adjust bottom distance for mobile */
    width: 40px;
    height: 40px;
    top: 650px; 
  }
}

/* Adjustments for very small screens (extra small mobile) */
@media (max-width: 480px) {
  .share-wrapper {
    right: 5px;
    bottom: 10px; /* Adjust bottom distance for small mobile screens */
    width: 35px;
    height: 35px;
    top: 650px; 
  }
}

.share-wrapper .share-button {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 7px;

  background: #fff;
  border-radius: 50%;
  display: block;
  box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  z-index: 5;
}

.share-wrapper .share-button:hover {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.share-wrapper .share-button .share-button__span-wrapper {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

.share-wrapper .share-button .share-button__span-wrapper span {
  font-size: 0;
  width: 100%;
  background: #1a334d;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child {
  transform: rotate(30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 0;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span {
  transform: rotate(-30deg);
  transform-origin: 0 50%;
}

.share-wrapper .share-button .share-button__span-wrapper span:first-child + span:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a334d;
  top: 0;
  margin-top: -4px;
  margin-left: -4px;
  left: 100%;
  transition: all 0.15s ease-in-out 0.25s;
}

.share-wrapper .share-url {
  font-size: 0;
  z-index: 0;
  position: absolute;
  width: 10px;
  height: 10px;
  overflow: hidden;
  bottom: 50%;
  right: 50%;
  margin-bottom: -5px;
  margin-right: -5px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.share-wrapper .share-url.url-1 {
  transition-delay: 0.2s;
}

.share-wrapper .share-url.url-2 {
  transition-delay: 0.15s;
}

.share-wrapper .share-url.url-3 {
  transition-delay: 0.07s;
}

.share-wrapper .share-url.url-4 {
  transition-delay: 0s;
}

.share-wrapper .share-url:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(1px);
}

.share-wrapper.open .share-button {
  translate: transformY(2px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.share-wrapper.open .share-button span {
  transition: all 0.3s cubic-bezier(0.37, -0.38, 0.595, 1.395) 0.2s;
}

.share-wrapper.open .share-button span:first-child {
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child:before {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-button span:first-child + span {
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}

.share-wrapper.open .share-button span:first-child + span:after {
  width: 0;
  height: 0;
  margin-left: 0;
  margin-top: 0;
  transition: all 0.3s ease-in-out 0s;
}

.share-wrapper.open .share-url {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: block;
}

.share-wrapper.open .share-url.url-1 {
  bottom: 80px;
  right: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0s;
}

.share-wrapper.open .share-url.url-2 {
  bottom: 70px;
  right: 40px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.05s;
}

.share-wrapper.open .share-url.url-3 {
  bottom: 40px;
  right: 70px;
  margin-right: 0;
  margin-bottom: 0;
  transition-delay: 0.12s;
}

.share-wrapper.open .share-url.url-4 {
  bottom: 0;
  right: 80px;
  margin-bottom: 0;
  margin-right: 0;
  transition-delay: 0.2s;
}
.share-url i {
  font-size: 20px;
  color: #030303; /* A pleasant blue color */
  display: flex;
  padding: 6px;
   align-items: baseline;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition on color and transform */
}

.share-url i:hover {
  color: #000000; /* A darker blue for the hover effect */
  transform: scale(1.1); /* Slight zoom-in effect on hover */
}




    /* Container */
    .container88 {
      max-width: 1500px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Section Styles */
    .creative-community88 {
      padding: 50px 20px;
      background-color: #ffffff;
    }

    .content-wrapper88 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    /* Image Section */
    .image-container88 {
      flex: 1;
      text-align: center;
    }

    .image-container88 img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 50% 0 50% 50%; /* Custom image shape */
    }

    /* Text Content */
    .text-content88 {
      flex: 1;
      padding: 20px;
    }

    .text-content88 h1 {
      font-size: 32px;
      color: #4f46e5; /* Primary purple color */
      margin-bottom: 20px;
    }

    .text-content88 p {
      font-size: 16px;
      color: #5a5a5a;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .cta-buttons88 {
      display: flex;
      gap: 15px;
    }

    .cta-buttons88 a {
      text-decoration: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .cta-buttons88 .join-btn88 {
      background-color: #4f46e5;
      color: #fff;
    }

    .cta-buttons88 .join-btn88:hover {
      background-color: #3b3aab;
    }

    .cta-buttons88 .support-btn88 {
      background-color: #e5e7eb;
      color: #4f46e5;
    }

    .cta-buttons88 .support-btn88:hover {
      background-color: #d1d5db;
    }

    /* Info Boxes */
    .info-boxes88 {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .info-box88 {
      flex: 1;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .info-box88 h2 {
      font-size: 18px;
      color: #4f46e5;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-box88 p {
      font-size: 14px;
      color: #5a5a5a;
      margin-bottom: 15px;
    }

    .info-box88 a {
      text-decoration: none;
      color: #4f46e5;
      font-weight: bold;
      font-size: 14px;
    }

    .info-box88 a:hover {
      text-decoration: underline;
    }

    /* Newsletter Form */
    .newsletter88 {
      margin-top: 30px;
      text-align: center;
    }

    .newsletter-form88 {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .newsletter-form88 input {
      width: 60%;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .newsletter-form88 button {
      background-color: #4f46e5;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    
    /* Responsive Styles */
    @media (max-width: 768px) {
      .content-wrapper88 {
        flex-direction: column;
      }

      .image-container88 img {
        margin-bottom: 20px;
      }

      .info-boxes88 {
        flex-direction: column;
      }

      
    }



   


    

.container00 {
  max-width: 1170px;
  margin: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Roboto', sans-serif; */
}

.heading00 h1:after {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: #BABABA;
  margin-top: 4px;
  
}

.clear-fix00 {
  clear: both;
}

.hidden00 {
  visibility: hidden !important;
}

/* end global */



  
 
.class34-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.class34-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.class34-hero-text {
    flex: 1;
    max-width: 600px;
    margin-right: 20px;
}

.class34-hero-text h2 {
    color: #333;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.class34-hero-text p {
    color: #3ab100;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.class34-hero-text button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.class34-hero-text button:hover {
    background-color: #218838;
}

.class34-hero-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.class34-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Features Section */
.class34-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.class34-feature {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class34-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.class34-feature-icon {
    margin-bottom: 15px;
}

.class34-feature-icon img {
    width: 60px;
    height: 60px;
}

.class34-feature h4 {
    margin-top: 10px;
    font-size: 20px;
    color: #333;
}

.class34-feature p {
    margin-top: 5px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .class34-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .class34-hero-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .class34-hero-text h2 {
        font-size: 28px;
    }

    .class34-hero-text p {
        font-size: 20px;
    }

    .class34-hero-text button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .class34-hero-text h2 {
        font-size: 24px;
    }

    .class34-hero-text p {
        font-size: 18px;
    }

    .class34-features {
        gap: 15px;
    }

    .class34-feature {
        padding: 15px;
    }

    .class34-feature h4 {
        font-size: 18px;
    }

    .class34-feature p {
        font-size: 14px;
    }
}

@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

/* Global container settings */
.container99S {
  margin: 0 auto;
  padding: 3rem;
  max-width: 1500px;
  width: 100%;
}

/* Accordion structure */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 0;
  margin: 0;
}

/* Accordion button styling */
.accordion button {
  width: 100%;
  padding: 1.2em 2em;
  font-size: 1.2rem;
  color: #4a4a4a;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.accordion button:hover,
.accordion button:focus {
  color: #036fa2;
  background-color: #f4f8fb;
}

.accordion button .accordion-title {
  font-weight: 500;
  margin-right: 35px;
}

.accordion button .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid #036fa2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.accordion button:hover .icon {
  border-color: #036fa2;
}

.accordion button .icon::before,
.accordion button .icon::after {
  content: '';
  background-color: #036fa2;
  position: absolute;
}

.accordion button .icon::before {
  width: 12px;
  height: 2px;
  transform: rotate(45deg);
}

.accordion button .icon::after {
  width: 2px;
  height: 12px;
  transform: rotate(-45deg);
}

/* Opened state styles */
.accordion button[aria-expanded="true"] {
  color: #036fa2;
  background-color: #f0f8ff;
}

.accordion button[aria-expanded="true"] .icon {
  transform: translateY(-50%) rotate(45deg);
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

/* Accordion content */
.accordion .accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2em;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.accordion button[aria-expanded="true"] + .accordion-content {
  max-height: 10em;
  opacity: 1;
  padding-top: 1em;
  padding-bottom: 1em;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
  .accordion button {
    padding: 1.2em 1.5em;
    font-size: 1.1rem;
  }

  .accordion button .icon {
    width: 16px;
    height: 16px;
  }

  .accordion button .accordion-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .accordion button {
    padding: 1em 1.2em;
    font-size: 1rem;
  }

  .accordion button .icon {
    width: 14px;
    height: 14px;
  }

  .accordion button .accordion-title {
    font-size: 1rem;
  }
}





.container66 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

.header66 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.header66 span {
    display: inline-block;
    padding: 5px 15px;
    background-color: #eaf4f4;
    color: #333;
    border-radius: 20px;
    font-size: 14px;
}

.main-heading66 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}

.description66 {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.buttons66 {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.button66 {
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-subscribe66 {
    background-color: #34a853;
    color: white;
}

.button-subscribe66:hover {
    background-color: #2c8c45;
}

.button-explore66 {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ccc;
}

.button-explore66:hover {
    background-color: #e1e1e1;
}

.hero66 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-left66 {
    position: relative;
}

.main-image66 {
    width: 100%;
    border-radius: 20px;
    position: relative;
}

.main-image-text66 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 18px;
    color: #333;
}

.hero-right66 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-image66 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.small-image66 img {
    width: 100%;
    display: block;
}

.small-image-text66 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.catalog66 {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.catalog-circle66 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.catalog-circle66:hover {
    background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero66 {
        grid-template-columns: 1fr;
    }

    .buttons66 {
        flex-direction: column;
    }

    .hero-left66, .hero-right66 {
        text-align: center;
    }

    .main-image-text66, .small-image-text66 {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .catalog66 {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-image-text66 {
        display: none; /* Hide only the main image text */
    }

    /* Ensure small-image-text66 remains visible */
    .small-image-text66 {
        display: block; /* Explicitly keep small-image-text66 visible */
    }

    /* Adjustments for smaller screens */
    .main-heading66 {
        font-size: 28px;
    }

    .description66 {
        font-size: 14px;
    }

    .button66 {
        padding: 10px 15px;
        font-size: 14px;
    }

    .catalog-circle66 {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}







.content-wrapper80 {
    display: flex;  
    align-items: center;
    max-width: 1500px;
    width: 100%;
    height: 350px;
    background-color: white;
    /* border-radius: 50px; */
    overflow: hidden;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.image-section80 {
   
flex: 1;
height: 70%;
background: url('../images/FD/sticky_banner.jpg') no-repeat center;
background-size: cover;
border-top-right-radius: 116px;
border-bottom-right-radius: 116px;
}

.text-section80 {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-section80 h180 {
    font-size: 36px;
    color: #5e2dd8;
    margin-bottom: 20px;
}

.text-section80 p80 {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.buttons80 {
    display: flex;
    gap: 15px;
}

.button80 {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button-primary80 {
    background-color:#2596be;
    color: white;
}

.button-primary80:hover {
    background-color: #3e6f81;
    color:white;
}

.button-secondary80 {
    background-color: #f3f3f3;
    color: #000000;
    border: 1px solid #ccc;
}

.button-secondary80:hover {
    background-color: #e1e1e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper80 {
        flex-direction: column;
        height: auto;
        border-radius: 0; /* Remove border-radius for small screens */
    }

    .image-section80 {
        height: 300px;
    }

    .text-section80 {
        padding: 30px;
    }

    .text-section80 h180 {
        font-size: 28px;
    }

    .text-section80 p80 {
        font-size: 14px;
    }

    .button80 {
        font-size: 14px;
        padding: 10px 15px;
    }
}



 /* Container styling */
 .fd-benefits-container {
    display: flex;
    max-width:1400px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
    align-items: center;
}

/* Content section styling */
.fd-benefits-content {
    flex: 1;
}

.fd-benefits-content h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.fd-benefits-content ul {
    list-style: none;
    padding: 0;
}

.fd-benefits-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fd-benefits-content li div {
    font-size: 16px;
    line-height: 1.6;
}

/* Icon styling */
.icon {
    width: 50px;
    height: 50px;
    background-color: #eaf4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon img {
    width: 24px;
    height: 24px;
}

/* Image section styling with animation */
.fd-benefits-image {
    flex: 1;
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.fd-benefits-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .fd-benefits-container {
        gap: 20px;
    }

    .fd-benefits-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .fd-benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .fd-benefits-content ul {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .fd-benefits-content h3 {
        font-size: 24px;
    }

    .fd-benefits-content li {
        gap: 10px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .icon img {
        width: 20px;
        height: 20px;
    }
}













 /* Container styling */
 .fd-benefits-container {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
    align-items: center;
}

/* Content section styling */
.fd-benefits-content {
    flex: 1;
}

.fd-benefits-content h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
}

.fd-benefits-content ul {
    list-style: none;
    padding: 0;
}

.fd-benefits-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fd-benefits-content li div {
    font-size: 16px;
    line-height: 1.6;
}

/* Icon styling */
.icon {
    width: 50px;
    height: 50px;
    background-color: #eaf4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon img {
    width: 24px;
    height: 24px;
}

/* Image section styling with animation */
.fd-benefits-image {
    flex: 1;
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.fd-benefits-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .fd-benefits-container {
        gap: 20px;
    }

    .fd-benefits-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .fd-benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .fd-benefits-content ul {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .fd-benefits-content h3 {
        font-size: 24px;
    }

    .fd-benefits-content li {
        gap: 10px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .icon img {
        width: 20px;
        height: 20px;
    }
}



.container-73 {
    max-width: 1500px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .content-overlay-73 {
    position: relative;
    z-index: 1;
  }

  .header-73 {
    background-color: #00bcd457;;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #343a40;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
    text-align: center;
  }

  .highlight-box-73 {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: right;
    font-weight: bold;
    color: #1a6fbe;
  }
  .detail-label-73{
    color: black;
  }
  .detail-row-73 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .detail-row-73:last-child {
    border-bottom: none;
  }

  .left-panel-73,
  .right-panel-73 {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }

  .right-panel-73 {
    background-color: #15c5f4;
    text-align: center;
  }

  .row-73 {
    display: flex;
    flex-wrap: nowrap;
  }

  .col-md-6 {
    flex: 1;
  }

  @media (max-width: 768px) {
    .row-73 {
      flex-wrap: wrap;
    }

    .col-md-6 {
      flex: 100%;
    }
  }


  .table-container61 {
    max-width: 1500px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }

  .table-title61 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0a0909;
  }

  .table-wrapper61 {
    overflow-x: auto; /* Enable horizontal scrolling */
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  thead {
    background-color: #00bcd457;
    color: rgb(0, 0, 0);
  }

  thead th {
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }

  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tbody tr:nth-child(odd) {
    background-color: #ffffff;
  }

  tbody td {
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }

  tbody tr:hover {
    background-color: #f1f1f1;
  }

  @media (max-width: 1500px) {
    .table-container61 {
      padding: 10px;
    }

    table {
      font-size: 12px;
    }
  }




       /* Footer General Styles */
       .footer-container {
        background: linear-gradient(305deg, rgba(241, 241, 241, 1) 28%, rgba(187, 255, 252, 1) 58%, rgba(148, 233, 255, 1) 100%);
        color: #333;
        padding: 20px 40px;
        font-family: Arial, sans-serif;
    }
    
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-column {
        flex: 1 1 200px;
        min-width: 200px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #007BFF;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    
    .footer-column ul li i {
        margin-right: 8px;
        color: #007BFF;
    }
    
    .footer-column ul li a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s ease;
    }
    
    .footer-column ul li a:hover {
        color: #007BFF;
    }
    
    .footer-column ul li a:visited {
        color: #6c757d;
    }
    
    /* Footer Bottom Styles */
    .footer-bottom {
        margin-top: 20px;
        text-align: center;
        font-size: 14px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
        color: #666;
    }
    
    .footer-bottom a {
        color: #007BFF;
        text-decoration: none;
        margin: 0 5px;
    }
    
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .footer-columns {
            /*flex-direction: column;*/
            align-items: center;
        }
        .footer-column h3{
            text-align: left;
        }
    }




    .popup-overlay-43 {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-43 {
      background: #fff;
      border-radius: 10px;
      width: 90%;
      max-width: 400px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .popup-43 h2 {
      font-size: 1.5em;
      margin: 0 0 10px;
      text-align: center;
    }

    .popup-43 p {
      font-size: 0.9em;
      color: #666;
      text-align: center;
    }

    .popup-43 input {
      width: 95%;
      padding: 10px;
      margin: 15px 0;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
    }

    .popup-43 .button-43 {
      width: 100%;
      padding: 10px;
      background: linear-gradient(to right, #00bcd457,#00bcd457);
      border: none;
      border-radius: 5px;
      color: #070404;
      font-size: 1em;
      cursor: pointer;
      transition: background 0.3s;
    }

    .popup-43 .button-43:hover {
      background: linear-gradient(to right, #00bcd457, #00bcd457);
    }

    .popup-43 .close-btn-43 {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 1.2em;
      cursor: pointer;
      color: #000000;
    }

    .popup-43 .close-btn-43:hover {
      color: #ff4e1857;
    }



    .container-9E {
      max-width: 1600px;
margin: 0 auto;
padding: 40px 20px;
background-image: url('../images/FD/bg_why_us.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
  }

  /* Section Header */
  .section-header-9E {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-header-9E h2 {
      font-size: 38px;
      font-weight: bold;
      color: #232323;
      line-height: 1.4;
  }

  .section-header-9E h2 span {
      color: #ffffff;
  }

  .section-header-9E p {
      font-size: 18px;
      color: #666;
      margin-top: 10px;
      line-height: 1.8;
  }

  /* Content Layout */
  .content-9E {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      flex-wrap: wrap;
  }

  /* Profile Card */
  .profile-card-9E {
      flex: 1;
      min-width: 320px;
      background: linear-gradient(135deg, #3366ff, #0033cc);
      padding: 10px;
      border-radius: 20px;
      color: white;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .profile-card-9E:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .profile-card-9E img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid #fff;
      margin-bottom: 20px;
  }

  .profile-card-9E h3 {
      font-size: 22px;
      margin-bottom: 10px;
  }

  .profile-card-9E p {
      font-size: 16px;
      line-height: 1.6;
  }

  /* Features Section */
  .features-9E {
      flex: 2;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }

  /* Add this animation */
  @keyframes float {
      0% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-10px);
      }
      100% {
          transform: translateY(0);
      }
  }

  .feature-card-9E {
      background-color: #fff;
      padding: 25px;
      border-radius: 247px;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: float 3s infinite ease-in-out; /* Animation applied here */
  }

  .feature-card-9E:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      transform: scale(1.05); /* Enhances hover effect */
  }

  .feature-card-9E img {
      width: 70px;
      height: 70px;
      margin-bottom: 20px;
      
  }

  .feature-card-9E h4 {
      font-size: 20px;
      color: #232323;
      margin-bottom: 10px;
  }

  .feature-card-9E p {
      font-size: 15px;
      color: #666;
      line-height: 1.8;
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
      .features-9E {
          grid-template-columns: 1fr 1fr; /* Still two columns on medium screens */
      }
  }

  @media (max-width: 768px) {
      .content-9E {
          flex-direction: column;
      }

      .features-9E {
          grid-template-columns: 1fr; /* One column layout for small screens */
      }

      .profile-card-9E {
          margin-bottom: 30px;
      }

      .section-header-9E h2 {
          font-size: 32px;
      }

      .section-header-9E p {
          font-size: 16px;
      }
  }

  @media (max-width: 480px) {
      .profile-card-9E img {
          width: 80px;
          height: 80px;
      }

      .feature-card-9E img {
          width: 60px;
          height: 60px;
      }

      .feature-card-9E h4 {
          font-size: 18px;
      }

      .feature-card-9E p {
          font-size: 14px;
      }
  }
