/** Shopify CDN: Minification failed

Line 106:0 Unexpected "}"
Line 389:50 Expected identifier but found "*"
Line 726:13 Expected identifier but found whitespace
Line 726:15 Unexpected "{"
Line 726:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.ceo-card-ceo{
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
.frame-parent-ceo {
  width: 80%;
  display: flex;
  margin: 5rem auto 5rem auto;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  padding: 2rem;
}
.side-image-wrapper{
  display:flex;
  flex-direction:column;
  
}
.side-image-wrapper-ceo {
  flex: 1;
  margin-left: 3rem;
}

.side-image-ceo {
  max-width: 100%;
  border-radius: 10px;
}

.frame-content-ceo {
  flex: 2;
  padding-left: 2rem;
}

.title-ceo .name-ceo {
  font-size: 2rem;
  font-weight: bold;
}

.title-ceo .designation-ceo {
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 0.5rem;
}

.desc-wrapper-ceo .desc-ceo {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.social-icons-ceo{
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
@media (max-width: 768px) {
  .frame-parent-ceo {
    flex-direction: column;
    width: 90%;
    padding: 1rem;
  }

  .side-image-wrapper-ceo {
    margin: 0 auto 1rem auto;
  }

  .side-image-ceo {
    width: 100%;
    height: auto;
  }

  .frame-content-ceo {
    padding-left: 0;
  }

  .title-ceo .name-ceo {
    font-size: 1.5rem;
    padding: 10px 0;

  }

  .title-ceo .designation-ceo {
    font-size: 1.2rem;
  }

  .desc-wrapper-ceo .desc-ceo {
    font-size: 1rem;
  }

  
  }
}
/* Add this CSS to your theme's CSS file */
.certificate-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 6rem auto;
}

.certificate-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.certificate-carousel-item {
  flex: 1 0 calc(100% / 4); /* Adjust the number of items to display at once */
  box-sizing: border-box;
  padding: 10px;
}

.certificate-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .certificate-carousel-container {
    margin: 2rem auto;
  }

  .certificate-carousel-item {
    flex: 1 0 100%; /* Display only one item at a time */
    padding: 20px; /* Increase padding for mobile view */
  }
}
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 1000; /* Sit on top */
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
  }

  .close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }

  .popup-content p {
    font-size: 1.2rem;
    color: #333;
  }

  .frame-connect {
    width: 80%;
    display: flex;
    margin: 5rem auto;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
    padding: 2rem;
  }

  .image-wrapper-connect {
    flex: 1;
    flex-basis: 45%;
    margin-right: 2rem; /* Move image to the left */
  }

  .image-connect {
    max-width: 100%;
    border-radius: 10px;
    display: block; /* Ensure the image is displayed as a block to remove any inline space */
  }

  .content-connect {
    flex: 1;
    flex-basis: 55%; /* Give more width to the content */
    margin-right: 3rem;
  }

  .title-connect .heading-connect {
    font-size: 2.5rem;
  }

  .title-connect .heading-connect .bold-connect {
    font-weight: bold;
  }

  .title-connect .heading-connect .normal-connect {
    font-weight: normal;
  }

  .desc-wrapper-connect {
    font-size: 1.2rem;
    margin-top: 1rem;
  }

  .form-connect {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
  }

  .name-connect,
   .email-connect,
  .phone-connect {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #ccc;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    outline: none;
    margin-bottom: 1rem;
  }

  .name-connect::placeholder,
  .phone-connect::placeholder,
  .email-connect::placeholder {
    color: #fff;
  }

  .button-connect {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    max-width: 200px;
  }

  .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow-image {
    margin-left: 1rem;
    width: 20px;
    height: 20px;
  }

  /* Responsive Styles for Mobile */
  @media (max-width: 768px) {
    .frame-connect {
      flex-direction: column;
      width: 90%;
      padding: 1rem;
      margin: 2rem auto;
    }

    .image-wrapper-connect {
      margin: 0 auto 0 1rem; /* Adjusted margin to remove space below the image */
      width: 100%;
      display: flex;
      justify-content: center; /* Center the image horizontally */
    }

    .image-connect {
      max-width: 100%; /* Ensure the image fits within the container */
    }

    .content-connect {
      margin: 0;
      width: 100%;
      flex-basis: auto;
      text-align: center;
    }

    .title-connect .heading-connect {
      font-size: 2rem;
    }

    .desc-wrapper-connect {
      font-size: 1rem;
    }

    .form-connect {
      flex-direction: column;
    }

    .name-connect,
    .phone-connect {
      margin-bottom: 1rem;
    }

    .button-connect {
      max-width: 100%;
      justify-content: center;
    }

    .button-content {
      justify-content: center;
    }

    .arrow-image {
      margin-left: 0.5rem;
    }
  }
.faq-cards-container {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Align items to the top to avoid overlap */
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
  padding: 2rem;
  gap: 1rem; 
  height:auto;
}

.frame-parent-faq-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* Enable wrapping to keep cards consistent */
}
.faq-card {
  position: relative;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  height: 250px; /* Set a fixed height initially */
  overflow: hidden;
  gap: 10px;
  transition: height 0.3s ease;
  /* flex-grow: 1; /* Smooth height transition */ */
}

.faq-card.expanded {
  height: auto; /* Allow card to grow when expanded */
}

.faq-card-answer-wrapper {
  position: relative;
  overflow: hidden;
}

.faq-card-answer {
  font-size: 1rem;
  line-height: 1.5;
  max-height: 4.5em; /* Limit to 3 lines */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card-answer.expanded {
  max-height: none; /* Remove max-height restriction when expanded */
}

.read-more-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  margin-top: 5px;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Remove media query to ensure scrolling at all sizes */
.faq-search-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-search-bar {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 600px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
  position: relative;
}
  
.faq-search-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.faq-search-input {
  width: 80%;
  border: none;
  outline: none;
  font-size: 1rem;
}
.footer-container {
    width: 100%;
    background: linear-gradient(90deg, #FF2DF7 0%, #5200FF 50%, #00F0FF 100%);
    color: white;
    font-family: Montserrat, sans-serif;
    padding: 10px 0;
}

.footer-background {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.footer-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 1100px;
    flex-wrap: wrap;
    margin-right: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    min-width: 300px;
    margin-top: -5px;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-column-item {
    font-size: 14px;
    font-weight: 500;
    margin: 3px 0;
    cursor: pointer;
    padding-top: 8px;
}

.footer-column .footer-column-item span {
    display: block; /* Ensures each contact detail is on a new line */
    margin-bottom: 10px; /* Adjust spacing between each line */
}

.footer-column-item a {
    color: white;
    text-decoration: none;
}

.footer-column-item a:hover {
    text-decoration: underline;
}

.footer-separator {
    width: 80px;
    height: 1px;
    background: white;
    margin: 8px 0;
}

.footer-subscribe {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -100px;
}

.subscribe-text-container {
    display: flex;
    justify-content: flex-start;
    width: 300px;
}

.subscribe-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.subscribe-email {
    padding: 8px;
    border-radius: 3px;
    border: none;
}

.subscribe-button {
    padding: 8px 16px;
    background: white;
    color: #4A99D3;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    margin-left: 8px;
    cursor: pointer;
}

.full-width-separator {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    margin: 10px 0;
}

.footer-bottom {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon-link {
    margin: 0 5px;
}

.icon-image-y {
    width: 27px;
    height: 19px;
}

.icon-image-i {
    width: 20px;
    height: 19px;
}

.icon-image-f {
    width: 10px;
    height: 16px;
}

.icon-image-t {
    width: 24px;
    height: 19px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: calc(100% - 20px);
        margin-right: 0;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-separator {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }

    .footer-bottom span {
        margin-bottom: 20px;
    }

    .footer-subscribe {
        align-items: center;
        margin-top: 0;
    }

    .subscribe-text-container,
    .subscribe-form {
        justify-content: center;
    }
}
.certificate-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 6rem auto;
}

.certificate-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items:center;
}

.certificate-carousel-item {
  flex: 1 0 calc(100% / 4);
  box-sizing: border-box;
  padding: 10px;
}

.certificate-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

@media (max-width: 768px) {
  .certificate-carousel-container {
    margin: 2rem auto;
  }

  .certificate-carousel-item {
    flex: 1 0 100%;
    padding: 20px;
  }
}
/* General Navbar Styles */
.navbar {
  background: {{ section.settings.background }};
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 120px;
  height: 84px;
  font-family: 'Montserrat', sans-serif;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex: 1;
  width: 1084px;
  height: 44px;
}

.nav-links ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
  .account-dropdown,
   .account-dropdown1{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
}
 
/* Dropdown Styles */
.resources-dropdown,
.account-dropdown {
  position: relative;
}

/* Styles for Resources and Account buttons */
.resources-btn,
.account-btn {
  background: none;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dropdown content styles */
.resources-content,
.account-content {
  display: none; /* Hide content by default */
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: 100%; /* Ensures the dropdown extends directly below the parent */
  left: 0;
  flex-direction: column; /* Ensures the items are arranged in a column */
}

/* Show the dropdown content on hover */
.resources-dropdown:hover .resources-content,
.account-dropdown:hover .account-content {
  display: flex; /* Show the dropdown content when the parent is hovered */
}

/* Dropdown list styles */
.resources-content ul,
.account-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.resources-content li a,
.account-content li a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Arrow icon styles */
.arrow-down {
  width: 12px;
  height: 12px;
}

/* General Button Styles */
.buttons {
  display: flex;
  gap: 15px;
}

.contact-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 140px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
}

.btn {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none; /* Ensure the link looks like a button */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px;
}

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.mobile-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 24px;
}

.mobile-nav li {
  margin: 20px 0;
}

.mobile-nav li a,
.mobile-nav li .btn {
  color: #fff;
  /* font-size: 24px; */
  font-weight: 600;
}

/* Resources and Account dropdown button styles */
.resources-mobile-btn,
.account-mobile-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Mobile dropdown content styles */
.resources-mobile-content,
.account-mobile-content {
  display: none;
  
}

/* Show mobile dropdown content on click */
.resources-mobile-btn.active + .resources-mobile-content,
.account-mobile-btn.active + .account-mobile-content {
  display: block;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links,
  .contact-us {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav .contact-us {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 140px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
  }

  .mobile-nav.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .nav-links, .contact-us {
    display: none;
  }
  .mobile-nav .buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .mobile-nav .contact-us{
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 140px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
  }

  .hamburger-menu {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }
  .account-dropdown{
    display:none;
  }
    .account-dropdown1 {
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(267deg, #00F0FF 4.01%, #5200FF 57.55%, #FF2DF7 114.97%);
}
  .account-dropdown1 {
  position: relative;
}
}
.frame-parent {
  position: relative;
  width: 80%;
  margin: 5rem auto 5rem auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  font-size: 2rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  gap: 8rem;
  padding-bottom: 2rem;
}
.colour-title {
  position: relative;
  font-weight: 500;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.nocolour-title {
  font-size: 1.5rem;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.learn-more {
  text-decoration: underline;
  cursor: pointer;
}
.sub-content {
  line-height: 2;
}
.sub-content-wrapper {
  padding: 0.5rem;
  font-size: 1.25rem;
}
.line-child {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 1px;
}
.line-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
}
.line-wrapper {
  width: 100%;
}
.button {
  font-weight: 800;
  display: flex;
  align-items: center;
  color: #fff; /* White text color */
}
.akar-iconsarrow-right {
  position: absolute;
  top: 1px;
  left: 9.5rem;
  width: 1.75rem;
  height: 1.75rem;
}
.button-parent {
  position: relative;
}
.button-wrapper {
  position: relative;
  width: 14rem;
  border-radius: 23.3px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  font-size: 1.5rem;
  background-color: #000; /* Black background color */
  background-clip: padding-box;
  z-index: 0; /* To ensure the content is above the pseudo-element */
}
a{
    text-decoration:none;
}
.button-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit; /* Ensures the pseudo-element has the same border-radius */
  padding: 1px; /* Adds space for the border */
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1; /* Ensures the pseudo-element is behind the content */
}
.frame-content {
  display: flex;
  flex: 1 1 25%;
  flex-direction: column; /* Align children vertically */
  gap: 1.5rem; /* Adjust spacing between children */
}
.side-media-wrapper {
  flex: 1 1 20%;
  display: flex;
}
.side-image,
.side-video {
  max-width: 509px;
  max-height: 434px;
  width: auto;
  height: auto;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .frame-parent {
    flex-direction: column; /* Default to column for mobile */
    gap: 2rem;
    width: 90%;
    font-size: 1.5rem;
    margin: 2rem auto;
  }
  .frame-parent.frame-above {
    flex-direction: column-reverse; /* Reverse the order for frame-above */
  }
  .frame-content {
    width: 100%;
    flex: 1 1 100%;
  }
  .side-media-wrapper {
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
  }
  .side-image,
  .side-video {
    max-width: 100%;
    height: auto;
  }
  .button-wrapper {
    width: 100%;
    justify-content: center;
  }
  .nocolour-title {
    font-size: 1.5rem;
  }
  .colour-title {
    font-size: 2rem;
  }
}
.frame-parent-landingPage-header {
  position: relative;
  width: 80%;
  margin: 5rem auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  text-align: left;
  font-size: 2.5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  gap: 10rem;
  padding-bottom: 2rem;
}

.colour-title-landingPage-header {
  position: relative;
  font-weight: 600;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
}

.nocolour-title-landingPage-header {
  font-size: 1.5rem;
  text-align: center;
}

.title-landingPage-header {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
  gap: 2.75rem;
  width: 100%; /* Ensure the title section takes full width */
}

.button-landingPage-header {
  font-weight: 200;
  font-size: 2rem;
  display: flex;
  align-items: center;
  color: #fff; /* White text color */
}

.akar-iconsarrow-right-landingPage-header {
  position: absolute;
  top: 7px;
  left: 11.5rem;
  width: 1.75rem;
  height: 1.75rem;
}

.button-parent-landingPage-header {
  position: relative;
}

.button-wrapper-landingPage-header {
  position: relative;
  width: 16rem;
  border-radius: 27.3px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  font-size: 1.4rem;
  background-color: #000; /* Black background color */
  background-clip: padding-box;
  z-index: 0; /* To ensure the content is above the pseudo-element */
}

.button-wrapper-landingPage-header::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: inherit; /* Ensures the pseudo-element has the same border-radius */
  padding: 3px; /* Adds space for the border */
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1; /* Ensures the pseudo-element is behind the content */
}

.frame-content-landingPage-header {
  display: flex;
  flex: 0 0 35%;
  margin-top: 3rem;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  gap: 4.5rem; /* Adjust spacing between children */
}

.side-media-wrapper-landingPage-header {
  flex: 0 0 65%;
  display: flex;
}

.side-image-landingPage-header,
.side-video-landingPage-header {
  max-width: 700px;
  max-height: 800px;
  width: auto;
  height: auto;
  /* padding-top: 2rem; */
}

.feature-container-landingPage-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  /* padding: 1rem 0; */
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin: 0 auto;
}

.feature-item-landingPage-header {
  padding: 0 1.5rem;
}

.divider-landingPage-header {
  width: 1px;
  height: 1.5rem;
  background-color: #fff;
  margin: 0 1.5rem;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .frame-parent-landingPage-header {
    flex-direction: column;
    width: 90%;
    gap: 2rem;
    padding-bottom: 1rem;
    margin: 2rem auto;
  }

  .frame-content-landingPage-header {
    width: 100%;
    margin-top: 0;
    gap: 2rem;
  }

  .side-media-wrapper-landingPage-header {
    width: 100%;
    justify-content: center;
  }

  .side-image-landingPage-header,
  .side-video-landingPage-header {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-top: 0;
  }

  .title-landingPage-header {
    font-size: 1.5rem;
    gap: 1rem;
  }

  .colour-title-landingPage-header {
    font-size: 1.5rem;
  }

  .nocolour-title-landingPage-header {
    font-size: 1rem;
  }

  .button-landingPage-header {
    font-size: 1.2rem;
    text-align: center;
  }

  .button-wrapper-landingPage-header {
    width: 10rem;
    padding: 0.5rem;
    text-align: center; /* Center align the button text */
  }

  .akar-iconsarrow-right-landingPage-header {
    left: 7rem;
    top: -3px;
  }

  .feature-container-landingPage-header {
    flex-direction: column;
    font-size: 1rem;
  }

  .feature-item-landingPage-header {
    padding: 0.5rem 0;
  }

  .divider-landingPage-header {
    display: none;
  }
}
.frame-headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background-color: #000; 
  border-radius: 10px;
  width: 80%;
  margin: 5rem auto 3rem auto;
}

.colour-title-headers {
  font-size: 3.5rem;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.colour-subheading-headers {
  font-size: 2rem;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.desc-headers {
  margin-top:1.2rem;
  font-size: 1.2rem;
  line-height: 150%;
  color: #fff;
}
.small-rectangle {
  display: none;
}
#pricing-calculation-comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: black;
}

.calculate-savings-container {
  text-align: center;
  padding: 40px 0;
  color: white;
  max-width: 800px;
  width: 100%;
}

.calculate-savings-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff2df7 0%, #5200ff 50%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.form-label {
  font-size: 25px;
  font-weight: 500;
  background: linear-gradient(90deg, #ff2df7 0%, #5200ff 50%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-input {
  padding: 10px;
  border: 2px solid #4a99d3;
  border-radius: 5px;
  background-color: black;
  color: white;
  width: 120px;
  text-align: center;
}

.calculate-button {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, #ff2df7 0%, #5200ff 50%, #00f0ff 100%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 40px;
  width: 200px;
}

.pricing-comparison {
  width: 100%;
  margin-bottom: 4rem;
  position: relative;
  transform:scale(0.9)
}

.gradient-rectangle {
  width: 100%;
  padding: 0;
  border-radius: 25px;
  background: white;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow-x: auto;
  border: 3px solid white;
  position: relative;
  
}

.small-rectangle {
  width: 50%;
  margin: -1rem auto 2rem auto;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  color: black;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  z-index: 10;
}

.comparison-table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  text-align: left;
  color: black;
  background: transparent;
}

.comparison-table th,
.comparison-table td {
  padding: 1.0rem;
  /* border: none; */
  position: relative;
  font-size: 1.0rem;
  word-wrap: break-word; /* Ensures long words break and wrap to the next line */
  white-space: normal; /* Prevents text from staying on one line if it's too long */
  border-bottom: 2px black solid;

}

.comparison-table th {
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;

}

.bold-row td {
  font-weight: bold;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For other browsers */
  text-fill-color: transparent; /* For non-WebKit browsers */
}

.comparison-table tbody td .small {
  font-size: 1rem;
  display: inline;
}

.comparison-table thead th {
  border-bottom: 2px solid black;
}

.comparison-table tbody tr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  border-left: none;
  border-right: 2px black solid;
 
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: none;
}

/* Hide the Cost Per Liter column */
.hidden-column {
  display: none;
}


/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  #pricing-calculation-comparison {
    padding: 20px 10px;
  }

  .calculate-savings-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .form-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .form-label {
    font-size: 20px;
  }

  .form-input {
    width: 100%;
    padding: 8px;
  }

  .calculate-button {
    width: 100%;
    font-size: 18px;
    padding: 12px;
  }

  .gradient-rectangle {
    overflow-x: auto;
    height: auto;
    /* padding: 1rem 0.5rem; */
  }

  .comparison-table {
    min-width: 1200px; /* Minimum width to accommodate all columns on mobile */
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
    font-size: 1rem;
  }

  .comparison-table th {
    font-size: 1.2rem;
  }

  .comparison-table tbody td .small {
    font-size: 0.8rem;
  }

  .small-rectangle {
    width: 90%;
    margin: 1rem auto;
    padding: 1.5rem;
    font-size: 1.2rem;
  }
  .calculate-savings-container{
    width:80%;
  }
}
a{
    text-decoration:none;
  }
.outer-rectangle {
  position: relative;
  width: 100%;
  margin: 0.5rem auto 0.5rem auto;
  background: linear-gradient(180deg, #cf20f9 50%, white 50%);
  border-radius: 20px;
  padding: 4rem 0rem 6rem 0rem; /* Adjusted padding to accommodate the header */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden; /* To ensure pseudo-element stays within the bounds */
}

.outer-rectangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  z-index: 0; /* Ensure it stays behind the content */
}

.header-content {
  margin-bottom: 2rem;
  color: white;
  position: relative;
  z-index: 1; /* Ensure it stays above the pseudo-element */
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.header-content p {
  font-size: 1.2rem;
}

.pricing-card-container {
  position: relative;
  width: 85%;
  margin: 0 auto;
  z-index: 1; /* Ensure it stays above the pseudo-element */
}

.star-container {
  position: absolute;
  top: -60px; /* Adjust based on the size of your star image */
  left: -60px; /* Adjust based on the size of your star image */
  width: 160px; /* Adjust size as needed */
  height: 160px; /* Adjust size as needed */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-image {
  width: 100%;
  height: 100%;
}

.star-text {
  position: absolute;
  color: white;
  font-size: 24px; /* Adjust size as needed */
  text-align: center;
  font-weight: bold;
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: black;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1; /* Ensures the star image is above */
}

.pricing-buy {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  text-align: center;  /* Center text within the div */
}

.subscription-features {
  flex: 1;
  padding-left: 20px;
}

.pricing-buy h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: black;
}

.pricing-buy .price {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  color: black;
}

.pricing-buy .lifetime-cost {
  font-size: 16px;
  margin-bottom: 5px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .plus-symbol {
  font-size: 24px;
  margin-bottom: 10px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .subscription-fee {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .buy-now {
  background: linear-gradient(90deg, #cf20f9, #422cff 47.5%, #01efff);
  color: white;
  font-size: 24px;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 18rem;
}

.pricing-buy .more-details {
  margin-top: 20px;
  font-size: 16px;
  color: #7f7f7f;
}

.pricing-buy .more-details a {
  color: #007bff;
  text-decoration: underline;
}

.subscription-features h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subscription-features ul {
  list-style: none;
  padding: 0;
}

.subscription-features li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.subscription-features img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.subscription-features li span {
  background: linear-gradient(90deg, #cf20f9, #422cff 47.5%, #01efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-icons {
  display: flex;
  justify-content: center; /* Center the div horizontally */
  margin: 3rem auto 0 auto; /* Center the div horizontally and add margin-top */
  width: 80%; /* Reduce the width of the div */
}

.feature-icon {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  color: black;
  margin: 0 1rem; /* Add margin between feature icons */
}

.feature-icon img {
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Adjust size as needed */
  margin-right: 0.5rem;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .outer-rectangle  {
    width: 80%;
    padding: 2rem 1rem; /* Reduce padding for mobile */
  }
  .pricing-buy .buy-now {
    width:12rem;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .header-content {
    padding-bottom: 0.5rem;
  }

  .pricing-card-container {
    width: 100%;
  }

  .pricing-card {
    flex-direction: column; /* Stack elements vertically */
    padding: 1rem;
  }

  .pricing-buy {
    padding-right: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .subscription-features {
    padding-left: 0;
  }

  .feature-icons {
    flex-direction: column; /* Stack feature icons vertically */
    width: 100%;
  }

  .feature-icon {
    margin: 1rem 0; /* Add margin between feature icons */
  }

  .star-container {
    top: -50px; /* Adjust based on the size of your star image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
  }

  .star-text {
    font-size: 16px; /* Adjust size as needed */
  }
}
a{
  text-decoration: none;
}
.outer-rectangle {
  position: relative;
  width: 100%;
  margin: 0.5rem auto 0.5rem auto;
  background: linear-gradient(180deg, #cf20f9 50%, white 50%);
  border-radius: 20px;
  padding: 4rem 0rem 6rem 0rem; /* Adjusted padding to accommodate the header */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden; /* To ensure pseudo-element stays within the bounds */
}

.outer-rectangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  z-index: 0; /* Ensure it stays behind the content */
}

.header-content {
  margin-bottom: 2rem;
  color: white;
  position: relative;
  z-index: 1; /* Ensure it stays above the pseudo-element */
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.header-content p {
  font-size: 1.2rem;
}

.pricing-card-container {
  position: relative;
  width: 85%;
  margin: 0 auto;
  z-index: 1; /* Ensure it stays above the pseudo-element */
}

.star-container {
  position: absolute;
  top: -60px; /* Adjust based on the size of your star image */
  left: -60px; /* Adjust based on the size of your star image */
  width: 160px; /* Adjust size as needed */
  height: 160px; /* Adjust size as needed */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-image {
  width: 100%;
  height: 100%;
}

.star-text {
  position: absolute;
  color: white;
  font-size: 24px; /* Adjust size as needed */
  text-align: center;
  font-weight: bold;
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  color: black;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1; /* Ensures the star image is above */
}

.pricing-buy {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  text-align: center;  /* Center text within the div */
}

.subscription-features {
  flex: 1;
  padding-left: 20px;
}

.pricing-buy h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: black;
}

.pricing-buy .price {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  color: black;
}

.pricing-buy .lifetime-cost {
  font-size: 16px;
  margin-bottom: 5px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .plus-symbol {
  font-size: 24px;
  margin-bottom: 10px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .subscription-fee {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-buy .buy-now {
  background: linear-gradient(90deg, #cf20f9, #422cff 47.5%, #01efff);
  color: white;
  font-size: 24px;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 18rem;
}

.pricing-buy .more-details {
  margin-top: 20px;
  font-size: 16px;
  color: #7f7f7f;
}

.pricing-buy .more-details a {
  color: #007bff;
  text-decoration: underline;
}

.subscription-features h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subscription-features ul {
  list-style: none;
  padding: 0;
}

.subscription-features li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.subscription-features img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.subscription-features li span {
  background: linear-gradient(90deg, #cf20f9, #422cff 47.5%, #01efff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-icons {
  display: flex;
  justify-content: center; /* Center the div horizontally */
  margin: 3rem auto 0 auto; /* Center the div horizontally and add margin-top */
  width: 80%; /* Reduce the width of the div */
}

.feature-icon {
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  color: black;
  margin: 0 1rem; /* Add margin between feature icons */
}

.feature-icon img {
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Adjust size as needed */
  margin-right: 0.5rem;
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
  .outer-rectangle {
    width: 80%;
    padding: 2rem 1rem; /* Reduce padding for mobile */
  }
 .pricing-buy .buy-now {
    width:12rem;
  }


  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .header-content {
    padding-bottom: 0.5rem;
  }

  .pricing-card-container {
    width: 100%;
  }

  .pricing-card {
    flex-direction: column; /* Stack elements vertically */
    padding: 1rem;
  }

  .pricing-buy {
    padding-right: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .subscription-features {
    padding-left: 0;
  }

  .feature-icons {
    flex-direction: column; /* Stack feature icons vertically */
    width: 100%;
  }

  .feature-icon {
    margin: 1rem 0; /* Add margin between feature icons */
  }

  .star-container {
    top: -50px; /* Adjust based on the size of your star image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
  }

  .star-text {
    font-size: 16px; /* Adjust size as needed */
  }
}
.pricing-container-landingPage-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #4b0082, #1e90ff); /* Gradient background */
  color: #fff;
  height: 5rem; /* Adjusted height */
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem; /* Adjusted font size */
  border-radius: 5px; /* Add border radius if needed */
  padding: 0 1rem; /* Adjust padding as needed */
}

.pricing-text-landingPage-header {
  font-weight: 600;
}
.frame-parent-recent-blog {
  position: relative;
  width: 80%;
  margin: 5rem auto 5rem auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  font-size: 2rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  gap: 8rem;
  padding-bottom: 2rem;
}
.colour-title-recent-blog {
  position: relative;
  font-weight: 500;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.title-recent-blog {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
}
.sub-content-recent-blog {
  line-height: 2;
}
.sub-content-wrapper-recent-blog {
  padding: 0.5rem;
  font-size: 1.25rem;
}
.line-child-recent-blog {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 1px;
}
.line-child-recent-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
}
.line-wrapper-recent-blog {
  width: 100%;
}
.button-recent-blog {
  font-weight: 800;
  display: flex;
  align-items: center;
  color: #fff; /* White text color */
}
.akar-iconsarrow-right-recent-blog {
  position: absolute;
  top: 1px;
  left: 9.5rem;
  width: 1.75rem;
  height: 1.75rem;
}
.button-parent-recent-blog {
  position: relative;
}
.button-wrapper-recent-blog {
  position: relative;
  width: 14rem;
  border-radius: 23.3px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  font-size: 1.5rem;
  background-color: #000; /* Black background color */
  background-clip: padding-box;
  z-index: 0; /* To ensure the content is above the pseudo-element */
}
a {
  text-decoration: none;
}
.button-wrapper-recent-blog::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit; /* Ensures the pseudo-element has the same border-radius */
  padding: 1px; /* Adds space for the border */
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1; /* Ensures the pseudo-element is behind the content */
}
.frame-content-recent-blog {
  display: flex;
  flex: 1 1 25%;
  flex-direction: column; /* Align children vertically */
  gap: 1.5rem; /* Adjust spacing between children */
}
.side-media-wrapper-recent-blog {
  flex: 1 1 20%;
  display: flex;
}
.side-image-recent-blog,
.side-video-recent-blog {
  max-width: 509px;
  max-height: 434px;
  width: auto;
  height: auto;
  padding-top: 0.5rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .frame-parent-recent-blog {
    flex-direction: column; /* Default to column for mobile */
    gap: 2rem;
    width: 90%;
    font-size: 1.5rem;
    margin: 2rem auto;
  }
  .frame-parent-recent-blog.frame-above-recent-blog {
    flex-direction: column-reverse; /* Reverse the order for frame-above */
  }
  .frame-content-recent-blog {
    width: 100%;
    flex: 1 1 100%;
  }
  .side-media-wrapper-recent-blog {
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
  }
  .side-image-recent-blog,
  .side-video-recent-blog {
    max-width: 100%;
    height: auto;
  }
  .button-wrapper-recent-blog {
    width: 100%;
    justify-content: center;
  }
  .colour-title-recent-blog {
    font-size: 2rem;
  }
}
.frame-parent-testimonial {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: 5rem auto 5rem auto;
  border-radius: 20px;
  background: linear-gradient(267.03deg, #00f0ff, #5200ff 48.25%, #ff2df7);
  padding: 2rem;
  overflow: hidden;
}

.carousel-track-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.content-section {
  min-width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-image-wrapper-testimonial {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.side-image-testimonial {
  max-width: 100%;
  border-radius: 10px;
}

.frame-content-testimonial {
  flex: 2;
  padding-left: 1rem;
  margin-right: 3rem;
}

.title-testimonial .name-testimonial {
  font-size: 1.5rem;
  font-weight: bold;
}

.title-testimonial .designation-testimonial {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
}

.desc-wrapper-testimonial .desc-testimonial {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.title-testimonial {
  margin-top: 1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.carousel-button {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 1rem;
  z-index: 10; /* Ensure buttons are above all other elements */
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin: 0 1rem;
}

.carousel-indicator {
  font-size: 1.5rem;
  color: black; /* Set color to black */
  cursor: pointer;
  margin: 0 5px;
}

.carousel-indicator.active {
  color: white; /* Set active indicator color to white */
}
  
/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
  .frame-parent-testimonial {
    width: 90%;
    padding: 1rem;
    margin: 2rem auto;
  }
  
  .content-section {
    flex-direction: column;
    align-items: center;
  }

  .side-image-wrapper-testimonial {
    margin: 0;
  }

  .frame-content-testimonial {
        display: flex;
        padding-left: 0;
        margin-right: 2.5rem;
        max-width: 80%;
        text-align: center;
        align-items: center;
        justify-content: center;
  }

  .title-testimonial .name-testimonial {
    font-size: 1.2rem;
  }

  .title-testimonial .designation-testimonial {
    font-size: 0.9rem;
  }

  .desc-wrapper-testimonial .desc-testimonial {
    font-size: 0.8rem;
  }

  .carousel-controls {
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
  }

  .carousel-button {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .carousel-indicators {
    margin: 0;
  }
  .desc-wrapper-testimonial{
        width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    /* font-size:0.8rem; */
  }
}