/* ============================================================
   MANSHA HYDRO SOLUTIONS - style.css
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0d47a1;
  --primary-light: #1565c0;
  --accent: #29b6f6;
  --accent2: #00e5ff;
  --dark: #0a1628;
  --text: #1a2a3a;
  --text-muted: #607d8b;
  --white: #ffffff;
  --bg-light: #f0f7ff;
  --bg-section: #e8f4fd;
  --shadow: 0 8px 32px rgba(13, 71, 161, 0.13);
  --shadow-lg: 0 16px 48px rgba(13, 71, 161, 0.18);
  --radius: 14px;
  --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
}

/* ---- Utility ---- */
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin-top: 10px;
}

.title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(13, 71, 161, 0.25);
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 71, 161, 0.35);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
#topbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  z-index: 1000;
}

#topbar a {
  color: rgba(255, 255, 255, 0.88);
  transition: var(--transition);
}

#topbar a:hover {
  color: var(--accent2);
}

#topbar .topbar-icon {
  color: var(--accent);
  margin-right: 5px;
  font-size: 0.9rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 0 8px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#mainHeader {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(13, 71, 161, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 28px rgba(13, 71, 161, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-wrap i {
  font-size: 1.5rem;
  color: var(--white);
}

.brand-text-wrap .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  display: block;
}

.brand-text-wrap .brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
#heroCarousel {
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-slide-1 {
  background: linear-gradient(135deg, #0a1628 0%, #0d47a1 50%, #1565c0 100%);
}

.hero-slide-2 {
  background: linear-gradient(135deg, #01579b 0%, #0288d1 50%, #29b6f6 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #004d90 0%, #0d47a1 60%, #00acc1 100%);
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shape::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -150px;
  right: -100px;
}

.hero-bg-shape::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(41, 182, 246, 0.08);
  bottom: -80px;
  left: 30%;
}

.hero-water-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.drop {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  animation: floatDrop 6s ease-in-out infinite;
}

.drop:nth-child(1) {
  width: 14px;
  height: 14px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.drop:nth-child(2) {
  width: 20px;
  height: 20px;
  top: 60%;
  left: 25%;
  animation-delay: 1.5s;
}

.drop:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 80%;
  animation-delay: 3s;
}

.drop:nth-child(4) {
  width: 16px;
  height: 16px;
  top: 75%;
  left: 70%;
  animation-delay: 0.8s;
}

.drop:nth-child(5) {
  width: 8px;
  height: 8px;
  top: 45%;
  left: 55%;
  animation-delay: 2.2s;
}

@keyframes floatDrop {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: var(--accent2);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent2);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 3px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-icon-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulsering 4s ease-in-out infinite;
  position: relative;
}

.hero-icon-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px solid rgba(41, 182, 246, 0.25);
  animation: pulsering 4s ease-in-out infinite reverse;
}

.hero-icon-ring i {
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

@keyframes pulsering {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent2);
  width: 28px;
  border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 16px;
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.28);
}


/* ================= HERO IMAGE + GRADIENT FIX ================= */

/* Common Hero Style */
.hero-slide {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gradient Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 1, 2, 0.753),
    rgba(0, 0, 0, 0.815),
    rgba(0, 2, 3, 0.76)
  );
  z-index: 1;
}

/* Content above overlay */
.hero-content,
.hero-visual,
.hero-bg-shape,
.hero-water-drops {
  position: relative;
  z-index: 2;
}

/* ================= IMAGES ================= */


/* Slide 2 */
.hero-slide-2 {
  background-image: url('../images/b2.jpg');
}

/* Slide 1 */
.hero-slide-1 {
  background-image: url('../images/b1.jpeg');
}

/* Slide 3 */
.hero-slide-3 {
  background-image: url('../images/b3.webp');
}

/* ============================================================
   ABOUT
   ============================================================ */
/* ================= ABOUT SECTION ================= */

#about {
  padding: 90px 0;
  background: #f9fbfd;
}

/* Image Wrapper */
.about-img-wrap {
  position: relative;
}

/* Image Box */
.about-image-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image */
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.4s;
}

.about-image-box:hover .about-img {
  transform: scale(1.05);
}

/* Overlay Text (Bottom Left) */
.about-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text .title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
}

.about-text .year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d47a1;
}

.about-text .desc {
  font-size: 0.8rem;
  color: #777;
}

/* Floating Badge */
.about-badge-float {
  position: absolute;
  bottom: -25px;
  right: -15px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.about-badge-float .years {
  font-size: 1.8rem;
  font-weight: 800;
}

.about-badge-float .label {
  font-size: 0.75rem;
}

/* Right Content */
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0d47a1;
  line-height: 1.3;
}

.subtitle {
  color: #1e88e5;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Features */
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: #e3f2fd;
  color: #1e88e5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
}

.about-feature:hover .about-feature-icon {
  background: #1e88e5;
  color: #fff;
}

.about-feature h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.about-feature p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

/* ================= MOBILE ABOUT IMAGE FIX ================= */
@media (max-width: 768px) {

  .about-img {
    height: 260px; /* pehle 420px tha */
  }

  .about-overlay {
    bottom: 10px;
    left: 10px;
    padding: 10px 12px;
  }

  .about-text .year {
    font-size: 1.2rem;
  }

  .about-text .title {
    font-size: 0.75rem;
  }

  .about-text .desc {
    font-size: 0.7rem;
  }

  .about-badge-float {
    bottom: -15px;
    right: 5px;
    padding: 12px 14px;
  }

  .about-badge-float .years {
    font-size: 1.3rem;
  }

  .about-badge-float .label {
    font-size: 0.65rem;
  }

}

/* Button */
.btn-primary-custom {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(30,136,229,0.3);
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(30,136,229,0.4);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 90px 0;
  background: var(--bg-section);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(13, 71, 161, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 71, 161, 0.15);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--bg-light), #d0e9ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ============================================================
   COUNTER
   ============================================================ */
#counter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1e88e5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-card {
  text-align: center;
  position: relative;
  padding: 20px;
}

.counter-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.counter-card:last-child::after {
  display: none;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--accent2);
  margin-bottom: 12px;
}

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-top: 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#whyUs {
  padding: 90px 0;
  background: var(--white);
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(13, 71, 161, 0.08);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(13, 71, 161, 0.08);
  line-height: 1;
  min-width: 48px;
}

.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.25);
}

.why-card h6 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.why-visual {
  position: relative;
  padding: 30px;
}

.why-main-circle {
  width: 100%;
  max-width: 360px;
  height: 360px;
  background: linear-gradient(135deg, var(--bg-light), #d0e9ff);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.why-main-circle i {
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.7;
}

.why-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  min-width: 140px;
}

.why-float-badge i {
  color: var(--primary);
  font-size: 1.1rem;
}

.why-float-badge-1 {
  top: 20px;
  right: 0;
}

.why-float-badge-2 {
  bottom: 40px;
  left: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: 90px 0;
  background: var(--bg-section);
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 71, 161, 0.82));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-overlay p {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Gallery placeholder colours */
.gp-1 {
  background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.gp-2 {
  background: linear-gradient(135deg, #e8f5e9, #81c784);
}

.gp-3 {
  background: linear-gradient(135deg, #fff3e0, #ffb74d);
}

.gp-4 {
  background: linear-gradient(135deg, #f3e5f5, #ce93d8);
}

.gp-5 {
  background: linear-gradient(135deg, #e0f7fa, #4dd0e1);
}

.gp-6 {
  background: linear-gradient(135deg, #fce4ec, #f48fb1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-placeholder i {
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.25);
}

.gallery-placeholder span {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 90px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(13, 71, 161, 0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-quote {
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(13, 71, 161, 0.07);
  padding-top: 18px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.star-rating {
  color: #ffc107;
  font-size: 0.8rem;
  margin-bottom: 4px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 90px 0;
  background: var(--bg-section);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-info-card p.desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent2);
}

.ci-text .label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.ci-text .val {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(13, 71, 161, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #f9fbff;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 182, 246, 0.12);
  background: var(--white);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.35);
  color: var(--white);
}

/* Success message */
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand .brand-tagline {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin: 16px 0 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 2px;
  min-width: 16px;
}

.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
  color: var(--accent);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  transform: translateY(-4px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 75vh;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    padding: 50px 0 40px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .about-badge-float {
    right: 10px;
    bottom: -16px;
  }

  .counter-card::after {
    display: none;
  }

  .why-visual {
    display: none;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 8px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 767.98px) {
  #topbar .topbar-right {
    display: none !important;
  }

  .hero-slide {
    min-height: 70vh;
  }

  .about-badge-float {
    display: none;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }



  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stat .num {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 26px 20px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  #scrollTop {
    bottom: 18px;
    right: 18px;
  }
}




.water {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  border-radius: 12px;
}






.floating-container {
    position: fixed;
    bottom: 121px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 55px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
}

/* Call */
.call {
    background-color: #007bff;
}
