@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/statoshi/Satoshi-Black.otf") format("otf"),
    url("/assets/fonts/statoshi/Satoshi-BlackItalic.otf") format("otf"),
    url("/assets/fonts/statoshi/Satoshi-Regular.otf") format("otf"),
    url("/assets/fonts/statoshi/Satoshi-Light.otf") format("otf"),
    url("/assets/fonts/statoshi/Satoshi-Medium.otf") format("otf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 0.5px sandybrown solid; */
}



:root {
  --a8-blue-secondary: #007BFF;
  --a8-blue: #001b64;
  --a8-peach: #fa5468;
  --a8-light-blue: #3498db;
  --a8-light-grey: #f0f4f4;
  --a8-white: #ffffff;
  --a8-black: #0b0604;
  --a8-blue-dark: #14314e;
  --a8-blue-transparent: #ffffffb0;
  --a8-gradient-peach: linear-gradient(to right, #fa5468, #fd983d);
  --a8-gradient-blue: linear-gradient(to right, #4e46ee, #f85767);
}

html {
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  background: var(--bg-dark-1);
}

body {
  display: flex;
  flex-direction: column;
  width: 100vw;
  overflow-x: hidden;
  /* background: #00ffff; */
}

.bg-light-grey{
  background: var(--a8-light-grey);
  
}

.text-gradient-peach{
  background: var(--a8-gradient-peach) !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
}

.text-gradient-blue{
  background: var(--a8-gradient-blue) !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
}

.stacked-cont{
  position: relative;
  width: 100%;
  height: 100%;
}

.img-cont{
  border: 2px solid var(--a8-blue);
  height: 400px;
  width: 100%;
  margin-top: -100px;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 14px 16px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}


.img-cont img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

  /* Overlapping background shapes */
.square{
  position: absolute;
  width: 280px;
  height: 350px;
  border-radius: 10px;
  bottom: -25%;
  left: 25%;
  z-index: 1;
}

.yellow{
  background-color: #FFD400;
  transform: rotate(-15deg) translate(-10%, -10%);
}

.blue {
  background-color: var(--a8-blue-secondary);
  transform: rotate(-5deg) translate(-5%, -5%);

}
.gradient-peach {
  background: var(--a8-gradient-peach);
  /* transform: rotate(5deg); */
}
.gradient-blue {
  background: var(--a8-gradient-blue);
  /* transform: rotate(5deg); */
}

 /* Image styling */
 .subject {
  position: absolute;
  width: 280px;
  height: 550px;
  border-radius: 10px;
  /* overflow: hidden; */
  bottom: -25%;
  left: 25%;
  z-index: 2;
}

.subject img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-a8-primary {
  background: var(--a8-blue-dark) !important;
}

.subject + .subject-info {
  position: absolute;
  bottom: -20%;
  left: 10px;
  max-width: 180px;
  /* height: 550px; */
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  color: var(--a8-white); /* Dark text color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 4;
  font-family: "Bricolage Grotesque";
  border: 2px solid var(--a8-white);
  background: var(--a8-blue-secondary);
}

/* .subject-info */

  /* Arrows and circular elements */
  .decor {
    position: absolute;
    font-size: 40px;
    color: #007BFF;
    z-index: 3;
}

.arrow {
    top: -50%;
    left: -10%;
    transform: rotate(60deg);
}

.circle {
  bottom: -27%;
  right: 10%;
    color: #FFD400;
}

#learn-more .learn-more-cont{
  display: flex;
  border-radius: 20px;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
  padding: 40px 120px;
  flex: 1;
  text-align: center;
  background: var(--a8-blue-dark);
}
  #learn-more .learn-more-cont button{
  margin: 0 auto;
  border-radius: 16px;
  padding: 5px 15px;
  font-weight: bold;
  width: fit-content !important; /* Ensure the width is determined by the content */
  }

#learn-more .learn-more-cont h1{
  text-align: center;
}

#stats{
  margin-top: -100px;
  /* margin-bottom: 50px; */
}

#stats .stats-cont .stats-single{
  padding: 35px;
  background: var(--a8-light-grey);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */

}

#niche{
  padding: 128px 0 0 0;
  text-align: center;
}
.niche-cont, .niche-swiper-container {
  width: 100vw !important;
 display: flex;
 justify-content: start;
}

.niche-single{
  width: 272px;
  aspect-ratio: 3/5;
  overflow: hidden;
  background-color: #000;
  position: relative;
}

.niche-single img.niche-img{
  width: 100% !important; 
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}


.niche-single .niche-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space between top and bottom sections */
  z-index: 3; /* Ensure it is above the image */
}

.niche-single .niche-single-top {
  display: flex;
  justify-content: flex-end; /* Align children to the end */
  align-items: flex-start;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px; /* Add padding for spacing */
}

.niche-single .niche-single-top span{
  background: var(--a8-gradient-blue);
  padding: 6px 10px;
  border-radius: 20px;
  font-family: 'Lato';
  font-size: 12px;
}

.niche-single .niche-single-bottom {
  display: flex;
  flex-direction: column;
  justify-content: end; /* Center children horizontally */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)); /* Black to transparent gradient */
  min-height: 40%;
}

.niche-single .niche-single-bottom span.niche-category{
    /* padding: 27px 5px; */
    font-family: 'Lato';
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
  line-height: 28px;

}

.niche-single .niche-single-bottom span.niche-tag{
    padding: 3px 5px 20px 5px;
    font-family: 'Bricolage Grotesque';
    font-size: 12px;
    /* text-transform: uppercase; */
    text-align: center;
    /* line-height: 28px; */
    margin: 0 auto;
}

#platfrom-providers{
  padding:128px 5px;
  background: var(--a8-blue) center bottom
  url(/assets/img/other/banner-background.png) no-repeat;
  background-size: 100% 80%;
}
.platfrom-providers-cont{
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.platfrom-providers-cont h1{
  font-family: 'Bricolage Grotesque';
  font-size: 48px;
  color: var(--a8-white);
}


/* Base styles for circular images */
.img-circle-header {
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Ensure the image is a square */
  border-radius: 50%; /* Make the image circular */
  object-fit: cover; /* Ensure the image fits properly */
  position: relative;
  overflow: hidden; /* Ensure the shiny effect stays within the circle */
}
/* Base styles for the image */
.img-shiny {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Ensure the shine stays within the image */
  border-radius: 50%; /* Optional: Make the image circular */
  z-index: 2;
}

/* Add the shine effect using ::after */
.img-shiny::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%; /* Start the shine off-screen */
  width: 150%; /* Make the shine wider than the image */
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  ); /* Gradient for the shine */
  transform: translateX(0);
  transition: transform 0.5s ease-in-out; /* Smooth transition */
  z-index: 1;
  pointer-events: none; /* Prevent interaction with the pseudo-element */
}

/* Trigger the shine on hover */
.img-shiny:hover::after {
  transform: translateX(150%); /* Move the shine across the image */
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Background color of the preloader */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img.preloader{
  width: 250px;
}
#preloader img.logo{
  width: 100px;
  position: absolute;
  top: calc(50% - 50px); /* Center vertically */
  left: calc(50% - 50px); /* Center horizontally */
  animation: pulse 2.4s infinite; /* Add pulse animation */
}

/* Define the pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1); /* Initial size */
    opacity: 1; /* Fully visible */
  }
  50% {
    transform: scale(2); /* Slightly larger */
    opacity: 0.8; /* Slightly faded */
  }
  100% {
    transform: scale(1); /* Back to original size */
    opacity: 1; /* Fully visible */
  }
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3; /* Light gray */
  border-top: 5px solid #3498db; /* Blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-cont .logo {
  width: 100px;
}
.logo.logo-dark {
  display: none;
}
a {
  text-decoration: none;
}

.header-nav {
  width: 100%;
  padding: 7px 0;
  background-color: var(--a8-blue);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.header-nav ul {
  width: fit-content;
  padding: 0 5px;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  list-style-type: none; /* Remove bullets */
  margin: auto 5px;
  

}

.header-nav.sticky {
  padding: 17px 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--a8-blue); /* Adjust background color if needed */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.3s ease-in-out;
}

.header-nav ul a {
  padding: 0 5px;

  font-family: "Lato", sans-serif;
  font-weight: 500;
  color: var(--a8-white);
}

.header-button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: "Lato", sans-serif;
  color: var(--a8-white);
  font-weight: 500;
  font-size: 1rem;

}

.header-button a{
  font-family: "Lato", sans-serif;
  color: var(--a8-white);
  font-weight: 500;
  font-size: 1.1rem;
}

.header-button a:hover{
  text-decoration: none;
  color: var(--a8-blue-transparent);
  font-weight: 500;
  font-size: 1.1rem;
}

.hero{
  padding:218px 0px ;
  
}

.hero-main{
  /* background: var(--a8-blue)  center bottom
  url(/assets/img/other/banner-background.png) no-repeat;
  background-size: 100% 70%; */
  /* margin: 0;
  padding: 0; */
}

.hero-main p{
  /* color: var(--a8-white); */
}

.hero h1, .title{
  font-size: 80px;
  font-weight: bold;
  line-height: 114%;
  font-family: "Bricolage Grotesque";
  color: var(--a8-blue-dark);
  text-align: left;
  display: inline-block;
}

.hero h2, .sub-title{
  font-size: 50px;
  font-weight: bold;
  line-height: 114%;
  font-family: "Bricolage Grotesque";
  color: var(--a8-blue-dark);
  text-align: left;
  display: inline-block;
}

/* General Styling for the Privacy Policy Section */
#terms {
  padding: 50px 20px;
  background-color: #f9f9f9; /* Light background for better readability */
  font-family: "Lato", sans-serif;
  color: #333; /* Dark text color */
  line-height: 1.6;
}

#terms h1, #terms h2, #terms h3 {
  color: #001b64; /* Use a primary blue color for headings */
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

#terms h1 {
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
}

#terms h2 {
  font-size: 28px;
  line-height: 1.4;
  margin-top: 40px;
}

#terms h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-top: 30px;
}

#terms p {
  font-size: 16px;
  color: #555; /* Slightly lighter text color for paragraphs */
  margin-bottom: 20px;
}

#terms ul {
  list-style-type: disc; /* Use bullet points for unordered lists */
  margin-left: 40px; /* Add left margin for indentation */
  margin-bottom: 20px;
}

#terms ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

#terms a {
  color: #007BFF; /* Blue color for links */
  text-decoration: none;
  font-weight: 600;
}

#terms a:hover {
  text-decoration: underline; /* Underline on hover */
  color: #0056b3; /* Darker blue on hover */
}

/* Add spacing between sections */
#terms .privacy-policy-text {
  margin-bottom: 30px;
}

#terms h3 + p {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn.btn-white {
  position: relative;
  overflow: hidden; /* Ensure the wipe effect stays within the button */
  color: var(--a8-black); /* Initial text color */
  background-color: var(--a8-white); /* Initial background color */
  border: 1px solid var(--a8-blue); /* Border color */
  transition: color 0.3s ease-in-out; /* Smooth text color transition */
  z-index: 1; /* Ensure the button content stays above the ::before element */
}

/* .btn-white:hover {
  color: var(--a8-white) !important;
  background-color: var(--a8-blue);
  border-color: var(--a8-white);
} */

.btn-white:focus,
.btn-white.focus {
  color: var(--a8-white) !important;
  background-color: var(--a8-blue);
  border-color: var(--a8-white);
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}



/* Add the wipe effect using ::before */
.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* Start the wipe off-screen */
  width: 100%;
  height: 100%;
  background-color: var(--a8-blue); /* Wipe background color */
  z-index: -1; /* Place it behind the button content */
  transition: left 0.3s ease-in-out; /* Smooth wipe transition */
}

/* Ensure the text stays above the wipe */
.btn-white {
  position: relative;
  z-index: 1; /* Ensure the text is above the ::before element */
}

/* Hover effect */
.btn-white:hover::before {
  left: 0; /* Slide the wipe into view */
}

.btn-white:hover {
  color: var(--a8-white) !important; /* Change text color to white */
  border-color: var(--a8-white);

}

.swiper-container {
  width: 100%;
  height: 100%;
}

.banner .swiper-slide {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* border: 0.5px sandybrown solid; */
  padding-left: 150px;
  padding-right: 150px;
  /* width: 80%; */

}

.banner-img-container {
  display: block;
}

.banner-img {
  width: 100%;
  height: 600.41px !important;
  object-fit: contain;
}

.banner {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  padding-top: 27px;
  height: 758px;
  background: var(--a8-blue) center bottom
    url(/assets/img/other/banner-background.png) no-repeat;
  background-size: 100% 80%;
}

.ai-banner-container *{
  /* border: 1px solid green; */
}
.ai-banner-container{
  background: var(--a8-blue);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: 100% 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0 30px 40px;
  margin: 80px 0;
  border-radius: 20px;
}

.ai-banner-container .ai-banner-text{
  display: flex;
  flex-direction: column;
}

.ai-banner-container .ai-banner-text h1{
  font-size: 70px;
  font-family:  "Bricolage Grotesque";
  line-height: 60px;
  margin-bottom: 20px;
}

.ai-banner-container .ai-banner-text p{
  font-size: 20px;
  color: var(--a8-white);
  font-family:  "Lato";
  
}

.ai-banner-container .ai-banner-img {
  width: 700px;
  height: 300px;
 /* border: 1px solid green; */
}
.ai-banner-container .ai-banner-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.banner-hero .banner-hero-text .banner-hero-text-title {
  margin-top: 115px;
  /* margin-left: 0; */
}

.banner-hero .banner-hero-text {
  position: relative;
  /* margin: 1000px; */

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  text-align: left;
  font-size: 32px;
  color: #fff;
  font-family: "Bricolage Grotesque";
}
.banner-title {
  width: 100%;
  position: relative;
  font-size: 60px;
  font-weight: bold;
  line-height: 114%;
  font-family: "Bricolage Grotesque";
  color: #fff;
  text-align: left;
  display: inline-block;
  margin-top: -25px;
}

.vector-icon {
  width: 52px;
  position: absolute;
  margin: 0 !important;
  top: 5px;
  left: 25px;
  height: 52px;
  display: none;
  z-index: 0;
}
.frame-child {
  width: 37px;
  position: absolute;
  margin: 0 !important;
  top: 2px;
  left: 30px;
  height: 51px;
  z-index: 1;
}
.find {
  position: relative;
  line-height: 114%;
  /* left: -80px; */
  font-weight: 500;
  z-index: 2;
}
.vector-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  position: relative;
  gap: 10px;
}

.banner-desc-main {
  align-self: stretch;
  position: relative;
  line-height: 142%;
  font-weight: 300;
}
.banner-desc-tag {
  align-self: stretch;
  position: relative;
  font-size: 23px;
  line-height: 120%;
  font-weight: 700;
  font-family: "Satoshi";
}
.banner-desc {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  text-align: left;
  font-size: 18px;
  color: #fff;
  font-family: "Plus Jakarta Sans";
}

.banner-img {
  width: 100%;
  position: absolute;
  width: 120%;
  overflow: hidden;
  /* height: 560.4px; */
  /* object-fit: cover; */
}
.header-nav ul a {
  padding: 0 5px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  color: var(--a8-white);
}


.hamburger-menu {
  display: none;
  font-size: 24px;
  color: var(--a8-white);
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu {
  display: none;
  position: fixed; /* Ensure the menu is fixed */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--a8-blue);
  z-index: 998;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding-top: 80px; /* Leave space for the header */
  padding-bottom: 20px;
  overflow-y: auto; /* Allow scrolling within the menu if content overflows */
}



.mobile-menu .mobile-menu-footer{
  font-size: 18px;
  color: var(--a8-white);
  font-family: "Lato", sans-serif;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0px;
}
.mobile-menu .mobile-menu-footer a{
  font-size: 23px;
  color: var(--a8-white);
  font-family: "Lato", sans-serif;
  font-weight: 500;
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--a8-white);
  margin: 0px 10px;
  padding: 10px 0px;
}

.mobile-menu.active ul {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  padding: 0px 20px;
}

.mobile-menu.active ul li {
  margin-top: 10px;
  width: 100%;
  border-bottom: 1px solid white;
  text-align: center;
  padding: 10px 0px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu ul li a {
  color: var(--a8-white);
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(0);
  animation: fadeInRight .5s; /* referring directly to the animation's @keyframe declaration */
}




.banner-img-container {
  display: block;
}



#service {
  width: 100%;
  position: relative;
  background-color: var(--a8-white);
  height: 854px;
  padding-top: 121px;
}

.section-title {
  width: 100%;
  position: relative;
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.03em;
  line-height: 134%;
  font-family: "Bricolage Grotesque";
  color: var(--a8-blue-dark);
  text-align: center;
  display: inline-block;
  margin-bottom: 37px;
}

.service-cont {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 40px;
  text-align: left;
  font-size: 20px;
  color: #000;
  font-family: Poppins;
}

.service-icon {
  width: 55.9px;
  position: relative;
  height: 55.9px;
}
.service-title {
  align-self: stretch;
  position: relative;
}
.service-desc {
  align-self: stretch;
  position: relative;
  font-size: 14px;
  line-height: 141%;
  font-weight: 300;
  font-family: "Satoshi";
  color: #1e1e1e;
}
.service-content {
  width: 213px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.service-single-cont {
  /* width: 283px; */
  position: relative;
  background-color: #f0f4f4;
  height: 259px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 41px 30px;
  box-sizing: border-box;
  gap: 25px;
  text-align: left;
  font-size: 20px;
  color: #000;
  font-family: Poppins;
}

#testimonial {
  padding-top: 121px;
  padding-bottom: 100px;
  background: #f0f4f4;
}

.testimonial-single {
  padding: 30px;
}
.testimonial-single {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  text-align: left;
  font-size: 20px;
  color: var(--a8-black);
  font-family: Poppins;
  transition: opacity 1s ease-in-out;
}
.testimonial-single.active {
  display: flex;
  /* opacity: 1; */
  /* transform: scale(1); */
  animation-name: fade;
  animation-duration: 1.5s;
}
.testimonial-single.inactive {
  /* opacity: 0; */
  /* transform: scale(0); */
  display: none;
}

.testimonial-quote-icon {
  /* width: 202px; */
  position: absolute;
  margin: 0 !important;
  top: 36px;
  right: -30px;
  height: 188.2px;
  object-fit: contain;
  opacity: 0.2;
  z-index: 0;
}

.testimonial-img {
  width: 504px;
  position: relative;
  border-radius: 11px;
  height: 481px;
  object-fit: cover;
  z-index: 1;
}
.steps-wrap{
  margin-top:109px
}



.rating .istar {
  /* width: 25.4px; */
  position: relative;
  /* height: 24px; */
  /* font-size: 23px; */
  color: #FFD700 ;
  /* object-fit: cover; */
}
.rating {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8.5px;
}
.rating-parent {
  width: 583px;
  box-shadow: 4px 4px 44px 13px rgba(0, 0, 0, 0.06);
  border-radius: 11px;
  background-color: var(--a8-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 15px 17px 48px 13px;
  gap: 19px;
  z-index: 2;
  margin-left: -39px;
  position: relative;
}

.testimonial-cont {
  position: relative;
}
.testimonial-details-cont {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3px;
  text-align: left;
  font-size: 20px;
  color: #000;
  font-family: Poppins;
}

.testimonial-title {
  align-self: stretch;
  position: relative;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 600;
}
.testimonial-desc {
  align-self: stretch;
  position: relative;
  font-size: 22px;
  line-height: 141%;
  /* font-weight: 100; */
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #1e1e1e;
}

.slider-control span#prev,
.slider-control span#next {
  cursor: grab;
  width: 32px;
  position: relative;
  z-index: 6;
  /* right:2px; */
  height: 32px;
  overflow: hidden;
  flex-shrink: 0;
  object-fit: contain;
}
.int {
  width: 57px;
  position: relative;
  line-height: 100%;
  display: flex;
  align-items: center;
  height: 64px;
  flex-shrink: 0;
}
.total-value {
  white-space: pre-wrap;
}
.total-cont {
  width: 43px;
  position: relative;
  font-size: 16px;
  display: inline-block;
  height: 28px;
  flex-shrink: 0;
}
.number {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
}
.slider-control {
  margin: 0 !important;
  position: absolute;
  right: 295px;
  bottom: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 3;
  font-size: 56px;
  color: #202020;
  font-family: Manrope;
}

#steps {
  padding-top: 121px;
  padding-bottom: 100px;
  background: var(--a8-white);
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.step-cont {
  margin: 0 210px;
  display: flex;
  flex-direction: column;
  gap: 117px;
}

.step-single {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  z-index: 2;
}

.step-cont .step-single:nth-child(2) {
  margin-left: 224px;
}
.step-cont .step-single:nth-child(3) {
  margin-left: 478px;
}

.bg-text {
  width: 100%;
  position: absolute;
  font-size: 350px;
  letter-spacing: -0.04em;
  line-height: 130%;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Satoshi";
  color: #f8f8f8;
  text-align: center;
  z-index: 1;
}

.curvy-line {
  position: absolute;
  top: 10%;
  /* transform: translate(-50%, -50%); */
  /* height: 100%; */
  /* width: 100%; */
  z-index: 1;
}

.step-single .step-index-wrap {
  padding: 10px;
  background: #14314e;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.step-single .step-index-wrap span {
  color: #f0f4f4;
  font-size: 70px;
  font-family: Abril Fatface;
  font-weight: 400;
  line-height: 84px;
  word-wrap: break-word;
}

.step-single .step-body-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  display: inline-flex;
}

.step-single .step-body-wrap .step-title {
  color: black;
  font-size: 24px;
  font-family: Poppins;
  font-weight: 600;
  line-height: 28.8px;
  word-wrap: break-word;
}

.step-single .step-body-wrap .step-desc {
  max-width: 383px;
  color: #1e1e1e;
  font-size: 24px;
  font-family: "Satoshi";
  font-weight: 300;
  line-height: 33.84px;
  word-wrap: break-word;
}

#pricing {
  background: #f0f4f4;
  padding-top: 121px;
  padding-bottom: 100px;
}

.pricing-wrap{
  margin-top: 60px;
}

.pricing-cont{
  /* padding: 0 50px; */
  gap: 60px;
}

.pricing {
  background: var(--a8-blue-dark);
  position: relative;
  min-height: 305px;
  max-width: 328px !important;
  display: flex;
}
.pricing:nth-child(1){
  background: #2A99F4;
}
.pricing:nth-child(2){
  background: #FE7E2F;
}
.pricing:nth-child(3){
  background: #9B02FF;
}

.pricing .pricing-offset-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: none;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  transition: all 0.5s ease-in-out;
}

.pricing:hover .pricing-offset-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  padding: 40px;
  position: absolute;
  top: -39px;
  left: -30px;
  box-shadow: 0px 5px 16px rgba(8, 15, 52, 0.233);
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
}

.pricing-price {
  color: #231d4f;
  font-size: 36px;
  font-family: "Satoshi";
  font-weight: 700;
  line-height: 46px;
  word-wrap: break-word;
}
.pricing-price span {
  color: #848199;
  font-size: 17px;
  font-family: "Satoshi";
  font-weight: 500;
  word-wrap: break-word;
}

.pricing-title {
  color: #231d4f;
  width: 100%;
  font-size: 28px;
  font-family: "Satoshi";
  font-weight: 700;
  word-wrap: break-word;
  border-bottom: 1px solid #231d4f;
  padding-bottom: 20px;
}

.pricing-desc {
  color: #848199;
  font-size: 17px;
  font-family: "Satoshi";
  font-weight: 500;
  word-wrap: break-word;
}

.choose-plan {
  left: 5%;
  top: 90%;
  position: absolute;
  color: white;
  font-size: 15px;
  font-family: 'Satoshi';
  font-weight: 700;
  letter-spacing: 1px;
  word-wrap: break-word;
}

.choose-plan:hover {
  color: #f0f4f4;
  text-decoration: none;
}
#faq{
  width: 100vw;
  position: relative;
  background: var(--a8-white);
  padding-bottom: 121px;
}


.faq-cont{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  padding-right: 103px;
  /* height: 600px; */
  /* height:max-content  */

}
.faq-cont .faq-banner-title{
  min-width: 40%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 30px;
  /* border: 0.5px sandybrown solid; */
  height:500px;

}
.faq-cont .faq-banner-title img{
  width: 100%;
  position: absolute;
  object-fit: contain;
  top: 0px;
}
.faq-cont .faq-banner-title span{
  color: black;
  font-size: 50px;
  font-family: Bricolage Grotesque;
  font-weight: 700;
  line-height: 78px;
  word-wrap: break-word;
  width: 60%;
  /* margin-left: 103px; */
}

.faq-questions-cont{
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  position: relative;
  justify-content: center;
  align-items: center;
  align-self: center;
  
  margin-top: 121px;
}

.accordion {
  width: 100%;
  padding: 35px 61px;
  background: white;
  box-shadow: 0px 5px 16px rgba(8.24, 15.25, 52.06, 0.06);
  border-radius: 18px;
  outline: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.accordion-item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.accordion-header {
  font-size: 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  line-height: 28px;
  color: black;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  font-size: 18px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #6F6C90;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-top: -30px;
}


.accordion-body.active {
  max-height: 500px; /* Adjust this value based on your content */
}

#get-started{
  display: flex;
  justify-content: space-between;
  background: var(--a8-blue-dark) url(/assets/img/other/footer-bg.png) no-repeat center ;
  background-size: cover;
  position: relative;
  padding: 80px 128px;
}

.get-started-text{
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 50%;
}

.get-started-title{
  color: white;
font-size: 32px;
font-family: Bricolage Grotesque;
font-weight: 800;
line-height: 36px;
word-wrap: break-word
}
.get-started-desc{
  color: white;
  font-size: 21px;
  font-family: Satoshi;
  font-weight: 400;
  line-height: 25.20px;
  word-wrap: break-word
}
.get-started-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  width: 100%;
  padding: 50px 98px 20px 98px;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  color: white;
  font-size: 22px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  line-height: 33px;
}
.footer-logo img{
  width: 130px;
  
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-link {
  color: white;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.footer-social-icons {
  display: flex;
  gap: 30px;
}

.footer-social-icons * {
  color: white;
  font-size: 24px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.3;
}

.footer-copyright {
  color: white;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}


/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  overflow: hidden;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--a8-blue); /* Use your blue color variable */
  color: var(--a8-white); /* White text */
  border: none;
  border-radius: 50%; /* Make it circular */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 24px;
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.back-to-top:hover {
  background-color: var(--a8-blue-dark); /* Darker blue on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.back-to-top:active, .back-to-top:focus, .back-to-top:active:focus {
  outline: none; /* Remove the default focus ring */

}

.back-to-top .fa-rocket {
  transform: rotate(-45deg); /* Ensure the icon is straight */
}

/* Shaking animation */
.shaking {
  animation: shake 0.3s infinite; /* Apply shaking animation */
}


/* Vibration animation */
.vibrating {
  animation: vibrate 0.3s infinite; /* Vibrate for a short time */
}

/* Re-enter animation */
.reentering {
  animation: reenter .5s ease-in-out forwards; /* Fly back into the button */
}


/* Flying animation */
.flying {
  animation: flyUp .5s ease-in-out forwards; /* Fly out of the button */
}



.back-to-top.active {
  display: flex; /* Show when active */
  animation: slideInUp 0.3s; /* Fade in when shown */
}

.pricing-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
            background-color: var(--a8-light-grey);
        }

        .section-title-text {
            font-family: 'Bricolage Grotesque', sans-serif; /* Using font from your CSS */
            color: var(--a8-blue-dark, #14314e); /* Using variable from your CSS */
        }

        .section-subtitle-text {
            color: #52525b; /* Similar to zinc-600 */
        }

        .btn-group .btn.active { /* Style for active toggle button */
            background-color: var(--a8-blue, #001b64);
            color: var(--a8-white, #ffffff);
            border-color: var(--a8-blue, #001b64);
        }
        .btn-group .btn:not(.active) {
             background-color: var(--a8-white, #ffffff);
             color: var(--a8-blue-dark, #14314e);
             border-color: #ced4da; /* Bootstrap default border color */
        }


        .pricing-card {
            background-color: var(--a8-white, #ffffff);
            border-radius: 0.75rem; /* 12px */
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Bootstrap's shadow-lg equivalent */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%; 
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175); /* Bootstrap's shadow-xl equivalent */
        }
        
        .pricing-card.professional {
           background-color: var(--a8-blue, #001b64);
           color: var(--a8-white, #ffffff);
        }

        .pricing-card.professional .plan-name,
        .pricing-card.professional .plan-description,
        .pricing-card.professional .plan-price,
        .pricing-card.professional .plan-price span, /* Keep this if you have specific spans */
        .pricing-card.professional .feature-list .list-group-item, /* Target Bootstrap list items */
        .pricing-card.professional .toggle-features-link {
            color: var(--a8-white, #ffffff) !important; /* Important to override Bootstrap defaults */
        }
        .pricing-card.professional .plan-price span.price-period { /* More specific selector for price period */
            color: #d1d5db !important; /* gray-300 for sub-text */
        }
         .pricing-card.professional .feature-list .list-group-item {
            background-color: transparent !important; /* Ensure list items in professional card are transparent */
            border-color: rgba(255, 255, 255, 0.25) !important;
        }


        .pricing-card.professional .btn-cta { /* Custom class for CTA on professional card */
            background-color: var(--a8-peach, #fa5468);
            color: var(--a8-white, #ffffff);
            border-color: var(--a8-peach, #fa5468);
        }
         .pricing-card.professional .btn-cta:hover {
            background-color: #f97316; /* Darker peach */
            border-color: #f97316;
        }

        .plan-name {
            font-family: 'Bricolage Grotesque', sans-serif;
            color: var(--a8-blue-dark, #14314e);
        }

        .plan-description {
            color: #6c757d; /* Bootstrap's text-muted */
        }

        .plan-price {
            font-family: 'Bricolage Grotesque', sans-serif;
            color: var(--a8-blue-dark, #14314e);
        }
         .plan-price span.price-period {
            color: #6c757d; /* Bootstrap's text-muted */
            font-size: 0.875rem; /* text-sm */
        }

        .feature-list .list-group-item { /* Styling for Bootstrap list group items */
            background-color: transparent;
            border: none;
            padding-left: 0;
            color: #495057; /* Bootstrap's default text color */
        }
        .feature-list .list-group-item i {
            color: var(--a8-peach, #fa5468); 
        }
        .pricing-card.professional .feature-list .list-group-item i {
             color: var(--a8-light-blue, #3498db) !important;
        }

        .additional-features {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
        }
        .additional-features.expanded {
            max-height: 500px; /* Adjust as needed */
        }
        .toggle-features-link {
            color: var(--a8-blue-secondary, #007BFF);
            cursor: pointer;
            text-decoration: underline;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: inline-block;
        }

        .btn-cta-main { /* Custom class for main CTA buttons */
            background-color: var(--a8-blue-dark, #14314e);
            color: var(--a8-white, #ffffff);
            border-color: var(--a8-blue-dark, #14314e);
        }
        .btn-cta-main:hover {
            background-color: var(--a8-blue, #001b64);
            border-color: var(--a8-blue, #001b64);
            color: var(--a8-white, #ffffff);
        }
        
        .free-plan-section {
            background-color: var(--a8-light-grey, #ffffff);
            border-radius: 0.75rem; /* 12px */
        }
        .free-plan-button {
            background-color: var(--a8-peach, #fa5468);
            color: var(--a8-white, #ffffff);
            border-color: var(--a8-peach, #fa5468);
        }
         .free-plan-button:hover {
            background-color: #f97316; 
            border-color: #f97316;
            color: var(--a8-white, #ffffff);
        }

        /* Bootstrap Carousel Customization */
        #pricingCarousel .carousel-indicators button {
            background-color: var(--a8-blue, #001b64); /* Darker dots */
        }
        #pricingCarousel .carousel-indicators button.active {
            background-color: var(--a8-peach, #fa5468); /* Active dot color */
        }
        #pricingCarousel .carousel-control-prev-icon,
        #pricingCarousel .carousel-control-next-icon {
            background-color: rgba(0,0,0,0.5); /* Semi-transparent black background */
            border-radius: 50%;
            padding: 10px; /* Add some padding to make the icon background larger */
            background-size: 50% 50%; /* Make the actual arrow icon smaller within the background */
        }


/* ==============================Media Querries=================================== */


/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero{
    padding: 60px 20px !important;
  }
  .hero .row{
    gap: 123px;
  }
  .hero-img-cont{
    width: 100%;
    height: 300px;
  }
  
.stacked-cont{
  height: 300px;
}

   /* Overlapping background shapes */
.square{
  position: absolute;
  bottom: -20%;
  right:0;
  z-index: 1;
}


.subject + .subject-info {
  bottom: 0% !important;;
}

/* .subject-info */

  /* Arrows and circular elements */
  .decor {
    position: absolute;
    font-size: 40px;
    color: #007BFF;
    z-index: 3;
}

.arrow {
    left: 0% !important;
}

#learn-more .learn-more-cont{
  padding: 40px 30px;
  border-radius: 12px;
}

.hero h1, .title{
  font-size: 70px;
}

#learn-more .learn-more-cont button{
  font-size: 20px;
}

#stats {
  margin-top: 0;
  padding: 70px 30px;
  /* margin-bottom: 50px; */
}

.stats-cont{
  gap: 40px;
}

  #niche{
    background: var(--a8-light-grey) ;
    background-size: cover;
  }

  #platfrom-providers {
    padding: 150px 30px;
    background: var(--a8-blue) center bottom
  url(/assets/img/other/banner-background.png) no-repeat;
    background-size: 230% 70%;
}

.ai-banner-container .ai-banner-text h1{
  font-size: 60px;
  font-weight: bold;
}

.ai-banner-container{
  flex-direction: column-reverse;
  
}

.ai-banner-container .ai-banner-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-banner-container{
  overflow-x: hidden;
}

.platfrom-providers-cont {
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  text-align: center;
}
  .banner{
    width: 100%;
    padding: 30px 15px !important;
  }
  .banner-title{
    font-size: 40px;
  }
  #service{
    padding: 80px 0 !important;
  }

  #testimonial{
    padding: 60px 0 !important;
  }

  .testimonial-single.active, .testimonial-single{
    padding: 0 !important;
  }

  .testimonial-img {
    width: 100% !important;
    height: 300px !important;
}

.testimonial-title {
  align-self: stretch;
  position: relative;
  font-size: 20px;
  letter-spacing: 0px;
  width: 100%;
  border-bottom: 1px solid var(--a8-black);
  padding-bottom: 10px;
  margin-bottom: 0 !important;
}

.testimonial-author{
  font-size: 12px;
  font-weight: bold;
}
.rating-parent {
  padding: 18px;
  gap: 7px;
  position: relative;
  top: -25px !important;
  left: 0 !important;
}

.slider-control {
  margin: 0 !important;
  position: absolute;
  right: 295px;
  bottom: 19px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
  font-size: 30px;
  color: #202020;
  font-family: Manrope;
}

.number {
  align-items: flex-end;
  gap: 6px;
}

.int {
  width: 30%;
  /* position: relative; */
  line-height: 100%;
  display: flex;
  align-items: center;
  height: 10%;
  flex-shrink: 0;
}
.total-cont{
  height: 10%;
}

#steps{
  padding: 80px 0 !important;
}
.steps-wrap{
  margin-top:40px
}

.step-cont{
  gap: 70px;
}
.step-cont .step-single{
  gap: 12px;
  align-items: start;
}
.step-single .step-index-wrap span{
  font-size: 30px;
  line-height: normal;
}
.testimonial-desc{
  font-size: 18px;
}
  .section-title{
    font-size: 26px;
  }

  #pricing{
    padding: 60px 5px;
    
  }

  .pricing .pricing-offset-box{
    left: 0px;
    width: 100% !important;
  }

  .faq-cont .faq-banner-title{
    margin-top: 0 !important;
  }

  .faq-cont .faq-banner-title span{
    line-height: normal;
    font-size: 26px;
  }

  .accordion-header{
    font-size: 18px;
    line-height: normal;
  }
  .faq-questions-cont{
    padding: 10px;
  }

  #get-started{
    flex-direction: column;
  }

  .get-started-text{
    width: 100% !important;
    text-align: center;
  }

  .get-started-title{
    font-size: 26px;
  }

  .get-started-desc{
    font-size: 16px;
    line-height: normal;
  }
  .banner .banner-desc-main{
    width: 100%;
  }
  .header-nav ul,
  .header-nav span.header-button {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }


  .header-nav {
    padding: 0 5px !important;
}

  .header-nav.sticky {
    padding: 30px 5px !important;
}

.banner .swiper-slide {
  padding: 0 30px !important;
}

  .hamburger-menu {
    display: block;
  }

  .banner-img-container {
    display: none;
  }


  .footer {
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social-icons {
    justify-content: center;
    width: 100%;
  }
}

/* Small Devices (Tablets, 576px and up) */
@media  (max-width: 767.98px) {
  .banner{
    width: 100%;
    padding: 40px 50px;
  }
  
  .service-cont{
    gap: 20px;
  }
  
  .testimonial-img{
    width: 70%;
    height: 500px;
  }

  .slider-control{
    right: 0;
    bottom: 0;
  }
  
  .testimonial-single.active, .testimonial-single{
    padding-bottom: 0;
    justify-content: start !important;
  }

  .rating-parent {
    width: 500px;
    padding: 18px;
    gap: 7px;
    position: relative;
    top: -100px;
    left: 20px;
}

.rating{
  display: none;
}

.curvy-line{
  display: none;
}

.step-cont .step-single{
  margin-left: 0 !important;
}

.bg-text{
  font-size: 170px !important;
  display: none;
}

.pricing-cont{
  justify-content: center;
}

.faq-cont .faq-banner-title span{
  width: 100%;
  text-align: center;
  margin: 10px auto;
}

.faq-questions-cont{
  width: 100%;
}
.accordion{
  padding: 15px 30.5px;

}


.header-nav ul,
  .header-nav span.header-button {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .banner-img-container {
    display: none;
  }

  .footer {
    padding: 30px;
  }

  .footer-content {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  #get-started{
    padding: 40px 60px;
  }
  .get-started-text{
    width: 60%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social-icons {
    justify-content: center;
    width: 100%;
  }
}

/* Medium Devices (Desktops, 768px and up) */
@media  (max-width: 991.98px) {
  *{
    /* border: 1px solid orange; */
  }
  .banner  .swiper-slide{
    width: 100% !important;
    padding: 0 50px;
  }
  .swiper-container{
    width: 100% !important;
    /* margin: 0 -50px ; */
  }
  .header-nav{
    padding: 0 50px;

  }
  .banner{
    height: fit-content;
    padding: 40px 0;
    background-size: 150% 80%;
  }

  .banner-hero{
    margin: 50px 0;
  }
  
  .banner-hero .banner-hero-text .banner-hero-text-title{
    margin-top: 10px;
  }

  #service{
    height: fit-content;
    padding: 80px 50px;
  }

  .testimonial-quote-icon {
    display: none;
}
.testimonial-single.active{
  justify-content: center;
}
.rating-parent{
  margin: 0;
}

.slider-control{
  position: relative;
  right: 0;
  bottom: 0;
  margin: 0;

}

.step-cont{
  margin: 0 50px;
}

.bg-text{
  font-size: 250px;
}

.faq-cont{
  padding-right: 0;
  flex-direction: column;
}

.faq-cont .faq-banner-title img{
  display: none;
}

.faq-cont .faq-banner-title {
  height: fit-content;
  min-width: 40%;
  padding: 5px;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin-top: 100px;
}

.faq-questions-cont{
  margin-top: 0;
}

.testimonial-cont {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
  .footer {
    padding: 40px;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
  }

  .footer-social-icons {
    justify-content: flex-end;
    width: auto;
  }

  .hero{
    padding: 120px 50px;
  }


  
  /* Overlapping background shapes */
.square{
  position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 10px;
  bottom: 0;
  right:0;
  z-index: 1;
}

 /* Image styling */
 .subject {
  position: absolute;
  width: 200px;
  height: 470px;
  border-radius: 10px;
  /* overflow: hidden; */
  bottom: 0;
  right:0;
  z-index: 2;
}

.subject img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subject + .subject-info {
  position: absolute;
  bottom: -20%;
  left: 10px;
  max-width: 180px;
  /* height: 550px; */
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  color: var(--a8-white); /* Dark text color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 4;
  font-family: "Bricolage Grotesque";
  border: 2px solid var(--a8-white);
  background: var(--a8-blue-secondary);
}

/* .subject-info */

  /* Arrows and circular elements */
  .decor {
    position: absolute;
    font-size: 40px;
    color: #007BFF;
    z-index: 3;
}

.arrow {
    top: -7%;
    left: -19%;
    transform: rotate(60deg);
}

.circle {
  bottom: -7%;
  right: 10%;
    color: #FFD400;
}


}

/* Large Devices (Large Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer {
    padding: 50px 98px 20px 98px;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    gap: 34px;
  }

  .footer-links {
    flex-direction: row;
    gap: 40px;
  }

  .footer-social-icons {
    justify-content: flex-end;
    width: auto;
  }
}

/* Extra Large Devices (Larger Desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .footer {
    padding: 50px 98px 20px 98px;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    gap: 34px;
  }

  .footer-links {
    flex-direction: row;
    gap: 40px;
  }

  .footer-social-icons {
    justify-content: flex-end;
    width: auto;
  }
}

/* Extra Extra Large Devices (Very Large Desktops, 1400px and up) */
@media (min-width: 1400px) {
  .footer {
    padding: 50px 98px 20px 98px;
  }

  .footer-content {
    flex-direction: row;
    align-items: center;
    gap: 34px;
  }

  .footer-links {
    flex-direction: row;
    gap: 40px;
  }

  .footer-social-icons {
    justify-content: flex-end;
    width: auto;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -2px);
  }
  75% {
    transform: translate(-2px, -2px);
  }
  100% {
    transform: translate(0, 0);
  }
}


@keyframes vibrate {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -2px);
  }
  75% {
    transform: translate(-2px, -2px);
  }
  100% {
    transform: translate(0, 0);
  }
}


@keyframes flyUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%); /* Fly out of the button */
  }
}



@keyframes reenter {
  0% {
    transform: translateY(200%); /* Start below the button */
  }
  100% {
    transform: translateY(0); /* Return to the button */
  }
}