* {
    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.695), rgba(16, 16, 16, 0.774)), url("https://i.pinimg.com/originals/7b/cb/a5/7bcba55187df137b234567a0337e27df.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-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 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);
}
.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;
  }
}


/* section 5 end here */



 .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 */
}
/* section 5 end here */.extra-content {
  height: 720px;
  width: 95%;
  margin: 60px auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
}

.inside-extra-content {
  width: 100%;
  height: 350px;
  padding: 5px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.inside-extra-content .left-c {
  width: 50%;
  height: 100%;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
}

.inside-extra-content .right-c {
  width: 50%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
}

.bottom-c {
  height: 260px;
  width: 100%;
  margin-top: 40px;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.43);
}

.extra-content h1 {
  text-align: center;
  padding-top: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

.extra-content p {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .extra-content {
    height: auto;
    padding: 15px;
  }

  .inside-extra-content {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }

  .inside-extra-content .left-c,
  .inside-extra-content .right-c {
    width: 100%;
    height: auto;
  }

  .bottom-c {
    height: auto;
    margin-top: 20px;
  }
}



.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;
  }

  .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;
    }
  }





@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;
  }
}













