
      /*--------start of index styles--------*/
      body {
        margin: 0;

        font-family: "Cairo", sans-serif;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      ul,
      li,
      p,
      a,
      head,
      header,
      section,
      option,
      select,
      div,
      select,
      text,
      title,
      .st-gray-bg2,
      .st-hero-title,
      .st-hero-subtitle,
      .st-section-heading-title,
      .st-pink,
      .st-section-heading-title,
      style {
        font-family: "Cairo", sans-serif;
      }


       html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

     .custom-select,
.form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

      header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 135px;
        background-color: #ffffff;
      }
      img {
        max-height: 110%;
      }

      /* Hero Section Styles */
      .hero {
        display: flex;
        min-height: calc(100vh - 120px);
      }

      .hero-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        background-color: #ffffff;
        text-align: center;
      }

      .hero-left h1 {
        font-size: 2.5rem;
        margin-bottom: 0.25rem;
        color: #ffffff;
      }

      .hero-left p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        color: #ffffff;
        max-width: 500px;
        line-height: 1.6;
      }

      .cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.9rem;
        background-color: #f0f0f0;
        color:#9c0566;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .cta-button:hover {
        background-color: #fff;
      }
      .hero-right {
        flex: 1;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden; /* يمنع أي تمرير زائد للصورة */
        padding-bottom: 15px;
     
      }

      .hero-right img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* يجعل الصورة تظهر بالكامل دون قص */
        display: block; /* يزيل أي فراغات أسفل الصورة */
      }

      /* Mobile View Adjustments */
      @media screen and (max-width: 768px) {
        .hero {
          flex-direction: column; /* Stack sections vertically for smaller screens */
        }

        .hero-left {
          padding: 1rem; /* Reduce padding for mobile */
        }

        .hero-left h1 {
          font-size: 2rem; /* Adjust title font size for mobile */
        }

        .hero-left p {
          font-size: 1rem; /* Adjust paragraph font size for mobile */
          max-width: 100%; /* Allow the text to span the full width */
        }

        .cta-button {
          padding: 1rem 2rem; /* Adjust button padding for mobile */
          font-size: 1.5rem; /* Adjust button font size for mobile */
        }
      }

      /* Footer Styles */
      footer {
        background-color: #ffffff;
        color: #f9f9f9;
        padding: 20px 0;
        text-align: center;
      }

      footer p {
        margin: 0;
        font-size: 1rem;
      }

      /* Social Media Icons */
      .social-icons {
        margin-top: 20px;
      }

      .social-icons a {
        color: #f9f9f9;
        font-size: 1.5rem;
        margin: 0 10px;
        text-decoration: none;
        transition: color 0.3s;
      }

      .social-icons a:hover {
        color: #4d4144;
      }

      .image-container87 {
        display: flex;
        gap: 10px; /* Space between images */
      }

      .image-container87 img {
        width: 100%; /* Ensure each image scales properly */
        max-width: calc(
          33.33% - 10px
        ); /* Divide container into 3 equal parts */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure images fill their allocated space */
        border-radius: 5px; /* Optional: Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow for a modern look */
        transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
      }

      /* Zoom effect on hover */
      .image-container87 img:hover {
        transform: scale(1.1); /* Increase size by 10% */
      }

      .reviews-section {
        padding: 60px 0;
        background-color: #f7f7f7;
        margin: 0 10px; /* space on left and right so background doesn't touch edges */
        border-radius: 0px; /* optional, makes it look nicer */
        
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 30px;
        color: #333;
      }

      /* Reviews Gallery */
      .reviews-gallery {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
      padding: 20px 0;
}

.reviews-gallery::-webkit-scrollbar {
  display: -ms-flexbox; /* display scrollbar */
}

      /* Review Card */
     .review-card {
  flex: 0 0 35%; /* take 80% of screen on mobile */
  scroll-snap-align: center;
}

      .review-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
      }

      .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      }

      /* Mobile View Adjustments */
      @media screen and (max-width: 480px) {
        .reviews-gallery {
          grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
          gap: 15px; /* Reduce gap between cards */
        }

        /* Force the first 3 cards into the first row */
        .review-card:nth-child(1),
        .review-card:nth-child(2),
        .review-card:nth-child(3) {
          grid-column: span 1; /* Each card takes 1 column */
        }

        /* Tablet View */
        @media (min-width: 768px) {
        .review-card {
        flex: 0 0 45%; /* two per view */
        }
      }

      /* Desktop View */
      @media (min-width: 1200px) {
      .review-card {
      flex: 0 0 22%; /* four per view (adjust as needed) */
      }
    }

        /* Force the next 2 cards into the second row */
        .review-card:nth-child(4),
        .review-card:nth-child(5) {
          grid-column: span 1; /* Each card takes 1 column */
        }

        /* Adjust card sizes for mobile */
        .review-card {
          padding: 15px; /* Reduce padding for smaller screens */
        }

        @media (min-width: 768px) {
  .review-card {
    flex: 0 0 45%; /* two per view */
  }
}

@media (min-width: 1200px) {
  .review-card {
    flex: 0 0 10%; /* four per view */
  }
}
      }

      /* General Section Styles */
     .services-section {
        padding: 60px 0 60px 0;  /* top, right, bottom, left */
        background-color: #f7f7f7;
        margin: 20px 10px;       /* space around section so borders are visible */
        border-top: 10px solid #fff;
        border-bottom: 10px solid #fff;
        border-radius: 0px;
      } 




      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Section Title */
      .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 40px;
        color: #9c0566;
        text-transform: uppercase;
      }

      /* Services Grid */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(
          auto-fill,
          minmax(280px, 1fr)
        ); /* Responsive grid */
        gap: 30px;
        justify-items: center;
      }

      /* Service Card */
      .service-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease,
          background-color 0.3s ease, color 0.3s ease;
        overflow: hidden;
        max-width: 350px;
        width: 100%;

      }

      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        background-color: #9c0566; /* Change background color to #a1858a on hover */
        color: white; /* Change text color to white on hover */
      }

      .service-image {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit:contain;
        display: block;
        border-radius: 15px;
        margin-bottom: 20px;
        aspect-ratio: 16/9;
      }

      /* Service Title */
      .service-title {
        font-size: 1.5rem;
        color: #9c0566;
        margin-bottom: 15px;
        font-weight: 500;
        text-transform: capitalize;
        transition: color 0.3s ease; /* Added color transition */
      }

      .service-card:hover .service-title {
        color: white; /* Change title color to white on hover */
      }

      /* Service Description */
      .service-description {
        font-size: 1rem;
        color: #9c0566;
        line-height: 1.5;
        transition: color 0.3s ease; /* Added color transition */
      }

      .service-card:hover .service-description {
        color: white; /* Change description color to white on hover */
      }

      /* Mobile View Adjustments */
      @media screen and (max-width: 480px) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
          gap: 15px; /* Reduce gap between cards */
        }

        /* Force the first 3 cards into the first row */
        .service-card:nth-child(1),
        .service-card:nth-child(2),
        .service-card:nth-child(3) {
          grid-column: span 1; /* Each card takes 1 column */
        }

        /* Force the next 2 cards into the second row */
        .service-card:nth-child(4),
        .service-card:nth-child(5) {
          grid-column: span 1; /* Each card takes 1 column */
        }

        /* Adjust card sizes for mobile */
        .service-card {
          padding: 4.5px; /* Reduce padding for smaller screens */
        }

        .service-title {
          font-size: 1.2rem; /* Smaller font size for mobile */
        }

        .service-description {
          font-size: 0.9rem; /* Smaller font size for mobile */
        }
      }

      /* General Section Styles */
      .custom-split-section {
        display: flex;
        height: 60vh; /* Full height of the viewport */
        align-items: center; /* Vertically center the content */
        justify-content: center;
        background-color: #f7f7f7;
      }

      .custom-container {
        width: 100%;
        max-width: 1200px; /* Limit the width for larger screens */
        padding: 0 20px;
      }

      .custom-split-content {
        display: flex;
        width: 100%;
        height: 100%;
      }

      .custom-left-part {
    flex: 1;
    position: relative;
    height: 47vh;
    min-height: 250px;
}
@media (max-width: 768px) {
    .custom-left-part {
        height: 45vh;
        min-height: 330px;
        margin-top: 60px;
    }
}

      .custom-image-cover {
        width: 100%;
        height: 100%;
        object-fit: fill; /* keeps aspect ratio and fills container */
        border-radius: 10px !important;
      }

      .custom-right-part {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        text-align: center;
        margin-top: -60px;
      }

      .custom-heading {
        font-size: 1.5rem;
        color: #9c0566;
        margin-bottom: 5px;
        font-weight: 700;
        padding-top: 10px;
      }

      .custom-paragraph {
        font-size: 1.25rem;
        color: #9c0566;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .custom-split-content {
          flex-direction: column;
          height: auto;
        }

        .custom-left-part,
        .custom-right-part {
          flex: none;
          height: 175px; /* Adjust height on smaller screens */
        }

        .custom-heading {
          font-size: 1.3rem;
        }

        .custom-paragraph {
          font-size: 0.85rem;
        }
      }

      /* Sticky WhatsApp Button */
      .whatsapp-btn {
        position: fixed; /* Make the button sticky */
        bottom: 20px; /* 20px from the bottom */
        right: 20px; /* 20px from the right */
        background-color: #25d366; /* WhatsApp color */
        padding: 15px;
        border-radius: 50%; /* Circle button */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s ease;
        z-index: 9999; /* Ensure the button stays on top */
      }

      .whatsapp-btn:hover {
        background-color: #128c7e; /* Darker shade on hover */
      }

      .whatsapp-btn i {
        font-size: 2rem; /* WhatsApp icon size */
        color: #fff; /* White icon */
      }

      /* Optional: Adjust on mobile */
      @media (max-width: 768px) {
        .whatsapp-btn {
          bottom: 15px;
          right: 15px;
        }
      }

      * {
        font-family: "Cairo", sans-serif;
        /* Fallback font is sans-serif in case Mercellus doesn't load */
      }

      


  /* Main Form Container */
.appointment-form {
  background-color: #ffffff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 40px;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: 100%;
  max-height:fit-content;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

/* All Form Inputs */
.form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #9c0566;
  border-radius: 5px;
  font-size: 16px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

/* Submit Button */
#submit {
  width: 60%;
  padding: 12px 20px;
  background-color: #9c0566;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 20px auto 0;
}

#submit:hover {
  background-color: #6c747c;
  transform: translateY(-2px);
}

/* Additional Service Dropdown Container */
#additional-service {
  width: 100%;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #9c0566;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-bottom: 15px;
  box-sizing: border-box;
}

/* Dropdown Select Element */
#additional-service select {
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  color: #9c0566;
  border: none;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}

/* Dropdown Options */
#additional-service select option {
  color: #9c0566;
  background-color: #ffffff;
  padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .appointment-form {
    padding: 30px;
    margin-top: 0;
  }
  
  #submit {
    width: 80%;
  }
  
  #additional-service {
    width: 100%;
    padding: 10px;
  }
}







 /* Machines Section*/

.machines-container {
  width: 100%;
  padding: 20px 0;
}

.machines-slider {
  display: flex;
  flex-wrap: nowrap;           /* keep items in one row */
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 10px 16px;
}

.machines-slider::-webkit-scrollbar { display: none; } /* hide scrollbar on webkit */

.machine-card {
  flex: 0 0 auto;        /* do NOT let cards stretch to full width */
  min-width: 80%;        /* mobile: one card fills most of viewport */
  scroll-snap-align: center;
}

.machine-card img {
  width: 100%;
  height: 260px;         /* change as needed */
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Desktop / tablet */
@media (min-width: 768px) {
  .machine-card { min-width: 25%; } /* 4 visible per view (adjust to 30% for 3-per-row) */
  .slider-btn { display: flex; }    /* show arrows on desktop */
}

/* Slider arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: none; /* hidden on mobile */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-wrapper {
  position: relative;   /* anchors arrows */
}

/* Show arrows on desktop */
@media (min-width: 768px) {
  .machine-card { min-width: 25%; } /* show ~4 cards per view */
  .slider-btn { display: flex; }    /* arrows only on desktop */
}


        /* Sparkles styling */
        .title-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .sparkle {
            width: 28px;
            height: 28px;
            opacity: 0.8;
        }








/*--------end of index styles--------*/

















/*--------start of whatsApp styles--------*/

      @import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700&display=swap");

      body {
        font-family: "Cairo", sans-serif;
        margin: 0;
        padding: 0;
        background-color: #ffffff;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      ul,
      li,
      p,
      a,
      head,
      header,
      section,
      option,
      select,
      div,
      select,
      text,
      title,
      .st-gray-bg2,
      .st-hero-title,
      .st-hero-subtitle,
      .st-section-heading-title,
      .st-pink,
      .st-section-heading-title,
      style {
        font-family: "Cairo", sans-serif;
      }
     
      

      .form-control {
        width: 100%;
        padding: 10px 15px;
        margin-bottom: 15px;
        border: 1px solid #9c0566;
        border-radius: 5px;
        font-size: 16px;
        background-color: #ffffff;
        transition: all 0.3s ease-in-out;
      }

      .appointment-form {
        background-color: #f0f0f0;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        padding: 40px;
        margin-top: -50px;
        z-index: 10;
        position: relative;
      }

      #submit {
        width: 60%;
        padding: 10px 20px;
        background-color: #9c0566;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
        display: block;
        margin: 0 auto;
      }

      #additional-service {
        width: 102.3%;
        padding: 10px 15px;
        background-color: #ffffff;
        color: #9c0566;
        border: 1px solid #ffffff;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        display: block;
        margin-bottom: 15px;
        box-sizing: border-box;
        text-align: center;
        direction: ltr;
      }

      #additional-service select {
        width: 100%;
        padding: 0px 0px;
        background-color: #ffffff;
        color: #9c0566;
        border: 1px solid #ffffff;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        box-sizing: border-box;
        display: block;
        position: relative;
      }

      #additional-service select option {
        color: #9c0566;
        background-color: #ffffff;
        padding: 10px;
      }

      @media (max-width: 768px) {
        #additional-service {
          width: 109.8%;
          padding: 10px;
          font-size: 14px;
        }
      }

      .st-hero-wrap {
        background-color: #003f4f !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
}

header, nav, .st-content {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

  
    
/*--------end of whatsApp styles--------*/




/*--------start of thankyou styles--------*/

      /* Improved Header */
      .st-main-header {
        background-color: #ffffff !important; /*the little square around the logo in privacy policy*/
        height: 100px !important;
      }

      .st-main-header img {
        height: 90px;
        max-width: 100%;
      }

      /* Hero Section */
      .st-hero {
        background-color: #9c0566 !important;
        padding: 100px 0;
      }

      .st-hero-title {
        font-family: "Roboto", sans-serif;
        font-size: 19px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .st-hero-subtitle {
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        color: #fff;
        text-align: center;
        opacity: 0.8;
        margin-top: 15px;
      }

      .st-content {
        padding: 50px 0;
      }

      /* Footer Section */
      footer.st-site-footer {
        background-color: #000;
        color: white;
        padding: 20px 0;
      }

      footer .st-copyright-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
      }

      footer .st-copyright-text {
        font-size: 14px;
      }

      footer .st-right-copyright #st-backtotop {
        font-size: 20px;
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      footer .st-right-copyright #st-backtotop:hover {
        transform: scale(1.2);
      }

      /* General Adjustments */
      h1 {
        color: white ;
      }

      /* Buttons and Links */
      .st-btn {
        background-color: #484849;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
      }

      .st-btn:hover {
        background-color: #333;
      }

      /* Ensure all text has proper line spacing */
      body {
        line-height: 1.6;
      }
    

/*--------end of thankyou styles--------*/


/*--------start of privacy-policy styles--------*/

      h1 {
        color: white ;
      }

      
      p {
        color: white;
      }

      .uly {
        color: white;
      }
      .text-blak {
        color: black;
      }

      .white-text{
        color: white;
      }
      
      


      .st-main-header {
  display: flex;
  justify-content: center; /* Centers the logo horizontally */
  align-items: center; /* Centers the logo vertically */
  height: 100px; /* Optional: to control the height of the header */
}

.st-main-header-left {
  display: flex;
  justify-content: center;
  align-items: center;
}


/*--------end of privacy-policy styles--------*/
    


/*---------start of big whatsapp button--------*/

.whatsapp-container {
  text-align: center;
  margin-top: 20px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d365c5;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}


/*---------end of big whatsapp button--------*/

/*---------start of call us button--------*/
.call-container {
  text-align: center;
  margin-top: -40px;
}

.call-button {
  display: inline-block;
  background: linear-gradient(135deg, #9b1b68, #b83280, #a21caf);
  color: white;
  padding: 14px 32px;
  border-radius: 999px; /* pill shape */
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(155, 27, 104, 0.6),
              0 0 20px rgba(162, 28, 175, 0.4);
  animation: purpleGlow 3s infinite alternate;
}

/* Gentle glowing effect */
@keyframes purpleGlow {
  0% {
    box-shadow: 0 0 8px rgba(155, 27, 104, 0.4),
                0 0 16px rgba(162, 28, 175, 0.3);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 14px rgba(184, 50, 128, 0.7),
                0 0 26px rgba(162, 28, 175, 0.5);
    transform: scale(1.03);
  }
}

/* Shine sweep effect */
.call-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { left: -120%; }
  100% { left: 120%; }
}


/*---------end of call us button--------*/


/*----------------Start FAQs Section-----------------*/
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 15px;
}

.faq-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color:#9b1b68;
}

.faq-item {
  border-bottom: 1.5px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  color: #9b1b68;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  
}

.faq-item.active .faq-answer {
  max-height: 600px; /* adjust if answers are longer */
  padding: 10px 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  color: #9c0566;
}


/*----------------End FAQs Section-----------------*/

