/* Style carousel images */
body{
    font-family: "Poppins",sans-serif;
}
.carousel-control-prev, .carousel-control-next {
    width: 65px; /* बटन का एरिया */
    opacity: 1; /* हमेशा साफ़ दिखेगा */
}
.carousel-control-prev i, .carousel-control-next i {
display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    color: #ffffff !important; /* तीर का सफ़ेद रंग */
    
    /* असली ग्लासमोर्फिज़्म इफ़ेक्ट */
    background: rgba(255, 255, 255, 0.15) !important; 
    backdrop-filter: blur(10px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(130%) !important;
    
    /* स्मूथ बॉर्डर्स और ग्लो */
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    
    /* एनीमेशन स्पीड */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
    left: 100px;
}
.carousel-item {
    height: 85vh;
    overflow: hidden; /* Ken Burns effect ke liye zaroori hai */
}

/* Ken Burns Effect (Image zoom animation) */
.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1.1);
    transition: transform 7s ease-in-out; 
}

.carousel-item.active img {
    transform: scale(1);
}

/* Captions Alignment & Animation */
.carousel-caption {
    bottom: 50% !important;
    transform: translateY(50%);
    padding: 20px;
    left: 0% !important;
    right: 0% !important;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 25px auto;
    animation: fadeInUp 1.2s ease;
    opacity: 0.9;
}

/* Premium Button */
.crbtn {
    background: #fb7915 !important;
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: 0.3s;
    animation: fadeInUp 1.4s ease;
}

.crbtn:hover {
    background: #e65c00 !important;
    transform: scale(1.05);
}

/* Custom Arrows */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


  
  /* Section Styling */
  .section2 {
    padding: 50px 0;
    background-color: transparent;
    background: linear-gradient(to right,rgb(90, 90, 212),rgb(43, 101, 226));
    
    text-align: left;
  }
  
  /* Styling for the card items in the slick-slider */

   /* Custom Styles */
   .section2 .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    margin: 10px;;
    height: auto;
    /* width: 100% !important; */
  }

  .section2 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15); /* Shadow intensifies on hover */
  }

  .section2 .card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    padding: 10px;
    padding-top: 15px;
  }


  .section2 .card-body {
    padding: 10px !important;
    background-color: #f9f9f9;
    border-radius: 0 0 20px 20px;
  }

   .section2 .card-title {
    font-size: 14px;
    font-weight: 700 !important;
    color: #333;
    margin-top: 0;
    text-align: center;
    margin-bottom: 15px;
  }

   .section2 .card-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
  }

  .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    background-color: indigo;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 9px;
    font-size: 35px;
    border-radius: 51px;
    border: 2px solid rgb(0, 81, 255);
}
  .slick-prev:before {
    font-family: 'slick';
    font-size: 20px;
    background-color: indigo;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 9px;
    font-size: 35px;
    border-radius: 51px;
    border: 2px solid rgb(0, 81, 255);
}


.section2 .btn{
  background-image: linear-gradient(to right, #003ad0, #0471f2) !important;
  color: white;
  border: none;
  width: 100%;
  font-size: 14px;
  padding: 7px 0px;
}
.section2  i{
  margin-right: 5px;;
  display: inline-block;
}


  /* General styles */
  .faqs-section{
    background: linear-gradient(to right,rgb(90, 90, 212),rgb(43, 101, 226));
    padding:50px;
  }
  .faqs-section .title{
    font-size:40px;
    color:white;
  }
#FAQ {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;

}

.accordian {
width: 100%;
max-width: 1250px;
margin: 0 auto;

border-radius: 8px;
}

.item {
background-color: #e7ecf5;
margin-bottom: 10px;
padding: 15px 20px;
border-radius: 8px;
position: relative;
transition: background-color 0.3s ease;
}

.item.selected {
background-color: #ffffff;
}

.item::after {
content: "";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
/* background-color: #06965c; */
}

.FAQ-title {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-weight: 600;
font-size: 28px;
color: #131414;
}

.faqQuestion {
font-size: 15px;
color: #131414;
text-align: start;
}

.FAQ-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
font-weight: 400;
font-size: 15px;
line-height: 1.6;
color: #131414;
}

.FAQ-content.show {
max-height: 9999px;
transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
background: #ffffff;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-weight: 600;
}

.FAQ-ShowMore {
text-align: center;
margin-top: 20px;

}

.FAQ-ShowMore button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: navy;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 15px;
transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
background-color: #8ee0c4;
color: black;
font-weight: 700;
}






.section4 {
  /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
  color: #fff;
  /* padding: 80px 0; */
  
}




h1.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

p.section-description {
  font-size: 18px;
  color: black;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.crbtn {
  background: linear-gradient(135deg, #2AB97E 0%, #2AB97E 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.crbtn i {
  margin-right: 10px;
}

.crbtn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #00c6ff 0%, #0056b3 100%);
}

.crbtn:focus {
  outline: none;
}







.wrapper{
  width:100%;
  padding-top: 20px;
  text-align:center;
}
.wrappers .plan {
  
    transition: ease-in 0.2s;
      color: white;
      width: 100px;
    
  }
  
.wrappers{
  padding: 60px 0;
}

.wrappers main {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 10px 20px;
}



.wrappers .header {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 10px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.wrappers .switch {
position: relative;
display: inline-block;
width: 50px;
height: 25px;
vertical-align: -40%;
margin-right: 5px;
}

.wrappers .switch input {
display: none;
}

.wrappers .slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--color-1);
border-radius: 34px;
transition: 0.1s;
}

.wrappers .slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 28px;
bottom: 3px;
background-color: white;
border-radius: 50%;
transition: 0.1s;
}

.wrappers input:checked + .slider:before {
transform: translateX(-25.2px);
box-shadow: 0 0 2px #2196f3;
}

.wrappers input:checked + .slider {
background-color: var(--color-2);
}
.mcbook{
width: 300px;
height: auto;
}

.wrappers .decorated {
display: inline-block;
color: var(--color-1);
font-size: 18px;
white-space: nowrap;
position: relative;
}
.booknow {
background-image: linear-gradient(to right, #0471f2, #003ad0); /* Apply the gradient from left to right */
color: white; /* Text color */
padding: 10px 20px; /* Button padding */
font-size: 14px; /* Font size */
border: none; /* Remove default border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Change cursor to pointer */
text-align: center; /* Center the text */
transition: background-image 0.3s ease; /* Smooth transition on hover */

}

.booknow:hover {
background-image: linear-gradient(to right, #003ad0, #0471f2); /* Reverse the gradient on hover */
}

.wrappers .decorated::after {
content: "";
display: block;
width: 100%;
height: 80px;
left: -10px;
bottom: -47px;
position: absolute;
background-image: url("https://assets.codepen.io/9277864/underline-1.svg");
background-repeat: no-repeat;
transform: rotate(6.19rad);
}

.wrappers .pricing-plan {
display: flex;
gap: 30px;
flex-wrap: wrap;
}

.wrappers .plan {

border-radius: 10px;

padding: 23px;
min-width: 220px;
flex: 1;
display: flex;
justify-content: space-between;
gap: 16px;
flex-direction: column;
}

.wrappers .plan:hover,
.wrappers .button:hover {
transform: scale(1.009);
}

.wrappers .price {
display: flex;
align-items: flex-start;
gap: 7px;
margin-bottom: 20px;
}

.wrappers .whole {
font-weight: bold;
font-size: 35px;
}

.wrappers .cent {
font-weight: bold;
}

.wrappers .button {
color: white;
text-decoration: none;
background-color: var(--color-1);
display: inline-block;
width: 100%;
text-align: center;
padding: 9px 20px;
border-radius: 6px;
box-shadow: 1px 0 4px rgba(0, 0, 0, 0.4);
margin-bottom: 20px;
}

.wrappers .title {
font-weight: 600;
margin-bottom: 12px;
}

.wrappers ul {
list-style-type: none;
}

.wrappers ul li {
margin-bottom: 8px;
}



.wrappers .first-cut {
display: flex;
flex-direction: column;
}

.wrappers .best {
position: relative;
}

.wrappers .popular {
position: absolute;
top: -65px;
right: -57.5px;
width: 100px;
height: 200px;
overflow: hidden;
transform: rotate(-45deg);
}

.wrappers .inner {
transform: rotate(45deg);
background-color: #00ba96;
width: 100px;
height: 100px;
top: 20px;
left: -50px;
position: relative;
border-top-right-radius: 10px;
}



.wrappers .popular p {
font-weight: bold;
font-size: 18px;
transform: rotate(46deg) translate(50px, -4px);
color: white;
}

.wrappers li:last-child {
display: flex;
align-items: flex-end;
}

.wrappers li:last-child::before {
align-self: center;
}

.wrappers .label {
display: inline-block;
margin-right: 5px;
padding: 4px 12px;
background-color: #445566;
color: white;
border-radius: 6px;
}

.wrappers .tooltip:hover {
cursor: help;
}
.wrappers .plan1 {
   background-color:#fae8ff;

   color:black;
  }
.wrappers .plan2 {
   background-color:#dcfce7;

   color:black;
  }
.wrappers .plan3 {
  background-color:#4a52f7;
color: white;


  }
  .wrappers .title{
    font-size: 14px;
  }


    

.sec-title2{
color:#fff;
}
.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: #d7a449;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}

/* Styling for Section 4 */
.section4 {
  padding: 50px 0;
  background-color: #e1e4e6; /* Light blue background for the section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section4 .container {
  max-width: 1200px; /* Limit the width of the container */
}

.section4 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* Ensure the layout is responsive */
}

.section4 .col-md-6 {
  flex: 1;
  padding: 20px;
}

.section4 img {
  max-width: 100%; /* Ensure the image is responsive */
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.section4 h1 {
  font-size: 36px;
  font-weight: bold;
  color:#2AB97E;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}

.section4 p {
  font-size: 18px;
  color:black;
  line-height: 1.6;
  margin-bottom: 30px;
}

.crbtn {
  background-image: linear-gradient(to right, #2AB97E, #2AB97E) !important; /* Reverse the gradient on hover */
  color: white; /* White text */
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
a{
  text-decoration: none !important;
}

.crbtn i {
  margin-right: 10px;
}
.carousel {
  scroll-behavior: smooth;
}


.crbtn:hover {
  background-color: #0f75b5; /* Darker blue on hover */
  transform: translateY(-3px); /* Lift effect on hover */
}
.secimg{
  width:75%;
  height: 500px;
}
.left-fixed {
  position: fixed;
  z-index: 1;

 bottom: 10%; /* Align to the left side */
  transform: translateY(-50%); /* Center the image vertically */
  width: 50px; /* Set the width for the left image */
}

.right-fixed {
  position: fixed;
  bottom: 10%;  /* Align to the left side */
transform: translateY(-50%); /* Center the image vertically */
right:0;
width: 50px; /* Set the width for the left image */
z-index: 2;
}

@media screen and (min-width:300px) and (max-width:768px) {
  .secimg{
    width: 100%;
    height: auto;
  }
  .section2 .card-body {
    padding: 20px !important;
    background-color: #f9f9f9;
    border-radius: 0 0 20px 20px;
  }
.right-fixed{
  bottom: 15%;
}
.left-fixed{
  bottom: 15%;
}
  
  .carousel-caption h1{
    font-size: 21px;
    color:#ffc107;
  }
  .carousel-caption p{
    font-size: 16px;
    font-weight: normal;
   
  }
  .carousel-item img{
    height: 60vh;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
}
.section2{
  padding: 5px;
}
.section4 h1{
  font-size: 22px;;
  margin-bottom: 13px;
        margin-top: 12px;
        text-align: left;
}
.section4 {
padding: 10px 0;
}
.section4 p{
  margin-bottom: 0px;
}
.section4 p{
  font-size: 14px;;
}
.crbtn{
  text-align: center !important;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 20px;;
  margin-bottom: 20px;;
}
.section4 .col-md-6{
  padding: 5px;;
}
.about-section{
  padding: 20px;;
}
.image-column img{
  width: 100%;
height: 300px !important;
}

.about-section .image-column .inner-column{
  margin-left: 0px;;
}
.sec-title .title {
  font-size: 15px;;
}
.about-section .content-column .inner-column {
  padding-right: 0px;;
  padding-top: 0px;
}

.whole {
text-align: center !important;
}
.wrappers .plan {
    
  transition: ease-in 0.2s;
padding: 20px;;
width: 100%;
  
}
ol, ul {
  padding-right: 0px !important;
}
.whychose .col-lg-3{
  margin-top:10px;
  margin-bottom:10px;
}
.whychose .col-lg-3 .card{
  height: auto;
}
.whychose .section-title{
  font-size: 30px  !important;
  margin-bottom: 0px;;
}
body,html{
  overflow-y: none;
  overflow-x: hidden;
}
.faqs-section{
  padding: 5px;
padding-bottom: 22px;;
}
.testimonials{
  padding: 15px;
}
.test-sec{
  padding: 0px  !important;
 
}
.faqs-section .title{
  font-size: 23px;
  text-align: center;
  margin-top: 20px;
}
.pcolimg img{
  width: 100% !important;
}
 .trust-section{
    padding:10px 10px !important;
  }
.carousel-inner{
  /* height: 70vh; */
}
.carousel-item{
  height: auto;
}
.carousel-caption {
    bottom: 39% !important;
}
   .nav-item.service-dropdown:hover .dropdown-menu {
              opacity: 1;
              visibility: visible;
              transform: translateY(0);
          }
          .navbar-light .navbar-nav .nav-link {
             color: black !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 10px !important;
    margin: 1px !important;
    text-transform: capitalize;
    position: relative;
    transition: color 0.3s ease;  
        }
        .testimonial-section{
          padding: 20px 0px !important;
        }
        .testimonial-lead-text h2 {
        font-size: 25px !important;
        }
        .testimonial-lead-text p {
        font-size: 14px;
        }
        .testimonial-card {
        margin: 0px !important;
        padding: 20px !important;
        }
        .quote-icon

 {
      font-size: 2rem !important;
 }
 .span{
  font-size: 22px;;
 }
     .pricings {
        padding: 20px 0px !important;
    }
.faqs-section{
  padding: 0px 10px !important;
}
.cardssection {
  padding: 20px 0px !important;
}
     .whychose {
        padding: 20px 0 !important;
    }
    h1,h2{
      font-size: 22px !important;
    }
.faqs-section .title{
  margin-bottom: 15px !important;
}

}

@media screen and (min-width:300px) and (max-width:400px) {
  .carousel img{
    /* height: 70vh; */
  }
  .carousel-caption h1 {
        font-size: 21px;
    }
  .carousel-caption p{
    font-size: 14px;;
  }
}

@media screen and (min-width:768px) and (max-width:820px) {
  .FAQ-ShowMore {
    text-align: center;
    margin-top: 0px !important;
 

    }
  .test-sec{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
 .section2{
    padding: 80px;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
} 
.carousel-caption h1{
  font-size: 30px;;
}
.carousel-caption p{
  font-size:18px;;
}

.carousel-item img{
  height: 45vh;;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}
.image-column img{
width: 716px !important;
height: 450px !important;
}
.crbtn{
  width: 35%;
}
.section4{
  margin-top: 20px;;
}
.section4 img{
  width: 100%;
}
.whychose .col-lg-3{
  margin-top: 10px;;
  margin-bottom: 10px;;
}
.faqs-section .title{
  font-size: 30px;
}
}
@media screen and (min-width:820px) and (max-width:1022px)  {
  .image-column img {
    width: 644px !important;
    height: 511px !important;
}
}

@media screen and  (min-width:1024px) and (max-width:1366px) {

  .section2{
    padding: 80px;;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
} 
.carousel-caption h1{
  font-size: 30px;;
}
.carousel-caption p{
  font-size:18px;;
}

.carousel-item img{
  height: 45vh;;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}

.crbtn{
  width: 65%;
}
.section4{
  margin-top: 20px;;
  padding: 25px;
}
.section4 img{
  width: 100%;
}
.payment-input-group input {
  padding-right: 0px;;
}
}


/* pricings */

 .pricings {
    background: radial-gradient(circle at top left, #112540, #050d18);
    padding: 50px 0;

    overflow: hidden;
  }

  /* Vertical Alignment Fix for Rows */
  .pricings .row {
    align-items: center;
  }

  /* Title Styling */
  .pricings .pricing-title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #fff;
  }

  .pricings .pricing-title span {
    color: #2AB97E;
  }

  /* Checklist Container */
  .pricing-checklist {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .span{
    text-transform: uppercase !important;
  }

  /* Modern List Item Box Look */
  .pricing-checklist li {
    font-size: 15px;
    color: #a0aec0;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* Hover effect on Checklist boxes */
  .pricing-checklist li:hover {
    background: rgba(42, 185, 126, 0.03);
    border-color: rgba(42, 185, 126, 0.4);
    transform: translateX(8px); /* Smooth nudge forward */
    color: #ffffff;
  }

  /* Premium Icon styling */
  .pricing-checklist i {
    margin-right: 15px;
    font-size: 12px;
    background-color: rgba(42, 185, 126, 0.1);
    color: #2AB97E;
    padding: 8px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
  }

  .pricing-checklist li:hover i {
    background-color: #2AB97E;
    color: #fff;
    box-shadow: 0 4px 12px rgba(42, 185, 126, 0.3);
  }

  /* Premium Image Container with Glow Background */
  .pcolimg {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  /* Glowing background element behind the image */
  .pcolimg::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: -10px;
    background: rgba(42, 185, 126, 0.15);
    filter: blur(25px);
    border-radius: 24px;
    z-index: 1;
  }

  .pcolimg img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
  }

  /* Micro animation on image hover */
  .pcolimg:hover img {
    transform: scale(1.02);
  }

  /* Responsive styling fixes */
  @media (max-width: 991px) {
    .pricings .colsp {
      margin-top: 40px;
    }
  }

  @media (max-width: 768px) {
    .pricings {
      padding: 60px 15px;
    }
    .pricings .pricing-title {
      font-size: 28px;
      line-height: 36px;
      text-align: center;
      margin-bottom: 25px;
    }
    .pcolimg img {
      width: 100%;
    }
    .pricing-checklist li {
      padding: 12px 15px;
      font-size: 14px;
    }
  }

  /* faq */

    .faqs-section {
    background: radial-gradient(circle at top right, #112540, #050d18);
    padding: 80px 20px;
  }

  #FAQ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* Section Title styling */
  .faqs-section .title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 45px;
    text-align: center;
  }

  .faqs-section .title span {
    color: #2AB97E;
  }

  .accordian {
    width: 100%;
  }

  /* Premium Accordion Item */
  .faqs-section .item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover & Selected States */
  .faqs-section .item:hover {
    border-color: rgba(42, 185, 126, 0.4);
    background: rgba(255, 255, 255, 0.04);
  }

  .faqs-section .item.selected {
    background: rgba(42, 185, 126, 0.04);
    border-color: #2AB97E;
    box-shadow: 0 10px 25px rgba(42, 185, 126, 0.08);
  }

  /* FAQ Header / Title Clickable Area */
  .FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
  }

  .faqQuestion {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: start;
    transition: color 0.3s ease;
  }

  .faqs-section .item.selected .faqQuestion {
    color: #2AB97E;
  }

  /* Modern Smooth Expand/Collapse Magic */
  .FAQ-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .faqs-section .item.selected .FAQ-wrapper {
    grid-template-rows: 1fr;
  }

  .FAQ-content {
    overflow: hidden;
  }

  .FAQ-content p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #a0aec0;
    margin: 0;
    padding-top: 15px;
  }

  /* Interactive Expand/Collapse Toggle Button */
  .expandToggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .faqs-section .item:hover .expandToggle {
    border-color: #2AB97E;
    color: #2AB97E;
  }

  .faqs-section .item.selected .expandToggle {
    background: #2AB97E;
    border-color: #2AB97E;
    color: #fff;
    transform: rotate(135deg); /* Rotates '+' to look like '×' */
  }

  /* Premium "See More" Button Styling */
  .FAQ-ShowMore {
    text-align: center;
    margin-top: 25px;
  }

  .FAQ-ShowMore button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(42, 185, 126, 0.4);
    border-radius: 8px;
    background: transparent;
    color: #2AB97E;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .FAQ-ShowMore button:hover {
    background-color: #2AB97E;
    color: white;
    box-shadow: 0 8px 20px rgba(42, 185, 126, 0.3);
    border-color: #2AB97E;
  }

  /* Hidden items logic - Fixed to prevent JQuery Clashes */
  .faqs-section .item.hidden-faq {
    display: none !important;
  }

  /* Responsive fixes */
  @media (max-width: 768px) {
    .faqs-section {
      padding: 50px 15px;
    }
    .faqs-section .title {
      font-size: 28px;
      line-height: 36px;
      margin-bottom: 30px;
    }
    .faqQuestion {
      font-size: 15px;
    }
    .faqs-section .item {
      padding: 15px 18px;
    }
  }



/* General Section Styling */
.contact1 {
  padding: 50px 0;
  background-color: #f4f7fc;
}

/* Section Title Styling */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.contact1 form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;

  max-width: 600px;
  margin: 10px auto;
}
.card1s{
  border-color: #8ACBF380;
    border-color: #8ACBF380;
   border-radius: 14px 14px 14px 14px;
    box-shadow: 3px -3px 25px 0px rgba(203, 233, 255, 0.6) inset;
border-width: 1px ;
border-style: solid;
 
    border-width: 1px 1px 1px 1px;
  border-top-width: 1px;
    border-right-width: 1px;
  border-bottom-width: 1px;
    border-left-width: 1px;
}
.cards2{
  border-color: #8ACBF380;
  border-color: #8ACBF380;
 border-radius: 14px 14px 14px 14px;
  box-shadow: 3px -3px 25px 0px rgba(203, 233, 255, 0.6) inset;
border-width: 1px ;
border-style: solid;

  border-width: 1px 1px 1px 1px;
border-top-width: 1px;
  border-right-width: 1px;
border-bottom-width: 1px;
  border-left-width: 1px;
  padding:1rem
}

/* Form field styles */
.form-control {
  border-radius: 4px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: #007bff; /* Blue border when focused */
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); /* Blue focus shadow */
}
.contact-form:hover {
  transform: translateY(-10px); /* Subtle hover effect */
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 25px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

.contact-form button {
  /* background-color: #0056b3;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease; */
}
.contact-btn {
  background-color: #0056b3;
  width: 100%;
  color: #fff;
}
.contact-form button:hover {
  background-color: #004494;
  transform: translateY(-2px);
}

.contact-form button:active {
  transform: translateY(1px); /* Active button effect */
}

/* Contact Info Styling */
.contact-info {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Contact Item Styling */
.contact-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  align-items: center;
  justify-content: start;
}

.contact-item i {
  font-size: 26px;
  color: white;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0056b3;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.contact-item i:hover {
  background-color: #004494;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 14px;
    color: #666;
}



@media (min-width: 768px) and (max-width: 1024px) {
  .contact1 {
      padding: 60px 0;
  }

  .contact-form,
  .contact-info {
      padding: 30px;
  }

  .contact-item {
      flex-direction: row;
      text-align: left;
  }
}

.fa-envelope{
  padding:15px;
}

.whychose {
  padding: 40px 0;
  background-color:rgb(34, 33, 33);
}

.whychose .section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.whychose .card {
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  background-color: #fff;
  height:280px;
}

.whychose .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.whychose .card-body {
  padding: 35px;
}

.whychose .icon-container {
  display: inline-block;
  background-color: #0056b3; /* Icon background color */
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
  
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.whychose i{
  
  display:block;
  margin-left: -2px;
  margin-top:2px

}

.whychose .icon-container:hover {
  background-color: #c0392b; /* Icon hover background color */
}

.whychose .card-title {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.whychose .card-text {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.5;
}


.section1 {
    background-color: #000000; /* प्योर ब्लैक बैकग्राउंड */
    padding: 60px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
padding: 100px;
  }

  .section1 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* मुख्य हेडिंग */
  .section1 h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 50px;
  }

  /* ब्रेडक्रंब रैपर */
  .custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #0d111a; /* डार्क नाइट फिनिश कैप्सूल */
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(56, 182, 255, 0.15); /* हल्का स्काई ब्लू ग्लो */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    list-style: none;
    margin: 0;
  }

  /* ब्रेडक्रंब के अंदर का टेक्स्ट और लिंक्स */
  .custom-breadcrumb p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #aaaaaa;
  }

  /* होम लिंक स्टाइल */
  .breadcrumb-link {
    text-decoration: none;
    color: #ffffff !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .breadcrumb-link i {
    color: #2AB97E;
    font-size: 14px;
  }

  .breadcrumb-link:hover {
    color: #38b6ff !important;
    transform: translateY(-1px);
  }

  .breadcrumb-separator {
    color: #555555;
    font-size: 12px;
  }


  .breadcrumb-current {
    color: #2AB97E; 
    font-weight: 600;
  }

  /* मोबाइल रिस्पॉन्सिव */
  @media (max-width: 576px) {
    .section1 {
      padding: 45px 0;
    }
    .section1 h1 {
              font-size: 20px;
        margin-bottom: 12px;
        margin-top: 36px;
    }
    .custom-breadcrumb {
      padding: 8px 18px;
    }
    .custom-breadcrumb p {
      font-size: 14px;
    }
    .contact-item div a {
        font-size: 12px !important;
    }
  }

  