/* Import Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* General Font Settings */
body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
p, a, button, .navbar-brand {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: normal;
}

/* General Fixes */
section {
  scroll-margin-top: 100px; /* Adjust for floating navbar height */
}
html {
  scroll-behavior: smooth;
}

/* Anniversary Popup Styles - Add this to your CSS file */

/* Popup Overlay */
        .anniversary-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
        }
        
        .anniversary-popup-overlay.show {
            display: flex;
        }
        
        .anniversary-popup-content {
            background: linear-gradient(135deg, #21B6E3, #1a9bc7);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            max-width: 450px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .anniversary-close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            width: 30px;
            height: 30px;
            line-height: 30px;
        }
        
        .anniversary-close-btn:hover {
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
        }
        
        .anniversary-popup-content h1 {
            font-size: 24px;
            margin: 0 0 10px 0;
            font-weight: bold;
        }
        
        .anniversary-popup-content h2 {
            font-size: 20px;
            margin: 0 0 15px 0;
            font-weight: bold;
        }
        
        .anniversary-popup-content p {
            margin: 10px 0;
            line-height: 1.5;
        }
        
        .tagline {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .message {
            font-size: 14px;
            opacity: 0.95;
        }
        
        /* Mobile responsive */
        @media (max-width: 480px) {
            .anniversary-popup-content {
                padding: 25px 20px;
                margin: 20px;
            }
            .anniversary-popup-content h1 {
                font-size: 20px;
            }
            .anniversary-popup-content h2 {
                font-size: 18px;
            }
        }
/* WhatsApp Floating Container */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1050; /* higher than modals */
  animation: floaty 3s ease-in-out infinite;
}

/* WhatsApp Button */
.btn-whatsapp {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.btn-whatsapp img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

/* Hover */
.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Greeting message */
.whatsapp-greeting {
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  white-space: nowrap;
  animation: fadeIn 0.6s ease forwards;
}

/* Animations */
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Responsive: hide greeting on small screens */
@media (max-width: 576px) {
  .whatsapp-greeting {
    display: none;
  }
}
/* Floating Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  background: transparent; /* Remove dark strip */
  backdrop-filter: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* full-width underline */
}

/* Container for proper flexbox layout */
.navbar .container-fluid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Navbar Brand (Logo) - Centered */
 .navbar .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navbar .company-name {
    color: #fff;
    font-size: 24px;
    opacity: 1;
    margin-top: 4px;
    text-align: center;
    font-weight: 600;
  }
  
  .navbar .logo-tagline {
    color: #fff;
    font-size: 24px;
    opacity: 1;
    margin-top: 4px;
    text-align: center;
  }

.navbar .navbar-brand img {
  width: 170px;
  height: auto;
  max-height: 170px;
}

/* Center the navbar collapse container */
.navbar-collapse {
  justify-content: center;
  width: auto;
}

/* Navbar Links - Bold Roboto */
.navbar .nav-link {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700; /* Bold */
  font-size: 1rem;
  color: #fff;
  margin: 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #007bff;
  text-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none; /* Remove border */
  position: absolute;
  top: 1rem;
  right: 2rem;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(150%);
  transform: scale(0.75);
}

/* Mobile Layout Adjustments - REMOVED: Conflicting with updated mobile styles at bottom of file */

/* Hero Section - Adjusted for floating nav */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0; /* Remove any top margin since nav is floating */
}

/* Darken hero background for contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0; /* above media/picture (-1), below content (1) */
  pointer-events: none;
}

.hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* FIXED: Hero video media queries - more specific selectors */
.hero .hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  display: none; /* Hidden by default */
}

/* Show appropriate video based on screen size */
@media (min-width: 1280px) {
  .hero .hero-video-desktop { 
    display: block !important; /* Use !important to override default */
  }
  .hero .hero-video-tablet,
  .hero .hero-video-mobile { 
    display: none !important; 
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero .hero-video-tablet { 
    display: block !important; 
  }
  .hero .hero-video-desktop,
  .hero .hero-video-mobile { 
    display: none !important; 
  }
}

@media (max-width: 767px) {
  .hero .hero-video-mobile { 
    display: block !important; 
  }
  .hero .hero-video-desktop,
  .hero .hero-video-tablet { 
    display: none !important; 
  }
}

/* OPTIONAL: Allow videos for reduced motion users, but paused */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-media { 
    display: block; /* Show video but it won't autoplay */
    /* Videos will show as static poster images */
  }
}

/* Ensure play button shows above videos when they fail to load */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10; /* Higher z-index to ensure it shows */
  transition: all 0.3s ease;
}

/* Create the play triangle icon */
.video-play-overlay::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px; /* Slight offset to center the triangle visually */
}

/* Hide play button when video is actually playing */
.video-play-overlay.hidden {
  display: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-top: 80px; /* Add some top margin to account for floating nav */
}

.hero-content .carousel {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  padding: 10px;
  font-size: 2.25rem;
  line-height: 1.2;
}

.hero-subtitle {
  padding: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.hero-buttons .btn {
  padding: 10px 16px;
	border: none;
}

.hero-content .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-content .carousel-control-prev-icon,
.hero-content .carousel-control-next-icon {
  filter: invert(1) grayscale(100%);
}

/* Map iframe styling */
#map-frame {
  width: 100%;
  height: 400px;
  border: 0;
}

@media (max-width: 768px) {
  #map-frame {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 120px;
    padding: 0 20px;
  }
  
  .hero-title { 
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero-subtitle { 
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .hero-buttons { 
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  
  .hero-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-top: 100px;
    padding: 0 15px;
  }
  
  .hero-title { 
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .hero-subtitle { 
    font-size: 0.85rem;
  }
  
  .hero-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .hero-content {
    margin-top: 90px;
    padding: 0 10px;
  }
}

.hero-slide {
  display: none;
  animation: fade 1s ease-in-out;
}
.hero-slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Social Media Icons (if you want to keep them)
.social-icons {
  display: flex;
  gap: 15px;
  position: absolute;
  top: 1rem;
  right: 100px; /* Position to the left of the toggler */
}

.social-icons a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.social-icons a i {
  font-size: 20px;
}

/* Hide social icons on mobile */
@media (max-width: 992px) {
  .social-icons {
    display: none;
  }
}

/* Dividers*/

.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* Nudge bottom divider to avoid sub-pixel gap under hero */
.divider--bottom {
  bottom: -1px;
}

.divider-svg {
  display: block;
  width: 100%;
  height: 100px;
}

.divider-shape {
  fill: #ffffff; /* make sure this matches the next section’s background */
}
/* Feature Grid*/
#feature-grid {
  padding: 3rem 0;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
	position: relative;
	padding-bottom: 50px; /* divider height */
}

#feature-grid h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: left;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  background: transparent;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.feature-icon {
  font-size: 2rem;
  color: #29CBA7;
  margin-bottom: 1rem;
}

.feature-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-body {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.feature-cta-link {
  display: inline-block;
  margin-top: 1rem;
  color: #29CBA7;
  font-weight: bold;
  text-decoration: none;
}

.feature-cta-link::before {
  content: "› ";
}

/* Mobile first approach for feature grid */
@media (max-width: 767px) {
  #feature-grid {
    padding: 2rem 1rem;
  }
  
  #feature-grid h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .feature-row {
    gap: 1.5rem;
  }
  
  .feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-body {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  #feature-grid {
    padding: 1.5rem 0.75rem;
  }
  
  #feature-grid h3 {
    font-size: 1.2rem;
  }
  
  .feature-item {
    padding: 1rem 0.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-subtitle {
    font-size: 0.95rem;
  }
  
  .feature-body {
    font-size: 0.85rem;
  }
}

/* Responsive grid for tablets and desktops */
@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .feature-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .feature-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Featured Services Carousel */


.featured-services-carousel {
  background-color: #21B6E3;
}

.featured-services-carousel .carousel-inner {
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px; /* Add space for indicators */
}

.featured-services-carousel .carousel-indicators {
  position: absolute;
  bottom: -20px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.featured-services-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 6px;
  transition: opacity 0.3s ease;
  border: none;
}

.featured-services-carousel .carousel-indicators .active {
  opacity: 1;
}

.featured-services-carousel .text-box h6 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.featured-services-carousel .text-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
	color: #ffffff;
}

.featured-services-carousel .text-box p {
  font-size: 1rem;
  line-height: 1.6;
	color: #ffffff;
}

.featured-services-carousel .image-box img,
.featured-services-carousel .image-box video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .featured-services-carousel {
    padding: 2rem 1rem !important;
  }
  
  .featured-services-carousel .carousel-inner {
    height: auto;
    min-height: 350px;
    margin-bottom: 0px;
  }
  
  .featured-services-carousel .carousel-indicators {
    bottom: -30px;
  }
  
  .featured-services-carousel .text-box {
    padding: 20px 0;
  }
  
  .featured-services-carousel .text-box h1 {
    font-size: 1.5rem;
  }
  
  .featured-services-carousel .text-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .featured-services-carousel .carousel-inner {
    margin-bottom: 0px;
  }
  
  .featured-services-carousel .carousel-indicators {
    bottom: -40px;
  }
  
  .featured-services-carousel .text-box h1 {
    font-size: 1.3rem;
  }
}

.feature-body {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}
/* Unify calculator and features grid as one section */
#feature-3grid {
  background-color: #21B6E3;
  color: #ffffff;
  position: relative;
  overflow: hidden; /* keep blobs inside and away from dividers */
}
#feature-3grid .feature-subtitle { color: #ffffff; }
#feature-3grid .feature-body { color: #eaf4fb; }
#feature-3grid .feature-icon { color: #ffffff; }
#feature-3grid a { color: #ffffff; text-decoration: underline; }
#feature-3grid a:hover { color: #cfe9ff; }
/* Image Carousel*/


/* Bubble Anim --*/

.bubbles{
  position:absolute;
  width:100%;
  height: 100%;
  z-index:0;
  overflow:hidden;
  top:0;
  left:0;
}
.bubble{
  position: absolute;
  bottom:-100px;
  width:40px;
  height: 40px;
  background:#f1f1f1;
  border-radius:50%;
  opacity:0.5;
  animation: rise 10s infinite ease-in;
}
.bubble:nth-child(1){
  width:40px;
  height:40px;
  left:10%;
  animation-duration:8s;
}
.bubble:nth-child(2){
  width:20px;
  height:20px;
  left:20%;
  animation-duration:5s;
  animation-delay:1s;
}
.bubble:nth-child(3){
  width:50px;
  height:50px;
  left:35%;
  animation-duration:7s;
  animation-delay:2s;
}
.bubble:nth-child(4){
  width:80px;
  height:80px;
  left:50%;
  animation-duration:11s;
  animation-delay:0s;
}
.bubble:nth-child(5){
  width:35px;
  height:35px;
  left:55%;
  animation-duration:6s;
  animation-delay:1s;
}
.bubble:nth-child(6){
  width:45px;
  height:45px;
  left:65%;
  animation-duration:8s;
  animation-delay:3s;
}
.bubble:nth-child(7){
  width:90px;
  height:90px;
  left:70%;
  animation-duration:12s;
  animation-delay:2s;
}
.bubble:nth-child(8){
  width:25px;
  height:25px;
  left:80%;
  animation-duration:6s;
  animation-delay:2s;
}
.bubble:nth-child(9){
  width:15px;
  height:15px;
  left:70%;
  animation-duration:5s;
  animation-delay:1s;
}
.bubble:nth-child(10){
  width:90px;
  height:90px;
  left:25%;
  animation-duration:10s;
  animation-delay:4s;
}
@keyframes rise{
  0%{
    bottom:-100px;
    transform:translateX(0);
  }
  50%{
    transform:translate(100px);
  }
  100%{
    bottom:1080px;
    transform:translateX(-200px);
  }
}

/*-- Slider Volume Calulator --*/
.slidercopy {
  padding: 4rem 2rem;
	background-color: #21B6E3;
  position: relative;
  overflow: hidden;
  margin-top: -1px; /* Fix 1px line gap from wave divider */
  margin-bottom: 0px;
}

/* Ensure content sits above decorative blobs */
.slidercopy > .container,
#feature-3grid > .container { position: relative; z-index: 1; }

/* Parallax Bubbles/Blobs */
.parallax-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.parallax-blobs .blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), rgba(255,255,255,0.08) 60%, rgba(255,255,255,0.00));
  filter: blur(0.3px);
  animation: floatUp 16s linear infinite;
}

/* sizes and depths */
.parallax-blobs .b1 { width: 180px; height: 180px; left: 8%;  bottom: -15%; animation-duration: 26s; animation-delay: 0s;   opacity: 0.35; }
.parallax-blobs .b2 { width: 120px; height: 120px; left: 22%; bottom: -18%; animation-duration: 20s; animation-delay: 3s;   opacity: 0.28; }
.parallax-blobs .b3 { width: 90px;  height: 90px;  left: 48%; bottom: -20%; animation-duration: 16s; animation-delay: 6s;   opacity: 0.25; }
.parallax-blobs .b4 { width: 200px; height: 200px; left: 70%; bottom: -17%; animation-duration: 30s; animation-delay: 1s;   opacity: 0.30; }
.parallax-blobs .b5 { width: 110px; height: 110px; left: 85%; bottom: -22%; animation-duration: 18s; animation-delay: 4s;   opacity: 0.22; }

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); }
  50%  { transform: translateY(-50vh) translateX(-10px); }
  100% { transform: translateY(-100vh) translateX(10px); }
}

/* Mobile version without horizontal movement */
@keyframes floatUpMobile {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-50vh); }
  100% { transform: translateY(-100vh); }
}

@media (max-width: 768px) {
  .parallax-blobs .blob { 
    opacity: 0.2;
    animation-name: floatUpMobile; /* Use mobile animation without horizontal movement */
  }
}

.slidercopy h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 2rem;
	color: #ffffff;
}

.slidercopy .text-box {
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.6rem;
  color: #ffffff;
}

.slidercopy .image-placeholder .placeholder {
  width: 100%;
  height: 300px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slidercopy .image-placeholder img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.cta {
  padding: 4rem 4rem;
  text-align: center;
}

.cta h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta button {
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 1.2rem;
  border-radius: 5px;
}


.intro-section {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .intro-section h2 {
            color: #2c3e50;
            font-size: 1.6rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .intro-section p {
            color: #6c757d;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .slider-container {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 18px 20px;
            margin: 14px 0;
            border: 1px solid #e9ecef;
        }
        
        .capacity-selector {
            margin-bottom: 40px;
        }
        
        .slider-label {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #495057;
            font-weight: 500;
        }
        
        .slider-wrapper {
            position: relative;
            margin: 30px 0;
        }
        
        .slider {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            background: linear-gradient(to right, #dee2e6 0%, #00B7E7 50%, #29CBA7 100%);
            outline: none;
            -webkit-appearance: none;
            cursor: pointer;
        }
        
        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #00B7E7;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 183, 231, 0.4);
            border: 3px solid white;
            transition: all 0.3s ease;
        }
        
        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 183, 231, 0.5);
        }
        
        .slider::-moz-range-thumb {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #00B7E7;
            cursor: pointer;
            border: 3px solid white;
            box-shadow: 0 6px 20px rgba(0, 183, 231, 0.4);
        }
        
        .slider-markers {
            display: flex;
            justify-content: space-between;
            margin-top: 7px;
            padding: 0 10px;
        }
        
        .marker {
            font-size: 0.85rem;
            color: #6c757d;
            text-align: center;
        }
        
        .pricing-display {
            background: white;
            border-radius: 15px;
            padding: 14px 15px;
            text-align: center;
            border: 1px solid #e9ecef;
            margin: 10px 0;
            transition: all 0.3s ease;
        }
        
        .capacity-display {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 7px;
        }
        
        .price-display {
            font-size: 2rem;
            font-weight: 600;
            color: #00B7E7;
            margin-bottom: 7px;
        }
        .price-display-daily {
            font-size: 1.7rem;
            font-weight: 600;
            color: #29CBA7;
            margin-bottom: 7px;
        }
        
        .period-display {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 10px;
        }
        
        .description-display {
            font-size: 1.1rem;
            color: #495057;
            padding: 10px 0;
            border-top: 1px solid #e9ecef;
        }
        
        .calculation-breakdown {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 12px 15px;
            margin: 12px 0;
            border: 1px solid #e9ecef;
        }
        
        .breakdown-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            text-align: center;
        }
        
        .breakdown-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.95rem;
        }
        
        .breakdown-row:last-child {
            border-bottom: none;
        }
        
        .additional-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 10px;
            margin: 14px 0;
        }
        
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 10px 12px;
            border: 1px solid #dee2e6;
        }
        
        .info-card h3 {
            color: #2c3e50;
            margin-bottom: 7px;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .info-list {
            list-style: none;
            padding: 0;
        }
        
        .info-list li {
            margin: 4px 0;
            padding-left: 20px;
            position: relative;
            color: #495057;
            font-size: 0.95rem;
        }
        
        .info-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #29CBA7;
            font-weight: bold;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            color: white;
            margin-top: 40px;
        }
        
        .cta-button {
            background: white;
            color: #4facfe;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

/* Client Section */

.clients {
  padding: 64px 32px;
  background-color: #f8f9fa;
  overflow: hidden;
}

.client-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  max-width: 100%;
}

.client-slider .logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}

.client-logo {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.about {
  padding: 4rem 2rem;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about .text-box {
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.6rem;
  color: #333;
}

.about .image-placeholder .placeholder {
  width: 100%;
  height: 300px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about .image-placeholder img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.cta {
  padding: 4rem 4rem;
  text-align: center;
  background-color: #f8f9fa;
}

.cta h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta button {
  padding: 10px 20px;
  margin-top: 20px;
  font-size: 1.2rem;
  border-radius: 5px;
}

/*Services*/

.services {
  padding: 20px 20px;
  background:none;
}

.services .text-box {
  width: 500px;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services .text-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services .text-box p {
  font-size: 14px;
  line-height: 1.6;
}

.services .text-box h3 {
  font-size: 18px;
  line-height: 1.6;
}

.services .text-box ul {
  font-size: 14px;
  line-height: 1.6;
}

.services .image-box img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 0px;
}

/*Additional Services*/
.additional-services {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.additional-services .service-box {
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.additional-services .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.additional-services img {
  width: 50%;
  height: auto;
}

.additional-services h2 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.additional-services p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .additional-services {
    padding: 3rem 1rem;
  }
  
  .additional-services img {
    margin-bottom: 1.5rem;
  }
  
  .about .image-placeholder {
    display: none;
  }
  
  .services .image-box {
    margin-bottom: 1.5rem;
  }
  
  .services .text-box {
    margin-top: 20px;
    height: auto;
  }
  
	/* Calculator Section*/
	* {
            box-sizing: border-box;
        }
	.pool-calculator {
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .calculator-header {
            background: linear-gradient(135deg, #00B7E7 0%, #0099CC 100%);
            color: white;
            padding: 24px;
            text-align: center;
        }

        .calculator-header h2 {
            margin: 0;
            font-size: 28px;
            font-weight: 600;
        }

        .calculator-header p {
            margin: 8px 0 0 0;
            opacity: 0.9;
            font-size: 16px;
        }

        .tabs-container {
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }

        .tabs {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
        }

        .tab {
            flex: 1;
            min-width: 120px;
            padding: 16px 12px;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .tab:hover {
            background: rgba(0, 183, 231, 0.05);
            color: #00B7E7;
        }

        .tab.active {
            color: #00B7E7;
            border-bottom-color: #00B7E7;
            background: rgba(0, 183, 231, 0.05);
        }

        .tab-content {
            padding: 32px;
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.active {
            display: block;
        }

        .shape-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
            position: relative;
        }

        .shape-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #e1f5fe;
            position: relative;
            overflow: hidden;
        }

        .shape-svg {
            width: 80%;
            height: 80%;
            fill: #00B7E7;
            opacity: 0.8;
        }

        .form-section {
            space-y: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #374151;
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #00B7E7;
            box-shadow: 0 0 0 3px rgba(0, 183, 231, 0.1);
        }

        .input-group {
            position: relative;
        }

        .input-suffix {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
        }

        /* Pool Volume Calculator Styles */
        .pws-calculator-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 24px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        /* Parallax Blobs for Calculator */
        .pws-parallax-blobs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .pws-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.15;
            animation: pwsFloatBlob 15s ease-in-out infinite alternate;
        }
        
        .pws-b1 {
            width: 200px;
            height: 200px;
            background: #29CBA7;
            top: -100px;
            right: -50px;
            animation-duration: 20s;
        }
        
        .pws-b2 {
            width: 150px;
            height: 150px;
            background: #00B7E7;
            bottom: -50px;
            left: -50px;
            animation-duration: 15s;
            animation-delay: 2s;
        }
        
        @keyframes pwsFloatBlob {
            0% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(10px, 10px) scale(1.05);
            }
            100% {
                transform: translate(-10px, -10px) scale(0.95);
            }
        }
        
        /* Calculator Tabs */
        .pws-calculator-tabs {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            border-bottom: 2px solid #e5e7eb;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
            width: 100%;
        }
        
        .pws-tab-item {
            margin-right: 10px;
            box-sizing: border-box;
        }
        
        .pws-tab-link {
            display: inline-block;
            padding: 10px 15px;
            color: #64748b;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .pws-tab-link:hover {
            color: #29CBA7;
        }
        
        .pws-tab-link.active {
            color: #29CBA7;
            border-bottom-color: #29CBA7;
        }
        
        .pws-tab-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }
        
        .pws-tab-pane {
            display: none;
            padding: 15px 0;
            width: 100%;
        }
        
        .pws-tab-pane.active {
            display: block;
            width: 100%;
        }
        
        /* Responsive styles for larger screens */
        @media (min-width: 992px) {
            .pws-tab-pane {
                display: block;
                position: relative;
            }
            
            .pws-tab-pane.active {
                display: block;
            }
            
            .pws-tab-pane::after {
                content: "";
                display: table;
                clear: both;
            }
            
            .pws-image-container {
                width: 30%;
                float: left;
            }
            
            .pws-form-group {
                width: 65%;
                float: right;
                margin-bottom: 15px;
            }
            
            .pws-calculate-btn {
                width: 65%;
                float: right;
                clear: right;
            }
            
            .pws-result {
                width: 100%;
                clear: both;
                float: none;
                margin-top: 30px;
            }
        }

        .pws-image-container {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .pws-image-container img {
            max-width: 180px;
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .pws-image-container img:hover {
            transform: scale(1.05);
        }

        .pws-calculate-btn {
            width: 100%;
            background: linear-gradient(135deg, #29CBA7 0%, #20A085 100%);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            margin-top: 24px;
            font-family: 'Roboto', sans-serif;
            position: relative;
            z-index: 1;
            box-sizing: border-box;
        }

        .pws-calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(41, 203, 167, 0.3);
        }
        
        .pws-calculate-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 10px rgba(41, 203, 167, 0.2);
        }

        .pws-result {
            margin-top: 24px;
            padding: 24px;
            background: linear-gradient(135deg, #E8F9F5 0%, #D5F4ED 100%);
            border-radius: 8px;
            border-left: 4px solid #29CBA7;
            display: none;
            position: relative;
            z-index: 1;
            box-sizing: border-box;
        }

        .pws-form-group {
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            box-sizing: border-box;
        }
        
        .pws-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #374151;
            box-sizing: border-box;
        }

        .pws-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .pws-input:focus {
            outline: none;
            border-color: #29CBA7;
            box-shadow: 0 0 0 3px rgba(41, 203, 167, 0.1);
        }

        .pws-calculate-btn {
            width: 100%;
            background: linear-gradient(135deg, #29CBA7 0%, #20A085 100%);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            margin-top: 24px;
            font-family: 'Roboto', sans-serif;
        }

        .pws-calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(41, 203, 167, 0.3);
        }

        .pws-result {
            margin-top: 24px;
            padding: 24px;
            background: linear-gradient(135deg, #E8F9F5 0%, #D5F4ED 100%);
            border-radius: 8px;
            border-left: 4px solid #29CBA7;
            display: none;
        }

        .pws-result-show {
            display: block !important;
            animation: pwsSlideIn 0.3s ease;
        }

        @keyframes pwsSlideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pws-pricing-display {
            text-align: center;
        }

        .pws-capacity-display {
            font-size: 28px;
            font-weight: bold;
            color: #0F6B58;
            margin-bottom: 8px;
        }

        .pws-price-display {
            font-size: 22px;
            font-weight: 600;
            color: #20A085;
            margin-bottom: 8px;
        }

        .pws-period-display {
            font-size: 16px;
            color: #64748b;
        }
        
        .pws-error-message {
            color: #e53e3e;
            text-align: center;
            font-weight: 500;
        }

        .result h3 {
            margin: 0 0 12px 0;
            color: #0F6B58;
            font-size: 18px;
            text-align: center;
        }

        .result-value {
            font-size: 22px;
            font-weight: bold;
            color: #0A5A4A;
            margin-bottom: 8px;
            text-align: center;
        }

        .result-conversions {
            font-size: 13px;
            color: #64748b;
            text-align: center;
            line-height: 1.4;
        }

        .custom-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        @media (max-width: 768px) {
            /* Reduce excessive Bootstrap vertical padding on mobile */
            .py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
            
            .py-4 {
                padding-top: 1.5rem !important;
                padding-bottom: 1.5rem !important;
            }
            
            .py-3 {
                padding-top: 1rem !important;
                padding-bottom: 1rem !important;
            }
            
            /* Reduce padding on specific sections */
            #feature-grid {
                padding: 1.5rem 1rem !important;
            }
            
            #mission-statement {
                padding: 2rem 1rem !important;
            }
            
            #faq {
                padding: 2rem 1rem !important;
            }
            
            #reviews {
                padding: 2rem 1rem !important;
            }
            
            #contact-two-col {
                padding: 2rem 1rem !important;
            }
            
            #branch-contacts {
                padding: 2rem 1rem !important;
            }
            
            /* Reduce excessive padding on containers and cards */
            .container.py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
            
            .card.p-4 {
                padding: 1.5rem !important;
            }
            
            /* Reduce hero section padding */
            .hero-small {
                padding: 2rem 1rem !important;
            }
            
            /* Reduce testimonials and other section padding */
            .testimonials {
                padding: 2rem 1rem !important;
            }
            
            /* Override inline styles with excessive padding */
            [style*="padding: 50px"] {
                padding: 1.5rem !important;
            }
            
            [style*="padding: 4rem"] {
                padding: 2rem !important;
            }
            
            .shape-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .result {
                position: static;
                right: 0;
                margin-top: 16px;
                height: auto;
                background: linear-gradient(135deg, #E8F9F5 0%, #D5F4ED 100%);
                backdrop-filter: none;
            }

            .custom-inputs {
                grid-template-columns: 1fr;
            }

            .tabs {
                flex-wrap: wrap;
            }

            .tab {
                flex: auto;
                min-width: 80px;
                padding: 12px 8px;
                font-size: 12px;
            }
            
            /* Pool Volume Calculator Responsive Styles */
            .pws-calculator-container {
                padding: 16px 8px;
                margin-bottom: 20px;
            }
            
            /* Reduce horizontal padding on calculator containers */
            .slider-container {
                padding: 18px 8px;
            }
            
            .calculator-header {
                padding: 20px 8px;
            }
            
            /* Override inline padding on calculator columns for mobile */
            #pool-volume-module .col-md-6[style*="padding"] {
                padding: 8px !important;
            }
            
            .pws-calculator-tabs {
                flex-wrap: wrap;
                margin-bottom: 16px;
            }
            
            .pws-tab-item {
                flex: 1 1 auto;
                min-width: 70px;
                margin: 0 2px;
            }
            
            .pws-tab-link {
                padding: 10px 8px;
                font-size: 14px;
                text-align: center;
            }
            
            .pws-image-container img {
                max-width: 140px;
            }
            
            .pws-form-group {
                margin-bottom: 12px;
            }
            
            .pws-input {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .pws-calculate-btn {
                padding: 14px 20px;
                font-size: 15px;
                margin-top: 16px;
            }
            
            .pws-result {
                margin-top: 16px;
                padding: 16px;
            }
            
            .pws-capacity-display {
                font-size: 24px;
            }
            
            .pws-price-display {
                font-size: 18px;
            }
            
            .pws-period-display {
                font-size: 14px;
            }
        }
	
	/* Footer Section*/
	
  #footer .col-md-6,
  #footer .text-md-end {
    text-align: left !important;
  }
  
  #footer .social-icons {
    justify-content: flex-start !important;
    gap: 10px;
  }
  
  .footer-logo-container {
	  align-content: flex-start;
  }
  
  .footer-logo img {
    max-height: 40px;
  }
  
  #footer .row {
    gap: 20px;
  }
  
  #footer .col-md-6 {
    padding-bottom: 20px;
  }
}

.testimonials {
  padding: 4rem 2rem;
}

.testimonials h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonials .lead {
  font-size: 1.2rem;
  color: #6c757d;
}

.testimonials .rating .bi-star-fill {
  margin-right: 5px;
}

.testimonials .carousel .blockquote {
  font-style: italic;
  font-size: 1.1rem;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
}

.testimonials .blockquote-footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.testimonials .btn-primary {
  font-size: 1.2rem;
  padding: 10px 20px;
}

/* Reviews Section */
#reviews {
  background-color:none;
}

#reviews .carousel-item .row {
  justify-content: center;
}

#reviews .card {
  height: 100%;
  transition: transform 0.3s ease;
}

#reviews .card:hover {
  transform: translateY(-5px);
}

/* Center testimonials when less than 3 items */
@media (min-width: 768px) {
  #reviews .carousel-item .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  
  #reviews .col-md-4 {
    display: flex;
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  #reviews .col-md-4 {
    max-width: 100%;
  }
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

#footer {
  background-color: #f8f9fa;
  color: #6c757d;
}

#footer h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #000;
}

#footer a {
  color: #007bff;
  text-decoration: none;
}

#footer a:hover {
  text-decoration: underline;
}

#footer .social-icons {
  display: flex;
  gap: 0px;
  justify-content: flex-end;
  align-items: center;
}

#footer .social-icons a {
  color: #6c757d;
  font-size: 20px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .social-icons a:hover {
  color: #007bff;
}

#footer .logo img {
  display: block;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

#footer p {
  font-size: 0.875rem;
}

.footer-logo-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding-bottom: 5px;
  vertical-align: middle;
}

.footer-logo {
  width: 200px;
  max-width: 200px;
  max-height: auto;
  display: inline-block;
}

@media (max-width: 768px) {
  .footer-logo img {
    max-height: 40px;
  }
  
  #footer .social-icons a {
    padding: 5px;
    font-size: 20px;
  }
  
  #footer .row {
    gap: 20px;
  }
  
  #footer .col-md-6 {
    padding-bottom: 20px;
  }
  
  /* Footer links mobile layout */
  #footer .col-md-6 .list-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding-bottom: 0px;
  }
  
  #footer .col-md-6 .list-inline-item {
    margin: 0;
    padding: 8px 0;
  }
  
  #footer .col-md-6 .list-inline-item a {
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    text-align: left;
  }
}

.col-md-6 p {
  margin-bottom: 5px;
  line-height: 1.4;
}

.hero-small {
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('https://via.placeholder.com/1920x400') no-repeat center center/cover;
  color: #fff;
  text-align: center;
}

.hero-small h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

#privacy-policy {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

#privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#privacy-policy h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#privacy-policy .accordion-button {
  font-weight: bold;
  color: #007bff;
  background: none;
}

#privacy-policy .accordion-button:focus {
  box-shadow: none;
}

#privacy-policy .accordion-body {
  font-size: 1rem;
  line-height: 1.6;
}

/* Map */

.contact-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0;
  transition: all 0.3s ease;
}

.contact-card h4 a {
  color: #29CBA7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card h4 a:hover {
  text-decoration: underline;
  color: #007bff;
}

.contact-card p {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}


#map-container { width: 100%; }
#map-container iframe,
#map-container .map-embed {
  width: 100% !important;
  height: 500px !important;
  display: block;
  border: 0;
}
@media (max-width: 576px) {
  #map-container iframe,
  #map-container .map-embed { height: 300px !important; }
}

#mission-statement {
	padding top: 0px;
}

.calculate-btn {
	background-color: #29cba7;
	border: none;
	border-radius: 5px;
	color: white;
	padding: 10px;
	margin-top: 20px;
}

/* Readonly depth fields styling */
#rectDepth[readonly], #roundDepth[readonly], #ovalDepth[readonly], #customDepth[readonly] {
	background-color: #f8f9fa;
	color: #6c757d;
	cursor: not-allowed;
	border-color: #dee2e6;
}

.carousel-indicators {
	margin-top: 100px;
	position: relative !important;
}

#image-carousel {
	padding-top: 0px !important;
}

#feature-grid3 {
	padding-top: 0px;
}

#contact-two-col {
	background-color: #21B6E3;
}

.card {
	background-color: #ffffff;
}



/* Graphic Elements */
/* Blob Background Container */
        .blob-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -3;
            overflow: hidden;
            pointer-events: none;
            max-width: 100%;
        }

        /* Individual Blob Styles */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(35px);
            opacity: 0.6;
            animation: lavaLamp 45s infinite ease-in-out;
        }

        .blob-1 {
            width: 280px;
            height: 280px;
            background: linear-gradient(45deg, #0891b2, #0e7490);
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 50s;
        }

        .blob-2 {
            width: 350px;
            height: 350px;
            background: linear-gradient(45deg, #0d9488, #047857);
            top: 60%;
            right: 15%;
            animation-delay: -15s;
            animation-duration: 60s;
        }

        .blob-3 {
            width: 220px;
            height: 220px;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            top: 80%;
            left: 20%;
            animation-delay: -30s;
            animation-duration: 55s;
        }

        .blob-4 {
            width: 320px;
            height: 320px;
            background: linear-gradient(45deg, #14b8a6, #0d9488);
            top: 10%;
            right: 30%;
            animation-delay: -45s;
            animation-duration: 65s;
        }

        .blob-5 {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, #0284c7, #0369a1);
            top: 40%;
            left: 50%;
            animation-delay: -20s;
            animation-duration: 48s;
        }

        /* Lava Lamp Animation */
        @keyframes lavaLamp {
            0% {
                transform: translateY(0px) translateX(0px) scale(1);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            25% {
                transform: translateY(-80px) translateX(40px) scale(1.1);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }
            50% {
                transform: translateY(-20px) translateX(-60px) scale(0.9);
                border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
            }
            75% {
                transform: translateY(60px) translateX(20px) scale(1.05);
                border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
            }
            100% {
                transform: translateY(0px) translateX(0px) scale(1);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }

        /* Mobile-only animation without horizontal movement */
        @keyframes lavaLampMobile {
            0% {
                transform: translateY(0px) scale(1);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
            25% {
                transform: translateY(-40px) scale(1.05);
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
            }
            50% {
                transform: translateY(-10px) scale(0.95);
                border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
            }
            75% {
                transform: translateY(30px) scale(1.02);
                border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
            }
            100% {
                transform: translateY(0px) scale(1);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blob {
                filter: blur(25px);
                animation-name: lavaLampMobile; /* Use mobile animation without horizontal movement */
            }
        }

        /* Extra small screens - hide problematic blobs and adjust positioning */
        @media (max-width: 480px) {
            .blob-background {
                overflow: hidden;
                width: 100vw;
                max-width: 100vw;
            }
            
            .blob {
                filter: blur(20px);
                opacity: 0.3;
            }
            
            /* Hide blobs that extend beyond viewport on very small screens */
            .blob-2,
            .blob-4 {
                display: none;
            }
            
            /* Adjust remaining blobs to stay within viewport */
            .blob-1 {
                width: 180px;
                height: 180px;
                left: 5%;
                top: 15%;
            }
            
            .blob-3 {
                width: 150px;
                height: 150px;
                left: 10%;
                top: 75%;
            }
            
            .blob-5 {
                width: 160px;
                height: 160px;
                left: 60%;
                top: 45%;
            }
        }

.wave-divider-container {
    position: relative;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.wave-layer-1 {
    z-index: 2;
}

.wave-layer-2 {
    z-index: 1;
    transform: translateY(15px);
}

/* Wave Divider Styles - Fix for 1px line issue */
.wave-divider-bottom {
    position: relative;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

.wave-divider-svg {
    display: block;
    width: 100%;
    height: 120px;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: top;
}
/* ===== FIX NAVBAR + WHITE GAP ISSUES ===== */

/* Prevent horizontal scroll on all devices */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Mobile only (below 992px): logo left, toggler right */
@media (max-width: 992px) {
  .navbar .container-fluid {
    flex-direction: row;       /* inline layout */
    align-items: center;
    justify-content: space-between; /* logo left, toggler right */
    gap: 1rem;
  }

  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .navbar-brand {
    margin: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Make logo smaller on mobile */
  .navbar .navbar-brand img {
    width: 100px;
    height: auto;
    max-height: 100px;
  }

  /* Show company name centered on mobile, hide tagline */
  .navbar .company-name {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-top: 5px;
  }

  .navbar .logo-tagline {
    display: none;
  }

  .navbar-toggler {
    position: static !important; /* cancel absolute */
    margin: 0;                   /* reset margins */
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.85); /* Add transparency */
    padding: 20px;
    text-align: center;
    margin-top: 0.5rem;
    border-radius: 0; /* Remove rounded corners */
    width: 100% !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .navbar .nav-link {
    margin: 10px 0;
    display: block;
  }

  .social-icons {
    display: none !important;
  }
}

/* Prevent SVG wave dividers from spilling out */
.divider-svg,
.wave-divider-svg {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Contain hero videos and pictures */
.hero .hero-media,
.hero picture,
.hero img {
  max-width: 100%;
  overflow: hidden;
}

/* Contain slider/calculator container */
.slider-container {
  max-width: 100%;
  overflow-x: hidden;
}