* {
    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; */
  }
  
  /* 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 */
    }
}

 

  .banner1 {
    height: 400px !important;
    width: 100%;
    /* z-index: 1; */
    /* Default visibility */
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.838)), url("https://i.pinimg.com/originals/7c/e9/e3/7ce9e34927261d3b035090cac779fec5.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);
  
  }
  
 .banner1 h1 {
    text-align: center !important;
    padding-top: 12%;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-text-color);
  }

@media (max-width: 768px) {
  .banner1 {
    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;
  }

  .banner1 h1 {
    padding-top: 25%;
    font-size: 35px;
  }
}












.pricing-content{
    width: 95%;
    height: 300px;
    border-bottom: 5px solid rgb(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;
}
@keyframes colors {
    0%{
    border-bottom: 5px solid rgb(3, 23, 248) ;

    }
    50%{
    border-bottom: 5px solid rgb(184, 184, 184) ;

    }
    100%{
    border-bottom: 5px solid rgb(162, 3, 248) ;

    }
}
.prcing-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
    
}


.pricing-content h1{
    font-weight: 700;
text-transform: uppercase;
}
.pricing-content .fa-check{
    border: 2px solid ;
    padding-top: 5px;
    width: 30px;
    height: 30px;
    color: white;
    background: var(--btn-color);
    border-radius: 50%;
    margin-right: -10px;
}

@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;
  }
}









.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: 50px;
    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;
  }
}




  .whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    padding: 10px;
    animation: pulse-w 2s infinite;
    box-shadow: 0 0 0 2em transparent;
  }
  
  /* Adding the same pulse keyframes */
  @keyframes pulse-w {
    0% {
      box-shadow: 0 0 0 0 #25d3658b;
    }
    100% {
      box-shadow: 0 0 0 30px transparent;
    }
  }






























  /* Apply the Asap Condensed font */

  
  .icon-box {
    text-align: center; /* Center-align content */
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 60px; /* Bottom margin for spacing */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Add transition for transform and background color */
    border: 2px solid transparent; /* Initial border */
    width: 340px; /* Fixed width */
    min-height: 300px; /* Fixed height */
    display: flex; /* Flexbox for vertical alignment */
    flex-direction: column; /* Stack items vertically */
    justify-content: space-between; /* Space items out */
    align-items: center; /* Center items horizontally */
    position: relative; /* Relative positioning for the icon */
  }
  
  .icon-box:hover {
    transform: scale(1.05); /* Scale up on hover */
    background-color: #e7f1ff; /* Change background color on hover */
    box-shadow: 0px 12px 21px -8px rgba(5,67,242,0.75);; /* Glowing effect */
  }
  
  .icon-box i {
    font-size: 2rem; /* Decreased icon size */
    color: #5252fd;
  
    position: absolute; /* Absolute positioning */
    top: -40px; /* Move icon above the box */
    left: 50%; /* Center icon horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    background-color: white; /* Background color for round border */
    border-radius: 50%; /* Round border */
    width: 70px; /* Fixed width for the border */
    height: 70px; /* Fixed height for the border */
    display: flex; /* Flexbox for centering icon */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    padding: 5px; /* Padding for the round border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: background-color 0.3s ease; /* Smooth background transition for icon */
  }
  
  .icon-box:hover i {
    background: var(--btn-h-color); /* Change icon background on hover */
    color: white; /* Change icon color on hover */
  }
  
  .icon-content {
    margin-top: 30px;
    flex-grow: 1; /* Allow content to grow */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
  }
  
  .icon-content h5 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .divider {
    height: 2px; /* Height of the divider */
    background:var(--btn-color) ; /* Color of the divider */
    margin: 10px auto; /* Center the divider */
    width: 80%; /* Width of the divider */
  }
  
  .icon-content p {
    margin: 5px 0; /* Adjusted margins */
    text-align: center; /* Center-align text */
  }
  
  .btn-learn-more {
    padding: 8px 20px;
    background: var(--btn-color);
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Add margin to the top of the button */
  }
  
  .btn-learn-more:hover {
    background:var(--btn-h-color);
    color: white;
  }
  