
*{
    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; /* 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/04/29/72/0429722fff58863a95104e37eea5ed44.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: 40px;
    border-bottom-right-radius: 40px;
    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);
  }


@media (max-width: 768px) {
  .banner {
    height: 250px !important;
    background-attachment: scroll; /* Fixed background ko disable kiya mobile ke liye */
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
    padding: 0 15px;
  }

  .banner h1 {
    padding-top: 25%;
    font-size: 35px;
  }
}


  .pricing-content{
    width: 95%;
    height: 400px;
    border-bottom: 5px solid rgba(0, 0, 0, 0) ;
    /* margin-top: 20px; */
    padding-top: 50px  ;
    padding-left: 100px;
    padding-right: 100px;       
    text-align: center;
    border-radius: 50px;
    margin: 20px auto;
    /* animation: colors 0.9s ease-in-out infinite; */
}

.prcing-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
    
}


.pricing-content h1{
    font-weight: 700;
    font-size: 30px;
text-transform: uppercase;
color: #000;
}

@media (max-width: 768px) {
  .pricing-content {
    width: 90%;
    height: auto;
    padding: 30px 20px;
    border-radius: 30px;
  }

  .prcing-icons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pricing-content h1 {
    font-size: 24px;
  }

  .pricing-content .fa-check {
    width: 25px;
    height: 25px;
    font-size: 14px;
    margin-right: 0;
  }
}



  /* Styling for testimonial grid */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
  max-width: 1200px;
}

.testimonial-card {
  width: 30%;
  padding: 20px;
  margin: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(3, 41, 255, 0.408);
}

.testimonial-title {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.stars {
  color: #f1c40f;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.user-info {
  font-size: 15px;
  font-weight: bold;
  color: #34495e;
}

.location {
  margin-left: 8px;
  font-size: 14px;
  color: #95a5a6;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}

.pagination button {
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 16px;
  font-weight: bold;
  background: var(--btn-color);
  color: white;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination button:hover {
  background-color: var(--btn-h-color);
  transform: translateY(-5px);
}

.pagination button:disabled {
  background-color: #bdc3c7;
  cursor: not-allowed;
}

#pageIndicator {
  font-size: 18px;
  margin: 0 15px;
  font-weight: bold;
  color: #2c3e50;
}


/* Submit Testimonial Button */
.submit-testimonial {
  text-align: center;
  margin-top: -205px;
}

#submitTestimonialBtn {
  background: var(--btn-color);
  color: white;
  padding: 12px 25px;
  margin-top: 120px;
  border: none;
  font-size: 16px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#submitTestimonialBtn:hover {
  background-color: var(--btn-h-color);
  transform: translateY(-12px);
}


/* ✅ Responsive Media Queries */
@media (max-width: 1024px) {
  .testimonial-card {
    width: 45%;
    margin: 10px auto;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    margin: 10px 0;
  }

  .testimonial-title {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .stars {
    font-size: 16px;
  }

  .pagination {
    flex-direction: column;
    gap: 15px;
  }

  #submitTestimonialBtn {
  margin-top: 160px;
 
    width: 80%;
    max-width: 300px;
  }
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Darker black w/ opacity */
}
/* Scrollbar styles for WebKit browsers */
.modal::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

.modal::-webkit-scrollbar-track {
  background: transparent; /* Track color */
}

.modal::-webkit-scrollbar-thumb {
  background: transparent; /* Thumb color */
  border-radius: 10px; /* Roundness of the thumb */
}

.modal::-webkit-scrollbar-thumb:hover {
  background: transparent; /* Thumb color on hover */
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%); /* Gradient background */
  margin: 90px auto; /* 10% from the top and centered */
  /* padding-left: 30px;
  padding-right: 30px; */
padding: 30px;
  border-radius: 15px; /* More rounded corners */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Deeper shadow effect */
  width: 90%; /* Full width */
  max-width: 500px; /* Limit max width */
  max-height: 900px !important;
  position: relative; /* Positioning for close button */
}

/* Close button styles */
.close {
  color: #ff4d4d; /* Red color */
  float: right; /* Align to the right */
  font-size: 30px;
  display: flex;
  justify-content: right;
  font-weight: bold;
  cursor: pointer; /* Pointer cursor on hover */
}

.close:hover,
.close:focus {
  color: #ff1a1a; /* Darker red on hover */
  text-decoration: none;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between form elements */
}

label {
  font-weight: bold; /* Bold labels */
  color: #333; /* Darker text color */
 
}

input[type="text"],
textarea {
  padding: 2px;
  border: 1px solid #ddd;
  border-radius: 8px; /* Rounded corners */
  transition: border-color 0.3s; /* Smooth transition */
}

input[type="text"]:focus,
textarea:focus {
  border-color: #5252fd; /* Green border on focus */
  outline: none; /* Remove default outline */
  box-shadow: 0 0 5px rgba(2, 44, 254, 0.5); /* Glow effect */
}

.modal-content button {
  background: var(--btn-color); /* Green background */
  color: white; /* White text */
  padding: 10px 0px; /* Increased padding */
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Larger font size */
  transition: background-color 0.3s; /* Smooth transition */
}
#title ,#location{
  height: 25px;
  width: 250px;
}
.inside-lable{
  display: flex;
  gap: 100px;
  
}
.inside-option{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.modal-content button:hover {
  background:var(--btn-h-color) ; /* Darker green on hover */
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.487); /* Shadow effect */
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .modal-content {
      width: 95%; /* Full width on small screens */
      padding: 20px; /* Reduced padding */
  }
   .inside-lable {
    flex-direction: column;
    gap: 15px;
  }

  .close {
    top: 10px;
    right: 15px;
    font-size: 26px;
  }
}


.section-9 {
  /* padding-top: -100px !important; */
  height: 300px;
  /* width: 500px; */
  /* height: 400px; */
  border: 2px solid transparent;
 
  z-index: 50;
  background-image: linear-gradient(to right, rgba(109, 109, 249, 0.695), rgba(98, 94, 94, 0.774)), url("https://i.pinimg.com/564x/5d/2d/95/5d2d955df2895ca18dec554b0e716042.jpg");
  background-repeat: no-repeat;
  background-position:  center;
  background-size: cover;
  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.504);
}



.section-9 h1 {
  text-align: center;
  font-size: 50px;
  margin-top: -100px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  /* color: #000; */
}

.section-9 .contact-des {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* border: 2px solid yellow; */
  height: 50px;
  /* color: #e0e0e0; */
  
}

.section-9 .contact-des .whatup {
  background-color: white;
  color: #000;
  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.395);
  
  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 {
  background-color: white;
  color: #000;
  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:; */
  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;
}




/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .section-9 {
    height: auto;
    padding: 0px 20px;
  }

  .section-9 h1 {
    font-size: 32px;
    margin-top: 0;
  }

  .section-9 h2 {
    font-size: 24px;
  }


 
}















.section-3{
  height: 1000;
  width: 100%;
  /* border: 2px solid green; */
  /* margin-top: 150px; */
  padding: 50px;
  /* gap: 40px; */
}
.section-3 h1{
  color: #000;
  font-size: 40px ;
  text-align: start;
  padding-left: 20px;
  padding-top: 20px;
}
.section-3 p{
 padding-top: 10px;
 padding-left: 20px;
 padding-right: 50px;
font-size: 18px;
}

.firt-sec-3 {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 50, 249, 0.247);
  position: relative;
  overflow: hidden; /* Ensures the pseudo-element stays inside the container */
}

/* Adding the rotating border effect */
.firt-sec-3::before ,.third-sec-3 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  border: 5px solid transparent;
  box-sizing: border-box; /* Ensures the borders are sized properly */
  border-left-color: #5252fd;
  border-bottom-color: #5252fd;
  
  animation: rotateBorder 2s linear infinite; /* Applying animation */
}

@keyframes rotateBorder {
  0% {
    border-left-color: #5252fd;
    border-bottom-color: #5252fd;
    border-right-color: transparent;
    border-top-color: transparent;
  }
  25% {
    border-left-color: transparent;
    border-bottom-color: #5252fd;
    border-right-color: #5252fd;
    border-top-color: transparent;
  }
  50% {
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: #5252fd;
    border-top-color: #5252fd;
  }
  75% {
    border-left-color: #5252fd;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #5252fd;
  }
  100% {
    border-left-color: #5252fd;
    border-bottom-color: #5252fd;
    border-right-color: transparent;
    border-top-color: transparent;
  }
}
#heading{
  color: #5252fd !important;
}

.second-sec-3{
  /* border: 2px solid rgb(13, 0, 255); */
  height: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 50, 249, 0.247);
  position: relative;
  overflow: hidden; /* Ensures the pseudo-element stays inside the container */
}
.third-sec-3{
  /* border: 2px solid rgb(18, 185, 59); */
  height: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 50, 249, 0.247);
  position: relative;
  overflow: hidden; /* Ensures the pseudo-element stays inside the container */

}
.forth-sec-3{
  /* border: 2px solid rgb(255, 0, 0); */
  height: 300px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 50, 249, 0.247);
  position: relative;
  overflow: hidden; /* Ensures the pseudo-element stays inside the container */

}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  .section-3 h1 {
    font-size: 28px;
    padding-left: 10px;
  }

  .section-3 p {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
  }

  .firt-sec-3,
  .second-sec-3,
  .third-sec-3,
  .forth-sec-3 {
    height:auto;
  }
}

