/* General Styles */
body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Banner Styling */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 60px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  max-width: 90%;
}

.banner-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.banner-overlay p {
  font-size: 1.5rem;
  font-weight: 300;
}

.banner-overlay h1,
.banner-overlay p {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s ease forwards;
}

.banner-overlay p {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .banner-overlay {
    padding: 30px 20px;
  }

  .banner-overlay h1 {
    font-size: 2rem;
  }

  .banner-overlay p {
    font-size: 1rem;
  }
}


/* Navbar section */
.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 5px rgba(0, 209, 255, 0.3);
}

.dropdown-menu {
  min-width: 200px;
  border-radius: 0.5rem;
}

.dropdown-item {
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #1d2549;
  padding-left: 1.2rem;
}

/* Counter section */
.counter-section {
  background: linear-gradient(135deg, #0f2027, #1a2a35, #254256, #2c5364, #3a6c80);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.counter-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  display: inline-block;
}

.counter-count {
  font-size: 5.5rem;
  font-weight: 700;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
  margin-bottom: 10px;
  animation: pulse 2s infinite ease-in-out;
}

.counter-label {
  font-size: 1.6rem;
  color: #ffffffcc;
  font-weight: 300;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 10px rgba(0,245,255,0.5); }
  50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(0,245,255,0.8); }
}

/* We RO Section */
.we-ro-section {
  background: linear-gradient(135deg, #eef5ff, #d6e9ff);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.we-ro-container {
  max-width: 1400px;
  margin: 0 auto;
}

.we-ro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.we-ro-text {
  flex: 1 1 600px;
  text-align: left;
}

.we-ro-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 20px;
  line-height: 1.4;
}

.we-ro-highlight {
  background: #007bff;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.we-ro-subheading {
  font-size: 1.35rem;
  color: #333;
  margin-bottom: 30px;
}

.we-ro-strong {
  color: #007bff;
}

.we-ro-terms {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.we-ro-image-wrapper {
  flex: 1 1 600px;
  text-align: center;
}

.we-ro-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .we-ro-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .we-ro-text {
    text-align: center;
  }

  .we-ro-heading {
    font-size: 2rem;
  }

  .we-ro-subheading {
    font-size: 1.1rem;
  }
}


.industries-we-served-section {
  background: linear-gradient(to bottom right, #f3f8ff, #e6f0fa);
  padding: 100px 40px;
  font-family: 'Poppins', sans-serif;
}

.industries-we-served-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.industries-we-served-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #002f6c;
  position: relative;
  margin-bottom: 60px;
}

.industries-we-served-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.industries-we-served-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.industries-we-served-card {
  background: #ffffffcc;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.industries-we-served-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.industries-we-served-card img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.industries-we-served-card:hover img {
  transform: scale(1.05);
}

.industries-we-served-card p {
  font-weight: 600;
  font-size: 1.2rem;
  color: #003366;
}

/* Responsive */
@media (max-width: 992px) {
  .industries-we-served-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-we-served-grid {
    grid-template-columns: 1fr;
  }

  .industries-we-served-title {
    font-size: 2rem;
  }
}

.industries-we-served-card .icon {
  margin-bottom: 16px;
  color: #007bff;
}

.industries-we-served-card svg {
  width: 64px;
  height: 64px;
  stroke: #007bff;
  margin-bottom: 16px;
}


/* Blog Cards */
.blogs-modern {
  font-family: 'Poppins', sans-serif;
}

.blogs-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1d2549;
}

.blogs-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.blog-card-modern {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.blog-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-modern:hover .blog-img-container img {
  transform: scale(1.1);
}

.blog-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 74, 173, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-modern:hover .blog-img-overlay {
  opacity: 1;
}

.overlay-link {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.overlay-link:hover {
  background: white;
  color: #004aad;
}

.blog-content {
  padding: 20px 24px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 10px;
}

.blog-summary {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.blog-meta .blog-author {
  font-weight: 500;
}

.blog-meta .blog-date {
  margin-left: 8px;
}

/* Testimonial section */
.testimonial-section {
  background: linear-gradient(135deg, #001d3d, #003566, #1d3557);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.testimonial-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #ffffff;
}

.testimonial-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

.testimonial-card {
  background: linear-gradient(145deg, #0b1f3a, #112d4e);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  color: #e5f6ff;
  text-align: left;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  border: 1.5px solid rgba(0, 200, 255, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.9);
}

.quote-icon {
  font-size: 3rem;
  color: #00c8ff;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #d8ecf6;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #00e5ff;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.testimonial-position {
  font-size: 0.85rem;
  color: #bcd8e9;
  margin: 0;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-wrapper {
  padding-top: 6px;
}


/* Contact Form */
.contact-form-modern {
  background: linear-gradient(135deg, #f0f4f8, #e6f3fa);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.contact-info-block h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #102542;
}

.contact-info-block p {
  font-size: 1.1rem;
  color: #555;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.icon-circle {
  background: linear-gradient(to right, #0077ff, #00c6ff);
  color: white;
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.contact-text a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003f75;
  text-decoration: none;
}

.contact-form-box {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-box .form-group {
  margin-bottom: 20px;
}

.contact-form-box .form-control {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 15px;
  font-size: 0.95rem;
}

.contact-form-box textarea.form-control {
  height: auto;
  padding: 15px;
}

.submit-btn {
  background: linear-gradient(to right, #007bff, #00c6ff);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #005fcc, #00aaff);
}


/* Footer Styling */
.footer {
    background: #1d2549;
    color: white;
    padding: 40px 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f8b400;
}

.footer h5 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.footer .social-icons a {
    font-size: 18px;
    color: white;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #f8b400;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Product Sections */
.product-main {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}
.product-card h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.product-card h2 i {
  color: #2f80ed;
  margin-right: 8px;
}
.product-card ul {
  list-style: none;
  padding-left: 0;
  color: #444;
}
.product-card ul li {
  margin-bottom: 8px;
}

/* Contact us section */
.form-grpup .input {
    font-family: Montserrat-Regular;
}
.form-group .form-control {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #fff;
	border: 1px solid #dee2e6;
	color: #3c4858;
	height: 42px;
	font-size: 13px;
	border-radius: 6px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.form-group {
	margin-bottom: 20px;
}
.form-group textarea {
    height: 120px !important;
}
.question-wap h6 {
    color: #0a2541;
    margin: 0;
    letter-spacing: .5px;
    font-size: 50px;
}
.question-wap p {
  font-size: 16px;
  color: #646464;
  line-height: 22px;
}

a.homepage-submit{
  background-color: #1d2549;
  color: #fff;
  display: inline-block;
  border: none;
  height: 48px;
  padding: 10px 31px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: .5s all;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
section.contact-us .contact-box {
    text-align: center;
    margin-top: 90px;
    margin-bottom: 20px;
    height: 290px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}
.contact-box {
    border: 2px solid #1d2549;
    background: #fff;
    transition: 0.5s;
}
.contact-box a {
    text-decoration: none;
}
.contact-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1d2549 !important;
}
.contact-box h5 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
}
.contact-box p {
    margin: 0px;
    font-size: 16px;
    color: #000;
    line-height: 26px;
}
section.map form.from-inline .form-control {
    height: 55px;
    border: 1px solid #1d2549;
    border-radius: 0px;
    padding: 0 20px;
    color: #000 !important;
    margin: 0 0 10px;
}
section.map form.from-inline textarea.form-control {
    height: 180px;
    border-radius: 0px;
    vertical-align: text-top;
    padding: 20px;
    resize: none;
}
section.map form.from-inline button {
    background-color: #1d2549;
    color: #fff;
    display: inline-block;
    border: none;
    height: 48px;
    padding: 4px 31px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: 0.5s all;
}
.google-mapp {
    margin-top: 60px;
}

section.BannerSction2 {
    background-size: cover;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    height: 485px;
    background-position: center;
}

/* Hero Section */
/* General Section Styling */
section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* About us Section */
/* GENERAL */
.about-page {
  font-family: 'Poppins', sans-serif;
  color: #1e1e1e;
}

/* BANNER */
.about-banner {
  background: linear-gradient(to right, #0077b6, #00b4d8);
  color: white;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
}

.about-banner h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-banner p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* STORY SECTION */
.about-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 60px 0;
}

.about-story .text {
  flex: 1 1 50%;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-story .image {
  flex: 1 1 40%;
  border-radius: 16px;
  overflow: hidden;
}

.about-story .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* IMPACT STATS */
.impact-section {
  background: linear-gradient(to right, #e0f7fa, #f8f9fa);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.impact-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003049;
  margin-bottom: 60px;
  position: relative;
}

.impact-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00b4d8;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

.impact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.impact-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  width: 280px;
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
}

.impact-card h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #00b4d8;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

/* MAP SECTION */
.presence-section {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

.presence-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.india-map {
  position: relative;
  max-width: 450px !important;
  margin: auto;
}

.india-map img {
  width: 100%;
  height: auto;
}

.india-map .map-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: red;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,0,0,0.5);
  transform: translate(-50%, -50%);
}

.marker-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0077b6;
  margin-top: 4px;
}

/* Adjust positions */
.map-marker[data-state="GUJARAT"]    { top: 45%; left: 30%; }
.map-marker[data-state="MP"]         { top: 58%; left: 42%; }
.map-marker[data-state="RAJASTHAN"]  { top: 35%; left: 33%; }
.map-marker[data-state="BIHAR"]      { top: 45%; left: 60%; }
.map-marker[data-state="PUNJAB"]     { top: 25%; left: 35%; }
.map-marker[data-state="AP"]         { top: 70%; left: 55%; }
.map-marker[data-state="CHHATTISGARH"]{ top: 55%; left: 52%; }
.map-marker[data-state="KARNATAKA"]  { top: 75%; left: 40%; }
.map-marker[data-state="MAHARASHTRA"]{ top: 62%; left: 38%; }

.map-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marker i {
  color: #e11d48; /* Tailwind rose-600 */
  font-size: 22px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.marker {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
}

.marker::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

.marker:hover::after {
  opacity: 1;
}


/* .marker:hover {
  background-color: #1e40af;
  transform: translate(-50%, -50%) scale(1.1);
} */


/* PROMISE SECTION */
.promise-section {
  background: #e0f7fa;
  padding: 60px 20px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.promise-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #004d61;
}

/* MESSAGE SECTION */
.about-message-section {
  font-family: 'Poppins', sans-serif;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.about-message-section .text-highlight {
  color: #00d4ff;
}

/* WHY US SECTION */
.why-choose-section {
  background: #f1f1f1;
  padding: 60px 20px;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.why-card {
  background: white;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 2rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
}


/* Header Styling */
.service-header {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  animation: fade-in 1s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.service-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-header p {
  font-size: 1.25rem;
  font-weight: 300;
}

/* Section Styling */
#service-page {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.service-section {
  margin-bottom: 60px;
}

.service-section h2 {
  font-size: 2rem;
  color: #1e40af;
  text-align: center;
  margin-bottom: 30px;
  animation: slide-up 0.8s ease;
}


/* Water Treatment Section  */
.water-treatment-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fc, #eaf1f9);
  font-family: 'Poppins', sans-serif;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d2549;
  margin-bottom: 50px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-img-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-code {
  font-size: 1.2rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 10px;
}

.service-title {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}

@media (max-width: 768px) {
  .service-card-grid {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}


/* Benefits Section */
#automation-benefits {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fade-in 1s ease;
  margin-top: 40px;
}

#automation-benefits strong {
  color: #06b6d4;
}

/* Benefits Articles */
#savings-breakdown {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; */
  margin-top: 30px;
  padding: 0 10px;
}

#savings-breakdown article {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

#savings-breakdown article:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

#savings-breakdown h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

#savings-breakdown h3::before {
  content: attr(data-icon);
  font-size: 1.5rem;
  margin-right: 10px;
  display: inline-block;
}

#savings-breakdown p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fix */
@media (max-width: 600px) {
  .service-header h1 {
    font-size: 2.2rem;
  }

  .service-header p {
    font-size: 1rem;
  }

  #automation-benefits {
    padding: 30px 20px;
  }
}

article {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #00b4d8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  article h3 {
    margin-top: 0;
    color: #0077b6;
  }

  @media (max-width: 600px) {
    header h1 {
      font-size: 2rem;
    }

    section h2 {
      font-size: 1.5rem;
    }

    article {
      padding: 15px;
    }
  }


/* Blogs */
.section-head.text-center h4 {
  font-size: 35px;
  margin-bottom: 60px;
}
.blog-entry {
  margin-bottom: 40px;
  box-shadow: 0px 0px 11px 0px #ccc;
}
.block-20 {
  overflow: hidden;
  position: relative;
  display: block;
}
.blog-images {
  height: 290px;
}
.blog-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text.bg-white {
  padding: 20px 12px 32px;
  height: 240px;
  position: relative;
}
.bg-white ul {
  padding: 0;
  list-style-type: none;
}
ul.d-flex li {
  margin-right: 14px;
  font-size: 16px;
}
ul li {
  font-size: 14px;
  color: #646464;
}
.blog-entry .text .heading {
  font-size: 20px;
  margin-bottom: 16px;
  text-align: initial;
}
.bunow {
  padding: 16px 24px 16px 24px !important;
  border-radius: 8px;
  color: #fff !important;
  background: #1d2549;
  text-decoration: none;
}
.d-flex.align-items-center.mt-4 {
  position: absolute;
  bottom: 26px;
}
.SideSearch {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  padding: 38px 28px;
  box-shadow: 0 0 11px 0 #ccc;
}
.blog-searchBox {
  width: 100%;
}
.blog-search-grid {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  position: relative;
}
.blog-search-grid input {
  border: 1px solid #808d9a;
  height: 50px;
  width: 100%;
  padding: 0 50px 0 20px;
  font-size: 14px;
  box-shadow: none;
  background: 0 0;
  margin: 0;
  color: #818d9a;
  font-size: 14px;
}
.rightside-title h6 {
  padding-bottom: 24px;
  font-size: 20px;
}
span {
  letter-spacing: .5px;
  color: #646464;
}
.post-col {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #ececec;
  color: #212121;
  transition: all .5s;
  margin-bottom: 12px;
}
.post-col-img {
  float: left;
  margin-top: 0px;
}
.post-col-img img.img-responsive {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.post-col-content {
    margin-left: 80px;
}
p.latest-title {
  margin-bottom: 4px;
  font-size: 14px;
  color: #000;
}
p.latest-date i {
  color: #a2a2a2;
}
.heading a {
  text-decoration: none;
  color: #000;
}
.post-col-content a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-meta {
  font-size: 0.85rem;
  color: #777;
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1d2549;
}

.blog-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.read-more {
  text-decoration: none;
  color: #1d2549;
  font-weight: 500;
  transition: color 0.3s;
}

.read-more i {
  margin-left: 6px;
}

.read-more:hover {
  color: #007bff;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Our brands */
.brands-banner {
  background: linear-gradient(135deg, #1d2549, #4f5ba6);
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brands-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg opacity="0.05" fill="white"%3E%3Ccircle cx="40" cy="40" r="40"/%3E%3C/g%3E%3C/svg%3E');
  background-repeat: repeat;
  z-index: 0;
}

.brands-banner h1 {
  font-size: 2.75rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.brands-banner p {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.brands-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1rem;
  color: #555;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.brand-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.brand-card.hydro-sis {
  background: linear-gradient(135deg, #1e3c72, #2a5298); /* deep blue gradient */
  color: white;
  margin-bottom: 30px;
}

.brand-logo {
  height: 60px;
  margin-bottom: 15px;
}

.brand-card h3 {
  margin: 0;
  font-size: 1.75rem;
  color: #0a58ca;
}

.brand-card .tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 5px 0 10px;
}

.brand-card .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.brand-card ul {
  padding-left: 20px;
  margin: 0;
}

.brand-card ul li {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Hydrosuit */
.brand-banner {
  background: linear-gradient(135deg, #1d2549, #2a3c8d);
  color: white;
  padding: 4rem 0;
  position: relative;
}

.brand-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.2;
  z-index: 0;
}

.brand-banner .overlay-texture {
  position: relative;
  z-index: 1;
}

.brand-banner h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.brand-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Description */
.brand-description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Product Cards */
.hsv-card {
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-blend-mode: overlay;
  transition: transform 0.3s ease;
}

.hsv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Alternating Gradient Backgrounds */
.hsv-1 {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}
.hsv-2 {
  background: linear-gradient(to left, #fce4ec, #ffffff);
}
.hsv-3 {
  background: linear-gradient(to right, #e8f5e9, #ffffff);
}
.hsv-4 {
  background: linear-gradient(to left, #fff3e0, #ffffff);
}
.hsv-5 {
  background: linear-gradient(to right, #ede7f6, #ffffff);
}
.hsv-6 {
  background: linear-gradient(to left, #e0f2f1, #ffffff);
}
.hsv-7 {
  background: linear-gradient(to right, #f3e5f5, #ffffff);
}
.hsv-8 {
  background: linear-gradient(to left, #fff8e1, #ffffff);
}

.customization-strip {
  background: #f5f5f5;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.customization-strip h5 {
  color: #333;
}

.customization-strip p {
  color: #555;
}

.customization-strip .list-inline-item {
  color: #444;
}

/* Hydrofil */
.product-card {
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}
.hydrofil-brand-banner {
  background: linear-gradient(135deg, #f1f1f1, #ffffff);
  background-image: url('/static/assets/images/texture.png'); /* Optional texture image */
  background-size: cover;
  background-blend-mode: overlay;
}
.customization-strip {
  background: #e8e8e8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 4rem;
}

/* About us wave background */
.wave-background {
  position: relative;
  overflow: hidden;
  background: #0077be; /* fallback water tone */
  color: white;
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 0.15;
  bottom: 0;
  z-index: 1;
}

.wave1 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 28" xmlns="http://www.w3.org/2000/svg"><path d="M0 14 Q30 0 60 14 T120 14 V28 H0 Z" fill="white"/></svg>');
  animation: waveAnim 10s linear infinite;
  bottom: 0;
}

.wave2 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 28" xmlns="http://www.w3.org/2000/svg"><path d="M0 14 Q30 28 60 14 T120 14 V28 H0 Z" fill="white"/></svg>');
  animation: waveAnimReverse 15s linear infinite;
  bottom: 0;
}

@keyframes waveAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes waveAnimReverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

