* {
  margin: 0;
  padding: 0;
}

/* website color code */
:root {
  --font-color: rgb(82, 82, 253);
  --light-text-color: #FEFFEF;
  --btn-color: linear-gradient(to right, #5252fd, #5d40a0);
  --btn-h-color: linear-gradient(to right, #5d40a0, rgb(82, 82, 253));
}



  /* Loading animation styles */
  #loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the loading screen is above everything else */
}

.loader {
    display: flex;
    gap: 10px; /* Space between the balls */
    /* z-index: 10000000; */
}

.ball {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #3498db !important;
    animation: bounce 2.6s infinite alternate;
    /* z-index: 1000000; */
}

/* Add a delay to the second ball's animation */
.ball:nth-child(2) {
    animation-delay: 0.3s; /* Delay for the second ball */
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px); /* Bounce height */
    }
}


/* website scroll bar */
/* For vertical scrollbar */
body {
  overflow-x: auto;
  /* Make sure horizontal scrolling is enabled if needed */
}

::-webkit-scrollbar {
  width: 12px;
  /* Adjust the width of the vertical scrollbar */
}

/* For horizontal scrollbar */
::-webkit-scrollbar {
  height: 10% !important;
  /* Adjust the height of the horizontal scrollbar */
}

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
  background-color: var(--light-text-color);

}


::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--btn-color);
  /* border-radius: 30px; */
}




.banner {
  height: 400px;
  width: 100%;
  z-index: 1;
  /* Default visibility */
  background-image: linear-gradient(to right, rgba(109, 109, 249, 0.695), rgba(98, 94, 94, 0.774)), url("https://i.pinimg.com/originals/0b/58/65/0b5865730f82148745e3c1e0fdfea2fd.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  /* position: relative; */
  /* border-top-left-radius: 0px; */
  /* margin-right: 40px; */
  /* border-top-right-radius: 130px; */
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 29px -8px rgba(0, 0, 0, 0.75);

}

.banner h1 {
  text-align: center;
  padding-top: 12%;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-text-color);
}


/* ----------------- Responsive ------------------- */
@media (max-width: 768px) {
  .banner {
    height: 250px;
    background-attachment: scroll;
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
  }

  .banner h1 {
    font-size: 38px !important;
    padding-top: 18% !important;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 200px;
    border-bottom-left-radius: 40% !important;
    border-bottom-right-radius: 40% !important;
  }

  .banner h1 {
    font-size: 25px !important;
    padding-top: 20% !important;
  }
}

.section-1 {
  position: absolute; /* Position it absolutely over the banner */
  top: 550px; /* Adjust based on your layout */
  left: 50%;
  transform: translateX(-50%); /* Center it horizontally */
  width: 95%;
  background-color: white;
  margin: 0; /* Remove margin for absolute positioning */
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
  border-radius: 20px;
  display: flex;
  padding: 50px;
  justify-content: center;
  
  gap: 40px;
  z-index: 2; /* Ensure the section is above the banner */
 
 
}



.section-1 .sec-1-img {
  /* border: 12px solid blue; */
  width: 50%;
  height: 100%;
  position: sticky !important;
  float: left !important;
  display: inline-block;
  top: 50px;
  /* border-radius: 50%; */
  /* z-index: 30; */
  overflow: hidden;
}

.section-1 .sec-1-img img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  transition: opacity 0.5s ease;
}

.sec-1-content {
  /* border: 2px solid rgb(255, 0, 128); */
  width: 50%;
  height: 100%;
  float: left;

}

.section-1 .sec-1-content h1 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-1 .sec-1-content ul {
  list-style: none;
  /* Remove default bullets */
  padding: 0;
  /* Remove padding */
}

.section-1 .sec-1-content li {
  position: relative;
  /* Position relative for absolute positioning of checkmark */
  padding-left: 25px;
  /* Space for checkmark */
}

.section-1 .sec-1-content li:before {
  content: "✔";
  /* Unicode for checkmark */
  position: absolute;
  /* Position absolute to the left of the text */
  left: 0;
  /* Align to the left */
  color: blue;
  /* Change color to blue */
}
.pre-section{
  margin-top: 1800px;
  height: 550px;
  width: 100%;
  /* border: 2px solid green; */
  display: flex;
  padding: 80px;
justify-content: center;
gap: 10px;
}
 
.pre-s-content{
width: 100%;
height: 100%;
/* border: 2px solid rgb(128, 0, 90); */
padding: 5px;
}
.pre-s-content h1 {
  /* text-align: center; */
  text-transform: uppercase;
  font: 35px;
  font-weight: 700;
  color: #5252fd;
}
.pre-s-img{
  width: 100%;
  height: 100%;
  padding: 50px;
  border-radius: 49% 51% 70% 30% / 30% 30% 70% 70% ;
  border: 5px solid blue;
  background-image: url("https://i.pinimg.com/564x/23/8c/a5/238ca508d6edbf3d77dcc3e9d517966f.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


@media (max-width: 576px) {
  /* Remove absolute positioning */
  .section-1 {
    /* height: 700px !important; */
    position: static !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 20px 0;
    padding: 20px 15px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
.section-1 .sec-1-content h1 {
margin-bottom: 30px ;
}
  /* Disable sticky/fixed from image */
  .section-1 .sec-1-img {
    position: static !important;
    float: none !important;
    width: 100% !important;
  }

  .sec-1-content {
    width: 100% !important;
    float: none !important;
  }

  .section-1 .sec-1-content h1 {
    font-size: 24px;
    text-align: center;
  }

  .pre-section {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
      margin-top: 0px;
  }

  .pre-s-content {
    width: 100%;
    text-align: center;
  }

  .pre-s-img {
    width: 100%;
    height: 200px;
    padding: 20px;
    border-radius: 50%;
  }
}
















.section-2 {
  height: 500px;
  width: 100%;
  /* border: 2px solid green; */
  margin-top: 50px;
  padding: 40px;
  box-sizing: border-box;
}

.section-2 h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 700;
}

.swiper {
  margin-top: 60px;
  width: 90%;
  height: 250px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--btn-color);
  border-radius: 1rem;
  transition: background 0.3s ease;
}

.swiper-slide:hover {
  background: var(--btn-h-color);
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-icons {
  border: 2px solid white;
  height: 80px;
  width: 80px;
  margin: 40px auto 0px;
  padding: 20px;
  border-radius: 50%;
  background: var(--light-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-icons i {
  font-size: 25px;
  color: var(--font-color);
}

.swiper-slide h6 {
  color: var(--light-text-color);
  font-size: 20px;
  padding: 30px 0 0;
}

/* ================== RESPONSIVE STYLES ================== */
@media (max-width: 1024px) {
  .section-2 {
    padding: 30px;
  height: 350px;
    margin-top: 30px;

  }

  .section-2 h1 {
    font-size: 28px;
  }

  .swiper {
    height: 220px;
    margin-top: 20px;
  }

  .slider-icons {
    height: 70px;
    width: 70px;
    padding: 15px;
  }

  .slider-icons i {
    font-size: 30px;
  }

  .swiper-slide h6 {
    font-size: 24px;
    padding: 20px 0 0;
  }
}

@media (max-width: 767px) {
  .section-2 {
    padding: 20px;
  }

  .section-2 h1 {
    font-size: 24px;
  }

  .swiper {
    height: 200px;
  }

  .slider-icons {
    height: 60px;
    width: 60px;
    padding: 12px;
  }

  .slider-icons i {
    font-size: 22px;
  }

  .swiper-slide h6 {
    font-size: 18px;
    padding: 15px 0 0;
  }
}
/* section-2 css end here *//* section-3 css start here */
.button-flex{
  display: flex;
  
}
/* section-3 css */


.section-9{
  padding-top: 30px;
  height: 300px;
  /* width: 500px; */
  /* height: 400px; */
  /* border: 2px solid green; */
  /* margin-left: 400px; */
  /* border-radius: 50%; */
  /* margin-right: 100px; */
  margin-top: -100px;
  border-radius: 10px;
  z-index: 100;
 
}
.section-9 h1{
  text-align: center;
  font-size: 50px;
  margin-top: 10px;
  margin-bottom: 30px;
text-transform: uppercase;font-weight: 700;
}
.section-9 .contact-des{
  display: flex;
  justify-content: center;
  gap:20px;
  /* border: 2px solid yellow; */
  height: 50px;

}

.section-9 .contact-des .whatup{
  width: 170px;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  display: flex;
  border-radius: 20px;
  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
transition: transform 0.3s ease, background-color 0.3s ease;
&:hover{
  transform: scale(1.1); /* Smooth scaling */
  /* background-color: #2ecc71;  */
}
}
.section-9 .contact-des .whatup i{
  font-size: 30px;
margin-top: 5px;
margin-left: 10px;
margin-bottom: 5px;
padding-left: 5px;
padding-top: 3px;
width: 35px;
border-radius: 50%;
color: white;
background: var(--btn-color);
/* border: 2px solid green; */
}
.section-9 .contact-des .phone-no{
  width: 170px;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 20px;
  display: flex;
  box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.66);
transition: transform 0.3s ease, background-color 0.3s ease;
&:hover{
  transform: scale(1.1); /* Smooth scaling */
  /* background-color: #2ecc71;  */
}
}

.section-9 .contact-des .phone-no i{
  font-size: 20px;
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 5px;
  padding-left: 8px;
  padding-top: 8px;
  width: 35px;
  border-radius: 50%;
  color: white;
  background: var(--btn-color);
}
.phone-no p ,.whatup  p{
  /* border: 2px solid green; */
  color: rgb(0, 0, 0);
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.section-9 h2{
  text-align: center;
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-9{
    margin-top: -60px;
  }
  .section-9 h1 {
    font-size: 36px;
  }

  .section-9 .contact-des {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: auto;
  }

  .section-9 .contact-des .phone-no,
  .section-9 .contact-des .whatup {
    width: 220px;
    height: 45px;
    justify-content: center;
    align-items: center;
  }

  .section-9 h2 {
    font-size: 20px;
  }

  .phone-no p,
  .whatup p {
    margin: 0;
    font-size: 14px;
  }

  .section-9 .contact-des .phone-no i,
  .section-9 .contact-des .whatup i {
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 10px 0 0;
  }
}

@media (max-width: 450px) {
  .section-9 h1 {
    font-size: 28px;
  }

  .section-9 h2 {
    font-size: 16px;
  }
}




.section-8 {
  height: 400px;
}

.counter-wrapper {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.85)), url("https://i.pinimg.com/564x/63/26/26/632626fef24435b915714ec54a28be8d.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* display: grid; */
 height: 300px;
 text-align: center;
 /* display: flex; */
 padding: 50px;

}
.h-1 ,.h-2{
  display: flex;
justify-content: center;
margin-top: 10px;

}
.h-1 img ,.h-2 img{
  height: 30px ;
  width: 30px;
}
.h-1 i ,.h-2 i{
  /* border: 1px solid blue; */
  width: 50px;
  height: 50px;
  font-size: 25px;
  border-radius: 50%;
  /* padding-top: 12px; */
  background: rgb(255, 255, 255);
  margin-right: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.388);
}
.h-1 a ,.h-2 a{
  
  color: rgba(255, 255, 255, 0.664) !important;
font-size: 55px;
font-weight: 700;
}
.counter-wrapper h1{

  /* margin-top: 20px; */
  color: #FEFFEF;
  text-align: center;
}
.counter-wrapper  i{
  color: white;
}
@media (max-width: 768px) {
  .section-8 {
    height: auto;
  }

  .counter-wrapper {
    height: auto;
    padding: 20px 10px;
    text-align: center;
  }

  .h-1,
  .h-2 {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .h-1 i,
  .h-2 i {
    margin: 0 auto 10px auto;
  }

  .h-1 a,
  .h-2 a {
    font-size: 32px;
  }

  .h-1 img,
  .h-2 img {
    height: 24px;
    width: 24px;
  }
}
.section-6 {
  width: 100%;
  margin-top: 80px;
}

.section-6 h1 {
  text-align: center;
  font-size: 50px;
  margin: 30px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.main-accordion {
  display: flex;
  width: 100%;
  padding: 0 60px;
  gap: 30px;
  flex-wrap: wrap;
}

.accordion-left,
.accordion-right {
  flex: 1;
  min-width: 300px;
}

.acc-icon {
  text-align: center;
  width: 50px;
  background: rgba(176, 172, 172, 0.149);
  padding: 2px;
  border-radius: 20px;
}

.accordion {
  width: 100%;
  margin: 20px auto;
  border-radius: 5px;
}

.accordion-item {
  border: 5px solid #ffffff;
}

.accordion-content {
  color: rgba(0, 0, 0, 0.934) !important;
  background: #e0e0de;
  border: 2px solid #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: none;
  padding: 15px;
  font-size: 16px;
}

.accordion-header {
  color: rgb(82, 82, 253);
  display: flex;
  justify-content: space-between;
  background: white;
  cursor: pointer;
  padding: 11px 15px;
  outline: none;
  border: none;
  width: 100%;
  transition: background-color 0.3s;
  border-left: 5px solid rgb(82, 82, 253);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .main-accordion {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .accordion-left,
  .accordion-right {
    width: 100%;
  }

  .section-6 h1 {
    font-size: 32px;
    margin: 20px 0;
  }

  .accordion-header {
    font-size: 15px;
    flex-wrap: wrap;
    padding: 10px 15px;
    height: auto;
  }

  .acc-icon {
    width: 30px;
    padding: 4px;
    /* margin-left: -10px !important; */
  }

  .accordion-content {
    font-size: 14px;
  }
}

/* Extra small screens (optional) */
@media (max-width: 480px) {
  .section-6 h1 {
    font-size: 26px;
  }

  .accordion-header {
    font-size: 13px;
  }

  .accordion-content {
    font-size: 13px;
  }

  .main-accordion {
    padding: 10px;
  }
  

.accordion-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  text-align: left !important;
  gap: 10px;
}

.accordion-header .acc-text {
  flex: 1 1 auto !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.accordion-header .acc-icon {
  flex-shrink: 0 !important;
  text-align: right !important;
  min-width: 30px;
  /* margin-right: 20px !important; */
}

.acc-icon i{
  margin-right: 05px !important;
}

}






