/*=================comman-css====================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #222;
}

p {
  margin-bottom: 15px;
  color: #555;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

:root {
  --primary-color: #234982;
  --secondary-color: #41db4c;
}

/*================button-css===========*/
.custom-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

/* BUTTON BASE */
.btn-5 {
  width: 130px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(0deg, #2a5197 0%, #274d8e 100%);
  color: #fff;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* TEXT */
.btn-5 span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

/* HOVER EFFECT */
.btn-5:hover {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgb(45 85 153);
}

/* OPTIONAL : ACTIVE EFFECT */
.btn-5:active {
  transform: scale(0.96);
}

/*================================header-css====================*/
/*=========================footer-css===================*/
.sr-footer {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5e1;
  animation: footerFade .8s ease;
}

.footer-logo {
  max-width: 180px;
  border-radius: 10px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.footer-contact-info p,
.footer-contact-info h4 {
  color: #fff;
}

.footer-contact-info p:hover,
.footer-contact-info h4:hover {
  color: var(--secondary-color);
}

.footer-title {
  color: #fff;
  font-size: 17px;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
  position: relative;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 6px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: .3s;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: var(--secondary-color);
  border-radius: 50%;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: #000;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  color: #94a3b8;
  padding: 10px 0;
}

.footer-bottom a {
  color: var(--secondary-color);
  margin-left: 10px;
}

/* animation */
@keyframes footerFade {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* responsive */
@media(max-width:575px) {}

/*=========================footer-css-end===================*/
.main-header {
  z-index: 9999;
}

/* REMOVE Bootstrap arrow */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* CUSTOM TOGGLER */
.custom-toggler {
  width: 40px;
  height: 34px;
  border: none;
  border-radius: 6px;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 6px;
}

.custom-toggler span {
  height: 3px;
  width: 100%;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ANIMATION WHEN OPEN */
.custom-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler.active span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* NAV LINK */
.navbar .nav-link {
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
}

a.nav-link:hover {
  color: var(--secondary-color);
}

a.dropdown-item {
  color: var(--primary-color);
}

a.dropdown-item:hover {
  color: var(--secondary-color);
}

/* Hover underline */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  left: 50%;
  bottom: -4px;
  transition: 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Dropdown hover (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Dropdown style */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/*==========================hero-section-style==================*/
/*============================about-us-section-style=================*/
/* --- Shriram Solutions About Section --- */
.bg-theme-color {
  position: relative;
  overflow: hidden;
}

.bg-theme-color::before {
  content: "";
  position: absolute;
  max-width: 100%;
  height: 100%;
  background: radial-gradient(circle, #4ade80, transparent);
  top: 0px;
  left: -320px;
  opacity: 0.15;
  width: 100%;
}

@media (max-width: 767px) {
  .bg-theme-color::before {
    left: 0px;
  }
}

.ss-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.ss-about-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ss-about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Feature Items */
.ss-feature-icon {
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.ss-feature-item:hover .ss-feature-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: rotateY(180deg);
}

.ss-feature-item h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Image Stack Layout */
.ss-about-image-wrapper {
  position: relative;
  padding: 20px;
}

.ss-img-card {
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.ss-img-top {
  width: 100%;
  margin-left: 0;
  border-radius: 16px;
  border: 8px solid var(--primary-color);
}

.ss-img-bottom {
  width: 100%;
  margin-top: -80px;
  margin-left: 15%;
  border: 8px solid var(--secondary-color);
  z-index: 2;
  border-radius: 16px;
}

.ss-img-label {
  position: absolute;
  bottom: 3px;
  right: 130px;
  background: #000000;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}

/* Hover Effect on Image Stack */
.ss-img-card:hover {
  transform: scale(1.03);
  z-index: 3;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .ss-about-content {
    text-align: center;
  }

  .ss-feature-icon {
    margin: 0 auto 15px;
  }

  .ss-feature-item {
    flex-direction: column;
  }

  .ss-img-top,
  .ss-img-bottom {
    width: 100%;
    margin: 10px 0;
    position: static;
  }

  .ss-img-bottom {
    margin-top: 15px;
  }
}

/*============================about-us-section-style-end=================*/
/*==========float-button-css=================*/
/* --- Shriram Solutions Floating Action Buttons --- */

.ss-float-container {
  position: fixed;
  bottom: 30px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Base Style for All Buttons */
.ss-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Hover Text Label */
.ss-float-btn span {
  position: absolute;
  left: 65px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  white-space: nowrap;
  pointer-events: none;
}

.ss-float-btn:hover span {
  opacity: 1;
  visibility: visible;
  left: 75px;
}

/* Colors & Specific Animations */
.ss-call {
  background: #2ecc71;
  animation: ss-pulse-green 2s infinite;
}

.ss-whatsapp {
  background: #25D366;
  animation: ss-pulse-green 2s infinite 0.5s;
}

.ss-location {
  background: #e74c3c;
}

/* Hover Effect: Scale & Rotate */
.ss-float-btn:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Pulsing Animation */
@keyframes ss-pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  .ss-float-container {
    bottom: 20px;
    left: 15px;
    gap: 12px;
  }

  .ss-float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .ss-float-btn span {
    display: none;
    /* Mobile par label hide rakha hai clean look ke liye */
  }
}

/*==========================float-button-css-end===================*/
/*==========================hero-section-style==================*/
/* --- Hero Section Specific CSS (With Unique Prefix 'ss-') --- */
#ss-hero-section {
  position: relative;
  overflow: hidden;
  background-color: #111;
  /* Fallback color */
}

.ss-hero-carousel .carousel-item {
  height: 90vh;
  /* Professional Hero Height */
  min-height: 500px;
}

/* Responsive Height for Tablets/Mobile */
@media (max-width: 991px) {
  .ss-hero-carousel .carousel-item {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  .ss-hero-carousel .carousel-item {
    height: 60vh;
  }
}

.ss-hero-image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(40%);
  /* Dark gallery-overlay for text readability */
}

/* Text Content Styling */
.ss-hero-content {
  top: 50% !important;
  transform: translateY(-50%);
  bottom: initial !important;
  text-align: left;
  /* Left aligned looks more professional */
  max-width: 800px;
  left: 10% !important;
  right: auto !important;
}

.ss-hero-title {
  font-weight: 800;
  font-size: 50px;
  /* Responsive font size */
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ss-hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #f8f9fa;
  margin-bottom: 2rem;
  max-width: 600px;
  border-left: 4px solid var(--secondary-color);
  /* Brand highlight */
  padding-left: 20px;
}

/* Unique Button Styling to avoid Global Conflict */
.ss-btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
}

.ss-btn-primary:hover {
  background-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 8px 20px rgb(45 85 153);
  border: 2px solid var(--secondary-color);
}

/* Custom Dots/Indicators */
.ss-hero-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color);
}

@media(max-width: 767px) {
  .ss-hero-title {
    font-size: 24px;
  }

  .ss-hero-image {
    filter: brightness(60%);
    height: 60vh;
  }

  .ss-hero-content {
    max-width: 350px;
    left: 0% !important;
    right: 0 !important;
    margin: auto;
    text-align: center;
  }

  .carousel-control-next,
  .carousel-control-prev {
    display: none;
  }
}

/*==========================hero-section-style-end==================*/
/*==========================services-section-style==================*/
/* ===== SHRI RAM SOLUTION SERVICES ===== */

.srs-services-section {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
  padding: 90px 0;
  color: #fff;
}

.srs-service-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srs-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.srs-tab-btn i {
  font-size: 22px;
  color: #2bff88;
}

.srs-tab-btn:hover,
.srs-tab-btn.is-active {
  background: linear-gradient(135deg, #0dcaf0, #2bff88);
  color: #000;
  transform: translateX(10px);
}

.srs-tab-panel {
  display: none;
  animation: srsFadeUp 0.6s ease forwards;
}

.srs-tab-panel.is-active {
  display: block;
}

.srs-service-title {
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  color: #fff;
}

.srs-services-section h2 {
  color: #ffffff;
}

.srs-service-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #2bff88;
  display: block;
  margin-top: 8px;
}

.srs-service-list {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}

.srs-service-list li {
  padding: 10px 0;
  font-size: 16px;
  padding-left: 22px;
  position: relative;
}

.srs-service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2bff88;
  font-size: 14px;
}

/* Animation */
@keyframes srsFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .srs-service-list {
    columns: 1;
  }

  .srs-tab-btn {
    font-size: 16px;
  }
}

/*==========================services-section-style-end==================*/
/*==============================how-it-works-section-style=================*/
/* ===== PREMIUM PROCESS SECTION ===== */


.pp-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Desktop Layout */
.process-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Timeline Line (Desktop only) */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  z-index: 0;
}

/* Card */
.process-step {
  background: rgb(242 253 252 / 90%);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-16px);
  box-shadow: 0 35px 80px rgb(56 129 58);
}

/* Step Number */
.step-count {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #274d8f, #4d9e42);
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Text */
.process-step h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.pp-title {
  color: var(--primary-color);
}

.process-step p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

/* ===== MOBILE PREMIUM EXPERIENCE ===== */
@media (max-width: 991px) {
  .process-wrapper {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .process-wrapper::before {
    display: none;
  }

  .process-step {
    min-width: 260px;
    scroll-snap-align: center;
  }

  .process-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* Swipe hint */
.swipe-hint {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  font-weight: 500;
}

/*======================end-section=======================*/
/*========================Why-Choose-Us-section-style=================*/
/* ===== WHY CHOOSE – PREMIUM NO CARD ===== */
.why-premium {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
}

/* LEFT */
.why-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.why-intro {
  font-size: 17px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.7;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-points li {
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-points li span {
  color: #fff;
  font-weight: 700;
}

/* RIGHT STRIP */
.why-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.strip-item {
  padding: 22px 26px;
  background: linear-gradient(90deg, rgb(93 219 102), #ffffff);
  border-left: 4px solid var(--primary-color);
  transition: all 0.45s ease;
}

.strip-item strong {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.strip-item span {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Hover Animation */
.strip-item:hover {
  transform: translateX(10px);
  border-color: #25d366;
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.18), #ffffff);
}

/* ===== MOBILE PREMIUM EXPERIENCE ===== */
@media (max-width: 991px) {
  .why-title {
    font-size: 32px;
  }

  .why-strip {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .strip-item {
    min-width: 220px;
    scroll-snap-align: center;
  }

  .why-strip::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 991px) {
  .why-title {
    font-size: 24px;
  }
}

/* @media (max-width: 576px) {
.overview-info{
  text-align: center;
}
} */
/*========================Why-Choose-Us-section-style-end=================*/
/*===========================our-services-aera-style==================*/
.service-areas {
  background: linear-gradient(to bottom, #408e3a6e, #ffffff);
}

/* Heading */
.sa-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.sa-subtitle {
  max-width: 720px;
  margin: 0 auto 35px;
  font-size: 16px;
  color: #000;
}

/* Area Chips */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.area-list span {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 30px;
  background: var(--primary-color);
  transition: all 0.35s ease;
  cursor: default;
}

/* Hover Effect */
.area-list span:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-4px);
}

/* Bottom Note */
.sa-note {
  margin-top: 30px;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 576px) {
  .sa-title {
    font-size: 32px;
  }

  .area-list span {
    font-size: 14px;
    padding: 9px 16px;
  }
}

/*===========================end-section==============================*/
.premium-gallery {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
  overflow: hidden;
}

/* Track */
.gallery-track {
  overflow: hidden;
  margin-bottom: 35px;
  width: 100%;
}

/* Inner strip */
.gallery-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Item */
.gallery-item {
  flex: 0 0 auto;
  width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* gallery-overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 75%), rgb(64 142 72), #3e3b3b00);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.gallery-overlay span {
  color: var(--primary-color);
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 800;
  text-align: center;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 22px;
  margin-top: 6px;
}

/* Hover */
.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* 🔑 Desktop: only 5 images visible */
@media (min-width: 992px) {
  .gallery-track {
    max-width: calc((260px * 5) + (16px * 4));
    margin: auto;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-item {
    width: 220px;
    height: 150px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-item {
    width: 100%;
    height: 100px;
    max-width: 200px;
  }

  .gallery-overlay h4 {
    font-size: 18px;
  }
}

/*========================end-section==================*/
/*==========================contact-us-section-style==================*/
.contact-premium {
  background: linear-gradient(to bottom, #408e3a6e, #0f234600);
}

.map-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.contact-form-box:hover {
  transform: translateY(-6px);
}

.contact-form-box h3 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.contact-form-box p {
  color: #666;
  margin-bottom: 25px;
}

.contact-form-box p strong {
  color: var(--secondary-color);
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--secondary-color);
  transition: all 0.3s;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .25);
}

.btn-premium {
  background: var(--primary-color);
  color: #fff;
  padding: 12px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgb(95 113 143);
}


/*===========================End-section==============================*/
/*=========================bradcrumb-style===================*/
.page-breadcrumb {
  position: relative;
  padding: 110px 0 100px;
  background: url("../img/breadcrumb-bg.webp");
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

/* dark overlay */
.page-breadcrumb .breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #408e3a6e, #ffffff17);
  z-index: 1;
}

/* content */
.breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: breadcrumbFade 0.9s ease forwards;
}

@keyframes breadcrumbFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-subtitle {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 40px;
  background: var(--secondary-color);
  border-radius: 30px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-color);
}

.breadcrumb-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary-color);
  line-height: 1.2;
}

/* breadcrumb nav */
.page-breadcrumb .breadcrumb {
  justify-content: center;
  background: transparent;
  margin-bottom: 0;
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.page-breadcrumb .breadcrumb-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-breadcrumb .breadcrumb-item.active {
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .breadcrumb-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .page-breadcrumb {
    padding: 40px 0;
  }

  .breadcrumb-title {
    font-size: 28px;
  }
}

/*=========================bradcrumb-style-end===================*/
/*=======================about-page-about-section-style=================*/
.about-wow-section {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
}

/* LEFT CONTENT */
.about-wow-content {
  animation: slideFadeLeft 1s ease both;
}

@keyframes slideFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wow-tag {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgb(93 219 102), #ffffff);
  color: var(--primary-color);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-wow-content h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.about-wow-content h2 span {
  color: var(--secondary-color);
}

.about-wow-content p {
  margin-top: 16px;
  color: #fff;
  line-height: 1.8;
}

.about-wow-content p strong {
  color: var(--secondary-color);
}

.wow-points {
  margin: 24px 0;
  padding-left: 18px;
  border-left: 4px solid var(--secondary-color);
  font-weight: 600;
  color: #fff;
}

/* RIGHT FEATURES */
.about-features-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideFadeRight 1s ease both;
}

@keyframes slideFadeRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-modern {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(90deg, rgb(93 219 102), #ffffff);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(13, 110, 253, 0.08),
      rgba(0, 180, 255, 0.08));
  opacity: 0;
  transition: 0.4s;
}

.feature-modern:hover::before {
  opacity: 1;
}

.feature-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(13, 110, 253, 0.18);
}

.feature-icon {
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #294f92, #25d366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 18px rgb(0 6 14 / 35%);
  transition: transform 0.4s ease;
}

.feature-modern:hover .feature-icon {
  transform: scale(1.1) rotate(6deg);
}

.feature-text h4 {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.feature-text p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wow-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .about-wow-section {
    padding: 70px 0;
  }

  .about-wow-content h2 {
    font-size: 26px;
  }

  .feature-modern {
    padding: 18px;
    gap: 14px;
  }

  .feature-icon {
    min-width: 46px;
    height: 46px;
    font-size: 18px;
  }
}

/*=======================about-page-about-section-style-end=================*/
/*============================messionn-vision-section-style=================*/
.mission-vision-alt {
  background: linear-gradient(to bottom, #408e3a6e, #0f234600);
}

/* Title side */
.mv-title {
  position: relative;
  padding-left: 18px;
}

.mv-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 60%;
  background: var(--secondary-color);
  border-radius: 10px;
}

.mv-label {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgb(93 219 102), #274d8f);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  /* margin-bottom: 18px; */
}

.mv-title h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-color);
}

/* Content side */
.mv-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 14px;
}

/* Subtle animation */
.mission-vision-alt .row {
  animation: fadeUpAlt 0.9s ease both;
}

@keyframes fadeUpAlt {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .mission-vision-alt {
    padding: 80px 0;
  }

  .mv-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .mission-vision-alt {
    padding: 60px 0;
  }

  .mv-title {
    margin-bottom: 18px;
  }

  .mv-title::before {
    height: 100%;
  }

  .mv-title h2 {
    font-size: 24px;
  }

  .mv-content p {
    font-size: 15px;
  }
}

/*========================end-section==================*/
/*===========================Waterproofing-page-style==================*/
.waterproofing-overview {
  position: relative;
  background: radial-gradient(circle at top, #0b1b3a, #050914);
  overflow: hidden;
}

/* soft background glow */
.waterproofing-overview::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.15), transparent 70%);
  z-index: 0;
}

.waterproofing-overview .container {
  position: relative;
  z-index: 1;
}

.section-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 20px;
}

.waterproofing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
}

.waterproofing-points li {
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.35s ease;
}

.waterproofing-points i {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 4px;
}

/* hover magic */
.waterproofing-points li:hover {
  background: var(--primary-color);
  transform: translateX(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}


.overview-img {
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  max-width: 95%;
  animation: floatImage 6s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover par thoda zoom */
.overview-img:hover {
  transform: scale(1.04) rotate(-0.5deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .waterproofing-points {
    grid-template-columns: 1fr;
  }

  .overview-img {
    animation: none;
    /* mobile par stable */
  }
}

/*==========================service-card-waterproof==================*/
.wp-services-section {
  background: linear-gradient(to bottom, #cfe8cf, #ffffff);
}

/* PANEL */
.wp-panel {
  background: var(--primary-color);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
  transition: .5s ease;
  animation: slideUp .8s ease both;
}

.wp-panel:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
}

/* IMAGE */
.wp-img {
  position: relative;
}

.wp-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: .6s ease;
}

.wp-panel:hover img {
  transform: scale(1.12);
}

/* LABEL */
.wp-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: #002b1a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
}

/* BODY */
.wp-body {
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wp-body h5 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.wp-body p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .95;
  margin-bottom: 22px;
  color: #fff;
}

/* BUTTON */
.wp-body a {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: #002b1a;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: .4s ease;
}

.wp-body a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 255, 156, .6);
}

/* ANIMATION */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .wp-img img {
    height: 210px;
  }

  .wp-body p {
    font-size: 14px;
  }
}

/*==========================end-section==================*/
/*=====================faq-section-style=================*/
.wp-faq-section {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.section-head p {
  max-width: 700px;
  margin: auto;
  color: #fff;
  font-size: 16px;
}

/* FAQ BOX */
.wp-faq {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 18px;
  padding: 22px 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  transition: .4s ease;
  animation: faqFade .6s ease both;
}

.wp-faq:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

/* QUESTION */
.wp-faq summary {
  font-size: 18px;
  font-weight: 700;
  color: #0f2346;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.wp-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #00c17c;
  transition: .3s ease;
}

.wp-faq[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

/* ANSWER */
.wp-faq p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* REMOVE DEFAULT ARROW */
.wp-faq summary::-webkit-details-marker {
  display: none;
}

/* ANIMATION */
@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px) {
  .section-head h2 {
    font-size: 28px;
  }

  .wp-faq summary {
    font-size: 16px;
  }

  .wp-faq p {
    font-size: 14px;
  }
}

/*=====================end-section=================*/
/*==========================testimonial-section-style==================*/
.testimonial-section {
  background: radial-gradient(circle at top, #0b1b3a, #050914);
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 20px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(33.333% - 17px);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgb(164 255 22);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-top: 20px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.client img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.client h6 {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.client span {
  font-size: 13px;
  color: var(--primary-color);
}

/* Arrows */
.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(to bottom, #408e3a6e, #0dff3669);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--primary-color);
}

.prev {
  left: -22px;
}

.next {
  right: -22px;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  width: 26px;
  border-radius: 12px;
  background: var(--primary-color);
}

/* Mobile */
@media(max-width:991px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }
}

/*==========================end-section==================*/
/******************************gallery-section-style***************************/
.ss-gallery {
    background: linear-gradient(to bottom, #408e3a6e, #ffffff);
}
.ss-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}


.ss-gallery-card img {
  width: 100%;
  display: block;
  transition: 0.6s ease;
}


.ss-gallery-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}


.ss-overlay {
  position: absolute;
  inset: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: 0.4s ease;
}


.ss-gallery-card:hover .ss-overlay {
  opacity: 1
}


.ss-overlay h6 {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.ss-overlay span {
  font-size: 13px;
  color: var(--secondary-color)
}