/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  line-height: 150%;
  color: #000000;
}
.email-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 600px;
    margin: auto;
    height: 400px;
    margin-top: 30px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.email-form h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.contact-form .form-row {
    margin-bottom: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="message"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus
.contact-form input[type="message"]:focus {
    outline: none;
    border-color: #007bff;
}

/* CAPTCHA */

.checkbox-captcha {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #000 !important;
    padding: 10px 15px !important;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    accent-color: #0078d4 !important;
}
.form-row.form-row-captcha {
    margin-bottom: -5px;
    margin-top: 0px;
}
.checkbox-captcha input[type="checkbox"] {
    pointer-events: auto;
    position: relative;
    z-index: 11;
    cursor: pointer;
    color: #fff;
    width: 16px;
    height: 16px;
}

.contact-form .submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #47b2e4;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.contact-form .submit-button:hover {
    background-color: #0056b3;
}

.button {
  background-color: #47b2e4;
  color: #ffffff;
  border: 0px;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  border-radius: 50px;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: rgba(55, 81, 126, 0.2);
  transition: all ease-out 0.5s;
}

.headeractive {
  background-color: #37517e;
}

.navbar {
  background-color: #37517e;
  color: #ffffff;
}
.navbar .navbar-brand {
  font-size: calc(0.9em + 0.5vw);
  color: #ffffff;
  font-weight: 600;
}
.navbar .nav-link {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #ffffff;
}
.navbar .nav-link:hover {
  color: #47b2e4;
}
.navbar .callbtn {
  background-color: #47b2e4;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: 0px;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar a.callus {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: #f2545b;
  background: #f2545b;
  border: 2px solid #f2545b;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}
.navbar a.callus:hover{
	scale:1.02;
}
.navbar .navbar-toggler {
  background-color: #47b2e4;
  border-radius: 0px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  color: #ffffff !important;

}
/* Hero Section */

.hero {
  position: relative;
  width: 100%;
  min-height: 90vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 2; 
}

/* Container Styling */
.hero .container-fluid {
  position: relative;
  z-index: 3; 
  text-align: center; 
}

/* Text Styling */
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-top: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Button Styling */
.hero .button {
  background-color: #f2545b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin: 5px; /* Spacing between buttons */
}

.hero .button:hover {
  background-color: #d63b3f;
}

.hero button {
  background-color: #f2545b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #d63b3f;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .intro-text {
    margin-top: 20px;
  }
  
  .hero img {
    object-position: center top; /* Adjusts image position on smaller screens */
  }
}
@media (max-width: 426px) {
    .hero h2 {
        font-size: 30px;
    }
}

/* About Section General Styling */
/* About Section General Styling */
.about-section {
  padding: 80px 0;
  background-color: #f9f9f9; /* Light background */
  font-family: 'Arial', sans-serif;
}

/* Heading Styling */
.about-section h3 {
  font-size: 32px;
  color: #37517e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

 .about-section .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(15, 1fr);
}
.about-section .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/span 8;
  margin-top: 20%;
  width: 64%;
  z-index: 2;
}
.about-section .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 97%;
  z-index: 1;
}
.about-section img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}  
.gallery-section {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  background: #37517e73;
  filter: blur(-1px);
  background: linear-gradient(180deg, #f9fafd, #37517e);
  /* backdrop-filter: blur(8px); */
}
.gallery-section h2 {
  font-size: calc(1.6em + 0.4vw);
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 2rem;
  text-align: left;
}
.gallery-section .img-boxes .img-box {
  padding: 2px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease-out 0s;
  background-color: #ffffff;
  height: 354px;
}
.gallery-section .img-boxes .img-box img {
  width: 100%;
  height: 350px;
  transition: 0.3s;
  border-radius: 10px;
}
.gallery-section .img-boxes .img-box img:hover {
  transform: scale(1.01);
}
.img-box img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover; /* Keeps the aspect ratio */
  border-radius: 8px; /* Optional: Add rounded corners */
}
@media (max-width: 425px) {
  .col-12 {
      flex: 0 0 100%; /* Make columns 100% width */
      max-width: 100%;
  }
}
/* General Service Section Styling */
.service-section {
  padding: 80px 0;
  background-color: #f4f7fb; /* Light background */
  font-family: 'Arial', sans-serif;
}

/* Title Styling */
.service-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-align: left;
}

.service-section p {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

/* Service Items Styling */

.service-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  min-height: 160px;
}

.service-item:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

/* Icon Styling */
.service-item .icon {
  font-size: 40px;
  color: #37517e;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-section h2 {
    font-size: 28px;
  }

  .service-section p {
    font-size: 16px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item .icon {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .service-item h4 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 14px;
  }
}

/* Optional: Add hover effect for the icons */
.service-item:hover .icon {
  color: #007bff; /* Change icon color on hover */
}



.feature-section {
  padding: 4rem 0;
}
.feature-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 1.875rem;
}
.feature-section h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 0px;
  color: #47b2e4;
  margin-bottom: 0;
}
.feature-section .list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-section .list-item li {
  margin: 10px 0;
  padding: 0;
  display: block;
  list-style: none;
}
.feature-section .list-item li i {
  margin-right: 5px;
}
.feature-section img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.testimonial-section {
  padding: 4rem 0;
  background-image: url("../img/testimonials-bg.webp"); 
  background-size: auto; 
  background-repeat: repeat; 
  background-position: top left; 
  position: relative;
  color: #ffffff; 
}


.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(71 178 228 / 90%);
  z-index: -1;
}
.testimonial-section h2 {
  font-size: 2.875rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 1.875rem;
  text-align: center;
}

.testimonials-text{
color:#333
}
.testimonial-section .testimonial-box {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.testimonial-section .testimonial-box .carousel-control-prev-icon {
  background-image: none;
  color: #777777;
}
.testimonial-section .testimonial-box .carousel-control-next-icon {
  background-image: none;
  color: #777777;
}

.footer {
  background-color: #37517e;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}
.footer .social-icons {
  margin: 0;
  padding: 0;
  text-align: center;
}
.footer .social-icons li {
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.footer .social-icons li a {
  color: #ffffff;
  font-size: 1.5rem;
}

.navbar .navbar-brand {
	  font-size: calc(0.8em + 0.5vw);	
}
.about-section h2 {
	font-size: calc(1.6em + 0.4vw);	
}
.service-section h2 {
	font-size: calc(1.6em + 0.4vw);	
}
.testimonial-section h2 {
	font-size: calc(1.6em + 0.4vw);	
}
.feature-section h2 {
	font-size: calc(1.6em + 0.4vw);	
}
#services {
  background: linear-gradient(360deg, #f9fafd, #37517e);
}
.service-section .service-item .icon {
	width: 50px;
    height: 50px;
    position: relative;
    margin-right: 30px;
    line-height: 0;
    background-color: #ffffff;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}


#callnowbutton {
  display: none;
}

@media screen and (max-width: 650px) {
  #callnowbutton {
      position: fixed;
      right: 10px;
      padding: 10px 20px;
      z-index: 9999;
      cursor: pointer;
      bottom: 10px;
      display: inline-block;
      background-color: #81d742;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      transition: .3s;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -o-transition: .3s;
      -ms-transition: .3s;
  }

  #callnowbutton a img {
      height: 2em;
  }
}


a {
  text-decoration: none;
  color: initial;
}
#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
.button-2 {
        font-size: 16px;
        border: 1px solid #000;
        display: flex;
        padding: 8px 10px;
        align-items: center;
        justify-content: center;
        background: #f2545b;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        border-radius: 0 20px 20px 0;
}


@media (min-width: 768px) and (max-width: 1050px) {
  .navbar .container-fluid, .collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}