/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#preloader {
  position: fixed;
  inset: 0;
  background-color: #0e0e0e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

#preloader img {
  width: 350px;
  animation: pulse 2s infinite;
}
.skip-preloader #preloader {
  display: none !important;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  background: linear-gradient(to bottom, #1a1a1a, #111);
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  border-bottom: none; 
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px; 
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #ff47b2;
  z-index: -1;
}

.logo {
  width: 150px;
  margin-top: -30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff47b2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: auto;
  margin-bottom: 100px;
  padding-left: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff47b2;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e03a9f;
}

.btn-secondary {
  border: 2px solid #ff47b2;
  color: #ff47b2;
}

.btn-secondary:hover {
  background-color: #ff47b2;
  color: #fff;
}
.gradient-divider {
  height: 8px;
  width: 100%;
  background: linear-gradient(270deg, #ff47b2, #3b1ea7, #1a1a1a);
  background-size: 600% 600%;
  animation: slideGradient 6s ease infinite;
  position: relative;
  z-index: 2;
  margin-top: -4px;
  margin-bottom: 0px;
}

/* Keyframes for sliding effect */
@keyframes slideGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Stats Section */
.stats-section {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat {
  color: #fff;
  font-size: 1.1rem;
}

.stat h2 {
  font-size: 3rem;
  color: #ff47b2;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a; 
  color: #aaa;
  padding: 40px 20px;
  text-align: center;
    border-top: 2px solid #ff47b2;
  box-shadow: 0 -2px 10px rgba(255, 71, 178, 0.2);
  
}

.site-footer a {
  color: #ff47b2;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
.site-footer.fade-in {
  transition-delay: 0.3s;
}
.scroll-down {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 3;
}
.scroll-down.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

.scroll-down svg {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-down svg:hover {
  transform: scale(1.2);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.who-we-are {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #fff;
}

.who-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.who-text {
  flex: 1;
  min-width: 300px;
}

.who-text h2 {
  font-size: 2.5rem;
  color: #ff47b2;
  margin-bottom: 20px;
}

.who-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 16px;
}

.who-image {
  flex: 1;
  min-width: 300px;
}

.who-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 71, 178, 0.2);
}
.section-divider-top,
.section-divider-bottom {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.section-divider-top svg,
.section-divider-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-divider path {
  fill: #1a1a1a; 
}
.section-divider path {
  fill: url(#dividerGradient);
}
.who-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

.core-values,
.team-spotlight {
  flex: 1;
  min-width: 280px;
}

.core-values h3,
.team-spotlight h3 {
  font-size: 1.5rem;
  color: #ff47b2;
  margin-bottom: 16px;
}

.core-values ul {
  list-style: none;
  padding-left: 0;
}

.core-values li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
  padding-left: 1.5em;
  position: relative;
}

.core-values li::before {
  content: "ðŸ”¥";
  position: absolute;
  left: 0;
  top: 0;
}

.team-spotlight p {
  color: #ccc;
  margin-bottom: 16px;
}

.team-spotlight img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 71, 178, 0.2);
}
.services {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #ff47b2;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 71, 178, 0.1);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #ff47b2;
  margin-bottom: 10px;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
}
/* ==== Careers Page ==== */

.careers-header {
  height: 60vh;
  background: linear-gradient(to bottom, #1a1a1a, #111);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.careers-hero-text h1 {
  font-size: 2.8rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.careers-hero-text p {
  color: #ccc;
  font-size: 1.2rem;
}

.careers-content {
  background-color: #111;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.careers-wrapper {
  max-width: 800px;
  margin: -70px auto 0 auto;
  
}

.careers-wrapper h2 {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 20px;
}

.careers-wrapper p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.careers-perks {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(255, 71, 178, 0.1);
  display: inline-block;
  margin-top: 20px;
}

.careers-perks li {
  background-color: #1a1a1a;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ff47b2;
  font-weight: 500;
}

.btn-apply {
  background-color: #ff47b2;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-apply:hover {
  background-color: #e03a9f;
}
/* ==== Careers Hero ==== */
.careers-hero {
  height: 70vh;
  background: linear-gradient(to right, #1a1a1a, #111), url('source/careers-bg.png') center/cover no-repeat;
  background-blend-mode: overlay;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px 40px;
  text-align: center;
}

.careers-hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.careers-hero-content h1 {
  font-size: 2.8rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.careers-hero-content p {
  color: #ccc;
  font-size: 1.2rem;
}

.hiring-badge {
  display: inline-block;
  background-color: #ff47b2;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 71, 178, 0.3);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.btn-primary {
  background-color: #ff47b2;
  color: #fff;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #e03a9f;
  box-shadow: 0 0 10px rgba(255, 71, 178, 0.4);
  transform: translateY(-2px);
}
.careers-perks li {
  display: inline-block;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 16px;
  margin: 6px;
  color: #ccc;
  transition: all 0.3s ease;
  cursor: default;
}

.careers-perks li:hover {
  background-color: #ff47b2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 30, 167, 0.4);
}
.careers-perks-wrapper {
  position: relative;
  border-radius: 12px;
  padding: 30px;
  z-index: 1;
}

.careers-perks-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -20px; 
  border-radius: 12px;
  z-index: -1;
  background: transparent;
  box-shadow: 0 0 15px 3px #ff47b2;
  animation: borderPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes borderPulse {
  0%, 100% {
    box-shadow: 0 0 15px 3px #ff47b2;
    opacity: 0.5;
  }
  50% {
    box-shadow: 0 0 25px 6px #ff47b2;
    opacity: 1;
  }
}
/* Contact Hero */
.contact-hero {
  background: linear-gradient(to bottom, #1a1a1a, #111);
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
    position: relative;
  overflow: hidden;
  z-index: 0;

}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 2.8rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #111;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
    position: relative;
  z-index: 2;
  
}

.contact-container {
  width: 100%;
  max-width: 700px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group select {
  background-color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff47b2;
  box-shadow: 0 0 8px rgba(255, 71, 178, 0.5);
}

/* Submit Button */
.contact-form button.btn-primary {
  width: fit-content;
  padding: 12px 24px;
  background: #ff47b2;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
  position: relative;
  z-index: 2;
}

.contact-form button.btn-primary:hover {
  background: #e03a9f;
  box-shadow: 0 0 12px rgba(255, 71, 178, 0.6);
  transform: translateY(-2px); 
}


/* Fade-in Support (if JS used) */
.contact-form-section.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-form-section.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Form Success Message */
.form-success-message {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #ff47b2;
  border-radius: 12px;
  background-color: #1a1a1a;
  color: #fff;
  max-width: 700px;
  margin: 40px auto 0;
  box-shadow: 0 0 20px rgba(255, 71, 178, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-success-message.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none;
}
/* Hero section with glowing background */
.contact-hero.glow-overlay::after,
.contact-hero.glow-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  
}

.contact-hero.glow-overlay::after {
  background: radial-gradient(circle, rgba(255, 71, 178, 0.2), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

.contact-hero.glow-overlay::before {
  background: radial-gradient(circle, rgba(59, 30, 167, 0.12), transparent 80%);
  animation: glowPulseAlt 8s ease-in-out infinite;
}


/* Animation */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.2;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1.07);
  }
}
@keyframes glowPulseAlt {
  0%, 100% {
    opacity: 0.15;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1.1);
  }
}
.glow-divider {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #ff47b2, #3b1ea7, #ff47b2);
  background-size: 300% 100%;
  animation: glowStripe 6s linear infinite;
  box-shadow: 0 0 12px rgba(255, 71, 178, 0.5),
              0 0 24px rgba(59, 30, 167, 0.4);
  position: relative;
  z-index: 3;
}

/* Optional texture overlay (like a shimmer line or distortion) */
.glow-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* Animated horizontal gradient */
@keyframes glowStripe {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Hero section with glowing background */
.safety-hero {
  background: linear-gradient(to bottom, #1a1a1a, #111);
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.safety-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.safety-hero h1 {
  font-size: 2.8rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.safety-hero p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Glowing Effect Behind Hero Section */
.safety-hero.glow-overlay::after,
.safety-hero.glow-overlay::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.safety-hero.glow-overlay::after {
  background: radial-gradient(circle, rgba(255, 71, 178, 0.2), transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}

.safety-hero.glow-overlay::before {
  background: radial-gradient(circle, rgba(59, 30, 167, 0.12), transparent 80%);
  animation: glowPulseAlt 8s ease-in-out infinite;
}

/* Animation */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.07);
  }
}

@keyframes glowPulseAlt {
  0%, 100% {
    opacity: 0.15;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Safety Policies Section */
.safety-policies {
  background-color: #222;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.safety-policies h2 {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.safety-policies p {
  font-size: 1.1rem;
  color: #ccc;
}

.safety-policies ul {
  list-style-type: none;
  padding: 0;
}

.safety-policies ul li {
  font-size: 1rem;
  color: #ccc;
  padding: 5px 0;
}

/* Employee Training Section */
.employee-training {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;
}

.employee-training h2 {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.employee-training p {
  font-size: 1.1rem;
  color: #ccc;
}

.employee-training ul {
  list-style-type: none;
  padding: 0;
}

.employee-training ul li {
  font-size: 1rem;
  color: #ccc;
  padding: 5px 0;
}

/* PPE Section */
.ppe {
  background-color: #222;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.ppe h2 {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.ppe p {
  font-size: 1.1rem;
  color: #ccc;
}

.ppe ul {
  list-style-type: none;
  padding: 0;
}

.ppe ul li {
  font-size: 1rem;
  color: #ccc;
  padding: 5px 0;
}

/* Safety Stats Section */
.safety-stats {
  background-color: #111;
  padding: 60px 20px;
  text-align: center;  
}

.safety-stats-title {
  color: #ff47b2;
  font-size: 2.5rem;
  margin-bottom: 40px; 
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background-color: #1a1a1a;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1; 
  max-width: 30%;  
  box-shadow: 0 0 12px rgba(255, 71, 178, 0.4);
}

.stat h3 {
  font-size: 3rem;
  color: #ff47b2;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .stat {
    max-width: 100%;  
    margin-bottom: 20px;
  }
}
/* Safety Stats Section */
.safety-stats .stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat {
  text-align: center;
  font-size: 3rem;
}

.stat h3 {
  font-size: 4rem;
  color: #ff47b2;
  margin: 0;
  padding: 0;
  font-weight: bold;
  transition: all 0.3s ease;
}

.stat p {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 8px;
}





/* Footer */
.site-footer {
  background-color: #111;
  padding: 30px;
  text-align: center;
  color: #ccc;
}

.site-footer a {
  color: #ff47b2;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 5px 0;
}
/* Services Hero Section */
.services-hero {
  background: linear-gradient(to bottom, #1a1a1a, #111);
  padding: 80px 20px 60px;
  text-align: center;
  color: #fff;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero h1 {
  font-size: 3rem;
  color: #ff47b2;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Service Categories Section */
.hydrovac-bg {
  background-image: url("source/Hydrovac.png"); /* replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.hydrovac-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
  z-index: -1;
}

.services-categories {
    display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers the cards */
  gap: 40px;
  padding: 60px 20px;
  background-color: #111;
}

.category-card {
  flex: 1 1 300px; /* grow, shrink, base */
  max-width: 350px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 71, 178, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card h3 {
  font-size: 1.8rem;
  color: #ff47b2;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
  flex-grow: 1; 
}

.category-card a {
  text-decoration: none;
  background-color: #ff47b2;
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: center; 
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 71, 178, 0.4);
}

.category-card a:hover {
  background-color: #e03a9f;
  transform: scale(1.05); 
}




/* Featured Service Section */
.featured-service {
  background-color: #111;
  padding: 280px 20px;
  text-align: center;
}

.featured-service h2 {
  font-size: 2.5rem;
  color: #ff47b2;
  margin-bottom: 20px;
}

.featured-service p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 20px;
  
}

.featured-service .btn-primary {
  background-color: #ff47b2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.featured-service .btn-primary:hover {
  background-color: #e03a9f;
}
.featured-service h2,
.featured-service p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.featured-service::before {
  backdrop-filter: blur(2px);
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #ff47b2;
  margin-bottom: 20px;
}

.why-choose-us ul {
  list-style-type: none;
  padding: 0;
}

.why-choose-us li {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 10px;
}

.why-choose-us .btn-primary {
  background-color: #ff47b2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.why-choose-us .btn-primary:hover {
  background-color: #e03a9f;
}

/* Footer */
.site-footer {
  background-color: #111;
  padding: 30px;
  text-align: center;
  color: #ccc;
}

.site-footer a {
  color: #ff47b2;
}
.featured-service .btn-primary,
.why-choose-us .btn-primary {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.featured-service .btn-primary:hover,
.why-choose-us .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(255, 71, 178, 0.4);
}
html {
  scroll-behavior: smooth;
}
/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Navbar Hidden by Default */
.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75%;
    left: 0;
    background-color: #111;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    animation: slideDown 0.3s ease forwards;
    pointer-events: auto;
  }
  

  .nav-links li a {
    font-size: 1.1rem;
    padding: 10px;
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.service-detail {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.service-container {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail h2 {
  color: #ff47b2;
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-detail p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-list li {
  font-size: 1.05rem;
  color: #fff;
  padding: 6px 0;
}
.hydrovac-highlight {
  position: relative;
  background-image: url('source/Hydrovac.png'); /* change filename as needed */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hydrovac-highlight .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* softened to improve readability */
  z-index: 1;
}

/* Strong gradient over image */
.hydrovac-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 1;
}

/* Dark semi-transparent panel for text */
.hydrovac-highlight-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    animation: fadeUp 1s ease-out both;
	  border: 1px solid rgba(255, 71, 178, 0.4);
  box-shadow: 0 0 20px rgba(255, 71, 178, 0.1);
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hydrovac-highlight-content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ff47b2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7); /* added for better visibility */
}

.hydrovac-highlight-content p {
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7); /* enhanced from previous */
}

.hydrovac-highlight-content h1 {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
/*Services Teaser */
.services-preview {
  background-color: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.services-preview h2 {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 30px;
}

.mini-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.mini-service {
  background: rgba(255, 71, 178, 0.1);
  border: 1px solid rgba(255, 71, 178, 0.4);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1.05rem;
  color: #fff;
  transition: background 0.3s ease;
}

.mini-service:hover {
  background: rgba(255, 71, 178, 0.2);
}

.services-preview .btn-primary {
  background-color: #ff47b2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block; /* optional but recommended for transform */
}

.services-preview .btn-primary:hover {
  background-color: #e03a9f;
  transform: translateY(-2px); /* this creates the subtle lift effect */
  box-shadow: 0 4px 10px rgba(255, 71, 178, 0.4); /* optional glow */
}
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #ff47b2, #3b1ea7);
  border: none;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 71, 178, 0.5),
              0 0 20px rgba(59, 30, 167, 0.3);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#backToTop svg {
  display: block;
  margin: auto;
  stroke: white;
  transition: transform 0.3s ease;
}

#backToTop:hover svg {
  transform: translateY(-3px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.who-flex-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.who-column {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.who-column h2, .who-column h3 {
  color: #ff47b2;
}

.who-image {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 0 0 15px rgba(255, 71, 178, 0.2);

}

.core-values ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.core-values li {
  color: #90ff90;
  margin: 6px 0;
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: 100px;
  }
}
.gallery-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.gallery-title {
  font-size: 2.2rem;
  color: #ff47b2;
  margin-bottom: 40px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
    padding: 0 5%; /* Adjust as needed */
  box-sizing: border-box;
}

.carousel-img {
  flex: 0 0 25%; /* Show 4 at a time — adjust this number as needed */
  max-width: 600px;
  max-height: 400px;
  margin: 0 auto;
  border-radius: 12px;
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 71, 178, 0.15);
  padding: 5px; /* Add spacing between images */
  box-sizing: border-box; /* Ensure padding doesn’t overflow */
}


.carousel-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 71, 178, 0.3);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
  box-shadow: 0 0 25px rgba(255, 71, 178, 0.4);
}

.modal.show {
  display: flex;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .carousel-img {
    flex: 0 0 100%; /* 👈 Ensure it scrolls exactly one image at a time */
    min-width: 100%;
    max-width: 100%;
    max-height: 300px;
  }
  .carousel-track {
    padding: 0; /* <-- important: remove padding so image fills fully */
  }
}
  .carousel-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
}













