/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Montserrat:wght@400;600&display=swap');

/* Apply fonts to body or specific elements */
body {
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mar-lg-30 {
  margin: 0px 30px;
}

.mar-lg-40 {
  margin: 0px 40px;
}

.mar-lg-50 {
  margin: 0px 50px;
}

.mar-lg-60 {
  margin: 0px 60px;
}

.mar-lg-70 {
  margin: 0px 70px;
}

.mar-lg-r-0 {
  margin-right: 0px !important
}

.mar-lg-l-0 {
  margin-left: 0px !important
}

.mr-bottom-30 {
  margin-bottom: 30px;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  font-family: 'Open Sans', sans-serif;
}

a {
  transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}

/*=========Vertical Scroller CSS==========*/
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000;
  border: rgba(239, 78, 94, 0.87);
}

::-webkit-scrollbar-thumb {
  background: #3498db;
}

::-webkit-scrollbar-thumb:hover {
  background: #3498db;
}

::-webkit-scrollbar-thumb:active {
  background: #3498db;
}

/*=========Mouse Selection CSS==========*/
::selection {
  background: #3498db;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #3498db;
  /* Firefox */
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #3498db;
  /* Safari */
  color: #FFF;
  text-shadow: none;
}


body {
  font-family: "Roboto", sans-serif;
}

header {}

header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.logo {
  flex: 2;
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
}
.logo a img{max-width: 100px;}
.bartoggle,
#menubrop {
  display: none;
}

.NavMenu {
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
  /* Keep this for horizontal alignment */
  align-items: center;
  /* Add this for vertical alignment */
  margin: 0;
}

.NavMenu li {
  display: flex;
  /* Change from inline-block to flex */
  align-items: center;
  /* Center vertically */
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: block;
  padding: 30px 25px;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

.NavMenu li a:hover {
  color: #3498db
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative;
}
.m_mobile{display:none;}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-width: 200px;
  padding: 0px;
  margin: 0px;
  z-index: 9;
  border-top: 3px solid #103356;
  top: 100%;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .16);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
}

.NavMenu li ul li {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.NavMenu li ul li a {
  color: #818181;
  padding: 15px 10px;
  display: block;
  border-left: 2px solid transparent;
  font-size: 14px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

@media(min-width:992px) {
  .NavMenu li ul li a:hover {
    border-left: 2px solid #2874f0;
  }

  .NavMenu li:hover>ul,
  .NavMenu li ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@media(max-width:991.98px) {
  /*header {*/
  /*  padding: 6px 5%;*/
  /*}*/

  .logo {
    flex: 6;
  }

  .bartoggle {
    display: flex;
    justify-content: center;
    font-size: 30px;
    align-items: center;
    /*    background-color: #fff;*/
    padding: 0 10px;
    cursor: pointer;
    z-index: 99;
  }

  .NavMenu {
    width: 500px;
    flex: 12;
    position: fixed;
    flex-direction: column;
    background-color: #2ecc71;
    left: 0;
    top: 0px;
    height: 100vh;
    z-index: 2;
    padding: 15px 0 50px 0;
    justify-content: start;
    overflow-y: scroll;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }

  .NavMenu li ul,
  .NavMenu li ul li ul {
    position: initial;
    left: 0;
    visibility: visible;
    opacity: 1;
    top: 0;
    display: none;
  }

  .NavMenu li a {
    border-bottom: 1px solid #fff;
  }

  .NavMenu li ul li ul {
    background: #2874f0;
    position: inherit;
    margin-top: -10px;
  }

  .NavMenu li ul li ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    padding: 7px 15px 7px 30px;
  }

  .NavMenu li a label::after {
    right: 10px;
  }

  .NavMenu li input:checked+ul,
  .NavMenu li ul li input:checked+ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  input:checked+.NavMenu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

}

@media(max-width:768px) {
  .NavMenu {
    width: 100%;
  }
}

.top_sec {
  background: #f2f4f7;
  padding: 15px 20px;
}

.top_sec .text {
  text-align: center;
}

.top_sec .text p {
  font-size: 22px;
}

.no-padding-right {
  padding-right: 0;
}

.no-padding-left {
  padding-left: 0;
}

.slider_sec {
  background: #3498db;
  padding: 0px 0px;
}

.slider_sec .col-md-8 img {
  margin-right: 0;
}

.slider_sec .text h5 {
  color: #fff;
  font-size: 50px;
  margin-bottom: 10px;
}

.slider_sec .text p {
  color: #fff;
  font-size: 23px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 30px;
}

.slider_sec .anchor_sec {
  height: 100%;
}

.slider_sec .anchor_sec .first {
  width: 50%;
}

.slider_sec .anchor_sec .first p {
  color: #666;
  font-size: 24px;
  font-weight: 200;
  line-height: normal;
  margin-bottom: 10px;
}

.slider_sec .anchor_sec .first .anc {
  color: #3483dd;
  font-size: 13px;
  text-decoration: none;
}

.slider_sec .anchor_sec .second {
  width: 50%;
}

.slider_sec .anchor_sec .second a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #103356;
  padding: 20px 30px;
  border-radius: 60px;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Added box-shadow for subtle effect */
  text-decoration: none;
}

.slider_sec .anchor_sec .second a:hover {
  background: #2b5c8d;
  /* Change background color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Adds subtle shadow effect */
}

.slider_sec .anchor_sec .second .quote-link i {
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px 10px 12px;
  color: #fff;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  /* Adds icon animation */
}

.slider_sec .anchor_sec .second a:hover i {
  transform: translateX(8px);
  /* Moves the icon to the right */
  color: #cce7ff;
  /* Changes icon color on hover */
}


.slider_sec .anchor_sec_second {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 25px;
}

.slider_sec .anchor_sec_second .first {
  width: 50%;
}

.slider_sec .anchor_sec_second .first p {
  color: #666;
  font-size: 24px;
  font-weight: 200;
  line-height: normal;
  margin-bottom: 10px;
}

.slider_sec .anchor_sec_second .first .anc {
  color: #3483dd;
  font-size: 13px;
  text-decoration: none;
}

.slider_sec .anchor_sec_second .second {
  width: 50%;
}

.slider_sec .anchor_sec_second .second a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #f1c40f;
  padding: 20px 30px;
  border-radius: 60px;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Added box-shadow for subtle effect */
  text-decoration: none;
}

.slider_sec .anchor_sec_second .second a:hover {
  background: #c9b502;
  /* Change background color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Adds subtle shadow effect */
}

.slider_sec .anchor_sec_second .second .quote-link i {
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px 10px 12px;
  color: #fff;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  /* Adds icon animation */
}

.slider_sec .anchor_sec_second .second a:hover i {
  transform: translateX(8px);
  /* Moves the icon to the right */
  color: #cce7ff;
  /* Changes icon color on hover */
}

.cleaning {
  background: url(../images/cleaning.png)no-repeat bottom left;
}

.second_sec {
  padding: 120px 0px;
  background: #103356
}

.second_sec .second_sec_text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

.second_sec .second_sec_text h5 {
  font-size: 36px;
  text-align: left;
  font-weight: 600;
  color: #fff
}

.second_sec .text {
  font-size: 18px;
  line-height: 2.1;
  color: #fff
}

.second_sec .text p.mr-b-30 {
  margin-bottom: 30px;
}

.second_sec .second_sec_text .contact_us_area {
  margin-top: 50px;
}

.second_sec .second_sec_text .contact_us_area h6 {
  font-size: 26px;
  text-align: left;
  font-weight: 600;
  color: #fff
}

.second_sec .second_sec_text .contact_us_area {}

.second_sec .contact_us_area ul {
  padding: 0px;
  list-style-position: inside;
}

.second_sec .contact_us_area ul li {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(59, 120, 189, .32);
  color: #fff;
  text-align: left;
}

.second_sec .contact_us_area ul li:last-child {
  border-bottom: none;
}

.second_sec .contact_us_area ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
}


.third_sec {
  padding: 120px 0px;
  background: #fff;
}

.third_sec h4 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.third_sec p {
  color: #666;
  font-size: 22px;
  line-height: normal;
  font-weight: 400;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 50px;
}

.third_sec {}

.third_sec .box {
  text-align: center;
  min-height: 670px;
}

.third_sec .box .content {
  padding: 0px 60px;
}

.third_sec .box img {
  width: 90px;
  background: #103356;
  border-radius: 50%;
  margin-bottom: 30px;
}

.third_sec .box .content h4 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
}

.third_sec .box p {
  color: #666;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
  font-weight: 300;
}

.third_sec_border_right {
  border-right: 1px solid #e9ebed;
}


.fourth_sec {
  padding: 120px 0px;
  background: #3498db
}

.fourth_sec img {
  border-radius: 30px;
  box-shadow: 5px 5px 53px #282828;
}

.fourth_sec .f_content .smalltext {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.fourth_sec .f_content h3 {
  font-size: 36px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.fourth_sec .f_content .main {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}

.fourth_sec .anchor_sec .second {
  width: 50%;
}

.fourth_sec .anchor_sec .second a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #fff;
  padding: 20px 30px;
  border-radius: 60px;
  color: #103356;
  font-size: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Added box-shadow for subtle effect */
  text-decoration: none;
}

.fourth_sec .anchor_sec .second a:hover {
  background: #2b5c8d;
  /* Change background color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Adds subtle shadow effect */
  color: #fff;
}

.fourth_sec .anchor_sec .second .quote-link i {
  margin-left: 10px;
  border: 1px solid #103356;
  border-radius: 50%;
  padding: 10px 10px 12px;
  color: #103356;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  /* Adds icon animation */
}

.fourth_sec .anchor_sec .second a:hover i {
  transform: translateX(8px);
  color: #ffffff;
  border: 1px solid #ffffff;
}


.fourth_sec .anchor_sec_second {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 25px;
}


.fifth_sec {
  padding: 120px 0px;
}

.fifth_sec .f_content .smalltext {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.fifth_sec .f_content h3 {
  font-size: 36px;
  text-align: left;
  font-weight: 600;
  color: #666;
  margin-bottom: 30px;
}

.fifth_sec .f_content .main {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}

.fifth_sec .f2_content {
  padding: 0px 0px 0px 70px;
}

.fifth_sec .f2_content .smalltext {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.fifth_sec .f2_content .main {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}

.fifth_sec .f2sub_content {
  padding: 0px 0px 0px 70px;
}

.fifth_sec .f2sub_content .smalltext {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.fifth_sec .f2sub_content .main {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}

.fifth_sec .f3_content {
  padding: 0px 70px 0px 0px;
  ;
}

.fifth_sec .f3_content .smalltext {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.fifth_sec .f3_content .main {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}

.sixth_sec {
  position: relative;
  padding: 120px 0;
  background: url(../images/sixth_sec_bg.jpg) no-repeat center;
  background-size: cover;
}

.sixth_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 152, 219, 0.8);
  /* Blue overlay with 50% opacity */
  z-index: 1;
}

.sixth_sec * {
  position: relative;
  z-index: 2;
  /* Ensure content appears above the overlay */
}

.sixth_sec .box {
  background: #103356;
  padding: 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 5px 5px 53px #282828;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.sixth_sec .box h3 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.sixth_sec .box .smalltext {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.sixth_sec .box .main {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}


.seventh_sec {
  padding: 0px 0px;
  background: #ededed
}

.seventh_sec .bgc {
  background: #103356;
  padding: 50px;
}

.seventh_sec .bgc p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.seventh_sec .bgc ul {
  list-style: none;
  padding: 0px;
}

.seventh_sec .bgc ul li {
  padding: 20px 0px;
  border-bottom: 1px solid rgba(59, 120, 189, .32);
}

.seventh_sec .bgc ul li:last-child {
  border-bottom: none;
}

.seventh_sec .bgc ul li img {
  max-width: 35px;
  margin-right: 15px;
}

.seventh_sec .bgc ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
}

.seventh_sec .anchor_sec .second a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #3498db;
  padding: 20px 30px;
  border-radius: 60px;
  color: #fff;
  font-size: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Added box-shadow for subtle effect */
  text-decoration: none;
}

.seventh_sec .anchor_sec .second a:hover {
  background: #2b5c8d;
  /* Change background color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Adds subtle shadow effect */
}

.seventh_sec .anchor_sec .second .quote-link i {
  margin-left: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 10px 10px 12px;
  color: #fff;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  /* Adds icon animation */
}

.seventh_sec .anchor_sec .second a:hover i {
  transform: translateX(8px);
  /* Moves the icon to the right */
  color: #fff;
  /* Changes icon color on hover */
}

.seventh_sec .content {
  padding: 0px 0px 0px 70px;
}

.seventh_sec .content .f_content .smalltext {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.seventh_sec .content .f_content h3 {
  font-size: 36px;
  text-align: left;
  font-weight: 600;
  color: #666;
  margin-bottom: 30px;
}

.seventh_sec .content .f_content .main {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 30px;
}


.text ul {
  padding: 0px;
  list-style-position: inside;
}

.text ul li {
  padding: 20px 0px;
  border-bottom: 1px solid rgba(59, 120, 189, .32);
}

.text ul li:last-child {
  border-bottom: none;
}

.text ul li img {
  max-width: 35px;
  margin-right: 15px;
}

.text ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
}


footer {
  padding: 80px 0px;
  background: url(../images/footer_bg.jpg) no-repeat center;
}

footer .footer_left {}

footer a img {
  margin-bottom: 30px;
  max-width:150px;
}

footer .footer_left address {
  font-size: 14px;
}

footer .footer_left p {
  font-size: 12px;
  color: #818181;
  margin-bottom: 30px;
}


footer .footer_left ul {
  list-style: none;
  padding: 0px;
}

footer .footer_left ul li {
  padding: 0px 30px;
  display: inline-block;
}

footer .footer_left ul li:first-child {
  padding: 0px 30px 0px 0px;
  ;
}

footer .footer_left ul li:last-child {
  border-bottom: none;
  text-transform: uppercase;
}

footer .footer_left ul li a {
  font-size: 12px;
  font-weight: 600;
  color: #103356;
  text-decoration: none;
  text-transform: uppercase;
}

footer .footer_right .smalltext {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

footer .footer_right h6 {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

footer .footer_right .main {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0px;
}

#backToTop {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  font-size: 18px;
  background-color: #007bff;
  /* Blue background */
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

#backToTop:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}

.testimonial-section {
  background-color: #fff;
  padding: 80px 0;
  position: relative;
}

.testimonial-section::before,
.testimonial-section::after {
  content: '\f10d'; /* Unicode for Font Awesome quote icon */
  font-family: 'FontAwesome';
  font-size: 6rem;
  color: #d1d1d1;
  position: absolute;
  opacity: 0.2;
  transform: rotate(0deg);
}

.testimonial-section::before {
  top: 10px;
  left: 10px;
  font-size: 7rem;
  color: #bbb;
  transform: rotate(0deg);
}

.testimonial-section::after {
  bottom: 10px;
  right: 10px;
  font-size: 7rem;
  color: #bbb;
  transform: rotate(180deg);
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.testimonial-item {
  padding: 20px;
  text-align: center;
  
}

.testimonial-item .review {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-item .rating {
  font-size: 1.5rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.testimonial-item .name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.testimonial-item .designation {
  font-size: 1rem;
  color: #777;
}

/* Styling for dots */
.owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.owl-dot.active {
  background: #333;
}


/*Gallery*/
.gallery_sec{padding: 60px 0px 0px;}
.image-container {
  position: relative;
  width: 100%;
  max-width: 300px; /* Optional: to limit the container width */
  height:150px;
  overflow: hidden;
}

.background-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: 1;
}

.image-container img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
}