/*
Template Name: Laundryes - Laundry Business Html Template
Template URI: Laundryes
Author: Rudhi Sasmito
Author URI: https://www.behance.net/rudhisasmito
Version: 1.0
-----------------------------------------------------------------

CSS Style Structure
1. General
2. Navbar
3. Banner
4. Why Choose Us
5. Services
6. Stat Facts
7. FAQ
8. Testimonials
9. Stat Client
10. Blog
11. Pricing
12. Contact
13. Footer


*/


/* ==========================
RESET
============================= */
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}



/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}



body {
  margin: 0;
  padding: 0;
  font-family: 'Hind', sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 20px;
}

/* Product heading styling */
.prod-h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #001a3a;
  margin: 40px 20px;
  padding: 0 20px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .prod-h2 {
    font-size: 1.8rem;
    margin: 30px 15px;
    padding: 0 15px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .prod-h2 {
    font-size: 1.4rem;
    margin: 20px 10px;
    padding: 0 10px;
    line-height: 1.4;
  }
}

/* ==========================
1. General
============================= */
.animationload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
}

/* .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -100px;
    width: 200px;
    height: 200px;
    background-image: url("../images/apple-touch-icon.png");
    background-position: center;
    background-repeat: no-repeat;
} */
a {
  color: #fff;
  text-decoration: none;
}

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

.btn-default {
  color: #333;
  background-color: #0b0c41;
  border-radius: 0;
  color: #fff;
  padding: 6px 35px;
  font-weight: bold;
}

.btn-default:hover {
  background-color: #f5f7fa;
  border-color: #ededec;
  color: #fff;
}

.bg-grey {
  background-color: #E9E9E9;
}

.pbot-main {
  padding-bottom: 80px;
}

.pbot-main:after {
  content: '';
  display: block;
  clear: both;
}

.p-main {
  padding: 80px 0;
}

.pos-relative {
  position: relative;
}

.page-title {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 80px;
}

.page-title .lead {
  font-size: 30px;
  color: #191b41;
  line-height: 34px;
  font-family: 'Hind', sans-serif;
  font-weight: 700;
}

.page-title .sublead {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  font-family: 'Hind', sans-serif;
  font-weight: 400;
}

.bg-grey {
  background-color: #F8F8F8;
}

.ptop-single {
  padding: 80px 0;
}

p {
  margin: 0 0 10px;
}

/* Box */
.box-wrap {
  width: 85%;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 4px #666;
  box-shadow: 0 0 4px #666;
}

.box-bg {
  /* background: url(../img/boxed_bg.png) repeat; */
  background-color: #000;
}


/* ==========================
 notification card
============================= */

.notification-card {
  position: fixed;
  top: 200px;
  right: -100%;
  width: 300px;
  background: white;
  color: #333;
  padding: 20px;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.notification-card .close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.notification-card .close-icon:hover {
  color: #333;
}

.notification-card.show {
  right: 0;
  opacity: 1;
}

.notification-card.hide {
  right: -100%;
  opacity: 0;
}

.notification-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #111;
  font-weight: 600;
}

.notification-card input,
.notification-card textarea,
.notification-card button {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.notification-card button {
  background-color: #0b0c41;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.notification-card button:hover {
  background-color: #FBA301;
}


/* ==========================
2. Navbar
============================= */
.navbar-main {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
}

.header-top {
  background-color: #191b41;
  color: #fff;
  height: 45px;
}

.navbar-main.stiky .header-top {
  display: none;
}

.navbar-main.stiky .navbar-brand {
  margin-top: -15px;
}

.navbar-main .navbar-brand>img {
  width: 180px;
  height: 85px;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
}

.navbar-main .nav>li>a {
  position: relative;
  display: block;
  padding: 10px 22px;
}

.navbar-main .navbar-nav>li>a {
  padding-top: 35px;
  min-height: 100px;
  font-size: 12px;
  line-height: 22px;
  color: #333;
  background-color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
}

.navbar-main.stiky .navbar-nav>li>a {
  padding-top: 20px;
  min-height: 60px;
}

.navbar-main .navbar-nav>li>a:hover,
.navbar-main .navbar-nav>li>a:focus,
.navbar-main .navbar-nav>li>a:active {
  color: #FBA301;
  background-color: #F8F8F8;
}

.navbar-main .navbar-nav>li.active a {
  color: #FBA301;
  background-color: #F8F8F8;
}

.navbar-toggle .icon-bar {
  background-color: #0b0c41;
}

.navbar-toggle .icon-bar:hover {
  background-color: #FBA301;
}

.dropdown-menu {
  border: 0;
  border-bottom: 4px solid #FBA301;
  border-radius: 0;
}

.dropdown-menu>li>a {
  padding: 10px 20px;
}

.info {
  margin-top: 10px;
}

.info a {
  color: #fff;
}

.info a:hover {
  color: #FBA301;
}

.info .info-item {
  display: inline-table;
  margin-right: 80px;
}

.info .info-item:last-child {
  margin-right: 0;
}

.info .info-item .fa {
  margin-right: 10px;
}

.top-sosmed {
  margin-top: 8px;
}

.top-sosmed span {
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #fff;
  color: #0b0c41;
  display: inline-table;
  padding-top: 7px;
  border-radius: 50%;
  margin-right: 10px;
}

.top-sosmed span:hover {
  background-color: #FBA301;
  color: #fff;
}

.top-sosmed span.fa {
  font-size: 18px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}



/* ==========================
3. Banner
============================= */
.banner {
  position: relative;
  margin-top: 145px;
}
/* Hide banner textual content site-wide
   Use this to remove/disable any banner overlay text while keeping the background image.
   To revert, remove these rules or set display back to block. */
.banner-content,
.tab-banner .banner-content,
.banner .banner-content,
.support-banner .banner-content {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.banner .imgbg {
  height: 450px;
}

.banner .imgbg img {
  display: none;
}

.banner .title-box h2 {
  text-align: left;
  font-size: 30px;
  color: #fff;
  line-height: 42px;
  font-family: 'raleway', sans-serif;
  font-weight: 900;
}

.banner .caption {
  color: #fff;
  position: absolute;
  top: 100px;
  left: 20px;
  max-width: 560px;
}

.banner .caption a.btn-default,
.wrap-caption a.btn-default {
  text-align: center;
  font-size: 14px;
  color: #29ABE2;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
  padding: 10px 20px;
  border: 0;
}

.banner .caption a.btn-default:hover,
.wrap-caption a.btn-default:hover {
  background-color: #FBA301;
  color: #fff;
}

/* carousel */
.carousel-caption {
  right: 0;
  left: 0;
  padding-bottom: 200px;
  text-align: left;

}

/* Banner carousel image height fix - ensure all images have same height */
.section.banner {
  height: 400px;
  overflow: hidden;
}

.section.banner .carousel,
.section.banner .carousel-inner,
.section.banner .carousel-inner .item {
  height: 100%;
}

.section.banner .carousel-inner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top !important; /* Prioritize showing top of image */
}

.item .carousel-caption .caption-heading {
  text-align: left;
  font-size: 30px;
  color: #fff;
  line-height: 42px;
  font-family: raleway, sans-serif;
  font-weight: 900;

  margin-left: 80px;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  filter: alpha(opacity=0);
  opacity: 0;
}

.item.active .carousel-caption .caption-heading {
  margin-left: 0px;
  filter: alpha(opacity=80);
  opacity: 1;
}

.item .caption-desc {
  margin-bottom: 10px;

  margin-left: 100px;
  -webkit-transition: all .5s linear;
  -moz-transition: all .5s linear;
  -ms-transition: all .5s linear;
  -o-transition: all .5s linear;
  transition: all .5s linear;
  filter: alpha(opacity=0);
  opacity: 0;
}

.item.active .caption-desc {
  margin-left: 0px;
  filter: alpha(opacity=100);
  opacity: 1;
}

.wrap-caption {
  max-width: 560px;
}

.carousel-control {
  width: 5%;
}

.carousel-control .fa-chevron-left,
.carousel-control .fa-chevron-right {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  font-size: 20px;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
}

.carousel-control .fa-chevron-right {

  right: 50%;
}

.work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.work-info-item {
  padding: 0;
  color: #fff;
  width: 33.333%;
  float: left;
  min-height: 100px;
}

.work-info-item:nth-child(1) {
  background-color: #85DBFF;
}

.work-info-item:nth-child(2) {
  background-color: #29ABE2;
}

.work-info-item:nth-child(3) {
  background-color: #0071BC;
}

.work-info-icon {
  float: left;
  margin-right: 20px;
  width: 60px;
  margin: 35px 0 0 30px;
}

.work-info-icon .fa {
  font-size: 30px;
}

.work-info-body {
  float: left;
  margin: 30px 0 0 0;
}

.work-info-lead {
  font-size: 18px;
}

.work-bg-1 {
  background-color: #85DBFF;
}

.work-bg-2 {
  background-color: #29ABE2;
}

.work-bg-3 {
  background-color: #0071BC;
}

.subbanner {
  margin-top: 145px;
  background-color: #29ABE2;
  height: 420px;
}

.subbanner .caption {
  margin-top: 35px;
  float: right;
  color: #fff;
  text-align: right;
}

.subbanner .caption a {
  color: #fff;
  text-decoration: none;
}

.subbanner .caption h3 {
  font-size: 30px;
  color: #fff;
  line-height: 42px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}

.subbanner .breadcrumb {
  padding: 8px 0px;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
}

.subbanner .breadcrumb>.active {
  color: #fff;
}

.subbanner .breadcrumb>li+li:before {
  padding: 0 5px;
  color: #fff;
  content: "/\00a0";
}


/* ==========================
4. Why Choose Us
============================= */
.section.about {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.page-title {
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
}

.page-title h2.lead {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #0b0c41;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.page-title p.sublead {
  font-size: clamp(14px, 2vw, 18px);
  color: #555;
  line-height: 1.4;
  max-width: 700px;
  margin: 10px auto 0;
}

.why-item-wrap {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0b0c41, #FBA301);
  transition: all 0.3s ease;
  transform: scaleX(0);
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item .image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0b0c41;
  transition: all 0.4s ease;
  position: relative;
}

.why-item:hover .image-container {
  transform: scale(1.05);
  border-color: #FBA301;
}

.why-item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.why-item:hover .image-container img {
  transform: scale(1.1);
}

.why-item .ket h4 {
  font-size: 22px;
  color: #0b0c41;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.why-item .ket h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #FBA301;
  transition: all 0.3s ease;
}

.why-item:hover .ket h4::after {
  width: 60px;
}

.why-item .ket p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-item {
    margin-bottom: 30px;
  }
  
  .why-item .image-container {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .section.about {
    padding: 60px 15px;
  }
  
  .page-title {
    margin-bottom: 40px;
  }
  
  .why-item {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Responsive spacing if not using Bootstrap 4+ */
@media (max-width: 767px) {
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
}

.about-section {
  padding: 60px;
}

.about-section h2 {
  color: #0b0c41;
  font-size: 32px;
  margin-bottom: 30px;
}

.about-section p {
  font-size: 13px;
}

.about-section a {
  color: #0b0c41;
}

.about-section a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .about-section h2 {
    font-size: 32px;
    margin: 5px;
  }

  .about-section p {
    font-size: 14px;
    margin-top: 12px;
    padding: 5px;
  }

  .about-section {
    padding: 30px;
  }
}




/* ==========================
5. Services
============================= */
.our-services {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #f5f7fa, #e4ecf4);
  text-align: center;
  overflow-x: hidden;
}

.section-title1 {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;

}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: #0b0c41;
  transition: opacity 0.3s;
  opacity: 0;
}

.card:hover::before {
  opacity: 1;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.service-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #FBA301;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: rotate(3deg) scale(1.05);
}

.ket h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.ket p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #555;
}

.services-image {
  flex-shrink: 0;
  position: relative;
}

.services-image img {
  width: 220px;
  height: auto;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.services-image:hover img {
  transform: rotate(5deg) scale(1.05);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .services-image {
    margin: 40px 0;
  }
}


/* ==========================
6. Stat Facts
============================= */

.bg-overlay {
  background-color: rgba(11, 12, 65, 0.8);
  display: block;
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  margin-bottom: 40px;
}

.stat-item .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
  padding-top: 22px;
}

.stat-item:hover .icon {
  background-color: #0b0c41;
}

.stat-item .icon .fa {
  font-size: 30px;
  color: #fff;
}

.stat-item .stat-title {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 25px;
  font-family: raleway, sans-serif;
  font-weight: 700;
}

.stat-item .stat-title .number {
  font-size: 50px;
  color: #FFFFFF;
  line-height: 70px;
  font-family: raleway, sans-serif;
  font-weight: 700;
}

/* ==========================
7. FAQ
============================= */
.faq-item {
  text-align: center;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.faq-item .icon {
  background-color: #29ABE2;
  width: 124px;
  height: 124px;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  padding-top: 50px;
  margin: 0 auto;
}

.faq-item:hover .icon {
  background-color: #FBA301;
}

.faq-item .icon .fa {
  font-size: 30px;
  color: #fff;
}

.faq-item .ket {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

.faq-item .ket h4 {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
}

.panel-faq.panel-group .panel {
  border-radius: 0px;
}

.panel-faq .panel-default>.panel-heading {
  color: #fff;
  background-color: #0071BC;
  background-color: #29ABE2;
  border-color: #ddd;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 8px 10px;
}

.panel-faq .panel-default>.panel-heading.active {
  background-color: #0071BC;
}

.panel-faq .panel-default {
  border-color: transparent;
}

.panel-faq .panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: transparent;
}

.panel-faq .panel-title {
  font-size: 14px;
}

.panel-faq .panel-body p {
  margin: 10px 0;
}

.panel-faq .panel-body {
  padding: 15px;
  background-color: #F8F8F8;
  margin-top: 4px;
}

.collapse.in {
  display: block;
  visibility: visible;
}

.panel-title>a,
.panel-title>a:active,
.panel-title>a:focus {
  color: inherit;
  text-decoration: none;
  display: block;
}

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

.faq-list li {
  list-style: none;
}

.faq-list li .fa {
  color: #29ABE2;
  font-size: 14px;
  margin-right: 10px;
}

.faq-item-image {
  position: relative;
  width: 100%;
  text-align: center;
}

.faq-item-image img {
  display: block;
}

/* ==========================
8. Testimonials
============================= */
.testimonials-section {
  padding: 80px 20px;
  background: #f6f8fb;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #555;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: left;
  padding: 20px;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.avatar {
  flex-shrink: 0;
  text-align: center;
  width: 100px;
}

.avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #FBA301;
  object-fit: cover;
  margin-bottom: 10px;
}

.avatar h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #0b0c41;
}

.avatar p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #FBA301;
}

.quote-box {
  position: relative;
  background: #ebebeb;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}

.quote-box::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #ebebeb;
  transform: rotate(45deg);
}

.quote {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.quote-link {
  font-size: 13px;
  color: #0b0c41;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.quote-link:hover {
  color: #fba301;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quote-box::before {
    left: 20px;
    top: -10px;
    transform: rotate(45deg);
  }
}

/* ==========================
 Many practical options 
============================= */


.practical-options-section {
  padding: 50px 40px;
  margin: 0 auto;
  text-align: center;
  background-color: #f9f9f9;
}

.practical-options-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.practical-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.practical-options-grid .option {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.practical-options-grid .option:hover {
  transform: translateY(-5px);
}

.practical-options-grid .option img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.practical-options-grid .option h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.practical-options-grid .option p {
  font-size: 0.95rem;
  line-height: 1.5;
}




/* ==========================
9. Stat Client
============================= */
.stat-client {
  padding: 80px 20px;
  background-color: #0b0c41;
  text-align: center;
}

.stat-client.bg-grey {
  background-color: #FFFFFF;
}

.client-img {
  text-align: center;
  margin-bottom: 40px;
}

.client-img img {
  margin: 0 auto;
}

/* ==========================
10. Blog
============================= */
.blog-item {
  margin-bottom: 40px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
}

.blog-item .gambar {
  position: relative;
  z-index: 1;
}

.blog-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
}

.icon-news {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -25px;
  right: 20px;
  background-color: #0b0c41;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 12px;
  color: #fff;
  font-size: 20px;
}

.item-body {
  position: relative;
  min-height: 290px;
  padding: 30px 20px 70px;
  text-align: center;
  font-family: Raleway, sans-serif;
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

.item-body .lead {
  font-size: 18px;
  font-weight: 700;
  color: #0b0c41;
  line-height: 25px;
  margin-bottom: 10px;
}

.body-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  font-weight: 700;
  color: #0b0c41;
  font-size: 13px;
}

.body-footer .fa {
  margin-right: 5px;
}

/* // */
.post-item .meta2 {
  padding: 10px 0;
  margin-bottom: 10px;
  color: #999;
  font-style: italic;
}

.post-item .meta2>div {
  display: inline-table;
  margin-right: 20px;
}

.post-item .meta2>div a {
  color: #999;
}

.post-item .meta2 .fa {
  margin-right: 20px;
}

.post-item .post-title2 {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #F1F1F1;
}

.post-item .post-title2,
.post-item .post-title2 a {
  font-size: 24px;
  line-height: 30px;
  color: #0071BC;
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
}

.post-item .meta2>div a:hover,
.post-item .post-title2 a:hover {
  color: #85DBFF;
}

/* // */
.image-wrap .meta div {
  float: left;
  width: 30%;
}

.image-wrap .meta .fa {
  margin-right: 20px;
}

.post-item {
  margin-bottom: 60px;
}

.post-item .post-title {
  margin-top: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #F1F1F1;
}

.post-item .post-title,
.post-item .post-title a {
  font-size: 24px;
  line-height: 30px;
  color: #0071BC;
  font-weight: 700;
  padding-bottom: 20px;
  display: block;
}

.post-item .post-title a:hover {
  color: #85DBFF;
}

.post-item .post-read-more {
  color: #0071BC;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  clear: both;
  display: block;
}

.post-item .post-read-more:hover {
  color: #85DBFF;
}

.post-item .post-read-more .fa {
  margin-left: 10px;
}

.post-item .carousel-control {
  background-image: none;
}

.post-item .carousel-control span {
  position: absolute;
  top: 45%;
  width: 50px;
  height: 50px;
  display: block;
  border: 2px solid #fff;
  margin-left: 30%;
  padding-top: 13px;
  border-radius: 50%;
}


.post-item .carousel-control.right {
  right: 35px;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.pagination>li {
  display: inline-block;
  margin-right: 10px;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.pagination>li>a,
.pagination>li>span {
  position: relative;
  float: left;
  padding: 13px 20px;
  background-color: #fff;
  border: none;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #29ABE2;
}

.widget {
  background-color: #F8F8F8;
  position: relative;
  border-top: 2px solid #0071BC;
  padding: 34px 35px;
  margin-bottom: 40px;
}

.widget .media {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
}

.widget .widget-heading {
  font-size: 18px;
  color: #5C5C5C;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
}

.widget .widget-heading:after {
  content: '';
  width: 75px;
  height: 24px;
  background-color: transparent;
  margin-left: 1px;
  border-bottom: 1px solid #0071BC;
  display: block;
  margin-bottom: 40px;
}

.widget .media-body {
  font-size: 12px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
}

.widget .media-body .meta-comment {
  font-size: 12px;
  line-height: 18px;
  color: #5C5C5C;
  font-weight: 500;
}

.widget .media-object {
  width: 64px;
  height: 64px;
}

.widget .media-body .meta-comment .fa {
  margin-right: 10px;
}

.widget.categories .list-unstyled li .fa {
  margin-right: 10px;
}

.widget.categories .list-unstyled li {
  padding: 4px 0;
}

.widget.categories .list-unstyled li a {
  color: #333333;
  font-weight: 700;
  text-decoration: none;
}

.widget.categories .list-unstyled li a:hover {
  color: #85DBFF;
}

.post-item.detail p {
  margin: 15px 0;
}

.post-item.detail blockquote {
  margin: 15px 0;
  line-height: 20px;
  color: #666666;
  font-weight: 700;
  margin-left: 40px;
}

.author-box {
  background-color: #29ABE2;
  padding: 30px;
  color: #fff;
}

.author-box .media-left img {
  width: 100px;
  height: 100px;
}

.author-box .media-heading {
  color: #333333;
  font-weight: 700;
}

.author-box .media-left {
  padding-right: 20px;
}

.comments-box {
  padding-bottom: 30px;
  border-bottom: 1px solid #E9E9E9;
}

.comments-box .media {
  padding: 20px;
  border: 1px solid #E9E9E9;
  background-color: #fff;
  margin-bottom: 30px;
}

.comments-box .media.comment {
  background-color: #fff;
}

.comments-box .media.reply-comment {
  background-color: #F6F6F6;
  margin-left: 40px;
}

.comments-box .media-heading {
  color: #0071BC;
  font-weight: 700;
}

.comments-box .media-left img {
  width: 100px;
  height: 100px;
}

.comments-box .date {
  margin-left: 100px;
}

.comments-box .title-heading,
.leave-comment-box .title-heading {
  font-size: 18px;
  line-height: 25px;
  color: #0071BC;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 40px;
}


.form-comment .form-control {
  padding: 24px 12px;
  border-radius: 0;
  border: 1px solid #E9E9E9;
  box-shadow: none;
}

.form-comment .btn-default {
  padding: 15px 60px;
  letter-spacing: 2px;
}

/* ==========================
11. Pricing
============================= */
.panel-pricing {
  border-color: #ddd;
  text-align: center;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 40px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .05);
}

.panel-pricing .price {
  padding: 25px 0;
  font-size: 80px;
  background-color: #29ABE2;
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}

.panel-pricing .price:before {
  content: '';
  width: 17px;
  height: 17px;
  background-color: #fff;
  display: block;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 0 auto;
  margin-top: -33px;
  margin-bottom: 20px;
}

.panel-pricing h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  padding-top: 10px;
}

.panel-pricing .price .subscript {
  font-size: 26px;
  margin-left: 0px;
}

.panel-pricing>.panel-heading {
  color: #333;
  background-color: #fff;
  border-color: #ddd;
  padding: 0px 0px;
}

.panel-pricing .price .subscript {
  font-size: 26px;
  margin-left: 0px;
}

.panel-pricing .table>tbody>tr>td,
.table>tfoot>tr>td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: none;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  border-bottom: 1px solid #ccc;
}

.panel-pricing .panel-footer {
  padding: 0px 15px 10px 15px;
  background-color: #fff;
  border-top: 0;
}

.panel-pricing .panel-body {
  padding: 15px 30px 0px 30px;
}

.panel-pricing .btn-primary {
  color: #fff;
  background-color: #29ABE2;
  border-color: #29ABE2;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  font-weight: 700;
  padding: 12px 0;
}

.panel-pricing .btn-primary:hover {
  color: #fff;
  background-color: #FBA301;
  border-color: #FBA301;
}

.panel-pricing:hover>.panel-heading,


.price-detail-heading {
  font-size: 18px;
  color: #0071BC;
  font-weight: 700;
  padding: 20px 0;
}

.price-detail-body {
  background-color: #F8F8F8;
  border-top: 2px solid #29ABE2;
  padding: 20px 40px 20px 20px;
}

.price-detail-body .item {
  padding: 5px;
}

.price-detail-body .item:after {
  clear: both;
  width: 100%;
  display: block;
  content: '';
}

.price-detail-body .item-name {
  float: left;
}

.price-detail-body .fa {
  margin-right: 10px;
  color: #29ABE2;
  font-size: 16px;
}

.price-detail-body .item-price {
  float: right;
  color: #666666;
  font-weight: 700;
}

.more-info-price {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 140px;
}

.more-info-price a {
  color: #0071BC;
  font-weight: 700;
}

/* ==========================
12. Contact
============================= */
.shake {
  margin-bottom: 40px;
}

.shake:after {
  clear: both;
  width: 100%;
  display: block;
  content: '';
}

.shake .form-control {
  padding: 24px 12px;
  border-radius: 0;
}

.shake .btn-default {
  padding: 15px 25px;
  float: right;
  background-color: #0b0c41;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
}

.shake .btn-default:active,
.shake .btn-default:visited,
.shake .btn-default:hover {
  background-color: #FBA301;
  border-color: #FBA301;
  color: #000;
}

p.help-block.text-danger li {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  color: #f00;
}

.alert-danger {
  color: #333031;
  background-color: #FFEDC4;
  border-color: #f00;
}

.contact-address {
  margin-top: 40px;
}

.contact-address-item {
  margin-bottom: 40px;
}

.contact-address-heading {
  color: #0b0c41;
  font-weight: 700;
  margin-top: 16px;
}

.maps-wraper {
  position: relative;
}

.maps {
  width: 100%;
  height: 300px;
  display: block;
  background: #ccc;
  position: relative;
}

#google-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #000;
}

#cd-google-map {
  position: relative;
  overflow: hidden;
}

#cd-google-map .col-md-12 {
  padding: 0;
}

#cd-google-map .address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  background-color: rgba(5, 5, 5, 0.9);
}

#cd-google-map .address .address-item {
  position: relative;
  padding-left: 44px;
}

#cd-google-map .address .address-item i {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 4px;
  color: #fcfcfc;
  font-size: 22px;
  text-align: center;
  line-height: 24px;
}

#cd-zoom-in,
#cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(0, 113, 188, .9);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url('../images/cd-icon-controller.svg');
}

.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
  background-color: #0071BC;
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}

#cd-zoom-out {
  background-position: 50% -32px;
}

/* ==========================
13. Footer
============================= */

.f-desc {
  background-color: #252525;
  color: #fff;
  padding: 50px 0;
}

.fcopy {
  background-color: #0b0c41;
  color: #fff;
  text-align: center;
  padding: 20px 20px;
}

.footer-item {
  line-height: 20px;
  color: #999999;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 250px;
}

.footer-sosmed {
  margin-top: 20px;
}

.footer-sosmed .item {
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #0b0c41;
  color: #fff;
  display: inline-table;
  padding-top: 6px;
  border-radius: 50%;
}

.footer-sosmed .item:hover {
  background-color: #FBA301;
}

.footer-sosmed .item .fa {
  font-size: 16px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  width: 190px;
  height: 88px;
  margin: -12px;
}

.footer-title {
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  font-family: raleway, sans-serif;
  font-weight: 400;
  position: relative;
  padding: 10px 0;
  margin-bottom: 40px;
}

.footer-title:after {
  position: absolute;
  content: '';
  width: 50px;
  height: 10px;
  border-bottom: 1px solid #fff;
}

.footer-blog-item {
  padding-left: 30px;
  margin-bottom: 15px;
}

.footer-blog-item:before {
  font-family: FontAwesome;
  content: "\f105";
  color: #fff;
  float: left;
  padding-left: -20px;
  margin-left: -26px;
  font-size: 16px;
}

.footer-blog-item .footer-blog-lead {
  line-height: 20px;
  color: #999999;
  font-weight: 400;
}

.footer-blog-item .footer-blog-lead a {
  color: #999999;
}

.footer-blog-item .footer-blog-lead a:hover {
  color: #FBA301;
}

.footer-blog-item .footer-blog-date {
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  font-family: raleway, sans-serif;
  font-weight: 400;
  margin-top: 5px;
}


.footer-form .form-control {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}


.footer-getintouch-item {
  clear: both;
  margin-bottom: 10px;
  content: '';
}

.footer-getintouch-item .icon {
  font-size: 18px;
  color: #fff;
  float: left;
  margin-right: 10px;
  text-align: center;
  width: 20px;
}

.footer-getintouch-item .icon .fa {
  font-size: 16px;
}

.footer-getintouch-item .desc {
  float: left;
  margin-bottom: 10px;
}

.footer-getintouch-item .desc .desc-1 {
  width: 60px;
  float: left;
}

.footer-getintouch-item .desc .desc-2 {
  width: 10px;
  float: left;
}

.footer-getintouch-item .desc .desc-3 {
  float: left;
}





@media (max-width: 1199px) {}

@media (max-width: 992px) {
  .info .info-item {
    margin-right: 20px;
  }

  .services-item-image img {
    position: static;
  }

  .work-info-icon {
    margin: 30px 0 0 0;
    width: 100%;
    text-align: center;
  }

  .work-info-body {
    float: left;
    margin: 10px 0 0 0px;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
  }

  .navbar-main .nav>li>a {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: block;
    height: auto;
    padding: 10px 0;
  }

  .header-top .info {
    margin-top: 5px;
  }

  .header-top .info .info-item {
    display: block;
    margin-right: 0;
    margin-bottom: 8px;
    font-size: 12px;
    text-align: center;
  }

  .header-top .info .info-item:last-child {
    margin-bottom: 0;
  }

  .header-top .info .info-item a {
    word-break: break-all;
  }

  .top-sosmed {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .top-sosmed span {
    width: 28px;
    height: 28px;
    padding-top: 6px;
    margin: 0 5px;
  }

  .carousel-caption {
    padding-bottom: 0px;
  }

  .navbar-brand {
    padding: 0px 15px;
    width: 180px;
    margin-left: -15px;
  }

  .navbar-brand>img {
    display: block;
  }

  .navbar-main .navbar-brand>img {
    width: 100px;
    height: 60px;
    margin-left: 12px;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
  }

  .navbar-main.stiky .navbar-brand {
    margin-top: 0px;
  }

  .navbar-main.stiky .navbar-nav>li>a {
    padding-top: 20px;
    min-height: 60px;
  }

  /* costea */
  .navbar-nav {
    padding: 8px;
  }

  .navbar-main .navbar-nav>li>a {
    margin-bottom: 8px;
    padding-top: 10px;
    min-height: 40px;




  }

  .navbar-main .navbar-nav>li.active a,
  .navbar-main .navbar-nav>li>a:hover {
    background-color: #48B8E7;
    color: #fff;
  }

  .navbar-nav .open .dropdown-menu>li>a {
    background-color: #fff;
    padding: 10px 16px;
    margin-bottom: 5px;
  }

  .navbar-main .navbar-nav>li.open>a {
    margin-bottom: 0px;
  }

  .navbar-main.stiky .navbar-nav>li>a,
  .navbar-main.stiky .navbar-nav>li.open>a {
    padding-top: 10px
  }

  /* end costea */
  .work-info {
    position: static;
  }

  .work-info .container {
    padding-right: 0;
    padding-left: 0;
  }

  .banner,
  .subbanner {
    margin-top: 50px;
  }

  .banner .caption {
    position: absolute;
    top: 150px;
    left: 20px;
    right: 20px;
  }

  .work-info-item {
    width: 100%;
  }

  .testimonials-item .quote-box {
    margin-left: 110px;
  }

  .about-wrap {
    margin-left: 0px;
  }

  .work-info-icon {
    margin: 30px 0 0 30px;
    width: 60px;
    text-align: left;
  }

  .work-info-body {
    float: left;
    margin: 30px 0 0 0;
    width: auto;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .services-item-image img {
    position: static;
  }

}

@media (max-width: 479px) {
  .item .carousel-caption .caption-heading {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .item .caption-desc {
    display: none;
  }

  .banner .caption a.btn-default,
  .wrap-caption a.btn-default {
    font-size: 10px;
    line-height: 20px;
    padding: 2px 12px;
  }

  .image-wrap .meta {
    padding: 5px 20px;
  }

  .image-wrap .meta div {
    width: 50%;
    font-size: 10px;
    line-height: 10px;
  }

  .image-wrap .meta div:nth-child(2) {
    display: none;
    line-height: 10px;
  }

  .image-wrap .meta .fa {
    display: none;
  }

  .media-left,
  .media-right,
  .media-body {
    display: inline;
  }

  .comments-box .date {
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .navbar-main.stiky .navbar-brand>img {
    width: 130px;
    height: 60px;
    margin-left: 0px;
    -webkit-transition: 0.2s all linear;
    transition: 0.2s all linear;
  }
}

/* washer section */

/* ... (previous CSS remains unchanged) ... */

/* Washer section */
.Washers-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1% 5%;
  gap: 40px;
  box-sizing: border-box;
}

.text-content {
  flex: 1 1 50%;
  max-width: 600px;
  color: #0b0c41;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.text-content .subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.text-content .description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 30px;
}

.text-content .button {
  display: inline-block;
  background-color: #0b0c41;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(11, 12, 65, 0.2);
}

.text-content .button:hover {
  background-color: #1e1f5b;
  transform: translateY(-2px);
}

.image-container {
  flex: 1 1 40%;
  text-align: center;
}

.image-container img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.02);
}

/* Water Banner Section */
.water-banner {
  background: linear-gradient(90deg, #c6d693 0%, #d7e6a7 100%);
  display: flex;
  padding: 25px 30px;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.water-banner img {
  margin-left: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.water-banner .text h4 {
  font-weight: 600;
  font-size: 1.8rem;
  color: #1c1c1c;
  margin-bottom: 8px;
}

.water-banner .text p {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  max-width: 600px;
}

/* Features Section */
.new-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 20px;
  margin: 0 auto;
  gap: 20px;
  background-color: #f5faff;
  border-radius: 20px;
}

.features {
  flex: 1 1 600px;
}

.features h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #0b0c41;
  margin-left: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.feature-item img {
  width: 80px;
  flex-shrink: 0;
  margin-left: 60px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  margin-bottom: 10px;
}

.feature-item .info h4 {
  font-weight: bold;
  font-size: 1.4rem;
  color: #252525;
  margin-left: 40px;
  margin-top: 6px;
}

.feature-item .info p {
  font-size: 1rem;
  margin-top: 6px;
  color: #0b0c41;
  line-height: 1.6;
  margin-left: 40px;
}

.containerr {
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  gap: 20px;
}

.block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px;
}

.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.text {
  flex: 1 1 55%;
  color: #1a1a1a;
  font-size: 1.05rem;
}

.text h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: #0b0c41;
}

.text p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.text strong {
  font-weight: bold;
  color: #0b0c41;
}

.image {
  flex: 1 1 40%;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .block {
    flex-direction: column;
    padding: 25px 20px;
  }

  .text,
  .image {
    flex: 1 1 100%;
  }

  .text h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .text {
    text-align: center;
  }
}


/* Barrier Washer solutions */

.solutions-section {
  background-color: #b0d0db;
  /* light blue background */
  padding: 33px 5%;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.solutions-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b0c41;
  margin-bottom: 50px;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.solution-card {
  background-color: white;
  overflow: hidden;
  max-width: 330px;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.solution-card > a:first-child {
  display: block;
  line-height: 0;
  font-size: 0;
  margin: 0;
}

.solution-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b0c41;
  margin: 20px;
}

.solution-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 20px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .solutions-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .solutions-section h2 {
    font-size: 1.5rem;
    line-height: 30px;
  }
}


/* product */

.product-gridd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: auto;
}

.prod-h2 {
  padding: 35px 0;
  font-size: 2rem;
  font-weight: 600;
  color: #0b0c41;
  text-align: center;
  /* margin-top: 150px; */
}

.product-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 10px;
  border-radius: 0;
  background: #fff;
}

.product-info {
  margin: 1rem 0;
}

.product-model {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.product-info h3 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
}

.product-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 8px 4px;
  background-color: #0A0E2F;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 8px;
  color: #f3efef;
}

.product-code:hover {
  background-color: #c8c8c8;
  color: #000;
}

.product-code .fa-file-pdf-o {
  color: #f40f02;
  margin-left: 10px;
}

.product-code strong {
  margin-left: 5px;
}

/* Responsive styles for tablets */
@media (max-width: 992px) {
  .product-gridd {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .prod-h2 {
    font-size: 1.8rem;
    padding: 30px 15px;
  }

  .product-card img {
    height: 240px;
    padding: 8px;
  }
}

/* Responsive styles for mobile landscape */
@media (max-width: 768px) {
  .product-gridd {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .prod-h2 {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 25px 10px;
    margin: 0;
  }

  .product-card img {
    height: 200px;
    padding: 8px;
  }

  .product-model {
    font-size: 14px;
  }

  .product-code {
    width: 130px;
    padding: 6px 4px;
    font-size: 14px;
  }
}

/* Responsive styles for mobile portrait */
@media (max-width: 480px) {
  .product-gridd {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .prod-h2 {
    font-size: 1.4rem;
    padding: 20px 10px;
  }

  .product-card {
    max-width: 100%;
  }

  .product-card img {
    height: 220px;
    padding: 10px;
  }

  .product-model {
    font-size: 15px;
  }

  .product-code {
    width: 140px;
    padding: 8px 6px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .product-gridd {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .prod-h2 {
    font-size: 1.2rem;
    padding: 15px 5px;
  }

  .product-card img {
    height: 200px;
    padding: 8px;
  }

  .product-model {
    font-size: 13px;
  }

  .product-code {
    width: 120px;
    padding: 6px 4px;
    font-size: 12px;
  }
}


/* essentia-section  */

.essentia-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eaf0f6;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.essentia-text {
  flex: 1 1 60%;
  min-width: 280px;
  margin-bottom: 20px;
}

.essentia-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0A0E2F;
}

.essentia-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #0A0E2F;
}

.essentia-button {
  flex: 1 1 30%;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
}

.button {
  background-color: #0A0E2F;
  color: white;
  padding: 14px 24px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.button i {
  font-size: 16px;
}

.button:hover {
  background-color: #1a1c3a;
}

@media (max-width: 768px) {
  .essentia-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .essentia-button {
    justify-content: flex-start;
  }
}


.Unique-section {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 20px;
}

.Unique-section h2 {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0A0E2F;
}

.Unique-section p.subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 40px;
  color: #333;
}

.feature-boxes {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  margin-left: 200px;
}

.Unique-feature {
  max-width: 300px;
  text-align: center;
  display: flex;
  margin-right: 10px;

}

.Unique-feature img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.Unique-feature p {
  font-size: 1rem;
  color: #333;
  text-align: center;
  margin-left: 10px;
}

.delivery-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #0A0E2F;
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 200px;
  text-align: center;
}

.delivery-option {
  max-width: 300px;
}

.delivery-option img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 15px;
}

.delivery-option h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #001c54;
}

.delivery-option p {
  font-size: 0.95rem;
  margin-top: 8px;
}

@media (max-width: 768px) {

  .feature-boxes,
  .delivery-options {
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .Washers-section {
    padding: 1% 3%;
  }

  .feature-boxes {
    margin-left: 0;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .Washers-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 20px;
  }

  @media (max-width: 768px) {
    .Washers-section {
      flex-direction: column;
      align-items: flex-start;
      padding: 1% 3%;
    }

    .text-content,
    .image-container {
      width: 100%;
      max-width: 100%;
    }

    .text-content h2 {
      font-size: 2rem;
    }

    .text-content .description {
      font-size: 1rem;
    }

    .image-container {
      margin-top: 0;
    }

    .feature-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .feature-item img {
      margin-left: 0;
    }

    .feature-item .info h4,
    .feature-item .info p {
      margin-left: 0;
    }
  }

  @media (max-width: 768px) {
    .new-section {
      flex-direction: column;
      padding: 30px 15px;
    }

    .water-banner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .water-banner img {
      margin-left: 0;
    }

    .features h2 {
      font-size: 1.8rem;
      margin-left: 0;
      text-align: center;
      line-height: 30px;
    }

    .feature-item .info h4 {
      font-size: 1.25rem;
    }

    .block {
      flex-direction: column;
      padding: 25px 20px;
    }

    .text,
    .image {
      flex: 1 1 100%;
    }

    .text h3 {
      font-size: 1.5rem;
      text-align: center;
    }

    .text {
      text-align: center;
    }

    .solutions-grid {
      flex-direction: column;
      align-items: center;
    }

    .essentia-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 30px;
    }

    .essentia-button {
      justify-content: center;
    }

    .feature-boxes,
    .delivery-options {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 576px) {
    .text-content h2 {
      font-size: 1.8rem;
    }

    .text-content .subheading {
      font-size: 1rem;
    }

    .text-content .description {
      font-size: 0.9rem;
    }

    .water-banner .text h4 {
      font-size: 1.5rem;
    }

    .water-banner .text p {
      font-size: 0.9rem;
    }

    .feature-item .info h4 {
      font-size: 1.2rem;
    }

    .feature-item .info p {
      font-size: 0.9rem;
    }

    .solution-card h3 {
      font-size: 1.2rem;
    }

    .solution-card p {
      font-size: 0.9rem;
    }

    .essentia-text h2 {
      font-size: 1.5rem;
    }

    .essentia-text p {
      font-size: 0.9rem;
    }

    .Unique-section h2 {
      font-size: 1.5rem;
    }

    .Unique-feature p {
      font-size: 0.9rem;
    }

    .delivery-section h3 {
      font-size: 1.3rem;
    }

    .delivery-option h4 {
      font-size: 1rem;
    }

    .delivery-option p {
      font-size: 0.9rem;
    }
  }
}


.tree-section {
  padding: 60px 20px;
  text-align: center;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 40px;
}

.tree-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.tree-image {
  width: 100%;
  height: auto;
}

.info-block {
  position: absolute;
  width: 160px;
  padding: 10px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-block i {
  margin-right: 6px;
}

.info-block h3 {
  font-size: 14px;
  margin: 8px 0 4px;
}

.info-block p {
  font-size: 12px;
  margin: 0;
  line-height: 1.3;
}

/* Colored borders */
.pink {
  border-left: 4px solid #d946ef;
}

.cyan {
  border-left: 4px solid #06b6d4;
}

.indigo {
  border-left: 4px solid #4338ca;
}

.red {
  border-left: 4px solid #ef4444;
}

.yellow {
  border-left: 4px solid #eab308;
}

/* Positioning */
.top-left {
  top: 40px;
  left: 0;
}

.bottom-left {
  bottom: 40px;
  left: 0;
}

.top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-right {
  top: 40px;
  right: 0;
}

.bottom-right {
  bottom: 40px;
  right: 0;
}


.commercial-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.commercial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.commercial-container.reverse {
  flex-direction: row-reverse;
}

.commerciral-text-block {
  flex: 1 1 500px;
  animation: fadeInUp 0.6s ease;
}

.commerciral-image-block {
  background-color: #0b0c41;
  overflow: hidden;
  max-width: 330px;
  width: 100%;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.commerciral-image-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.commerciral-image-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}


h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.commerciral-icon-text p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f5faff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background-color: #001c54;
  transform: translateY(-2px);
}

.commerciral-icon-text {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.commerciral-icon {
  /* background: linear-gradient(135deg, #e0e0e0, #fafafa); */
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  color: #333;
  flex-shrink: 0;
}

.note {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {

  .commercial-container,
  .commercial-container.reverse {
    flex-direction: column;
  }

  .text-block,
  .image-block {
    flex: 1 1 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Commercial Section */
.commercials-section {
  padding: 30px 70px;
  background: linear-gradient(to bottom right, #f5f7fa, #e4ecf4);
}

.pr-lead {
  max-width: 1200px;
  margin-top: 123px;
  padding: 20px;
}

.btn-contact {
  background-color: #0b0c41;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 20px;
}

.commercial-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  padding-bottom: 40px;
}

.commercial-product {
  width: 280px;
  text-align: center;
}

.commercial-product img {
  width: 90%;
  height: 180px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.commercial-product img:hover {
  transform: scale(1.05);
}

.commercial-product h3 {
  padding: 10px;
  font-size: 1.2rem;
  color: #0b0c41;
}

.commercial-product h3:hover {
  color: #FBA301;
  text-decoration: underline;
}

.commercial-product a {
  display: block;
  margin: 5px;
  color: #caa436;
  text-decoration: none;
  font-size: 0.95rem;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .commercial-products {
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .commercial-products {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }
}

@media (max-width: 500px) {
  .commercial-products {
    grid-template-columns: 1fr; /* 1 item per row */
  }
}

@media (max-width: 768px) {
  .pr-lead {
    margin-top: 100px;
    padding: 0 20px;
    line-height: 40px;
  }

  .commercial-product {
    width: 100%;
  }

  .commercial-product img {
    height: auto;
  }
  
}

@media (max-width: 1200px) {
  .commercials-section {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 992px) {
  .commercials-section {
    padding: 20px 30px;
  }
  
}

@media screen and (max-width: 576px) {
  .commercials-section {
    padding: 20px 10px;
  }
  
}

/* Contact */
.contact {
  background-color: #c4d69a !important;
  /* background: #0b0c41; */
  text-align: center;
  padding: 50px;
}

.contact h2 {
  color: #0b0c41;
  margin-bottom: 15px;
  font-size: 2rem;
}

.contact p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}


.contact .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #0b0c41;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact .btn:hover {
  background: #FBA301;
  color: #fff;
}


/* Gallery Section */
.tc-gallery {
  background: #f8fafc;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 54, 93, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.gallery-caption h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
  opacity: 0.9;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-caption h3,
.gallery-item:hover .gallery-caption p {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }
}

/* our partners section */
.customers-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.customers-section h2 {
  text-align: left;
  color: #0b0c41;
  margin-bottom: 30px;
  font-size: 28px;
}

.customer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.customer-card {
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  background-color: rgba(136, 184, 204, 0.8) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.customer-card img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;

}

.customer-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #0b0c41;
  margin-bottom: 10px;
}

.customer-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Gallery Section */
.in-gallery {
  padding: 10px 60px 60px;
}

@media screen and (max-width: 768px) {
  .in-gallery {
    padding: 0 30px;
  }
  
}

.in-container {
  max-width: 1200px;
}

.in-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.in-section-title h2 {
  color: #0b0c41;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .in-section-title h2 {
    font-size: 32px;
    margin: 5px;
    line-height: 40px;
    text-align: left;
  }

  .in-section-title p {
    font-size: 14px;
    margin-top: 12px;
    padding: 5px;
    text-align: left;
  }
}

.in-section-title p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.in-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.in-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.in-gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.in-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.in-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.in-gallery-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 54, 93, 0.1), rgba(26, 54, 93, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 25px;
  text-align: center;
}

.in-gallery-caption {
  transform: translateY(30px);
  transition: transform 0.3s ease;
  width: 100%;
}

.in-gallery-caption h3 {
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.1;
}

.in-gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0 0 15px;
  line-height: 1.2;
}

.in-gallery-item:hover .in-gallery-overlay {
  opacity: 1;
}

.in-gallery-item:hover .in-gallery-caption {
  transform: translateY(0);
}

.in-gallery-item:hover img {
  transform: scale(1.1);
}

/* requirements section */
.requirements-section {
    margin-top: 50px;
    padding-bottom: 80px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    color: #0A0E2F;
    margin-bottom: 10px;
    font-size: 32px;
    margin-top: 50px;
}

.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.requirements-form {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: #0A0E2F;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #FBA301;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-section {
        padding: 40px 20px;
    }
    
    .requirements-form {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .submit-btn {
        width: 100%;
    }
}



/* Breadcrumb Styles */
.br-breadcrumb-bg {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.br-container {
    margin: 0 auto;
    padding: 0 15px;
}

.br-breadcrumb {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.br-breadcrumb li {
    display: flex;
    align-items: center;
}

.br-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #6c757d;
}

.br-breadcrumb a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.br-breadcrumb a:hover {
    color: #0A0E2F;
}

.br-breadcrumb .active {
    color: #6c757d;
    font-size: 14px;
}


.prods-h2 {
  margin-top: 200px;
  text-align: center;
  font-weight: 700;
  font-size: 2.3rem;
  color: #0b0c41;
  margin-bottom: 70px;
  line-height: 1.1;
}

/* Show All Button Container */
.show-all-container {
  text-align: center;
  margin: 40px 0;
  padding: 0 20px;
}

.show-all-btn {
  padding: 12px 30px;
  font-size: 16px;
  background-color: #0A0E2F;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #f3efef;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.show-all-btn:hover {
  background-color: #FBA301;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .prods-h2 {
    font-size: 1.5rem;
    margin-top: 60px;
  }

  .show-all-container {
    margin: 30px 0;
  }

  .show-all-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .prods-h2 {
    font-size: 1.8rem;
    margin-top: 130px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .show-all-container {
    margin: 25px 0;
  }

  .show-all-btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 90%;
    max-width: 250px;
  }
}

.highlight-desc {
  background: #f8e8d1;
  border-left: 5px solid #fba301;
  color: #142b4d;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 18px 28px;
  margin: 0 auto 28px auto;
  max-width: 850px;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 2px 10px rgba(251,163,1,0.09);
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .highlight-desc {
    padding: 10px 10px;
    font-size: 1rem;
  }
}


/* ==========================
Solution Section (from f-equipment)
============================= */
.solution-section {
  padding: 60px 20px;
  background-color: #b0d0db;
}

.solution-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.solution-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #0b0c41;
  width: 100%;
  display: block;
}

.solution-cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.solution-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.solution-card > a {
  display: block;
  line-height: 0;
  margin: 0;
}

.solution-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 10px 10px 0 0;
}

.solution-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  font-weight: 700;
  color: #001a3a;
}

.solution-card p {
  margin: 0 15px 20px;
  font-size: 1rem;
  color: #333;
}

.solution-card a {
  margin: auto 15px 20px;
  color: #c5a642;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.solution-card a:hover {
  text-decoration: underline;
}

/* Solution Section Responsive */
@media (max-width: 768px) {
  .solution-section {
    padding: 40px 15px;
  }
  
  .solution-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .solution-cards {
    gap: 20px;
  }
  
  .solution-card {
    min-width: 100%;
    max-width: 100%;
  }
}


/* ===== BRAND SECTION STYLES (for index page) ===== */
.brands-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  text-align: center;
}

.brands-section h2 {
  font-size: 35px;
  color: #0b0c41;
  margin-bottom: 70px;
  font-weight: 700;
}

.brand-sprite {
  position: relative;
  max-width: 1100px;
  margin: 18px auto 0 auto;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 26px rgba(11,22,60,0.04);
}

.brand-sprite-img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 4px solid #0b0c41;
}

@media (max-width: 768px) {
  .brands-section {
    padding: 30px 15px;
  }
  
  .brands-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .brand-sprite {
    padding: 10px;
    max-width: 100%;
  }
  
  .brand-sprite-img {
    width: 100%;
    min-height: 200px;
    object-fit: contain;
    border-width: 3px;
  }
}

@media (max-width: 480px) {
  .brands-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .brand-sprite {
    padding: 5px;
  }
  
  .brand-sprite-img {
    min-height: 180px;
    border-width: 2px;
  }
}

/* ===== OUR PRESTIGIOUS CUSTOMERS SECTION (for index page) ===== */
.abu-customers-section {
   background: linear-gradient(rgba(30, 31, 91, 0.9), rgba(30, 31, 91, 0.5)), url('../images/img/abu-customer-logo.png');
    background-size: cover;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.abu-customers-section h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.abu-customers-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  justify-content: center;
}

.abu-customers-slider::before,
.abu-customers-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.abu-customers-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(30, 31, 91, 0.9), transparent);
}

.abu-customers-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(30, 31, 91, 0.9), transparent);
}

.abu-customers-track {
  display: flex;
  gap: 50px;
  animation: scrollAbuCustomers 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.abu-customers-track:hover {
  animation-play-state: paused;
}

.abu-customer-logo {
  flex-shrink: 0;
  width: 320px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid #0b0c41;
}

.abu-customer-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.abu-customer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.abu-customer-logo:hover img {
  filter: grayscale(0%);
}

@keyframes scrollAbuCustomers {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .abu-customers-section {
    padding: 40px 15px;
  }

  .abu-customers-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .abu-customers-track {
    gap: 30px;
    animation-duration: 25s;
  }

  .abu-customer-logo {
    width: 200px;
    height: 100px;
  }

  .abu-customers-slider::before,
  .abu-customers-slider::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .abu-customers-section h2 {
    font-size: 22px;
  }

  .abu-customers-track {
    gap: 25px;
    animation-duration: 20s;
  }

  .abu-customer-logo {
    width: 150px;
    height: 80px;
    padding: 8px;
  }

  .abu-customers-slider::before,
  .abu-customers-slider::after {
    width: 30px;
  }
}


/* ==========================
   UNIFIED SECTION HEADING STYLES
   (Matching "Why Choose Us?" styling)
============================= */
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #0b0c41;
  margin-bottom: 20px;
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}

/* Override specific section h2 to match unified style */
.in-section-title h2,
.brands-section h2,
.abu-customers-section h2,
.solution-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  width: 100%;
}

.in-section-title h2,
.brands-section h2,
.solution-section h2 {
  color: #0b0c41;
}

/* Keep white color for dark background section */
.abu-customers-section h2 {
  color: #fff;
}

/* Responsive adjustments for unified headings */
@media (max-width: 768px) {
  .section-heading,
  .in-section-title h2,
  .brands-section h2,
  .abu-customers-section h2,
  .solution-section h2 {
    font-size: clamp(24px, 5vw, 32px);
  }
}

@media (max-width: 480px) {
  .section-heading,
  .in-section-title h2,
  .brands-section h2,
  .abu-customers-section h2,
  .solution-section h2 {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* ==========================
   TABLET VIEW - MOBILE LAYOUT
   Hide desktop nav, show hamburger menu on tablets
   ========================== */
@media (min-width: 768px) and (max-width: 1199px) {
  /* Hide desktop navigation */
  .navbar-collapse.collapse,
  .navbar-collapse.collapse.desktop-nav {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  
  /* Show hamburger menu */
  .sidebar-toggle,
  .navbar-toggle.sidebar-toggle {
    display: flex !important;
    visibility: visible !important;
  }
  
  /* Fix main navbar */
  .navbar-main .container {
    padding: 0 15px;
  }
  
  .navbar-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    float: none !important;
    margin: 0 !important;
    padding: 10px 0;
  }
  
  .navbar-brand {
    float: none !important;
    padding: 5px 0 !important;
    height: auto !important;
    margin: 0 !important;
  }
  
  .navbar-brand img {
    height: 60px;
    width: auto;
  }
  
  .sidebar-toggle {
    float: none !important;
    margin: 0 !important;
    margin-left: auto !important;
  }
}

@media (max-width: 767px) {
  .desktop-nav,
  .navbar-collapse {
    display: none !important;
  }
  
  .sidebar-toggle {
    display: flex !important;
  }
}
