
*{
    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));
}
/* website scroll bar */
/* For vertical scrollbar */
body {
  overflow-x: auto;
  scroll-behavior: smooth;
  /* Make sure horizontal scrolling is enabled if needed */
}



  /* 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 */
    }
}

::-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; */
}


/* section-1 css start here */

.section-1 {


  /* margin-top: -100px; */
  height: 620px;
  width: 100% !important;
  display: flex;
  justify-content: center;
  padding-top: 200px;
  /* border: 2px solid #0000ff; */
  gap: 130px;
  background-image: linear-gradient(to right,rgba(109, 109, 249, 0.928), rgba(98, 94, 94, 0) ), url("./images/students.jpg");
  /* background: var(--btn-h-color); */
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 80%;
  border-bottom-right-radius:180% ;
  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);
  /* z-index: 1; */
}

.sec-1-content {
  margin-top: -130px;
  /* border: 2px solid red; */
  width: 550px;
  height: 500px;
  /* background-color: gray; */
  color: var(--light-text-color);
}
.sec-1-content h2{
  padding: 10px;
  text-transform: uppercase;
  font-size: 27px;
  /* text-align: left; */
  margin-left: -10px;
  font-weight: 900;
  font-size: 35px ;
  color: var(--light-text-color);
}

/* .sec-1-content p{
  padding-left: 20px;

} */
.sec-1-content ul {
  list-style: none; /* Remove default bullets */
  padding: 0;
 
}

.sec-1-content ul li {
  position: relative;
  padding-left: 30px; /* Add space for the tick mark */
}

.sec-1-content ul li::before {
  content: '★'; /* Unicode for star */
  position: absolute;
  color: white;
  left: 0;
  top: 0;
 
}

























.sec-1-img{
  /* border: 2px solid rgb(115, 255, 0); */
  margin-top: -160px;
  width: 400px;
  height: 500px;
  padding: 10px;
  
}
.sec-1-img img{
  height: 400px;
  margin-left: -130px;
  display: none;
}
.sec-1-content-btn{
  margin-top: 30px;
  width: 140px;
  height: 40px;
 border: none;
 background: var(--btn-color);
 color: var(--light-text-color);
margin-left: 10px;
border-radius: 1rem;
box-shadow: 0px 0px 73px 0px rgba(255,255,255,0.75);
-webkit-box-shadow: 0px 0px 73px 0px rgba(255,255,255,0.75);
-moz-box-shadow: 0px 0px 73px 0px rgba(255,255,255,0.75);
&:hover {
  background: var(--btn-h-color);
}

}
.points{
  display: flex;
  justify-content: space-between;
}



@media (max-width: 1024px) {
  .section-1 {
      flex-direction: column; /* Stack items vertically for tablet */
      padding-top: 100px; /* Adjust padding for better layout */
      gap: 50px; /* Reduce gap between elements */
  }

  .sec-1-content {
      width: 80%; /* Make content width responsive */
      height: auto; /* Adjust height */
  }
  .sec-1-content h2{
    font-size: 25px !important;
  }
  .sec-1-content p{
    font-size: 12px;
  }
  .sec-1-img {
      width: 80%; /* Adjust image width */
      height: auto; /* Adjust height */
      margin-left: 0; /* Center align image */
      margin-top: 0; /* Reset margin */
  }

  .sec-1-img img {
      height: auto; /* Adjust image height */
      width: 100%; /* Make image responsive */
      margin-left: 0; /* Center align */
  }

  .sec-1-content-btn {
       /* Make button full width */
      margin-left: 20; /* Reset margin for button */
font-size: 13px;
  width: 100px ;
  height: 40px;
margin-top: 05px;
  }
}

@media (max-width: 767px) {
  .section-1 {
       padding-top: 50px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      height:500px ;
     
  }
.points{
  display: flex;
  justify-content: left;
gap: 30px;
}
  .sec-1-content {
      width: 90%; /* Slightly increase width for small screens */
      height: 100px; /* Adjust height */
      margin-top: -370px; /* Reset margin */
      padding-left: 10px;
     
    }
    
    .sec-1-img {
    display: none;
      width: 90%; /* Adjust width for small screens */
      height: auto; /* Adjust height */
      margin-left: 0; /* Center align image */
  }

 
}


/* section-1 css end here *//* section-2 css start here */

.section-2 {
  height: 400px;
  width: 100%;
  /* border: 2px solid green; */
  margin-top: 20px;
  padding: 40px;
  box-sizing: border-box;
}

.section-2 h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 700;
}

.swiper {
  margin-top: 60px;
  width: 98%;
  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 */

/* calcultor */




.calcultor-section{
  font-family: 'Poppins', sans-serif;
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
            margin: 0;
            /* padding: 20px; */
            display: flex;
            justify-content: center;
            align-items: center;
            /* min-height: 100vh; */
            color: #212529;
}


 .calculator-container {
  margin-top: 30px ;
            background-color: white;
            border-radius: 10px;
           box-shadow: 0 0 30px rgba(0, 0, 0, 0.206);

            width: 100%;
            max-width: 900px;
          
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .form-section {
            flex: 1;
            min-width: 300px;
        }

        .price-section {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .calculator-title {
            color: #4361ee;
            text-align: center;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
            width: 100%;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-group {
            flex: 1;
            min-width: calc(50% - 15px);
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #212529;
            font-weight: 500;
            font-size: 14px;
        }

        .form-select {
            width: 100%;
            padding: 10px 12px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
        }

        .form-select:focus {
            outline: none;
            border-color: #4895ef;
            box-shadow: 0 0 0 3px rgba(72, 149, 239, 0.2);
        }

        .price-display {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            padding: 20px;
            border-radius: 8px;
            color: var(--font-color);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .price-item {
            text-align: center;
            flex: 1;
        }

        .price-label {
            font-size: 14px;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .price-amount {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            justify-content: center;
            align-items: baseline;
        }

        .price-currency {
            font-size: 16px;
            margin-left: 3px;
        }

        .button-container {
            display: flex;
            justify-content: center;
        }

        .order-button {
            background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
            text-transform: uppercase;
            width: 100%;
            max-width: 300px;
        }

        .order-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
        }

        @media (max-width: 768px) {
            .calculator-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .form-section, .price-section {
                width: 100%;
            }
            
            .form-group {
                min-width: 100%;
            }
            
            .price-display {
                flex-direction: column;
                gap: 15px;
            }
        }


















/* extra section *//* Reset and Base Styles */
.content-writing-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.content-writing-section {
    background-color: #f8fafc;
    color: #5252fd;
}

/* Container Styles */
.cw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.cw-section-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 82, 163, 0.08);
    overflow: hidden;
    position: relative;
}

/* Content Styles */
.cw-content {
    flex: 1;
    padding: 0px 60px;
    z-index: 1;
}

.cw-headline {
    color: #5252fd;
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.cw-headline span {
    position: relative;
    display: inline-block;
}

.cw-headline span:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #5252fd, #5d40a0);
    border-radius: 2px;
}

.cw-subheading {
    color: #5252fd;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 600;
}

.cw-text {
    color: #000000; /* Changed to black */
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cw-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #5252fd, transparent);
    margin: 40px 0;
}

/* Image Styles */
.cw-image-container {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.cw-main-image {
    position: absolute;
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.cw-small-image {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.cw-small-image:hover {
    transform: scale(1.08) rotate(-2deg);
    z-index: 10;
}

.cw-small-image-1 {
    top: 10%;
    left: -5%;
    z-index: 3;
}

.cw-small-image-2 {
    top: 40%;
    left: -8%;
    z-index: 2;
}

.cw-small-image-3 {
    top: 60%;
    left: -5%;
    z-index: 3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cw-section-wrapper {
        flex-direction: column;
    }

    .cw-content {
        padding: 40px 30px;
    }

    .cw-image-container {
        min-height: 400px;
        width: 100%;
    }

    .cw-small-image {
        width: 120px;
        height: 120px;
    }

    .cw-small-image-1 {
        top: 5%;
        left: 5%;
    }

    .cw-small-image-2 {
        top: 40%;
        left: 3%;
    }

    .cw-small-image-3 {
        top: 75%;
        left: 5%;
    }
}



































/* section-3 css start here */

.section-3 {
  height: 500px;
  /* border: 2px solid red; */
  padding-top: 20px;
  background-image: linear-gradient(to right, rgb(109, 109, 249), rgba(98, 94, 94, 0.774)),
    url("https://i.pinimg.com/564x/d5/9c/7e/d59c7ea55cc64b87ed26fcea1affe848.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 10px 29px -4px rgba(0, 0, 0, 0.75);
  background-attachment: fixed;
}

.section-3 h1 {
  padding-bottom: 50px;
  color: var(--light-text-color);
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-container1 {
  display: flex;
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: auto;
  justify-content: space-between;
  /* border: 2px solid green; */
}

.testimonial-container1 {
  overflow: hidden;
  background: #feffef69;
  border-radius: 8px;
  padding: 0px;
  margin-right: 90px;
  width: 350% !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slider1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide1 {
  min-width: 100%;
  padding: 0px 20px;
  padding-top: 0px;
  padding-bottom: 40px !important;
}

.stars span {
  font-size: 24px;
  color: #f39c12;
}

.review1 {
  font-size: 16px;
  margin: 5px 0;
  color: #555;
}

.person-name1 {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.designation1 {
  font-size: 14px;
}

/* Image Slider Styles */
.image-container1 {
  overflow: hidden;
  position: relative;
  padding: 20px;
  margin: auto !important;
}

.image-slider1 {
  display: flex;
  justify-content: space-between;
  transition: transform 0.5s ease-in-out;
}

.image-slide1 {
  min-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}

.image-slide1 img {
  object-fit: cover;
  background-position: 50%;
  width: 200px;
  height: 200px;
  max-width: 100%;
  border-radius: 50%;
}

/* Slider Navigation */
.slider-container1 button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-color);
  border: none;
  border-radius: 1rem;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-text-color);
  padding: 0 10px;
  z-index: 10;
}

.testimonial-container1 a {
  z-index: 2;
  overflow: hidden !important;
  position: relative !important;
}

.hire-btn {
  width: 100px;
  height: 40px;
  margin-left: 400px;
  font-size: 15px !important;
  background: var(--btn-color);
  color: var(--light-text-color);
  overflow: hidden;
}

.hire-btn:hover {
  background: var(--btn-h-color);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* ================== RESPONSIVE STYLES ================== */

@media (max-width: 1024px) {
  .section-3 {
    height: auto;
    padding: 30px 20px;
    background-attachment: scroll;
  }

  .section-3 h1 {
    font-size: 36px;
    padding-bottom: 30px;
  }

  .slider-container1 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonial-container1 {
    width: 100% !important;
    margin-right: 0;
    padding: 20px;
  }

  .image-slide1 img {
    width: 180px;
    height: 180px;
  }

  .hire-btn {
    margin-left: 0;
    width: 200px;
    margin: 20px auto 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .section-3 {
    height: auto;
    padding: 20px 15px;
    background-attachment: scroll;
  }

  .section-3 h1 {
    font-size: 28px;
    padding-bottom: 20px;
  }

  .slider-container1 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .testimonial-container1 {
    width: 100% !important;
    margin-right: 0;
    padding: 15px;
  }

  .testimonial-slide1 {
    padding: 10px;
  }

  .review1 {
    font-size: 14px;
  }

  .person-name1 {
    font-size: 16px;
  }

  .designation1 {
    font-size: 12px;
  }

  .image-slide1 img {
    width: 150px;
    height: 150px;
  }

  .hire-btn {
    /* width: 100%; */
    max-width: 600px;
    height: 40px;
    font-size: 14px;
    margin: 0px auto 0;
    display: block;
  }

  .slider-container1 button {
    font-size: 20px;
    padding: 6px 12px;
  }
}

/* section-3 css end here */


/* section -4 css start here */
/* section-4 css start here */
.section-4 {
  margin-top: 70px;
  padding: 0 20px;
}

.section-4 h1 {
  text-align: center;
  font-size: 50px;
  margin-top: 30px;
  margin-bottom: 90px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-4 .inside-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.section-4 .inside-services .services {
  width: 235px;
  height: 80px;
  background: var(--light-text-color);
  border-radius: 60px;
  box-shadow: 11px 10px 14px -7px rgba(82, 82, 253, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.section-4 .inside-services .services:hover {
  box-shadow: -10px -10px 14px -7px rgba(82, 82, 253, 0.75);
}

.section-4 .inside-services .services p {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000a2;
  margin: 0;
  cursor: pointer;
}

/* Remove left/right margin from first/last in responsive views */
.section-4 .inside-services :first-child,
.section-4 .inside-services :last-child {
  margin-left: 0;
  margin-right: 0;
}

/* ------------ Responsive CSS --------------- */
@media (max-width: 1024px) {
  .section-4 h1 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .section-4 .inside-services {
    gap: 20px;
  }

  .section-4 .inside-services .services {
    width: 200px;
    height: 70px;
  }

  .section-4 .inside-services .services p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .section-4 h1 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .section-4 {
    height: 1600px !important;
    margin-bottom: 130px !important;
    
  }

  .section-4 .inside-services {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .section-4 .inside-services .services {
    width: 90%;
    max-width: 300px;
    height: 65px;
  }

  .section-4 .inside-services .services p {
    font-size: 11px;
  }
}
/* section-4 css end here */

/* section-5 css start here */
.section-5{
  height: 750px;
  width: 100%;
  
  /* border: 2px solid red; */
  margin-top:250px;
  background-image: linear-gradient(to right,rgba(255, 255, 255, 0.822), rgba(255, 255, 255, 0.88) ), url("https://i.pinimg.com/564x/b4/c0/5a/b4c05a4f6fbfb48a23ab253211885586.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0px 10px 9px -4px rgba(255, 255, 255, 0.75);
-webkit-box-shadow: 0px 10px 9px -4px rgba(255, 255, 255, 0.75);
-moz-box-shadow: 0px 10px 9px -4px rgba(255, 255, 255, 0.75);
}
.section-5 H1{
  text-align: center;
  font-size: 50px;
  padding-top: 30px;
  /* margin-bottom: 90px; */
text-transform: uppercase;font-weight: 700;
color: #5252fd;
}
.section-5 .inside-pakages{
display: flex;
justify-content: space-evenly;
/* border: 2px solid green; */
width: 100%;
height: 650px;
}
.section-5 .inside-pakages .packages{
  margin-top: 60px;
  height: 550px;
  width: 260px;
  color: white;
  background: var(--btn-color);
  /* border: 2px solid yellow; */
  /* border-radius: 50px 50px 50px 50px; */
border-radius: 20px;
}
.section-5 .inside-pakages .packages .packages-header{
  height: 50px;
  width: 95%;
  margin: auto;
  margin-top: 35px;
  /* border: 2px solid blue; */
  background: white;
  border-radius: 10px;
  color: #3498db;
 
}

.section-5 .inside-pakages .packages .packages-header h4{
  /* font-family:italic; */
  color: transparent;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  /* border: 2px solid; */
  text-align: center;
  padding-top: 10px;
  background: var(--btn-h-color);
  




  
  background-clip: text;
  /* -webkit-background-clip: text; */
  color: transparent;
  cursor: pointer;
  word-spacing: 7px;
 
  
}
 .heading-pac {
border: 2px solid rgb(255, 255, 255);
background: white;
color: #5252fd;
text-transform: uppercase;
font-size: 12px;
/* padding-left: 60px; */
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
text-align: center;
width: 70%;
margin: auto;
margin-bottom: 10px;
font-weight: 700;

}


.packages-name {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  width: 100%;
  cursor: pointer;
  position: relative; /* Needed for absolute positioning of pseudo-elements */
}

.packages-name::before,
.packages-name::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  transition: background 0.3s ease; /* Smooth transition for background */
  z-index: 1; /* Make sure it's above the default background */
}

.packages-name:hover::before {
  height: 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.33); /* Example hover effect */
}

.packages-name .packages-btn {
  /* margin-top: 5px; */
  width: 90px;
  height: 30px;
  border: none;
  border-radius: 20px;
  background: white;
  color: black;
  font-size: 12px;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
  z-index: 2; /* Make sure the button is above the pseudo-elements */
 
}

.packages-name:hover .packages-btn {
 
  opacity: 1; /* Show button on hover */
}





/* Responsive adjustments for mobile view */
@media screen and (max-width: 768px) {
  .section-5 {
    height: auto;
    margin-top: 180px !important;
    background-attachment: scroll;
    overflow-x: hidden;
  }

  .section-5 H1 {
    font-size: 30px;
    padding-top: 20px;
  }

  .section-5 .inside-pakages {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 20px;
    padding-bottom: 30px;
  }

  .section-5 .inside-pakages .packages {
    margin-top: 0px;
    width: 90%;
    height: auto;
    padding-bottom: 15px;
  }

  .section-5 .inside-pakages .packages .packages-header {
    margin-top: 20px;
  }

  .heading-pac {
    font-size: 10px;
    width: 80%;
  }

  .packages-name {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    gap: 5px;
  }

  .packages-name p {
    font-size: 14px;
  }

  .packages-name .packages-btn {
    width: 80%;
    height: 35px;
    font-size: 14px;
    opacity: 1;
    margin-top: 5px;
  }

  .packages-name:hover::before {
    background: none;
  }
}













.parallax-section {
            min-height: 80vh;
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 50px 20px;
            padding-bottom: 20px !important;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(rgba(82, 82, 253, 0.978), rgba(93, 64, 160, 0.803)), 
                        url('https://img.freepik.com/free-vector/paper-style-white-monochrome-background_52683-66443.jpg?t=st=1748591481~exp=1748595081~hmac=15cac77314cdc6beb06044492584e9189aa21f288fde4b2ed943847d72e96a15&w=1060');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -2;
            transform: translateZ(0);
        }

        .main-content {
            /* max-width: 1200px; */
            width: 100%;
            padding: 40px 10px;
            z-index: 1;
            /* border: 2px solid red; */
        }

        .section-header {
            margin-bottom: 60px;
            color: white !important;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 700;
            /* color: #fff !important; */
            line-height: 1.2;
            /* text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4); */
        }

        .highlight {
            /* color: black; */
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: rgb(255, 255, 255) !important;
            /* max-width: 1200px; */
            margin: 0 auto ;
            line-height: 1.8;
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 60px 0;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            /* height: 400px; */
            padding: 10px 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: left;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        }

        .benefit-card:hover {
            transform: translateY(-12px);
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .benefit-icon {
            font-size: 30px;
            margin-bottom: 30px;
            color: whitesmoke;
        }

        .benefit-title {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
            color: #fff;
        }

        .benefit-desc {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.8;
            margin-bottom: 15px;
        }
/* 
        .cta-container {
            margin-top: 60px;
        } */

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.7rem;
            }
            
            .section-subtitle {
                font-size: 1.15rem;
            }
            
            .main-content {
                padding: 25px;
            }
            
            .benefits-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .benefit-card {
                padding: 35px 25px;
            }
            
            .cta-button {
                padding: 18px 40px;
                margin: 10px 0;
                display: block;
                width: 100%;
            }
        }













































































.book-section {
      padding: 60px 0;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    }

    .book-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
    }

    .book-wrapper {
      display: flex;
      flex-direction: column;
    }

    .book-cover {
      position: sticky;
      top: 100px;
      align-self: flex-start;
      width: 100%;
      max-width: 400px;
      perspective: 2000px;
      margin-bottom: 40px;
      z-index: 1;
    }

    .book-vector {
      width: 120%;
      height: 110%;
      /* margin-top: 100px !important; */
      object-fit: contain;
      /* filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2)); */
    }
    .book {
      position: relative;
      width: 100%;
      height: 350px;
      transform: rotateY(-10deg);
      transition: transform 0.6s ease, box-shadow 0.6s ease;
      transform-style: preserve-3d;
      /* box-shadow: 15px 15px 40px rgba(0,0,0,0.15); */
    }

    .book:hover {
      transform: rotateY(0deg) scale(1.02);
      /* box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2); */
    }

    .book-front {
      position: absolute;
      width: 100%;
      height: 100%;
      /* background: linear-gradient(45deg, #5252fd 0%, #5d40a0 100%); */
      /* background-color: rgba(255, 255, 255, 0); */
      border-radius: 5px 15px 15px 5px;
      transform: translateZ(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      padding: 30px;
      box-sizing: border-box;
      text-align: center;
    }

    .book-spine {
      position: absolute;
      width: 40px;
      height: 100%;
      background: linear-gradient(45deg, #3d3dbb 0%, #4a2f8a 100%);
      transform: rotateY(90deg) translateX(-20px);
      border-radius: 5px 0 0 5px;
     
    }

    .book-top {
      position: absolute;
      width: 100%;
      height: 40px;
      /* background: rgba(255,255,255,0.1); */
      transform: rotateX(90deg) translateY(-20px);
      transform-origin: top;
      border-radius: 5px 5px 0 0;
    }

    .book-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
      /* text-shadow: 2px 2px 4px rgba(0,0,0,0.2); */
    }

    .book-subtitle {
      font-size: 1rem;
      opacity: 0.9;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .book-pages {
      position: absolute;
      right: -25px;
      width: 50px;
      height: 96%;
      top: 2%;
      /* background: #f8f8f8; */

      border-radius: 0 3px 3px 0;
      /* box-shadow: inset 5px 0 15px rgba(0,0,0,0.1); */
       display: none;

    }

    .book-content {
      width: 100%;
      max-width: 600px;
    }

    .content-title {
      font-size: 1.8rem;
      color: #5252fd;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }

    .content-title:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #5252fd, #5d40a0);
      border-radius: 2px;
    }

    .intro-text {
      color: #333;
      line-height: 1.7;
      margin-bottom: 25px;
      font-size: 1.05rem;
    }

    .content-features {
      margin: 30px 0;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #5252fd, #5d40a0);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
      color: white;
      font-size: 1.2rem;
    }

    .feature-text h3 {
      color: #5252fd;
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .feature-text p {
      color: #555;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .cta-button {
      display: inline-block;
      background: linear-gradient(to right, #5252fd, #5d40a0);
      color: white;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 20px;
      box-shadow: 0 5px 15px rgba(82, 82, 253, 0.3);
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(82, 82, 253, 0.4);
    }

    .book-dots {
      position: absolute;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(82,82,253,0.1) 0%, rgba(82,82,253,0) 70%);
      border-radius: 50%;
      top: -30px;
      left: -30px;
      z-index: 0;
    }

    /* Desktop Layout */
    @media (min-width: 992px) {
      .book-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
      }

      .book-cover {
        width: 45%;
        max-width: none;
        margin-bottom: 0;
      }

      .book {
        height: 450px;
      }

      .book-content {
        width: 50%;
        padding-left: 50px;
        max-width: none;
      }

      .content-title {
        font-size: 2rem;
      }

      .book-title {
        font-size: 2.5rem;
      }

      .book-subtitle {
        font-size: 1.2rem;
      }
    }

    /* Mobile Friendly */
    @media (max-width: 991px) {
      .book-cover {
        position: static;
      }
    }






































/* section 5 end here *//* section 6 start here */
.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;s
   
  }

  .accordion-left,
  .accordion-right {
    width: 100% !important;
  }
  .accordion-right {
   margin-top: -53px;
  }


  .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;
}

}


.section-7{
  /* border: 2px solid black; */
  width: 80%;
  border-radius: 30px;
  /* margin-left: 130px; */
  /* margin-top: 20px; */
  margin: 20px auto;
  padding-top: 20px;
  padding-bottom: 10px;
  box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.189);

} 
.section-7 h1{
  text-align: center;
  font-size: 50px;
  /* margin-top: -20px; */
  margin-bottom: 30px;
text-transform: uppercase;font-weight: 700;
}
.payment-slider {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 10px;
  /* padding-left: 100px; */
  overflow: hidden;
  /* animation: scrolling 8000Ms linear infinite; */

}
.payment-slider img{
height: 100px;
aspect-ratio: 3/2;
object-fit: contain;
}

@media (max-width: 768px) {
  .section-7 {
    width: 90%;
    padding: 15px 10px;

  }

  .section-7 h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .payment-slider {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .payment-slider img {
    height: 60px;
    margin: 0 !important;
    padding: 0 !important;
  }
}





@keyframes scrolling {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }

}











/* Process Section Styles */
        .process-section {
            padding: 50px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 3;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #5252fd;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            animation: fadeInDown 1s ease;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #d8d8ff, #d8d8ff);
            border-radius: 2px;
  box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.189);

            animation: stretch 1.5s ease;
        }
        
        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeIn 1.5s ease;
        }
        
        /* Process Steps */
        .process-steps {
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .process-line {
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #5252fd, #5d40a0);
            z-index: 1;
            transform-origin: top;
            animation: growLine 2s ease-out forwards;
        }
        
        .step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .step:nth-child(1) { animation-delay: 0.3s; }
        .step:nth-child(2) { animation-delay: 0.6s; }
        .step:nth-child(3) { animation-delay: 0.9s; }
        .step:nth-child(4) { animation-delay: 1.2s; }
        
        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #5252fd, #5d40a0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-right: 30px;
            box-shadow: 0 10px 30px rgba(82, 82, 253, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-number:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }
        
        .step-number:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(82, 82, 253, 0.4);
        }
        
        .step-number:hover:after {
            left: 100%;
        }
        
        .step-content {
            background: #f9f9ff;
            border-radius: 15px;
            padding: 30px;
            flex: 1;
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(82, 82, 253, 0.2);
            border-color: #d1d1ff;
        }
        
        .step-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #5252fd, #5d40a0);
            transition: all 0.6s ease;
        }
        
        .step-content:hover:before {
            height: 100%;
        }
        
        .step-title {
            color: #5252fd;
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .step-content:hover .step-title {
            color: #3a3a9e;
            transform: translateX(5px);
        }
        
        .step-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .step-content:hover .step-description {
            color: #444;
        }
        
        .step-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #5d40a0;
            transition: all 0.3s ease;
            min-width: 30px;
            text-align: center;
        }
        
        .step-content:hover .step-icon {
            transform: scale(1.2);
            color: #5252fd;
        }
        
        /* Decorative Elements */
        .process-dots {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(82,82,253,0.1) 0%, rgba(82,82,253,0) 70%);
            border-radius: 50%;
            bottom: -50px;
            right: -50px;
            z-index: 1;
            animation: pulse 4s infinite ease-in-out;
        }
        
        .process-dots:nth-child(2) {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
            animation-delay: 0.5s;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes stretch {
            from { width: 0; }
            to { width: 80px; }
        }
        
        @keyframes growLine {
            from { height: 0; }
            to { height: 100%; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 0.4; }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .step-number {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
            }
            
            .step-content {
                padding: 25px;
            }
            
            .step-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .step {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                margin-bottom: 30px;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
            }
            
            .process-line {
                left: 35px;
            }
            
            .step-title {
                font-size: 1.2rem;
            }
            
            .step-icon {
                margin-right: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .process-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 40px;
            }
            
            .step-content {
                padding: 20px;
            }
            
            .step-description {
                font-size: 0.95rem;
            }
        }




































.section-8 {
      padding: 0px 20px;
      padding-bottom:40px ;
      position: relative;
      background: #ffffff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .counter-wrapper {
      background: linear-gradient(145deg, #5252fd, #2a2a7a);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 80px 40px;
      position: relative;
      border-radius: 20px;
      max-width: 1400px;
      margin: 0 auto;
      box-shadow: 0 30px 60px -15px rgba(82, 82, 253, 0.3);
      overflow: hidden;
    }

    .counter-wrapper::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
      animation: rotateGradient 15s linear infinite;
      z-index: 1;
    }

    .counter {
      text-align: center;
      color: white;
      z-index: 2;
      width: 200px;
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .counter:hover {
      transform: translateY(-15px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }

    .counter .count {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 5px;
      background: linear-gradient(to right, #ffffff, #e0e0ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.3s ease;
      position: relative;
    }

    .counter .count::after {
      content: '+';
      position: absolute;
      right: -15px;
      font-size: 0.6em;
      top: 10px;
      opacity: 0.8;
    }

    .counter p {
      z-index: 2;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.9);
      padding: 0 25px;
      margin-top: 5px;
    }

    /* Decorations */
    .counter::before {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      top: -15px;
      right: -15px;
      z-index: -1;
    }

    .counter::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      bottom: -10px;
      left: -10px;
      z-index: -1;
    }

    /* Animations */
    @keyframes rotateGradient {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .counter-wrapper {
        gap: 30px;
        padding: 60px 30px;
      }
      
      .counter {
        width: 180px;
        height: 180px;
      }
      
      .counter .count {
        font-size: 42px;
      }
    }

    @media (max-width: 992px) {
      .counter-wrapper {
        gap: 25px;
        padding: 50px 20px;
      }
      
      .counter {
        width: 160px;
        height: 160px;
      }
      
      .counter .count {
        font-size: 36px;
      }
      
      .counter p {
        font-size: 13px;
        letter-spacing: 1px;
      }
    }

    @media (max-width: 768px) {
      .counter-wrapper {
        gap: 20px;
        padding: 40px 15px;
      }
      
      .counter {
        width: 140px;
        height: 140px;
      }
      
      .counter .count {
        font-size: 32px;
      }
      
      .counter p {
        font-size: 12px;
        padding: 0 15px;
      }
    }

    @media (max-width: 576px) {
      .section-8 {
        padding: 60px 0;
      }
      
      .counter-wrapper {
        gap: 30px;
        padding: 40px 10px;
      }
      
      .counter {
        width: 120px;
        height: 120px;
      }
      
      .counter .count {
        font-size: 28px;
      }
      
      .counter p {
        font-size: 10px;
        letter-spacing: 0.5px;
      }
    }











.slider-container {
  
  position: relative;
  width: 90%;
  margin: 20px auto 150px;
  
}

.testimonial-slider {
  display: flex;
  /* overflow-x: hidden; */
  scroll-behavior: smooth;
  padding: 10px 0;
  /* -webkit-overflow-scrolling: touch; */

   /* overflow: hidden; */
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;





    display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  /* margin-bottom: 250px; */
  /* border: 2px solid red; */
}
.testimonial-h{
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
}
.testimonial-slide {
  flex-shrink: 0;
    scroll-snap-align: start !important;
  width: 300px;
  height: 320px;
  margin-right: 20px;
  padding: 20px;
  border: 1px solid #c7c3c3;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonial-slider .dragging {
  cursor: grabbing;
}


.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-content {
  text-align: left;
}


.rating {
  font-size: 1.2em;
  color: gold;
  margin-bottom: 5px;
}
.name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.designation {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555;
}

.review{
  color: #00000079;
}
.progress-container {
  width: 80%;
  height: 5px;
  background-color: #ddd;
  border-radius: 5px;
  /* margin-top: 80px; */
  top: 370px;
left: 100px;
  position: absolute;
  bottom: 0; /* Position it at the bottom */
}

.progress-bar {
  height: 100%;
  width: 0px;
  background: var(--btn-color);
  border-radius: 5px;
  transition: width 0.5s ease;
}


@media (max-width: 768px) {
  .testimonial-h {
    font-size: 30px;
    padding: 0 10px;
  }

  .testimonial-slide {
    width: 260px;
    height: auto;
    padding: 15px;
    margin-right: 15px;
  }

  .slider-container {
    width: 95%;
    margin-bottom: 100px;
  }

  .review {
    font-size: 14px;
  }

  .progress-container {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 480px) {
  .testimonial-slide {
    width: 230px;
    padding: 12px;
  }

  .profile-pic {
    width: 40px;
    height: 40px;
  }

  .name, .designation {
    font-size: 1em;
  }

  .review {
    font-size: 13px;
  }

  .testimonial-h {
    font-size: 26px;
  }
}





















.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: 30px;
  }
  .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-10 {
  height: 900px; /* Fixed height */
  margin: 0 20px 100px 20px !important;
  
  padding: 30px;
  display: flex;
  /* margin-bottom: 130px !important; */
  justify-content: center;
  gap: 30px;
  border-radius: 40px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
  position: relative;
}

.sec-left, .sec-right {
  padding: 20px;
  width: 50%;
  border-radius: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
  height: 580px; /* Fixed height */
  overflow-y: scroll;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; 
  -ms-overflow-style: auto;
}
.sec-left::-webkit-scrollbar,
.sec-right::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}


.sec-left p {
  font-size: 18px;
}

.sec-right ul {
  list-style: none;
}

.sec-right ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.sec-right ul li::before {
  content: "•"; 
  color: rgb(0, 47, 255);
  font-size:25px; 
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .section-10 {
    flex-direction: column; /* Stack items on small screens */
    height: auto; /* Allow content to dictate height */
  }

  .sec-left, .sec-right {
    width: 100%; /* Full width on small screens */
    height: auto; /* Allow content to dictate height */
  }
}

.section-11{
  height: 400px;
}
.section-10-h h1{
  text-align: center;
  margin-top: -300px !important;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
}


@media (max-width: 768px) {
  .section-10 {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .sec-left, .sec-right {
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow-y: auto;
  }

  .section-10-h h1 {
    font-size: 22px;
    margin-top: 40px !important;
    padding: 0 15px;
    text-align: center;
  }

  .section-10-h a {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .btn-19 {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .section-10-h h1 {
    font-size: 18px;
    line-height: 1.4;
  }

  .btn-19 .text-container .text {
    font-size: 13px;
  }
}




.btn-19,
.btn-19 *,
.btn-19 :after,
.btn-19 :before,
.btn-19:after,
.btn-19:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-19 {
  -webkit-tap-highlight-color: 
  transparent;
  -webkit-appearance: button;
  background-color: 
black;
background-image: none;
color: 
white;
/* margin-left: 300px; */
cursor: pointer;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
font-size: 100%;
font-weight: 900;
line-height: 1.5;
/* margin: 0; */
-webkit-mask-image: -webkit-radial-gradient(#000, #fff);
/* padding: 0; */
text-transform: uppercase;
border: 2px solid black;
}
.btn-19:disabled {
  cursor: default;
}
.btn-19:-moz-focusring {
  outline: auto;
}
.btn-19 svg {
  display: block;
  vertical-align: middle;
}
.btn-19 [hidden] {
  display: none;
}
.btn-19 {
  margin:30px auto;
  display: flex;
  /* justify-content: center; */
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}
.btn-18 .text-container,
.btn-19 {
  overflow: hidden;
  position: relative;
}
.btn-18 .text-container {
  display: block;
}
.btn-18 .text {
  display: block;
  mix-blend-mode: difference;
  position: relative;
}
.btn-18:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}
@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80%);
  }
  51% {
    transform: translateY(-80%);
  }
  to {
    transform: translateY(0);
  }
}
.btn-19 span {
  mix-blend-mode: difference;
}
.btn-19 .text-container {
  display: block;
  overflow: hidden;
  position: relative;
}
.btn-19 .text {
  display: block;
  mix-blend-mode: difference;
  position: relative;
}
.btn-19:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}
@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(80%);
  }
  51% {
    transform: translateY(-80%);
  }
  to {
    transform: translateY(0);
  }
}
.btn-19:after,
.btn-19:before {
  background: linear-gradient(
    90deg,
    #fff 25%,
    transparent 0,
    transparent 50%,
    #fff 0,
    #fff 75%,
    transparent 0
  );
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 100%));
  transition: transform 0.2s ease;
}
.btn-19:after {
  --progress: -100%;
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    #fff 0,
    #fff 50%,
    transparent 0,
    transparent 75%,
    #fff 0
  );
  z-index: -1;
}
.btn-19:hover:after,
.btn-19:hover:before {
  --progress: 0;
}



















































