body {
    font-family: 'Syne', sans-serif !important;
  }
  
  /* .carousel-item {
    position: relative;
    z-index: -9999;
  } */

  
  /* Darken the images slightly with a stronger overlay */
  .carousel-item img {
    object-fit: cover;
    height: 90vh; /* Makes the images fill the screen height */
    background-color: transparent;
    width: 100%; /* Ensure it takes full width */
    display: block;
    filter: brightness(30%);
  }
  .carousel-inner {
    transition: transform 1s ease-in-out !important;
  }

  .carousel-item {
    transition: transform 1s ease-in-out !important;
  }

  /* Optional: To make the images transition smoothly */
  .carousel-item img {
    transition: transform 1s ease-in-out;
  }
  
  /* Darker overlay effect */
  .carousel-item {
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%); /* Dark gradient from top to bottom */
    opacity: 1; /* Ensure full opacity for content */
    transition: background 0.3s ease, border-radius 0.3s ease;
    position: relative; /* Needed for the overlay */
  }
  
  /* Dark overlay for the carousel item */

a{
  text-decoration:none;
}
  
  
  /* Align the text to the left and add some unique styling */
  .carousel-caption {
    position: absolute;
    top: 50%; /* Adjusted for more vertical centering */
    left: 10%; /* Placing the text to the left of the image */
    transform: translateY(-50%); /* Keep text centered vertically */
    text-align: left;
    color: white;
    /* z-index: 10; */
    padding: 50px;;
   max-width: 50%;
  }
  
  .carousel-caption h1 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px; /* Add some letter-spacing for a unique effect */
    text-align: left; /* Ensure text is aligned to the left */
    margin-bottom: 20px;
    font-weight: 600;
  }
  
  .carousel-caption p {
    font-size: 19px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* Style the button */
  .carousel-caption button {
    display: inline-block;
    margin-top: 0px;
    padding: 12px 30px;
   
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px;
    transition: background-color 0.3s ease;
  }
  .carousel-caption .crbtn{
     background-color: #EFA23F;
  }
  .carousel-caption .crbtn2{
    background-color: transparent;
    border: 1px solid white ;
  }
  .carousel-caption button:hover {
    background-color: #e65c00;
  }
  
  /* Apply smooth transition to carousel */
  .carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition effect */
  }
  
  /* Apply fade transition to the carousel */
  .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .carousel-fade .carousel-item.active {
    opacity: 1;
  }
  
  /* Custom arrows */
  .previcon, .previnext {
    background-color: rgba(153, 58, 3, 0.7) !important; /* Dark background for arrows */
    border-radius: 50%;
    padding: 12px;
 
    font-size: 24px;
    color: white;
    width: auto;
    transition: background-color 0.3s ease;
  }
  
  .previcon:hover, .previnext:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darker on hover */
  }
  
  .previcon {
    position: relative;
    left: -80px;
  }
  
  .previnext {
    position: relative;
    left: 80px;
  }
  
  .carousel-item {
    position: relative;
  }

  /* Section styling */
.section1 {
    background-position: center;
    background-repeat: repeat;
    background-size: 47% auto;
    background-color: #2E3588;
    padding: 40px 0;
    height: auto;
  }
  
  /* Heading and subtitle styling */
  .section1 .section-heading {
    font-size: 18px;
    font-weight: bold;
    color: #fff0f0;
    text-align: left;
    margin-bottom: 10px;
  }
  
  .section1 .main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 30px;
  }
  
  /* Column inside col-lg-8 */
  .section1 .col-lg-8 {
    /* padding-left: 60px;
    padding-right: 60px; */
  }

  /* Service card styling */
  .section1 .service-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    background-color: #3a438d;
    transition: transform 0.5s, background-color 0.5s, box-shadow 0.5s;
    position: relative;
    overflow: hidden;
    margin-top:10px;
    border: 1px solid #3a438d;
  }
  
  .section1 .service-card:hover {

    background-color: orangered;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Image styling inside service cards */
  .section1 i {

    margin-bottom: 20px;
    margin-top: 10px;;
    border: 2px solid white;
    padding: 15px;
    color: white;
    font-size: 30px;
    display: block;
    width: 65px;;
    height: 65px;;
    transition: transform 0.6s ease-in-out; /* Smooth transition */
    border-radius: 50%;
  }
  .fa-shield-halved{
    display: block;
    margin-top: 10px;;
  }
  .section1 i:hover {
    transform: rotate(360deg); /* 360-degree rotation on hover */
  }
  

  /* Title and description styling inside cards */
  .section1 .service-title {
    font-size: 19px;
    font-weight: 600;
    color: #fffcfc;
    margin-bottom: 10px;
  }
  
  .section1 .service-description {
    font-size: 14px;
    color: #fffafa;
    line-height: 1.6;
  }
  
  /* Divider line styling */
  .section1 .divider {
    width: 60px;
    height: 2px;
    background-color: orangered;;
    margin: 15px auto;
  }
.section1 .divider:hover{
    background-color: #2E3588;
}
.section1 .main-image{
    border-radius: 5px;;
    height: 600px;
    object-fit: cover;
    width: 600px;

}


  /* Section styling */
  .section2 {
  

    padding: 50px 0;
    border-radius: 10px;
    /* background-image: url('images/k35jyb.png');
    background-position: center center;
    background-size: 47% auto; */
    
  }

  /* Positioning "Step 1" on top of the image */
  .section2 .position-relative {
    position: relative;
  }

  .section2  .step-text {
    position: absolute;
    top: 1px;
    left: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #EFA23F;
    padding: 10px 25px;
    color:white;
    border-radius: 0px;
    z-index: 10;
  }

  /* Styling the image */
  .section2 .img-fluid {
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Styling the main title (Consultation) */
  .section2  .main-title {
    font-size: 2rem;
    font-weight: normal;
    margin-top: 20px;
    color: rgb(39, 35, 35);
    text-transform: uppercase;
    text-align: center;
  }

  /* Styling the paragraph (Description) */
  .section2 .description {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
  }
  .section2 h6{
    text-align: center;
    font-weight: 700;
    font-size: 20px;;
  }
  .section2 h1{
    text-align: center;
font-size: 40px;;
margin-bottom: 30px;
font-weight: 600;
  }

  .section4 {
    background-color: #2E3588; /* Section background color */
    padding: 40px 0; /* Padding for the section */
    color: white; /* Text color */
    background-image: url('images/bgs.png');
    background-position: center;
    background-repeat: no-repeat;
  }

  .section4 h3 {
    font-size: 24px;
    font-weight: bold;
margin-top:20px;

  }

  .section4 i {
    background-color: orangered; /* Icon background color */
    color: white; /* Icon color */
    padding: 10px; /* Padding inside icons */
    border-radius: 50%; /* Rounded border radius for icons */
    margin-right: 10px; /* Space between icon and text */
    border: 2px solid white; /* White border around icons */
    font-size:20px;
  }

  .section4 p {
    font-size: 25px;
    margin: 10px 0;
  }




  /* Adjust for smaller screens */
  @media screen and (max-width: 768px) {
    .section4 h3 {
      font-size: 20px;
    }

    .section4 .col-lg-6 {
      /* margin-bottom: 20px; */
    }

    .section4 i {
      padding: 8px; /* Smaller padding on mobile */
    }
  }

  .section5 {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
 
  
  .section5 h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .sec5col {
    margin-top: 50px;
  }
  
  .section5 p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .colimgs {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
  }
 
  .section5 .card {
    margin-bottom: 20px;
    border: none;
    border-radius: 0px;;
  }
  
  .bg-info {
    background-color: #2e3cd8 !important ;
    height: 200px;;
    width: 330px;;
    text-align: center;
  }
  .row1{
    position: relative;
    top: -23px;;
  }
  
  .bg-info h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 40px;;
  }
  
  .bg-info h4 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .last-img-container {
    background-color: #f1f1f1; /* Light background for the small image container */
  }
  
  .img2 {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .section5 .service-item {
    margin-bottom: 30px;
  }
  
  .section5 .service-item img {
    margin-right: 20px;
    
  }
  
  .section5 .service-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .section5 .service-item p {
    font-size: 14px;
    color: #555;
  }

  .section6 {
    padding: 0px 0;
    background-color: #f9f9f9; /* Light background for the section */
  }
  
  .section6  .card {
    background-color: #f0f8fa;
    display: block;
    text-align: center;
    border-radius: 8px;

    padding: 20px;
    height: 380px;;
    border-bottom: 4px solid orangered;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); 
    /* z-index: 1; */
    transition: transform 0.5s ease all, box-shadow 0.5s ease all;
    margin-bottom: 20px;;
  }
  
  .section6 .col-lg-3 .card {
    transition: background-color 0.5s ease , color 0.5s ease ; /* Smooth transition */
  }
  
  .section6 .col-lg-3 .card:hover {
    background-color: #2e3cd8;
    color: white !important; /* Change text color to white */
  }
  
  .section6 .col-lg-3 .card:hover h3, /* Target heading inside card */
  .section6 .col-lg-3 .card:hover p, /* Target paragraph inside card */
  .section6 .col-lg-3 .card:hover button { /* Target button inside card */
    color: white !important; /* Ensure text inside the card is white on hover */
  }
  
  
  .section6 .card img {
    width: 90px;;
    display: block;

    margin: auto;
    height: auto;
    border-radius: 10%;
    padding: 15px;
  
  }
  .section6 h5{
    
  }
  .crimg{
    border:2px solid #1814e0; display:inline-block;  border-radius: 50%;
       background-color: white;

  }
  .crimg:hover{
    /* background-color: white; */
  }
  
  .section6  .card h3 {
    font-size: 21px;
    color: #333; /* Text color */
    margin-top: 15px;
  }

  
  .section6  .card p {
    font-size: 14px;
    color: #666; /* Text color */
    margin-top: 10px;
  }
  .section6 .sec6btn{
    padding: 12px 24px ;
    border: none;
    outline: none;
    background-color: #020b6d;
    color: white;
    width: 80%;
    border-radius: 2px;;
    transition: 0.5s ease all;
  }
.section6 .sec6btn:hover{
  background-color: #EFA23F;
}


.contact {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.contact .form-container{
  border: 1px solid #1814e0;
}
.contact .cnt1s .card{
border: none;}

.contact h6 {
  font-size: 18px;
  color: orangered;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact .cnt2s .card{
border: none;
padding: 35px;;
margin-top: 7px;;
/* border: 1px solid #1814e0; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 5px solid orangered;
}


.contact h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  max-width: 100%;
}
.form-container input{
  margin-bottom:15px;
}

.form-control {
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: dodgerblue;
  box-shadow: 0 0 5px dodgerblue;
}


textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact button {
background-color: #020b6d;
padding: 13px 25px;
border: none;
width: auto;
margin-top: 12px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
border-radius: 5px;
color: white;
}

.contact button:hover {
background-color: #1e90ff;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(30, 144, 255, 0.6);
}

.contact button::after {
content: '';
position: absolute;
background: rgba(255, 255, 255, 0.6);
border-radius: 50%;
transform: scale(0);
pointer-events: none;
width: 100px;
height: 100px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0);
transition: transform 0.6s ease, opacity 0.6s ease;
}

.contact button:hover::after {
transform: translate(-50%, -50%) scale(4);
opacity: 0;
}

@keyframes ripple {
0% {
transform: translate(-50%, -50%) scale(0);
opacity: 1;
}
100% {
transform: translate(-50%, -50%) scale(4);
opacity: 0;
}
}

.abouts {
  padding: 10px;
  background-image:url('images/slider-bg.jpg');
  background-size:cover;
  background-repeat:no-repeat;
}
.abouts img{
  border-radius:10px;
  margin-top: 50px;;
}


.bokservice{
background-color: #020b6d;
padding: 13px 25px;
border: none;
/* width: 20%; */
margin-top: 12px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
border-radius: 5px;
color: white;
}

.bokservice:hover {
background-color: #1e90ff;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(30, 144, 255, 0.6);
}

.bokservice::after {
content: '';
position: absolute;
background: rgba(255, 255, 255, 0.6);
border-radius: 50%;
transform: scale(0);
pointer-events: none;
width: 100px;
height: 100px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(0);
transition: transform 0.6s ease, opacity 0.6s ease;
}

.bokservice:hover::after {
transform: translate(-50%, -50%) scale(4);
opacity: 0;
}

@keyframes ripple {
0% {
transform: translate(-50%, -50%) scale(0);
opacity: 1;
}
100% {
transform: translate(-50%, -50%) scale(4);
opacity: 0;
}
}

.bokservice i{
  margin-left:5px;
}

.experience-info {
  position: relative;
  top: -5%;
  left: 73%;
  transform: translate(-50%, -50%);
  background-color: orangered;
  color: white;
  text-align: center;
  padding: 20px;
  width: 30%;
  border-radius: 10px;
}

.experience-info h2 {
  font-size: 3em;
  margin: 0;
  color:white !important;
}

.experience-info p {
  font-size: 1.2em;
  color:white !important;
}

.abouts h6 {
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
margin-top: 50px;;
  color:white !important;
}

.abouts h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color:white !important;
  text-transform: capitalize;
}

.abouts p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color:white !important;
}


.contact .cnt1s{
  background-color: #f9f9f9;
  padding: 30px;
      margin-bottom: 38px;
  border-radius: 0px;
  border-left: 35px solid #2e3cd8;
  border-top: 35px solid #2e3cd8;
  border-bottom: 35px solid #2e3cd8;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
}
.contact .cnt1s h3{
  font-size:35px;
}

.contact .cnt1s h3, .cnt1s h6 {
  color: orangered;
}

.address-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.address-container i {
  font-size: 20px;
  color: orangered;
  margin-right: 20px;
  border:2px solid #020b6d;
  padding:10px;
  border-radius:10%;

}

.address-container div {
  display: flex;
  flex-direction: column;
}

.address-container h6 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}

.address-container p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.left-fixed {
  position: fixed;
  
  bottom: 50px; /* Align to the left side */
  transform: translateY(-50%); /* Center the image vertically */
  width: 50px; /* Set the width for the left image */
  z-index: 1;
  }
  
  .right-fixed {
  position: fixed;
  bottom: 50px; /* 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: 1;
  }

  .service1 {
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('images/serviceman-repairing-refrigerator_1016675-2587.jpg');
    background-position: center;
    background-size: cover;
    height: 48vh;
    text-align: left;

}

.service1 h1 {
  margin-top: 130px;
    position: relative; /* Ensure it stays above the background overlay */
  

  }
  .service1 i{
    color: orange;
  }




.service2 {
  background-color: #EFF8FD;; /* Background color for the section */
  padding: 50px;
}

.service2 h6 {
  font-size: 14px;
  text-transform: uppercase;
  color: orangered;
  text-align: center;
}

.service2 h1 {
  font-size: 32px;
  text-align: center;
  color: #333;
  margin-top: 10px;
}

.service2 .col-lg-4 {
  position: relative;
  margin-top:10px;
  margin-bottom:10px;
}
.service2 .img1 {
  border-radius: 8px;
  object-fit: cover;
  height: 400px;
  width: 100%; /* Make the image responsive */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Add smooth transition for hover effects */
}

/* Hover effect for the image */
.service2 .img1:hover {
  transform: scale(1.05); /* Slightly zoom the image on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Add a shadow for a lifting effect */
}

.service2 h4{
  color: white;
  font-size: 13px !important;
  margin-bottom: 10px !important;
}
.service2 p{
  color: white;

}

.service-info {
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 0;
  width: 90%;
  background-color: dodgerblue;
  color: black;
  padding: 15px;
  display: flex;
  align-items: center;

  border-radius: 8px;
  gap: 30px;;
}

.service-info i {
  font-size: 24px;
  color: black;
  margin-right: 15px; /* Space between the icon and text */
}

.service-info h4 {
  margin: 0;
  font-size: 25px;

  font-weight: 600;
}

.service-info p {
  margin: 0;
  font-size: 13px;
}
.icons{
  border:2px solid black;
width: 70px;
height:70px;
  object-fit:contain !important;
  border-radius:50px;
  padding:10px;
  background:white;
}
.icondiv{

}

/* .service3{
  background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('images/service3.jpg');
  background-position: center;
  background-size: cover;
  height: 48vh;
  text-align: center;
  color:white;
} */
.service3 h2{
  
}
.service3 h6{
  margin-top:150px;
}

.service4{
  position:relative;
  top:-100px;
}
.service4 .col-lg-4 {
      display: flex;
      justify-content: center;
      align-items: center;
      /* padding: 20px; */
  }
  .service4 .card{
      max-width:450px ;
      padding:50px;
      max-height:510px;
      transition: 0.5s ease all;
    
  }

  .service4  .first .card  {
      background-color: transparent;
      background-image: linear-gradient(150deg, #8ACBF3 0%, #1792DF 75%);
      color: #fff; /* White text for contrast */
 
      border-radius: 15px; /* Rounded corners */
      box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
      text-align: center;
      width: 100%;
      border:none;
 

  }
  .service4  .second .card  {
      background-color: transparent;
      background-image: linear-gradient(150deg,rgb(227, 233, 236) 0%,rgb(255, 255, 255) 75%);
      color: black; /* White text for contrast */

      border-radius: 15px; /* Rounded corners */
      box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
      text-align: center;
      width: 100%;
      border:2px solid rgb(160, 205, 233);
   

  }
  .service4  .last .card  {
      background-color: transparent;
      background-image: linear-gradient(150deg, #8ACBF3 0%, #1792DF 75%);
      color:white; /* White text for contrast */

      border-radius: 15px; /* Rounded corners */
      box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
      text-align: center;
      width: 100%;
  border:none;

  }
.service4 .first button{
  background-color: white;
  color: #020b6d;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;;
}
.service4 .second button{
  background-color:#1792DF;
  color: #020b6d;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;;
}
.service4 .last button{
  background-color: white;
  color: #020b6d;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;;
}



.service4 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

}

.icon-container {
  background-color: dodgerblue;
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  transition: background-color 0.3s;
}

.icon-container i {
  font-size: 32px;
}
.service4 .first h4, .service4 .last h4{
  color: white !important;
}
.service4 .first p, .service4 .last p{
  color: white !important;
}


.service4 .card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.service4 .card p {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}
 


.service4 .contact-btn:hover {
  background-color: #45a049;
  color: white;
}

@media (max-width: 768px) {
  .card {
      margin-bottom: 20px;
  }
}



/* Custom CSS for service5 section */
.service5 {
  background-color: #f4f4f4;
  padding: 40px 0;
}

.service5 h6 {
  font-size: 18px;
  color:#1792DF;
  text-transform: uppercase;
  letter-spacing: 1px;
/* margin-top: 80px;; */
}

.service5 h2 {
  font-size: 30px;
  color: #333;
  margin-top: 20px;;
  font-weight: 600;
  
}

.service5  .card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
 margin-bottom: 10px;

  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.service5 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service5  .icon-container1 {
  background-color: #1792DF;
  color: white;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  transition: background-color 0.3s;
}

.service5  .icon-container1 i {
  font-size: 30px;
}

.service5  .card h4 {
  font-size: 22px;
  color: #333;
  font-weight: 500;
  margin-bottom: 15px;
}

.service5  .card p {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.service5  button {
  background-color: #1792DF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.service5  button:hover {
  background-color: #45a049;
}

.service5  .card:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 10px;
}

.service5  .card:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.service5  .row {
  margin-bottom: 30px;
}

.service5  img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .service5 h2 {
      font-size: 23px;
  }

  .service5 .col-lg-8 {
      margin-bottom: 30px;
  }
}
/* Overall section styling */
.faq-payment {
  padding: 40px 0;
  background-color: #ffffff;
}

.faq-payment .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.faq-container {
  padding: 30px;
  /* background: linear-gradient(135deg, #e3f2fd, #bbdefb); */
  border-radius: 15px;
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
}

.faq-container:hover {
  transform: translateY(-10px);
}

.faq-container h2 {
  font-size: 25px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 20px;
  cursor: pointer;
  transition: 0.5s ease;
}

.faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  transition: 0.5s ease;
  cursor: pointer;
}

.faq-question h4 {
  margin: 0;
  font-size: 18px;
  transition: 0.5s ease;
  padding-right: 10px;
}

.faq-question .toggle-icon {
  font-size: 25px;
  font-weight: bold;
  color: #4CAF50;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .toggle-icon {
  transform: rotate(180deg);
}

/* Adding border color and smooth transition for the answer */
.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 14px;
  color: #777;
  border-top: 2px solid #f1f1f1; /* Adding border color */
  transition: max-height 0.4s ease, padding 0.3s ease, border-color 0.3s ease; /* Smooth border color transition */
  overflow: hidden;
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 15px;
  max-height: 500px;  /* Adjusted for smoother expansion */
  border-color: #4CAF50; /* Highlighted border color when open */
}

.faq-answer p {
  margin: 0;
}

.faq-image {
  border-radius: 5px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.faq-image:hover {
  transform: scale(1.05);
}
.offer {
  background-image: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9)), url('images/service3.jpg');
  background-position: center;
  background-size: cover;
  color:white !important;
}

.offer h2, .offer h3 {
  font-size: 2.5rem; /* Larger font size for headings */
  font-weight: 600;
  letter-spacing: 1px;
  
}
.offer h2{
padding-top: 50px;
  color:white !important;
}

.offer h3 {
  color: #ffffff; /* Info color for 'Why Choose Us' */
}

.offer .col-md-6 {
  padding: 20px; /* Padding for columns */
}

.offer ul li {
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.offer ul li:hover {
  transform: translateX(10px); /* Hover effect for checklist items */
  color: #28a745; /* Change color on hover */
}

.offer ul li i {
  font-size: 24px;
  color: #f1fff4 ; /* Green color for checkmark icons */
  transition: color 0.3s ease;
}

.offer ul li span {
  margin-left: 15px;
  font-weight: 500;
  line-height:48px;
}

.offer .col-md-6 img {
  border-radius: 35px !important;
  transition: transform 0.3s ease;
  padding: 50px;;
}

.offer .col-md-6 img:hover {
  transform: scale(1.05); /* Zoom effect for images on hover */
}
.firstcolsofer{
  margin-top: 80px;;
}
.whychose {
  background-color: #fff; /* Light background color */
  padding: 40px 0; /* Increased padding for spacing */
 
}

.whychose h2, .whychose h3 {
  font-size: 2.5rem; /* Larger font size for headings */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px; /* Space below headings */
}

.whychose h3 {
  color: #17a2b8; /* Info color for 'Why Choose Us' */
}

.whychose .col-md-6 {
  padding: 20px; /* Padding for columns */
}

.whychose ul li {
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.whychose ul li:hover {
  transform: translateX(10px); /* Hover effect for checklist items */
  color: #28a745; /* Change color on hover */
}

.whychose ul li i {
  font-size: 24px;
  color: #28a745; /* Green color for checkmark icons */
  transition: color 0.3s ease;
}

.whychose ul li span {
  margin-left: 15px;
  font-weight: 500;
  line-height:48px;
}

.whychose  .col-md-6 img {
  border-radius: 15px;
  transition: transform 0.3s ease;
  padding: 50px;;
}
.whychose .col-md-6 img:hover {
  transform: scale(1.05); /* Zoom effect for images on hover */
}



/* Responsive Design */
@media (max-width: 768px) {
  .faq-payment .container {
    flex-direction: column;
    align-items: center;
  }

  .faq-container {
    width: 100%;
    padding: 20px;
  }
}

  

  
@media screen and (min-width:300px) and (max-width:768px) {
  .carousel{
    /* border: 2px solid  red; */
    /* padding: 0px; */
  }
  .carousel-inner{
    /* width: 659px;
    margin-left: -124px; */
  }
  .carousel-caption{
    /* left: 22%; */
top:50%;
padding: 0px;;
text-align: left !important;

/* border: 1px solid ; */
max-width: 100%;
/* margin-left: -15px;
margin-right: -15px; */


  }
  
  .carousel-caption button{
    display: block;
  }
  .carousel .previcon, .carousel .previnext{
    display: none;
  }
  .carousel-caption h1{
    /* margin-top: 18px;; */
    font-size: 17px;;


  }
  .carousel-caption p{
    font-size: 14px;;

    font-weight: normal;
  }
  .carousel-item img{
    height: 70vh;
    object-fit: cover;
  }
  .previnext {
    position: relative;
    left: -10px;
    padding: 10px;
    font-size: 15px;;
}
  .previcon {
    position: relative;
    left: 10px;
    padding: 10px;
    font-size: 15px;;
}

.section4 h1{
  font-size: 18px;;
  margin-bottom: 13px;
        margin-top: 12px;
        text-align: left;
}

body,html{
  overflow-y: none;
  overflow-x: hidden;
}
.section1 .main-image{
  height: auto;
  object-fit: cover;
}
.section1 .section-heading{
  text-align: center;
}
.section1 .main-heading{
  text-align: center !important;
  font-size: 25px;;
}
.section1 .col-lg-8{
padding: 10px;
margin-top: -10px;
}
.section2 h6{
  font-size: 36px
}
.section2 h1{
  font-size: 18px;;
}
.section2{
  padding: 10px;;
}
.section2 .main-title{
  font-size: 1.5rem;
}
.section2 .description{
  font-size: 15px;;
}
.section2 .step-text{
  font-size: 1rem;
}
.fa-phone{
  display: inline-block;
  margin-left: -22px;

}
.section2 img{
  width: 100%;
}
.section4 {
  text-align: center;
  padding: 10px;;
}

.sec5col{
  margin-top: 10px;;
}
.section5{
  padding: 5px;;
}
.section5 h6{
  text-align: left;
  font-size: 19px;
  font-weight:normal;
  color: #020b6d;
  margin-bottom: 8px;
}
.section5 h1{
  font-size: 28px;
}
.bg-info{
  width: 100%;
}
.section5 .last-img-container {
  padding: 0px;
}
.section5 .img2 {
  height: 200px;;
  margin-bottom: -10px;
}
.abouts{
  padding: 10px;;
  padding-bottom: 30px;
  text-align: left;
}
.abouts h2{
  margin-bottom: 0px;;
  font-size: 18px;;
}
.abouts h6{
  margin-bottom: 15px;
  font-size: 35px;
  margin-top: -37px;
}
.abcol2 p{
  margin-top: 10px;;
}
.experience-info{
  width: 100%;
  left: 50%;
  top: 3px;
}
.contact input{
  margin-top: 10px;;
}
.contact select{
  margin-bottom: 10px;;
}
.contact button{
  width: 100%;
}
.contact .cnt2s .card{
  padding: 21px;
}
#toggleButton{
  width: 100% !important;
  margin: 0px !important;
  margin-bottom: 5px !important;
}
.section6{
  padding: 5px;
}
.contact{
  padding: 0px;
  padding-bottom: 15px;;
}
.abouts img{
  margin-top: 10px;
}
.contact .cnt1s{
  padding: 13px;
    margin-bottom: 6px;
}
.section5 .service-item {
  margin-bottom: 0px;;
}
.service1{
  height: 35vh;
}
.service2{
  padding: 0px;;
}
.service2 h6{
  margin-top: 14px;;
  font-size: 18px;;
  color: orangered;
}
.service2 h1{
  font-size: 20px;
}
.service3{
  padding: 0px;;
}
.service4{
  padding: 0px;;
}
.service4 .col-lg-4{
  padding: 0px;;
}
.service5{
  padding: 0px;;
}
.service5 .row{
  margin-bottom: -20px;;
}
.faq-container h2{
  font-size: 22px;
  margin-top: 15px;;
}
.faq-container{
  padding: 0px;;
}
.service5 h6{
  margin-top: 20px;
}
.firstcolsofer {
  margin-top: -43px !important;
}
.offer{
  padding: 0px;;
}
.offer h2{
  font-size: 27px;
  margin-bottom: 0px !important;
}
.whychose{
  padding-top: 0px !important;
  padding-bottom: 10px;
}
.whychose .col-md-6 img{
  padding: 0px;
}
.whychose h3{
  font-size: 27px;
  margin-top: 20px;;
}
.whychose ul li span

 {
   
    font-size: 14px;
}
.service1 {

  height: 38vh;
  text-align: center !important;

}
.service1 h1{
  text-align: center !important;
}
.service2 h1{
  margin-top: 20px !important;
}
.offer h2{
  font-size: 25px;;
}
.offer .col-md-6 img{
  padding: 0px;;
  border-radius: 5px !important;
}

}

@media screen and (min-width:768px) and (max-width:820px) {
  .carousel button {
    display: block;
}

.carousel-inner{
  width: 100% !important;
  margin-left: 0px;
}
  .section1 .main-image {
    width: 100%;
    margin-bottom: 15px;;
    height: auto;
  }
  .section1 .service-title{
    font-size: 18px;
  }
  .test-sec{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
 .section2{
    padding: 30px;;
  }
  .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: 100%;
  object-fit: cover;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}
.image-column img{
width: 716px !important;
height: 450px !important;
}
.crbtn{
  width: auto;
}
.section4{
  margin-top: 20px;;
}
.section4 img{
  width: 100%;
}
.whychose .col-lg-3{
  margin-top: 10px;;
  margin-bottom: 10px;;
}
.faqs-section .title{
  font-size: 30px;
}
.bg-info{


}
#toggleButton{
  width: 50% !important;
  display: block;
  margin: auto !important;
  margin-bottom: 15px !important;
}
.abouts img{
  width: 100%;
  height: 419px;
  object-fit: cover;
}
.abouts h6{
  margin-top: 0px !important;
}   
.contact .cnt2s .card {
  padding: 21px;
  margin-top: 39px;
} 
.contact .cnt1s{
  margin-top: 16px;
}
.service1{
  height: 30vh;
}
.service2{
  padding-bottom: 30px;
}

.service2 .img1{
  height: 300px;
}
.service5 h6 {
  margin-top: 98px;
}
.service3 {
  height: 25vh !important;
}
.service4 .col-lg-4{
  padding: 10px;;
}
.whychose ul li span {
 
  line-height:38px;
}
.offer h2{
  margin-bottom: 30px !important;
}
.offer{
  padding-bottom: 20px;
  padding-top: 30px;;
}
.offer ul li span {
 
  line-height:38px;
}
.offer .col-md-6{
padding: 0px;
}
.offer i{
  margin-left: 30px;
}
.whychose .col-md-6{
  padding: 0px;
}

.whychose h3{
  margin-bottom: 30px !important;
}
.firstcolsofer{
  margin-top: 5px !important;
}
.whychose .col-md-6 img{
  padding: 0px;
}
.offer .col-md-6 img{
  padding: 0px;
}
}
@media screen and (min-width:820px) and (max-width:1024px)  {
  .image-column img {
    width: 644px !important;
    height: 511px !important;
}
.contact button{
  width: 100%;
}
.abouts h6{
  margin-top: -80px !important;
}
.abouts{
  padding-bottom: 30px;
}

body,html{
  overflow-y: none;
  overflow-x: hidden;
}
.experience-info{
  top: -5%;
    left: 81%;
    transform: translate(-50%, -50%);
    background-color: orangered;
    color: white;
    text-align: center;
    padding: 20px;
    width: 39%;
}
.carousel h1{
  font-size: 25px;
}
.carousel-item button{
  width: auto;
}
.section1 .main-image{
  /* height: 320px;; */
}
.section1 .col-lg-8 {
  padding-right: 0px;;
  padding-left: 0px;;
}
.section2 h1{
  font-size: 31px;;
}
.section4{
  text-align: center;
}
.carousel-inner{
  width: 100% !important;
}
.carousel-caption button{
  width: auto;
}




}

@media screen and  (min-width:1024px) and (max-width:1366px) {
    .section1 .main-image{
      height: 630px;
      margin-top: 11px;;
    }
    
body,html{
  overflow-y: none;
  overflow-x: hidden;
}
  .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-caption{
  /* border: 1px solid red; */
}
.carousel-item img{
  height: 80vh;
  object-fit: cover;
}
.section4 img{
  margin-bottom: 20px;;
}
.about-section{
  padding: 15px;;
}

.crbtn{
  width:auto;
}
.section4{
  margin-top: 20px;;
  padding: 25px;
}
.section4 img{
  width: 100%;
}
  .section4 p{
    font-size: 22px;
  }
  .section6 .col-lg-3 .card {
    height: 450px;;

  }
  #toggleButton {
    width: 35%;
  }
  .abouts h6{
    margin-top: 0px !important;
  }
  .abcol2{
    margin-top: 70px;
  }
  .experience-info {
    top: -5%;
    left: 75%;
    transform: translate(-50%, -50%);
    background-color: orangered;
    color: white;
    text-align: center;
    padding: 20px;
    width: 52%;
  }
}
  

@media screen and (min-width:350px) and  (max-width:410px) {
  .carousel-item img{
    height: 70vh;
    object-fit: cover;

  }
  .section4 h3 {
    font-size: 18px;
}
.section4 p {
  font-size: 18px;
  /* margin: 10px 0; */
}
.fa-phone {
  display: inline-block;
  margin-left: -13px;
}
.abouts img{
  margin-top: 10px;
}
  .carousel-caption h1{
    margin-top: 30px;;
    font-size: 20px;;
  }
  .carousel-caption p{
    font-size: 14px;
  }
  .abouts h6 {
    margin-bottom: 15px;
    font-size: 30px;
    margin-top: -37px;
}
.abcol2 p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
}
.section5 h1{
  font-size: 24px;;
}
.section5 .service-item {
  margin-bottom: 0px;;
}
}





.whychose {
  background-color: #f9f9f9; /* Light background for the section */
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Text Styling */
h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

p.lead {
  font-size: 1.2rem;
  color: #6c757d;
}

/* List Items */
ul li {
  font-size: 1.1rem;
 
  line-height: 1.5;
}

ul li i {
  color: #007bff;
}

/* Image Styling */
.img-fluid {
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .col-md-6 {
      margin-bottom: 20px;
  }

  h3 {
      font-size: 2rem;
  }

  p.lead {
      font-size: 1rem;
  }
}


 /* Section Padding and Background */
 .offer {
  background-color: #f9f9f9; /* Light background color for the section */
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Title Styling */
h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff; /* Blue color for the heading */
  text-transform: uppercase;
}

/* List Items Styling */
ul li {
  font-size: 1.1rem;
 
  line-height: 1.6;
}

ul li i {
  color: #28a745; /* Green check-circle for visual emphasis */
}

/* Image Styling */
.img-fluid {
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .col-md-6 {
      margin-bottom: 20px;
  }

  h2 {
      font-size: 2rem;
  }

  ul li {
      font-size: 1rem;
  }

  ul li i {
      font-size: 22px; /* Slightly smaller icons on mobile */
  }
}