body { font-family: "Noto Sans", sans-serif;}
h1, h2 {font-family: "Playfair Display", serif;}

.header-top {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.header-top .nav-link {
    color: #0056b3;
    padding: 10px 15px;
    font-weight: 500;
}


.main-nav {background-color: #f0f5f7;
    border-bottom: 1px solid #f0f5f7;}

    /* ul.main-nav li.nav-item { padding: 5px 15px !important;} */

ul.main-nav li.nav-item a {    font-size: 18px;
    font-weight: bold;
    color: #003366;
   }

/* .video-container {
    position: relative;
    overflow: hidden;
    max-height: 700px;
} */

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 700px;
   
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-white {
    color: #fff;
}

.content {
    position: relative;
    z-index: 3;
    color: #fff; /* Ensure text is visible against the dark overlay */
    padding: 20px; /* Adjust as needed */
}

h1 {font-size:4rem;}
.centered-text p {font-size:20px;}



.btn {border-radius:50px !important; min-height: 40px !important;padding:12px 25px !important;;}
.btn-red {    background-color: #D0021B;
    border-color: #D0021B;
    color: #fff;
    font-weight: bold;}
.btn-outline-blue {    color: #003366;
    border-color: #003366;
    font-weight: bold;}
.bg-blue {background-color: #003366 !important;}


.card0 {
    position: relative;
    overflow: hidden;
  }
  
  .card0 .img {
    transition: transform 0.3s ease-in-out;
  }
  
  .card0:hover .img {
    transform: scale(1.05); /* Zoom effect */
  }
  
  .card0 img {
    display: block;
    width: 100%;
    height: auto;
  }

  .cta-section {
    background-color: #003366; /* Dark blue background */
  }
  
  .cta-section .btn-light {
    background-color: #f8f9fa; /* Light button color */
    border-color: #f8f9fa; /* Match button border to background */
    color: #003366; /* Dark blue text color */
    padding: 10px 20px; /* Adjust padding for a more compact button */
    font-size: 1rem; /* Standard font size */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
    max-width: 300px; /* Set maximum width for the button */
    display: inline-block; /* Ensure the button does not stretch full width */
  }
  
  .cta-section .btn-light:hover {
    background-color: #e2e6ea; /* Slightly darker background on hover */
    color: #003366; /* Dark blue text color */
  }
  

  .benefits-section {
    background-color: #dee7ef;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.benefit-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;;

}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    color: #D0021B;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-link {
    color: #D0021B;
    font-weight: 500;
}



.testimonial-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    background-color: #f9f9f9;
    height: 100%;
  }
  
  .testimonial-card .rating i {
    color: #D0021B;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #D0021B;
    border-radius: 50%;
    padding: 10px;
  }
  
  ul.no-list li {list-style: none;;}
  footer ul li {  margin-bottom:10px !important;}

  .footer-links a {
    color: #fff;
    text-decoration: none;
    padding-right: 5px;  
    display: contents;
}

.social a {    background-color: #007fff;
  display: inline-block;
  padding: 12px;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  position: relative;}


  .before-after-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
}

.before-after-container img {
    width: 100%;
    height: auto;
    display: block;
}

.after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.before-after-container:hover .after {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}


/* .form-container {
  background-color: #f7f7f7;
  border-radius: 10px; 
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
} */


.custom-input {
  border-radius: 30px; /* Rounder input fields */
  border: 1px solid #ccc; /* Light grey border */
  padding: 10px 15px; /* Padding inside the inputs */
  font-size: 16px; /* Slightly larger font */
  background-color: #fff; /* White background */
  color: #333; /* Dark text color */
}

.custom-input::placeholder {
  color: #999; /* Lighter placeholder text */
}

.custom-input:focus {
  border-color: #ff6f61; /* Custom focus border color */
  box-shadow: 0 0 5px rgba(255, 111, 97, 0.5); /* Glow effect on focus */
}

.btn-custom {
  background-color: #d0021b; /* Custom button color */
  color: #fff; /* White text */
  padding: 10px 30px; /* Padding inside the button */
  border-radius: 30px; /* Rounded button corners */
  font-size: 18px; /* Larger font size */
  font-weight: bold; /* Bold text */
  border: none; /* No border */
  box-shadow: 0px 0px 10px rgba(208, 2, 27, 0.3); /* Button shadow */
  transition: background-color 0.3s ease; /* Smooth transition */
}

.btn-custom:hover {
  background-color: #b00118; /* Slightly darker on hover */
  box-shadow: 0px 0px 15px rgba(176, 1, 24, 0.4); /* More intense shadow */
}



#process {
  /* background-color: #f9f9f9; */
  padding: 4rem 0;
}

.process-steps {
  position: relative;
}

.process-step {
  position: relative;
  padding: 2rem;
  margin-bottom: 3rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.process-content {
  position: relative;
  z-index: 1;
}

.icon-container {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #007bff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#step1 .arrow {
  top: 100%;
}

#step2 .arrow {
  top: 100%;
}

#step3 .arrow {
  top: 100%;
}





@media only screen and (max-width:550px){
    h1 {font-size:1.5rem;}
    .centered-text {
        position: absolute;
        top: 30%;
        left: 47%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 79%;
    }



    .carousel-item {
        display: flex;
        flex-direction: column;
      }
    
      .carousel-item .col-md-4 {
        flex: 1 0 auto;
        margin-bottom: 20px;
      }
    
      .carousel-inner {
        overflow: visible;
      }
    
      .testimonial-card {
        max-width: 90%;
        margin: 0 auto;
      }
    



    .navbar-brand img {width:174px;}
    .centered-text p {font-size:12px;}
.navbar-toggler {    position: absolute;
    right: 13px;
    top: -55px;}
}