/**
* Template Name: Omega One One 
* Author: Omega Solutions
* */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Remove default margin and padding from all elements */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, dl, dd, ol, ul,
figure, pre, table,
fieldset, form, input, button, textarea,
nav {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2487ce;
  text-decoration: none;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}


/* Responsive heading sizes */
@media screen and (max-width: 768px) {
  h1.wp-block-heading{
    font-size: 2.2rem;
  }
  h2.has-large-font-size {
    font-size: 1.8rem !important;
  }

  h3.wp-block-heading {
    font-size: 1.4rem;
  }

  h4.wp-block-heading{
    font-size: 1.2rem;
  }

  h5.wp-block-heading {
    font-size: 1.1rem;
  }

  h6.wp-block-heading{
    font-size: 1rem;
  }
  .services.section-bg h2{
     font-size: 1.8rem !important;
  }

  /* Optional: reduce custom Spacer block height */
  .wp-block-spacer {
    height: 1rem !important;
  }
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2487ce;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  TEXT EFFECT & DESIGN            
-----------------------------------------*/

.hollow-text_w {
  color: transparent;
  /* Makes the inside of the text transparent */
  -webkit-text-stroke: 2px #fbfcfd;
  /* Creates the outline */
}

.hollow-text_b {
  color: transparent;
  /* Makes the inside of the text transparent */
  -webkit-text-stroke: 1px #000;
  /* Creates the outline */
}

.outlined-text {
  color: transparent;
  -webkit-text-stroke: .5px black;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}


.reversed-outlined-text {
  color: transparent;
  -webkit-text-stroke: 1px white;
  text-shadow:
    -1px -1px 0  rgb(240, 240, 240),
    1px -1px 0 #dedede,
    -1px 1px 0 #a2a2a2,
    1px 1px 0 #000;
}
.glowing-text {
  color: #05e5f5;
  text-shadow:
    0 0 5px #000000,
    0 0 10px #333333,
    0 0 20px #b9f2f7,
    0 0 30px #70f2fb,
    0 0 40px #70ebfb,
    0 0 50px #3af2f8,
    0 0 60px #70f6fb;
}

.embossed-text {
  color: #333;
  text-shadow:
    1px 1px 2px #fff,
    -1px -1px 2px #000;
}

.engraved-text {
  color: #fff;
  text-shadow:
    1px 1px 2px #000 inset,
    -1px -1px 2px #fff inset;
}

.error-text {
  color: var(--dark-color);
  text-align: center;
  font-weight: var(--font-weight-bold);
  margin-top: 5vh;

}

.scrolling-text {
  position: absolute;
  top: 50%;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
  text-align: center;
  pointer-events: none;
  font-size: 12vh;
}

.scrolling-text::before {
  content: attr(data-text);
  display: inline-block;
  animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 768px) {
.scrolling-text {
  font-size: 8vh;
}

}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/* ---------------------
MENU CSS
-------------------------*/


/* -----Nav & Nav-bar CSS 
---------------------------*/

/* Branding section */

/* Container for the logo and text */
.branding {
  display: flex;
  align-items: center;
  /* Align the logo and text vertically */
}

/* Site logo */
.site-logo {
  width: 80px;
  /* Adjust the width as needed */
  height: auto;
  /* Maintain aspect ratio */
  margin: 1vh 5vw;
  /* Space between logo and text */
}

/* Style for top-level navigation menu bar */
/* FIXED CSS FOR RIGHT-ALIGNED MENU */

.main_navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
  width: 100%;
  z-index: 1000;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}



.navbar-expand-lg {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Right align nav */
  align-items: center;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end; /* Right align menu */
  align-items: center;
  gap: 20px;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  width: 100%;
}

.navbar-collapse {
  display: none;
}
.navbar-collapse.show {
  display: flex !important;
}

.navbar-nav .nav-item {
  margin: 0 10px;
  text-align: left;
}

.navbar-nav .nav-link {
  display: block;
  padding: 10px 15px;
  color: #444444;
  font-size: 17px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0073e6;

}

/* Special Button Styling */
.navbar-nav .contact-button {
  margin:5px 0;
  padding: 0 20px;
  height: 5vh;
  background-color: #0073e6;
  border: 1px solid #002549;
  border-radius: 15px;

}

.navbar-nav .contact-button .nav-link {
  color: #f4f5f7;
  font-size: 17px;
  margin-left: auto;
  padding-top: 3px;
}

/* Special Button Styling */
.navbar-nav .contact-button:hover {
  background-color: #a2caf1;
  border: 1px solid #a2caf1;
}

.navbar-nav .contact-button .nav-link:hover {
  color: #0354f7;
  font-size: 17px;

}

/* Toggle menu start */

/* Style for the navbar-toggler button */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  margin-left: auto;
  width: 2rem !important;
  height: 2rem !important;
  outline: none !important; /* Remove the default outline */
  box-shadow: none !important;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible,
.navbar-toggler:visited,
.navbar-toggler:focus-within,
.navbar-toggler.collapsed {
  border: none !important; /* Ensure border is removed for all states */
  outline: none !important; /* Ensure outline is removed for all states */
  box-shadow: none !important;
  background-color: transparent !important;
}

/* Handling expanded state */
.navbar-toggler[aria-expanded="true"] {
  border: none !important; /* Ensure border is removed for expanded state */
  outline: none !important; /* Ensure outline is removed for expanded state */
 
}


/* Icon Styling */

/* Icon 1 (middle) */
.navbar-toggler .navbar-toggler-icon {
  background: #444444;
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

/* Icon 2 (top & bottom) */
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: #444444;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -10px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 10px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

/* Toggle menu end */

/* Style for active menu item */
.current-menu-item .nav-link {
  font-weight:500;  /* Add bold font weight for active menu item */
}


@media (max-width: 768px) {
  .main_navbar {
    justify-content: space-between;
  }

  .navbar-toggler {
    margin-left: auto; /* Push toggler to right */
  }

  .navbar-expand-lg {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navbar-nav {
    align-items: right;
    gap: 0px;
    margin-top: 0px;

  }

  .navbar-collapse {
    justify-content: flex-start;
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
}


/* End of navbar styles */

/*--------------------------------------------------------------
    Home Section
--------------------------------------------------------------*/


.home-container {
  padding: 3vh 3vw 3vh 5vw;
}

/* Used In WP editor */
.why-aqua {
  margin: 1vh 4vw;
  font-size: 18px;
}

.list_style{
  margin-left: 20px;
  padding:10px 20px 10px 50px;
}

.img-icon{
  height: 30px;
  width: auto;
  overflow: hidden;
  padding-bottom: 5px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 3vh 2vw;
  overflow: hidden;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #2487ce;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.custom-form .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #2487ce;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
  background: #2487ce;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}

.counts .count-box {
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: #124265;
  margin-left: 80px;
  margin: auto;
}

.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}

/*--------------------------------------------------------------
# Services Slides
--------------------------------------------------------------*/

/* Style individual slides */
/* Slide layout styles */
.services.section-bg {
  background-color: #f9f9f9;
  padding: 40px 0px;
}
.services.section-bg h2{
  color:#0693e3;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size:36px ;

}

.slider-container {
  display: flex;
  overflow-x: auto;
  padding: 20px 10px;
  background-color: #f1f1f1;
  overflow-x: hidden !important;
}

.service-slider {
  flex: 0 0 auto;
  width: 260px;
  height: 400px;
  margin-right: 20px; /* This creates visible gap */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.slider-container .service-slider:last-child {
  margin-right: 0;
}

.service_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service_img img,
.service_img image {
  width: 240px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.service_img h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #be0404;
  margin: 0;
}

.service_img p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
  padding: 0 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-container {
    flex-direction: column;
    align-items: center;
  }
  .service-slider {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Text within each slide */
.service_text {
  color: #0073e6; /* Default text color */
  margin-top: 10px;
  transition: color 0.3s ease; /* Smooth color transition */
}


/* Hover effect for the entire slide */
.service-slider:hover {
  transform: scale(1.03); /* Slightly enlarge the slide */
  background-color:rgba(53, 53, 53, .35); /* Change background color on hover */
  color: #fff; /* Change text color on hover */
}

/* Ensure the text inside changes when hovered */
.service-slider:hover .service_text,
.service-slider:hover .service_heading,
.service-slider:hover a 
{
  color: #fff; /* Change text color when the slide is hovered */
}

/* Custom arrows */
.service-slick-prev, .service-slick-next {
  background-color: transparent;
  border: none;
  color: #05e5f5;
  font-size: 10vh; /* Increased font size for better visibility */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.service-slick-prev {
  left: -1vw;
}

.service-slick-next {
  right: -1vw;
}

/* Optional hover effect for arrows */
.service-slick-prev:hover, .service-slick-next:hover {
  color:#68f7eb;/* Slight color change on hover */
  background-color: transparent;
}

/*   404 Page  -----*/
.img-404 {
  width: 100%;
  opacity: 1.0;
  border-color: #dac4f5;
  border-width: 3px;
  border-style: solid;
  border-radius: 5px;
  margin-bottom: 10px;
}
.text-404 {
  text-align: center;
  font-size: 36px; 
  color: #0073e6; 
  padding-top: 10px;
  padding-bottom: 0px;
}
.text_res-404 {
  text-align: center;
  font-size: 28px; 
  color: #f87c7c; 
  padding-top: 10px;
  padding-bottom: 0px;
}
/* Style for the search bar */
.s_bar-404 {
  font-size: 28px;
  color: #0073e6;
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically if needed */
  margin: 0 auto; /* Auto margin to center */
  padding-bottom: 20px;
  
}
/* Media query for small screens */
@media (max-width: 600px) {
  .s_bar-404 {
      width: 100% !important; /* Make the search bar take the full width */
      padding: 0 10px !important; /* Add some padding for better spacing */
      flex-direction: column; /* Stack children vertically */
  }

  .s_bar-404 input,
  .s_bar-404 button {
      width: 100%; /* Make input and button take full width */
      margin-bottom: 0px; /* Add some spacing between elements */
  }

  .text-404 {
    font-size: 20px; 
    padding: 0px;
  }
  .text_res-404 {
    text-align: center;
    font-size: 18px; 
    color: #f87c7c; 
    padding: 0px;
   
  }
}

/*---------------------------------------
  Contact us Section         
-----------------------------------------*/
.contact-section {
  background: url("http://localhost/local_wordpress_6/wp-content/uploads/2025/05/water_1.webp") no-repeat center center;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 60px;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-section {
    padding-top: 80px;
  }
}

.mapouter, .gmap_canvas, .gmap_iframe {
  width: 100%;
  height: 400px;
}

.form-box {
  border-radius: 8px;
}
.form_title_text{
  color: #fa3f05;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  padding: 10px;
}

.custom-form .form-control {
  box-shadow: none;
  border: 1px solid #ccc;
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.custom-form button[type="submit"] {
  background: #2487ce;
  border: none;
  border-radius: 6px;
  color: #e6f2fb;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: #e6f2fb;
  color:#2487ce;
  border-color: transparent;

}

.success-message {
  color: #4649ec;
  font-size: 24px;
  font-weight: 600;
  padding-top: 2rem;
}

.mapouter {
  position: relative;
  width: 100%;
  height: 400px;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
}

.gmap_iframe {
  width: 100%;
  height: 100%;
}

.tearm-line a{
  color: red;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.heading_txt {
  text-align: center;  
  padding: 0px;
   
  }

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 28px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #87c1ea;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 28px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  font-size: 18px;
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #2487ce;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}


@media (max-width: 768px) {
  .heading_txt {
  text-align: center;
  font-size: 18px; 
  padding: 0px;
   
  }

  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #2487ce;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f0fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #124265;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #2487ce;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2487ce;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #2487ce;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3194db;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* Typography--------------------*/
.footer-section h3 {
  font-size: 18px; /* Adjust as needed */
  color: #0354f7; /* Adjust as needed */
  padding: 0px 0px 15px 0px;
}
.footer-section p {
  font-size: 14px; /* Adjust as needed */
  color: #6c757d; /* Adjust as needed */
  line-height: 1.5;

}

/* Container and Section--------------------*/
.site-footer {
  background-color: #95c7f8; /* Adjust as needed */
  padding: 10px 0 20px 0;
}
.footer-container {
  max-width: 100vw;
  /* Adjust as needed */
  margin: 2vh .5vw;
  padding: 0 2vw;
}

.footer-section {
  padding: 10px;
  max-width: 100vw;
}
.footer-logo-section{
  padding-top:30px;
}

/* Image styling */
.footer-logo-section img {
  width: 120px;
  height: auto;
  object-position: left;
  margin-left: 20px;
}
.footer-contact{
  align-items: center;
  padding: 20px; /* Optional padding */
  margin-top: 20px;
}
/*Social Media Section - ---------------------*/

/* Base styles for the footer social section */
.footer-social-section {
  display: flex;
  justify-content:right; /* Align icons to the right on larger screens */
  align-items: right;
  gap: 10px; /* Space between icons */
  height: 70%; /* Restrict to the top half */
  padding: 10px; /* Optional padding */
  margin-top: 100px;
  overflow: hidden;
}

.footer-social-section a {
  width: 60px; /* Set desired width */
  height: 60px; /* Set desired height */
  color: transparent;
 
}
/* Second image hover effect */
.footer-social-section a:nth-of-type(2) {
  padding-top: 5px;
}

/* Styling for footer social icons */
.footer-social-section img {
  width: 40px; /* Set desired width */
  height: 40px; /* Set desired height */
  object-fit: contain; /* Maintain aspect ratio within the specified dimensions */
 
}

.footer-social-section img:hover {
  width: 45px; /* Set desired width */
  height: 45px; /* Set desired height */
  transition:  0.3s ease;
 
}
/* Default hover effect for the first image */
.footer-social-section a:nth-of-type(1) img:hover {
  filter: hue-rotate(0deg) saturate(5) brightness(1.2); /* Example: Red-like effect */
}

/* Second image hover effect */
.footer-social-section a:nth-of-type(2) img:hover {
  filter: hue-rotate(150deg) saturate(5) brightness(1.2); /* Example: Green-like effect */
}


/* Add more for additional images as needed */

/* Menu Links Section - ---------------------*/
.footer-menu-links {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-menu-links li {
  margin-bottom: 10px;
}

.footer-menu-links a {
  color: #6c757d; /* Adjust as needed */
  text-decoration: none;
}

.footer-menu-links a:hover {
  text-decoration: underline;
  color:#3f55f9;
}

.other-content-section p {
  color: #555555; /* Adjust as needed */
  text-decoration: none;
}

.address-section{
  text-align: left;
}

.contact-section{
  margin-top:20px;
  text-align: left;
  font-size:var(--h5-font-size);

}

.contact-section p{
  padding: 12px;
}
/* Copywrite Section - ---------------------*/
.copyright-line p {
  text-align: center;
  font-size: .75rem; 
  color: #6c757d; 
  padding-top: 10x;
  margin-top:10px;
}
/* Divider Line - ---------------------*/
.footer-divider {
  border: none;
  border-top: 1px solid #3b3b3b; /* Line color */
  margin: 15px 0px; /* Spacing above and below */
  width: 100%;
}

/* Responsive----------------------*/
@media (max-width: 768px) {
  /* Small screens */
  .site-footer {
    padding: 10px 10px 15px; /* Reduced padding */
    text-align: center; /* Center align for better readability */
  }

  .footer-container {
    padding: 0 1vw; /* Less padding to maximize content space */
    margin: 2vh auto; /* Center the content */
  }

  .footer-section {
    padding: 5px; /* Reduced padding between sections */
  }

  .footer-logo-section {
    padding-top: 20px; /* Slightly smaller top padding */
  }

  /* Branding Section */
  .footer-section .branding {
    flex-direction: column; /* Stack logo and text */
    align-items: center; /* Center-align items */
  }

  .footer-section .branding img {
    width: 100px; /* Reduce logo size */
    margin: 0 auto 10px; /* Center and space below */
  }
  .contact-us-title {
    margin:0px;
    text-align: center;
  }
  .address-section{
    text-align: center;

  }
  .contact-section{
    margin-top:20px;
    text-align: center;
    font-size:var(--h5-font-size);
  
  }
  
  .contact-section p{
    padding: 5px;
  }

  .footer-menu-links {
    list-style: none;
    padding-left: 120px;
    text-align: left;
  }
  .footer-social-section{
    padding-left:0;

  }
  .copyright-line p {
   
    font-size: .5rem; 
    }
}
/*----End of Footer Sectiion  -----*/

/* WhatsApp social media icons */
/* Sticky WhatsApp Button */
.wp-social-link-whatsapp {
  position: fixed !important;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  width: auto;
  height: auto;
}

/* Style anchor + icon */
.wp-social-link-whatsapp a {
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  line-height: 1;
}

/* SVG icon size */
.wp-social-link-whatsapp svg {
  width: 20px;
  height: 20px;
}

/* Label text */
.wp-social-link-whatsapp .wp-block-social-link-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

/* Hover state */
.wp-social-link-whatsapp:hover {
  background-color: #1da851;
}

/* Responsive fix */
@media (max-width: 768px) {
  .wp-social-link-whatsapp {
    bottom: 80px;
    right: 15px;
    padding: 6px 10px;
  }

  .wp-social-link-whatsapp a {
    font-size: 16px;
  }

  .wp-social-link-whatsapp svg {
    width: 18px;
    height: 18px;
  }

  .wp-social-link-whatsapp .wp-block-social-link-label {
    font-size: 12px;
  }
}


