
@import url("https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i|Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

:root {
  --primary-color: #17a0c4;
  --secondry-color: #02547d;
  --third-color: #fbbd74;
  --white-color: #fff;
  --black-color: #141615;
  --black-color2: #202020;
  --black-color3: #212529;
  --lightgray-color: #e7e6e6;
  --gray-color: #a1a1a1;
  --facebook-color: #3B5998;
  --instagram-color: #962fbf;
  --youtube-color: #c4302b;
  --background-color: #fafafa;

}


img {
    max-width: 100% !important;
}

body {
     font-family: "Barlow Condensed", serif;
}

body,
html {
    scroll-behavior: smooth;
     font-family: "Barlow Condensed", serif;
}

a {
    text-decoration: none !important;
}p{
  color: #3a3939;
}
a:focus {
    outline: none;
    text-decoration: none;
}

.background_header_bg_light {
    background-color: #Fff!important;
}


/* header css start */
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* header end */

/* fasility css start */

.demo li{

        color: #000;
        padding: 0;
        font-size: 15px;
        line-height: 27px;
        text-decoration: none;
        transition: .5s ease-in-out;
    }
/*  */

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    background-color:var(--secondry-color);
    position: relative;
    padding-top: 12px;
    padding-bottom: 15px;
    margin-top: 0;
   
  }
  @media (max-width: 991px) {
    .page-header {
      padding-top: 87px;
      padding-bottom: 99px;
    }
  }
  @media (max-width: 575px) {
    .page-header {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  }
  .page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.4;
  }
  .page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .page-header__title {
    margin: 0;
    font-size: 40px;
    color: var(--floens-white, #ffffff);
    letter-spacing: 0.9px;
    text-transform: capitalize;
    margin-bottom: 14px;
  }
  @media (max-width: 1199px) {
    .page-header__title {
      font-size: 50px;
    }
  }
  @media (max-width: 991px) {
    .page-header__title {
      font-size: 45px;
    }
  }
  @media (max-width: 767px) {
    .page-header__title {
      font-size: 40px;
    }
  }
  @media (max-width: 575px) {
    .page-header__title {
      font-size: 35px;
    }
  }
  
  .floens-breadcrumb {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: 0;
    margin-bottom: 0;
  }
 .floens-breadcrumb li h1 {
  display: inline;
  font-size: inherit;
  margin: 0;
  font-weight: bold;
  color: #c42121;
}
  .floens-breadcrumb li {
    font-size: 16px;
    color: var(--floens-white, #ffffff);
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.9px;
    /* text-transform: uppercase; */
    display: flex;
    align-items: center;
  }
  .floens-breadcrumb li:not(:first-of-type) {
    color: var(--floens-base, #685431);
  }
  .floens-breadcrumb li:not(:last-of-type)::after {
    content:  "\276F";
     font-family: "Barlow Condensed", serif;
    font-weight: 900;
    font-size: 13px;
    position: relative;
    top: 0px;
    margin-left: 11px;
    margin-right: 11px;
    margin-top:4px;
  }
  .floens-breadcrumb li i {
    position: relative;
    top: 0px;
    margin-right: 9px;
    font-size: 14px;
    color: #ffffff;
  }
  .floens-breadcrumb li span,
  .floens-breadcrumb li a {
    color: #ffffff;
    display: inline-flex;
  }
  .floens-breadcrumb li span:hover{
      color:var(--primary-color);
  }
  .floens-breadcrumb li a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .floens-breadcrumb li a:hover {
    background-size: 100% 1px;
  }
  .floens-breadcrumb li a:hover {
    color: var(--primary-color);
  }


  /* drop down products s  */

  /* General styles for the dropdown menu */

.nav-item .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  padding: 0;
  z-index: 1000;
  width: 250px;
}

/* Show the dropdown menu when the parent is hovered */
.nav-item:hover > .dropdown-menu {
  display: block;
}

/* Styles for dropdown items */
.nav-item .dropdown-menu .dropdown-item {
  padding: 0.3rem 1rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
}


.nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--secondry-color);
}

/* Submenu styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  border-radius: 0.25rem;
  display: none;
  border-top: 2px solid var(--secondry-color);
}

/* Show the submenu when the parent is hovered */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Arrow icons styling */
.bx-chevron-right {
  float: right;
  font-size: 0.9rem;
  margin-top: 6px;
}

.bx-chevron-down {
  margin-left: 0.3rem;
  font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 768px) {
  .nav-item .dropdown-menu {
    position: static;
    display: none;
  }

  .nav-item:hover > .dropdown-menu {
    display: block;
  }
}
/* dropdown products e */

  /* header page end  */



/* footer start */
.footer_headline{
    margin-top: 0px;
    margin-bottom: 15px;
   
}
.footer_section {
    background-color: var(--secondry-color);
    padding-top: 20px;
    padding-bottom: 0px;
    border-top: 5px solid var(--primary-color);
}
.footer_add {
  margin-bottom: 10px;
}
.footer_headline h5{
    color: #fff;
    font-weight: 700;
    line-height: 0.9;
}
.footer_num_div ul{
    list-style: none;
    padding: 0px;
}
.footer_num_div li{
    line-height: 25px;
    border-bottom: 1px dashed #ffffff1a;
    padding: 5px;
}
.footer_num_div li a{
    color: #fff;
    font-size: 14px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: .5s ease-in-out;
    text-decoration: none;
    text-transform: capitalize;
}
.footer_num_div b{
    color: #fff;
    font-size: 14px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: .5s ease-in-out;
    text-decoration: none;
    text-transform: capitalize;
}
.follow_icon_div{
    margin-top: 5px;
    display: flex;
   
}
.follow_icon_div a{
    background-color: #d62925;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--white-color);
    margin: 1px 2px;
    text-decoration: none;
    font-weight: 400;
    border: 1px solid #fff;
}
.footer_num_div li a span{
    color: #d62925;
    font-size: 18px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: .5s ease-in-out;
    text-decoration: none;
    text-transform: capitalize;
}

.footer_num_div{
    padding: 5px 5px 5px 5px;
   
}
.footer_num_div a {
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 27px;
    text-decoration: none;
    transition: .5s ease-in-out;
}
.footer_num_div a:hover {
    color: var(--primary-color);
   
}

.footer_add a{
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    color: #fff;
}
.footer_add p{
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: .5s ease-in-out;
}
/* social  icon footer s */
.footer_add h5 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 17px;
  margin-top: 10px;
}

.social_icons_img {
  margin-top: 10px;
}

.social_icons_img a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px; 
  background-color: #fff; 
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social_icons_img a:hover {
  background-color: #51ceed; 
  transform: scale(1.1); 
}

.social_icons_img img {
  width: 27px;
  height: 27px;
  transition: transform 0.3s ease;
}

.social_icons_img img:hover {
  transform: scale(1.1);
}
/* social icon footer e  */

@media (min-width: 1200px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1170px;
}
}

.footer_copy_right {
  background-color: var(--primary-color); 
  padding: 5px 0; 
  text-align: center; 
}

.footer_copy_right .copy_right {
  color: #fff;
  font-size: 14px;
}

.footer_copy_right .copy_right a {
  color: #c42121; 
  text-decoration: none;
}

.footer_copy_right .copy_right a:hover {
  text-decoration: underline; 
}


/* footer end */

/**/


@media (max-width: 768px){
.desk {
    display: none;
}
}
@media (max-width: 768px){
.mob {
    display: block !important;
}
}

.mob{
  display: none;
}


/* desk top header logoo s */
.navbar-brand img{
  width: 225px;
  height: auto;
}
/*  */


/* company profiles s  */
.company_profile_section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company_profile_div img {
  border-radius: 10px;
  transition: opacity 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset !important;
  
}

.company_profile_div img:hover {
  opacity: 0.8;
}
/* .company_profile_content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
}

.company_profile_content p {
  font-size: 1rem;
  line-height: 1.6;
} */

.company_profile_content {
  background-color: #f8f9fa; /* Light background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.company_profile_content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.company_profile_content p {
  font-size: 1rem;
  line-height: 1.6; 
}

.company_profile_content .btn-primary {
  background-color: #20195f; /* Custom brand color */
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Button hover effects */
}

.company_profile_content .btn-primary:hover {
  background-color: #c42121; /* Accent hover color */
  transform: scale(1.05); /* Slight zoom effect */
}


.company_profile_content .btn-primary {
  background-color: #20195f;
  border: none;
}

.company_profile_content .btn-primary:hover {
  background-color: #c42121;
}
.new_sitemap_heading2 a h2{
    font-weight:700;
    font-size:20px;
}

/* scroll s  */
.sub_menu_scroll1 {
  height: 110px !important;
  overflow-y: auto;
}


/* width */
.sub_menu_scroll1::-webkit-scrollbar {
  width: 5px;
}

/* Track */
/* .sub_menu_scroll:hover::-webkit-scrollbar-track {
  background: #fff;
} */

/* Handle */
.sub_menu_scroll1:hover::-webkit-scrollbar-thumb {
  /* background: #685c5c; */
  background: var(--primary-color);
}

/* Handle on hover */
.sub_menu_scroll1:hover::-webkit-scrollbar-thumb:hover {
  /* background: #685c5c; */
  background: var(--primary-color);
}
.dropdown:hover .pro-drop {
  display: block;
  opacity: 1;
  margin-top:9px;
}
.menu-links li a:hover .pro-drop li a {
  background-color: unset;
}
/**/
/* scroll s */

.sub_menu_scroll {
  height: 240px !important;
  overflow-y: auto;
}


/* width */
.sub_menu_scroll::-webkit-scrollbar {
  width: 5px;
}

/* Track */
/* .sub_menu_scroll:hover::-webkit-scrollbar-track {
  background: #fff;
} */

/* Handle */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb {
  /* background: #685c5c; */
  background: var(--primary-color);
}

/* Handle on hover */
.sub_menu_scroll:hover::-webkit-scrollbar-thumb:hover {
  /* background: #685c5c; */
  background: var(--primary-color);
}
.dropdown:hover .pro-drop {
  display: block;
  opacity: 1;
  margin-top:9px;
}
.menu-links li a:hover .pro-drop li a {
  background-color: unset;
}
.pro-drop li a {
  display: block;
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(256,256,256,0.2);
  text-align: left;
  color: #fff !important;
  font-size: 13px;
  background-color: var(--primary-color);
  text-transform: capitalize;
}

.pro-drop li a:hover {
  background-color: var(--primary-color);
}
.pro-drop li a::after {
  content: unset;
}
/* scroll e */

/* scroll e  */


/* Container styles */
.company_profile_div {
  position: relative;
  display: inline-block;
  overflow: hidden;
  /* border-radius: 50%; */
}

/* Image */
.company_profile_div img {
  display: block;
  width: 100%;
  height: 325px;
  /* border-radius: 50%; */
}

/* Water Flow */
.company_profile_div .water-flow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 25%, transparent 50%, rgba(255, 255, 255, 0.2) 75%);
  animation: waterFlow 3s linear infinite;
  pointer-events: none;
}

/* Bubbles */
.company_profile_div .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.company_profile_div .bubble {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  /* border-radius: 50%; */
  animation: rise 4s infinite ease-in-out;
  opacity: 0;
}

.company_profile_div .bubble:nth-child(1) {
  left: 20%;
  width: 8px;
  height: 8px;
  animation-delay: 0s;
}

.company_profile_div .bubble:nth-child(2) {
  left: 50%;
  width: 12px;
  height: 12px;
  animation-delay: 1s;
}

.company_profile_div .bubble:nth-child(3) {
  left: 70%;
  width: 6px;
  height: 6px;
  animation-delay: 2s;
}

.company_profile_div .bubble:nth-child(4) {
  left: 30%;
  width: 9px;
  height: 9px;
  animation-delay: 1.5s;
}

.company_profile_div .bubble:nth-child(5) {
  left: 80%;
  width: 10px;
  height: 10px;
  animation-delay: 0.5s;
}

/* Animations */
@keyframes waterFlow {
  0% {
     transform: translateX(0%);
  }
  100% {
     transform: translateX(100%);
  }
}

@keyframes rise {
  0% {
     bottom: -20px;
     opacity: 0;
     transform: translateX(0);
  }
  50% {
     opacity: 1;
  }
  100% {
     bottom: 100%;
     opacity: 0;
     transform: translateX(10px);
  }
}

.fixed-box {
  width: 100%; 
  max-width: 800px; 
  height: 325px !important; 
  overflow-y: auto; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.fixed-box:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.heading-with-lines {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.heading-with-lines .line {
  width: 30px; /* Fixed width for the lines */
  height: 2px; /* Line thickness */
  background-color: var(--secondry-color); /* Line color */
}
.heading-with-lines h1 {
  flex-shrink: 0;
  margin: 0;
  padding: 0rem;
  font-size: 1.8rem;
  color:var(--primary-color);
}
.heading-with-lines h2 {
    flex-shrink: 0;
    margin: 0;
    padding: 0rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}
.fixed-box h4 {
  font-size: 1.25rem;
  color: #0c0c4dd9;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* commpany profiles e */

/* products section s  */


.heading-with-lines1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.heading-with-lines1 .line {
 width: 30px;
  height: 2px;
  background-color: var(--secondry-color); 
  margin: 0px;
}

.heading-with-lines1 h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color); 
  margin: 0;
}
/*  */
.image-caption .fa-arrow-right {
  display: inline-block;
  font-size: 13px;
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
  color: var(--primary-color);
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.products_images:hover .fa-arrow-right {
  transform: scale(1.2);
  color: var(--secondry-color); /* Adjust color as per your preference */
}
/*  */

.products_images {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border: 2px solid var(--secondry-color);
  height: 355px;
}

.products_images img {
  width: 100%;
   height: auto; 
  /*height: 250px;*/
  transition: transform 0.3s ease;
  position: relative;
  padding: 10px;
}
.products_images1 {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  border: 2px solid var(--secondry-color);
  height: auto;
}
.products_images1 img{
  transition: transform 0.3s ease;
    position: relative;
    padding: 10px;
}
.products_images1:hover img {
  transform: scale(1.1);
}

.products_images:hover img {
  transform: scale(1.1);
}


/*  */

.products_images {
  position: relative;
}

/* Caption styling */
.image-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 15px;
  background-color:rgb(5 85 125 / 72%);
  color: #fff;
  border-radius: 5px;
  text-align: center;
  /* opacity: 0; */
  transition: all 0.3s ease-in-out;
}

/* Show caption when hovering over the image */
.products_images:hover .image-caption {
  opacity: 1;
}

/* Styling for the caption header */
.image-caption h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 28px;
}
.plus-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 15px;
  color: var(--secondry-color);
  background-color: rgb(163 167 169 / 36%);
  border-radius: 50%;
  padding: 13px 9px;
  cursor: pointer;
  z-index: 2;
  line-height: 5px;
}
/* Styling for the caption text */
.image-caption p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.9;
  color: #fff;
}
/*  */

.products_section .products_images img {
  display: block;
}

.products_section .products_images .image-caption {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  /* animation: waterfall 4s linear infinite; */
}

.bubble {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: bubble 3s infinite;
  opacity: 0;
}

@keyframes waterfall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}

@keyframes bubble {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }
  100% {
    transform: translateY(-150%);
    opacity: 0;
  }
}

.products_section .products_images:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/about/pool.jpg') no-repeat center center;
  background-size: cover;
  animation: waterfall 5s infinite linear;
}
.products_section .products_images .bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.products_section .products_images .bubbles-container .bubble {
  animation-delay: calc(-1s * var(--i));
  animation-duration: calc(3s + var(--i) * 2s);
}

/* Dot Animation */
/* Dot Animation */
.dot-animation {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #10add93b;
  position: absolute;
  bottom: 10px;
  transform: translateX(-50%);
  animation: dotUpDown 2s infinite ease-in-out;
}

.dot-1 {
  left: 10%;
  animation-duration: 2s; 
  animation-delay: 0s; 
}

.dot-2 {
  left: 25%;
  animation-duration: 1.5s;
  animation-delay: 0.3s; 
}

.dot-3 {
  left: 40%;
  animation-duration: 2.5s;
  animation-delay: 0.5s;  
}

.dot-4 {
  left: 55%;
  animation-duration: 1.8s; 
  animation-delay: 0.7s;  
}

.dot-5 {
  left: 70%;
  animation-duration: 3s;
  animation-delay: 1s; 
}
.dot-6 {
  left: 85%;
  animation-duration: 3.1s;
  animation-delay: 2.5s;   
}

/* Up and Down Animation */
@keyframes dotUpDown {
  0% {
    transform: translate(-50%, 0); 
  }
  50% {
    transform: translate(-50%, -10px); 
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/* products section e  */

/* gallery section s */
.gallery_section {
  background-color:#80808017;
}

.gallery-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.gallery-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.8; /* Slightly transparent */
  transition: opacity 0.3s ease-in-out;

  
}
.gallery-img:hover {
  opacity: 1; /* Fully opaque on hover */
}

.gallery-row:nth-child(1) .gallery-img {
  flex: 1 1 calc(50% - 15px);
}

.gallery-row:nth-child(2) .gallery-img {
  flex: 1 1 calc(33.33% - 10px);
}

.gallery-row:nth-child(3) .gallery-img {
  flex: 1 1 calc(20% - 8px);
}

/* gallery section e  */

/* vision and mission s */
/* General section styling */
.vision_and_mission_sec {
  padding: 20px 0;
  background-color: #11aad2;
}
.vision_and_mission_sec .vision_col {
  border-right: 3px solid #02547d;
}

.vision_and_mission_sec .mission_col {
  padding-left: 20px; /* Adjust padding for spacing */
}
/* Container box styling */
.mission_vision_box_shadow {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Headings styling */
.vision_heading, .mission_heading {
  font-size: 24px;
  font-weight: 700;
  color: #20195f; /* Vision heading color */
  margin-bottom: 15px;
}

/* Text styling */
.vision_text, .mission_text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 0;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .vision_and_mission_sec {
    padding: 30px 0;
  }

  .vision_heading, .mission_heading {
    font-size: 20px;
  }

  .vision_text, .mission_text {
    font-size: 14px;
  }
}

/* vision and mission e */

/* pool tiles s */

.pool_tiles_section {
  border-top: 1px solid #d6d7d8;
}
/* pool tiles e */

/* single equipment section s  */

.equipment_images_div {
  text-align: center; /* Center-align image in smaller screens */
  margin-bottom: 1rem; /* Add spacing for smaller screens */
}

.equipment_images_div img {
  max-width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Slight rounding of corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Styling for the content area */
.equipment_content_div {
  padding-left: 1rem;
  padding-right: 1rem;
}

.equipment_content_div p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .equipment_content_div {
      padding-left: 0;
      padding-right: 0;
  }
}
/* single equipment section e  */

/*  grating_tag_content_div s */
.grating_tag_content_div {
  border: 1px solid #ccc; /* Adds a border around the box */
  border-radius: 10px; /* Optional: rounds the corners of the box */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
  padding: 20px; /* Adds inner spacing */
  background-color: #fff; /* Sets the background color */
} 
.grating_tag_content_div h4{
 font-weight: 600;
 line-height: 28px;
 font-size: 22px;
 color: var(--secondry-color);
}
.grating_tag_content_div h5{
  font-weight: 600;
  line-height: 28px;
  color: var(--secondry-color);
}
/* img */

.grating_pool_div {
  border: 1px solid #ccc; /* Adds a border around the box */
  border-radius: 10px; /* Optional: rounds the corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
  padding: 10px; /* Optional: adds inner spacing around the image */
  background-color: #fff; /* Sets a clean background color */
  text-align: center; /* Centers the image horizontally */
  display: inline-block; /* Ensures proper box rendering */
  margin-bottom: 20px;
  
  position: relative;
}
.grating_pool_div img {
  max-width: 100%; /* Ensures the image fits within the box */
  border-radius: 5px; /* Rounds the image corners slightly */
}

/* grating_tag_content_div e*/

/* contact us s */
.contact_us_section {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.contact_form {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Enhanced shadow effect */
  border-radius: 8px;
  transition: box-shadow 0.3s ease; /* Smooth transition on hover */
  margin-bottom: 20px;
}

.contact_form:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.contact_form .form-label {
  font-weight: bold;
  color: #333;
}

.contact_form .form-control {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact_form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact_form button {
  background-color: var(--secondry-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact_form button:hover {
  background-color: #0056b3;
}

.contact_address_number {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact_address_number h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondry-color);
}

.contact_address_number a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.contact_address_number a:hover {
 color: #000;
 font-size: 15px;

}
.contact_form h3{
  color: var(--secondry-color);
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact_address_number p {
  font-size: 16px;
  color: #000;
  margin-top: 10px;
}
.contact_address_number i{
  color: var(--primary-color);
}
.producticon {
    float:right;
    padding:5px;
    color:#fff;
}

/* contact us e */



/* sitemap css start */
.site_map_navi {
  background-color: #fafafa;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site_map_nav {
  margin-bottom: 20px;
}
.site_map_nav h2{
  text-align: center;
  padding: 20px;
  padding-top: 0px;
  font-weight: 700;
  font-size: 30px;
}

.site_map_nav a {
  background-color: #fff;
  color: #212121;
  padding: 10px 20px 10px 20px;
  text-transform: capitalize;
  border-radius: 100px;
  margin: 0px 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: .3s ease-in-out;
  border-left: 5px solid #eeeaea;
  border-right: 5px solid #eeeaea;
  font-size: 15px;
  text-align: center;
}

/* our product start */
.sitemap_section {
  padding-top: 20px;
  padding-bottom: 50px;
}
.sitemap_head_ti {
  margin-bottom: 10px;
}
.sitemap_ul_div ul {
  list-style: none !important;
}
.sitemap_ul_div li {
  line-height: 40px;
  border: 1px dashed lightgray;
  margin-bottom: 15px;
  padding: 7px 10px;
  border-left: 5px solid #893f1d;
  background-color: #fff;
  transition: .5s ease;
  display: block;
  font-family: var(--alori-font-2)
}
.sitemap_ul_div li:before {
  position: relative;
  content: '\2059';
  margin-right: 4px;
  font-weight: bold;
  color: #893f1d;
  top: -1px;
  font-size: 20px;
  font-family: var(--alori-font-2)
}
.sitemap_ul_div li a {
  text-transform: capitalize;
  font-size: 15px;
  display: inline-block;
  color:#000;
}

.sitemap_ul_div li a:hover {
  text-transform: capitalize;
  font-size: 15px;
  display: inline-block;
  color: #893f1d;
  font-family: var(--alori-font-2)
}
.sitemap_head_ti h2{
    font-size:23px;
    color:#000;
    font-weight:700;
}

.new_site_map_sec .box_new_sitemap {
  border: 1px solid #ddd;
  padding: 20px;
  background-color: #f9f9f9;
  /* text-align: center; */
  margin-bottom: 20px;
}

.box_new_sitemap {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 20px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.box_new_sitemap a h3 {
    text-decoration: underline;
    color: #0d567b;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
}
.new_site_map_sec .box_new_sitemap a {
  color: #010101;
  text-decoration: none;
}
.box_new_sitemap p .fa-arrow-right {
  color: #282828de;
  font-size: 11px;
}
.new_site_map_sec .box_new_sitemap p {
  font-size: 15px;
  margin-bottom: 15px;
}
/*site map e*/

.book_btn1 {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%) rotate(-90deg);
    background-color: #00527d;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}
.book_btn1 a{
    color:#fff;
}
/**/




/*whatsapp and call css s */

.mobile_callwhat {
  position: fixed;
  bottom: 20px;
  right: 23px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width:50px;
  z-index: 9999;
}

.mobile_callwhat a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff; /* Neutral background color */
}

.mobile_callwhat a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-pulse {
  background-color: #25d366; /* WhatsApp green */
}

.btn-whatsapp-pulse1 {
  background-color: #c42121; /* Call button red */
}

.mobile_callwhat img {
  max-width: 43px !important;
  height: auto;
}

/* Pulse animation for interactivity */
.btn-whatsapp-pulse, .btn-whatsapp-pulse1 {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  50% {
      transform: scale(1.1);
      box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mobile_callwhat {
      bottom: 120px;
      right: 15px;
      gap: 15px;
  }
  .fixed_enquiry_btn_web a {
  background-color: #15373f;
  padding: 15px 5px 15px 5px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  word-spacing: 1px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  writing-mode: vertical-lr;
  color: #fff !important;
  border: 2px solid #fff;
}

  .mobile_callwhat a {
      width: 50px;
      height: 50px;
  }

  /*.mobile_callwhat img {*/
  /*    max-width: 30px;*/
  /*}*/
}

@media (max-width: 480px) {
  .mobile_callwhat {
      bottom: 120px;
      right: 15px;
  }

  .mobile_callwhat a {
      width: 50px;
      height: 50px;
  }


}

/*whatsapp and call css e */