@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  line-height: 1.7;
  color: #fff;
  overflow-x: hidden;
  background: #000;
  font-weight: 400;
}

/* Text justification for all paragraphs */
p {
  text-align: justify;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.logo-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.logo:hover .logo-text {
  text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-color: #00ff88;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.8rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #00ff88;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.3s ease;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.mobile-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: -1px;
}

.mobile-close {
  background: none;
  border: none;
  color: #00ff88;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: rotate(90deg);
}

.mobile-menu ul {
  list-style: none;
  padding: 2rem 0;
  margin: 0;
  flex: 1;
}

.mobile-menu ul li {
  margin: 0;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.2rem 2rem;
  display: block;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border-left-color: #00ff88;
  transform: translateX(10px);
}



/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #000 0%,
    #001a0d 30%,
    #002d1a 70%,
    #001a0d 100%
  );
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 26, 13, 0.7) 30%,
    rgba(0, 45, 26, 0.6) 70%,
    rgba(0, 26, 13, 0.8) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;

}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 3;
  position: relative;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;

  background: linear-gradient(135deg, #fff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #00ff88;
  margin-bottom: 2rem;
  font-weight: 300;

}

.hero-description {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6), 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: #00ff88;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 60px;
  border: 2px solid #00ff88;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cta-secondary:hover::before {
  width: 100%;
}

.cta-secondary:hover {
  color: #000;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

/* Modern Energy Waves */
.modern-energy-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 120px;
}

.primary-wave {
  animation: primaryWaveFlow 12s ease-in-out infinite;
  z-index: 3;
}

.secondary-wave {
  animation: secondaryWaveFlow 15s ease-in-out infinite reverse;
  z-index: 2;
}

.accent-wave {
  animation: accentWaveFlow 18s ease-in-out infinite;
  z-index: 1;
}

/* Energy Flow Lines */
.energy-flow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.flow-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 136, 0.6) 20%, 
    rgba(0, 255, 136, 0.8) 50%, 
    rgba(0, 255, 136, 0.6) 80%, 
    transparent 100%
  );
  border-radius: 2px;
  opacity: 0;
}

.line-1 {
  top: 25%;
  width: 300px;
  animation: flowLine1 8s ease-in-out infinite;
}

.line-2 {
  top: 45%;
  width: 250px;
  animation: flowLine2 10s ease-in-out infinite;
  animation-delay: 2s;
}

.line-3 {
  top: 65%;
  width: 200px;
  animation: flowLine3 12s ease-in-out infinite;
  animation-delay: 4s;
}

/* Modern Energy Pulses */
.modern-energy-pulses {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.pulse-group {
  position: absolute;
}

.pulse-group-1 {
  top: 20%;
  right: 15%;
}

.pulse-group-2 {
  top: 60%;
  left: 10%;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 136, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: modernPulse 4s ease-out infinite;
}

/* Floating Energy Orbs */
.energy-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.energy-orb {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.8) 0%, rgba(0, 255, 136, 0.3) 70%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.orb-1 {
  top: 30%;
  left: 20%;
  animation: floatOrb1 15s ease-in-out infinite;
}

.orb-2 {
  top: 50%;
  right: 25%;
  animation: floatOrb2 18s ease-in-out infinite;
  animation-delay: 3s;
}

.orb-3 {
  top: 70%;
  left: 60%;
  animation: floatOrb3 20s ease-in-out infinite;
  animation-delay: 6s;
}

.orb-4 {
  top: 40%;
  left: 80%;
  animation: floatOrb4 16s ease-in-out infinite;
  animation-delay: 9s;
}

/* About Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(180deg, #000 0%, #001a0d 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #00ff88;
  margin-bottom: 4rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-content.reverse .about-image {
  order: -1;
}

.about-text {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.2);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover .about-img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.about-image:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content h3 {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.overlay-content p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}

.highlight {
  color: #00ff88;
  font-weight: 600;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: #fff;
}

.services .section-title {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.services .section-subtitle {
  color: #00ff88 !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(0, 0, 0, 0.15);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-icon-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #00ff88 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-overlay {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
}

.service-content {
  padding: 2rem;
}

/* Service Header Styles for Services Page */
.service-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-header-img {
  transform: scale(1.1);
}

.service-header .service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #00ff88 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
}

.service-card:hover .service-header .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
}

.service-body {
  padding: 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #00ff88 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 20px 45px rgba(0, 255, 136, 0.6),
    inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #000 !important;
}

.service-card p {
  color: #333 !important;
  line-height: 1.6;
}

/* Values Section */
.values {
  padding: 8rem 0;
  background: linear-gradient(180deg, #002d1a 0%, #000 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ff88;
}

.value-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #002d1a 50%, #001a0d 100%);
  position: relative;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #00ff88;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-overlay p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* Stats Section */
.stats {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000 0%, #001a0d 50%, #000 100%);
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(0, 255, 136, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(0, 255, 136, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0, 255, 136, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3), 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(0, 255, 136, 0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  background: linear-gradient(135deg, #00ff88, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  opacity: 0.9;
}

/* Clients Section */
.clients {
  padding: 10rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #002d1a 50%, #001a0d 100%);
  position: relative;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.client-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.client-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 50%, #00ff88 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4),
    inset 0 2px 10px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s;
}

.client-card:hover .client-logo::before {
  animation: shimmer 1.5s ease-in-out;
}

.client-card:hover .client-logo {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6),
    inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.client-logo h3 {
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.client-info h4 {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.client-info p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-location {
  color: #999;
  font-size: 0.95rem;
  font-style: italic;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #002d1a 0%, #000 100%);
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cta-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Form Section - Enhanced */
.contact-form-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000 0%, #001a0d 30%, #002d1a 70%, #000 100%);
  position: relative;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 50%
  ),
  radial-gradient(
    circle at 70% 30%,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.form-header h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  border-radius: 24px 24px 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #00ff88;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label:hover {
  background: rgba(0, 255, 136, 0.1);
  color: #fff;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 136, 0.5);
  border-radius: 4px;
  margin-right: 1rem;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-color: #00ff88;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label.consent {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.submit-btn {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  border: none;
  padding: 1.5rem 4rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
  position: relative;
  overflow: hidden;
  margin: 2rem auto 0;
  display: block;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00ff88;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-bottom p {
  color: #999;
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wave Animations */
@keyframes primaryWaveFlow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  33% {
    transform: translateX(-30px) scaleY(1.1);
  }
  66% {
    transform: translateX(20px) scaleY(0.9);
  }
}

@keyframes secondaryWaveFlow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  50% {
    transform: translateX(40px) scaleY(1.2);
  }
}

@keyframes accentWaveFlow {
  0%, 100% {
    transform: translateX(0) scaleY(1);
  }
  25% {
    transform: translateX(-20px) scaleY(0.8);
  }
  75% {
    transform: translateX(30px) scaleY(1.1);
  }
}

/* Flow Line Animations */
@keyframes flowLine1 {
  0%, 100% {
    opacity: 0;
    transform: translateX(-100px);
  }
  20%, 80% {
    opacity: 1;
  }
  50% {
    transform: translateX(calc(100vw + 100px));
  }
}

@keyframes flowLine2 {
  0%, 100% {
    opacity: 0;
    transform: translateX(100vw);
  }
  20%, 80% {
    opacity: 1;
  }
  50% {
    transform: translateX(-300px);
  }
}

@keyframes flowLine3 {
  0%, 100% {
    opacity: 0;
    transform: translateX(-150px);
  }
  20%, 80% {
    opacity: 1;
  }
  50% {
    transform: translateX(calc(100vw + 150px));
  }
}

/* Pulse Animations */
@keyframes modernPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
    border-width: 2px;
  }
  50% {
    width: 60px;
    height: 60px;
    opacity: 0.6;
    border-width: 1px;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
    border-width: 0px;
  }
}

/* Orb Animations */
@keyframes floatOrb1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -20px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -40px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translate(40px, -10px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes floatOrb2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  33% {
    transform: translate(-40px, 30px) scale(1.3);
    opacity: 1;
  }
  66% {
    transform: translate(20px, -25px) scale(0.9);
    opacity: 0.8;
  }
}

@keyframes floatOrb3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  40% {
    transform: translate(-30px, -35px) scale(1.1);
    opacity: 0.9;
  }
  80% {
    transform: translate(35px, 20px) scale(1.2);
    opacity: 1;
  }
}

@keyframes floatOrb4 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  30% {
    transform: translate(-25px, 40px) scale(0.8);
    opacity: 0.8;
  }
  70% {
    transform: translate(45px, -30px) scale(1.4);
    opacity: 1;
  }
}

@keyframes subtleShimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .company-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header {
    padding: 0.8rem 0;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 2rem 0;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff !important;
    background: linear-gradient(135deg, #fff 0%, #00ff88 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* Fallback for browsers that don't support background-clip */
  @supports not (-webkit-background-clip: text) {
    .hero h1 {
      color: #fff !important;
      background: none !important;
    }
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #00ff88 !important;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    color: #ccc !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .modern-energy-waves {
    height: 80px;
  }

  .wave-svg {
    height: 80px;
  }

  .energy-flow-lines {
    display: none;
  }

  .pulse-group-1 {
    top: 25%;
    right: 10%;
  }

  .pulse-group-2 {
    top: 65%;
    left: 5%;
  }

  .energy-orbs .energy-orb {
    width: 6px;
    height: 6px;
  }

  .cta-secondary {
    margin-left: 0;
  }

  .cta-button,
  .cta-secondary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Section Spacing */
  .about,
  .services,
  .values,
  .stats,
  .clients,
  .cta-section,
  .contact-form,
  .company-overview,
  .mission-vision,
  .team {
    padding: 6rem 0;
  }

  .page-header {
    padding: 10rem 0 4rem;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .about-content,
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-content.reverse .about-image {
    order: 0;
  }

  .about-img {
    height: 300px;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-img {
    height: 250px;
  }

  .service-header {
    height: 150px;
  }

  .service-body {
    padding: 1.5rem;
  }

  .overview-text h2 {
    font-size: 2rem;
  }

  .company-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .image-placeholder {
    height: 300px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mv-card {
    padding: 2rem;
  }

  .mv-icon {
    font-size: 2.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    padding: 2rem;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .client-card {
    padding: 2rem;
  }

  .client-logo {
    width: 80px;
    height: 80px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-container {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .bg-animation {
    display: none;
  }

  .container {
    padding: 0 1.5rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .header {
    padding: 0.8rem 0;
  }

  .logo {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: #fff !important;
    background: linear-gradient(135deg, #fff 0%, #00ff88 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* Fallback for mobile browsers */
  @supports not (-webkit-background-clip: text) {
    .hero h1 {
      color: #fff !important;
      background: none !important;
    }
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: #00ff88 !important;
  }

  .hero-description {
    font-size: 0.95rem;
    color: #ccc !important;
  }

  .cta-button,
  .cta-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about,
  .services,
  .values,
  .stats,
  .clients,
  .cta-section,
  .contact-form,
  .company-overview,
  .mission-vision,
  .team {
    padding: 4rem 0;
  }

  .page-header {
    padding: 8rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .overview-text h2 {
    font-size: 1.8rem;
  }

  .company-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    padding: 1.2rem;
  }

  .stat h3 {
    font-size: 1.8rem;
  }

  .image-placeholder {
    height: 250px;
  }

  .placeholder-content h3 {
    font-size: 1.2rem;
  }

  .mv-card {
    padding: 1.5rem;
  }

  .mv-icon {
    font-size: 2rem;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .member-photo {
    width: 80px;
    height: 80px;
  }

  .photo-placeholder {
    font-size: 0.7rem;
  }

  .team-member h4 {
    font-size: 1.3rem;
  }

  .member-role {
    font-size: 1rem;
  }

  .member-bio {
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .client-card {
    padding: 1.5rem;
  }

  .client-logo {
    width: 70px;
    height: 70px;
  }

  .client-logo h3 {
    font-size: 0.9rem;
  }

  .client-info h4 {
    font-size: 1.1rem;
  }

  .client-info p {
    font-size: 1rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Extra Small Mobile Styles */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 2rem;
    color: #fff !important;
    background: linear-gradient(135deg, #fff 0%, #00ff88 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* Ensure text is visible on very small screens */
  @supports not (-webkit-background-clip: text) {
    .hero h1 {
      color: #fff !important;
      background: none !important;
    }
  }

  .section-title {
    font-size: 1.6rem;
  }

  .page-header {
    padding: 7rem 0 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .overview-text h2 {
    font-size: 1.5rem;
  }

  .stat h3 {
    font-size: 1.5rem;
  }

  .mv-card h3 {
    font-size: 1.3rem;
  }

  .team-member h4 {
    font-size: 1.2rem;
  }

  .member-photo {
    width: 70px;
    height: 70px;
  }

  .photo-placeholder {
    font-size: 0.6rem;
  }

  .cta-button,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .service-card,
  .client-card,
  .stat-item,
  .mv-card,
  .team-member {
    padding: 1.2rem;
  }

  .service-icon,
  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .client-logo {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .client-card:hover,
  .stat-item:hover {
    transform: none;
  }

  .service-card:active,
  .client-card:active,
  .stat-item:active {
    transform: scale(0.98);
  }

  .cta-button:hover,
  .cta-secondary:hover {
    transform: none;
  }

  .cta-button:active,
  .cta-secondary:active {
    transform: scale(0.95);
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 1rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 1rem 1.5rem;
  }

  .about,
  .services,
  .values,
  .stats,
  .clients,
  .cta-section,
  .contact-form {
    padding: 4rem 0;
  }
}
/* Page Header Styles */
.page-header {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, #000 0%, #001a0d 50%, #000 100%);
  text-align: center;
  position: relative;
}

.contact-header {
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 26, 13, 0.7) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.contact-header .container {
  position: relative;
  z-index: 2;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-header h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fff;
}

.page-header p {
  font-size: 1.3rem;
  color: #00ff88;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Company Overview Section */
.company-overview {
  padding: 8rem 0;
  background: linear-gradient(180deg, #000 0%, #001a0d 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overview-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.1);
}

.stat h3 {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat p {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  border-color: rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 100%);
}

.placeholder-content h3 {
  color: #00ff88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.placeholder-content p {
  color: #ccc;
  font-size: 1rem;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #002d1a 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.mv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card:hover::before {
  transform: scaleX(1);
}

.mv-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 2rem;
  display: block;
}

.mv-card h3 {
  color: #00ff88;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mv-card p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Team Section */
.team {
  padding: 8rem 0;
  background: linear-gradient(180deg, #002d1a 0%, #000 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover::before {
  transform: scaleX(1);
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-member:hover .member-photo {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.6);
}

.photo-placeholder {
  color: #000;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.team-member h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-role {
  color: #00ff88;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}ckground-clip: text !important;
}

.page-header p {
  font-size: 1.3rem;
  color: #ccc !important;
  max-width: 600px;
  margin: 0 auto;
}

/* Company Overview */
.company-overview {
  padding: 8rem 0;
  background: #fff;
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #000 !important;
  margin-bottom: 2rem;
  font-weight: 700;
}

.overview-text p {
  color: #333 !important;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.company-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.company-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  flex: 1;
}

.company-stats .stat h3 {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.company-stats .stat p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overview-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.placeholder-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.placeholder-content p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Mission & Vision */
.mission-vision {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #000 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mv-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.5s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mv-card h3 {
  font-size: 1.8rem;
  color: #00ff88;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.mv-card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Team Section */
.team {
  padding: 8rem 0;
  background: #fff;
}

.team .section-title {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.team .section-subtitle {
  color: #00ff88 !important;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}

.member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.photo-placeholder {
  color: #000;
  font-weight: 800;
  font-size: 1.2rem;
}

.team-member h4 {
  font-size: 1.4rem;
  color: #000 !important;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.member-role {
  color: #00ff88 !important;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.member-bio {
  color: #666 !important;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .page-header {
    padding: 10rem 0 4rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #00ff88 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .overview-text h2 {
    font-size: 2rem;
  }

  .company-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mv-card {
    padding: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    padding: 2rem;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff 0%, #00ff88 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  .overview-text h2 {
    font-size: 1.8rem;
  }

  .mv-card {
    padding: 1.5rem;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .member-photo {
    width: 80px;
    height: 80px;
  }
}
/* Services Page Styles */
.services-overview {
  padding: 6rem 0;
  background: #fff;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 2.5rem;
  color: #000 !important;
  margin-bottom: 2rem;
  font-weight: 700;
}

.services-intro p {
  font-size: 1.2rem;
  color: #666 !important;
  line-height: 1.7;
}

/* Main Services */
.main-services {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.service-card.detailed {
  background: #fff;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card.detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.5);
}

.service-card.detailed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card.detailed:hover::before {
  transform: scaleX(1);
}

.service-card.detailed .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.service-card.detailed h3 {
  font-size: 1.5rem;
  color: #000 !important;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-summary {
  color: #666 !important;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-details h4 {
  color: #00ff88 !important;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-details ul li {
  color: #555 !important;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}

.service-benefits {
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.benefit {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.service-cta {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: #000;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

/* Service Process */
.service-process {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #000 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.process-step h4 {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-step p {
  color: #ccc;
  line-height: 1.6;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .services-intro h2 {
    font-size: 2rem;
  }

  .services-intro p {
    font-size: 1.1rem;
  }

  .service-card.detailed {
    padding: 2rem;
  }

  .service-card.detailed .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-card.detailed h3 {
    font-size: 1.3rem;
  }

  .benefits-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    padding: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .services-intro h2 {
    font-size: 1.8rem;
  }

  .service-card.detailed {
    padding: 1.5rem;
  }

  .service-card.detailed h3 {
    font-size: 1.2rem;
  }

  .service-summary {
    font-size: 1rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .process-step h4 {
    font-size: 1.1rem;
  }
}
/* Projects Page Styles */
.project-stats {
  padding: 6rem 0;
  background: #fff;
}

/* Project Categories */
.project-categories {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid rgba(0, 255, 136, 0.3);
  color: #666;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-color: #00ff88;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Featured Projects */
.featured-projects {
  padding: 8rem 0;
  background: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}

.project-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 15px 15px 0 0;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
}

.image-placeholder.commercial {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.image-placeholder.industrial {
  background: linear-gradient(135deg, #fd7e14 0%, #e55a00 100%);
}

.image-placeholder.residential {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.image-placeholder.agricultural {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.project-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 255, 136, 0.9);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.project-info {
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.4rem;
  color: #000 !important;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.detail-label {
  font-size: 0.8rem;
  color: #666 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.detail-value {
  font-size: 1rem;
  color: #00ff88 !important;
  font-weight: 700;
}

.project-description {
  color: #555 !important;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-benefits {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.benefit-tag {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Project Process */
.project-process {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #000 100%);
}

.process-timeline {
  max-width: 800px;
  margin: 4rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00ff88, #00cc66);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
  margin-right: 2rem;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 0.5rem;
}

.timeline-content h4 {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-content p {
  color: #ccc;
  line-height: 1.6;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-card {
    margin: 0 1rem;
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .category-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .tab-btn {
    width: 200px;
    text-align: center;
  }

  .process-timeline::before {
    left: 20px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 1.5rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-info {
    padding: 1.2rem;
  }

  .project-info h3 {
    font-size: 1.2rem;
  }

  .project-description {
    font-size: 0.9rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .timeline-content {
    margin-top: 0;
  }

  .process-timeline::before {
    display: none;
  }
}
/* Contact Info Section - Enhanced */
.contact-info {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.contact-card {
  background: #fff;
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 255, 136, 0.5);
}

.contact-icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 255, 136, 0.3));
}

.contact-card h3 {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.contact-card p strong {
  color: #00ff88;
  font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #000 !important;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.form-header p {
  font-size: 1.2rem;
  color: #666 !important;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #333 !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff !important;
  color: #333 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label:hover {
  background: rgba(0, 255, 136, 0.05);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 4px;
  margin-right: 0.8rem;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #00ff88;
  border-color: #00ff88;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
}

.checkbox-label.consent {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: #000;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Map Section */
.map-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #001a0d 0%, #000 100%);
}

.map-container {
  margin-top: 4rem;
}

.map-placeholder {
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-content h3 {
  color: #00ff88;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.map-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.map-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.map-btn:not(.secondary) {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: #000;
}

.map-btn.secondary {
  background: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

/* Map Section */
.map-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #000 0%, #001a0d 50%, #000 100%);
  position: relative;
}

.map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(0, 255, 136, 0.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.map-container {
  margin-top: 4rem;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  border-radius: 20px 20px 0 0;
}

.map-placeholder:hover {
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.map-content h3 {
  color: #00ff88;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.map-btn {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.5);
}

.map-btn.secondary {
  background: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
}

.map-btn.secondary:hover {
  background: #00ff88;
  color: #000;
}

/* FAQ Section - Enhanced */
.faq-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.faq-item {
  background: #fff;
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #00cc66, #00ff88);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.2), 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 255, 136, 0.5);
}

.faq-item h4 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-info,
  .contact-form-section,
  .map-section,
  .faq-section {
    padding: 6rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .form-header h2 {
    font-size: 2.2rem;
  }

  .form-header p {
    font-size: 1.1rem;
  }

  .contact-form-container {
    padding: 2.5rem;
    margin: 0 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .map-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-item {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info,
  .contact-form-section,
  .map-section,
  .faq-section {
    padding: 4rem 0;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .contact-form-container {
    padding: 2rem;
    margin: 0 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
  }

  .map-placeholder {
    height: 250px;
  }

  .map-content h3 {
    font-size: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h4 {
    font-size: 1.2rem;
  }
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-content h3 {
    font-size: 1.5rem;
  }

  .map-content p {
    font-size: 1rem;
  }

  .faq-item {
    padding: 1.2rem;
  }

  .faq-item h4 {
    font-size: 1.1rem;
  }
}
/* Additional fixes for white section text visibility */
.services h2,
.services h3,
.services h4,
.company-overview h2,
.company-overview h3,
.company-overview h4,
.team h2,
.team h3,
.team h4,
.services-overview h2,
.services-overview h3,
.services-overview h4,
.main-services h2,
.main-services h3,
.main-services h4,
.project-stats h2,
.project-stats h3,
.project-stats h4,
.project-categories h2,
.project-categories h3,
.project-categories h4,
.featured-projects h2,
.featured-projects h3,
.featured-projects h4,
.contact-info h2,
.contact-info h3,
.contact-info h4,
.contact-form-section h2,
.contact-form-section h3,
.contact-form-section h4,
.faq-section h2,
.faq-section h3,
.faq-section h4 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.services p,
.company-overview p,
.team p,
.services-overview p,
.main-services p,
.project-stats p,
.project-categories p,
.featured-projects p,
.contact-info p,
.contact-form-section p,
.faq-section p {
  color: #333 !important;
}

/* Ensure section titles in white backgrounds are visible */
section[style*="background: #fff"] .section-title,
section[style*="background:#fff"] .section-title,
.services .section-title,
.company-overview .section-title,
.team .section-title,
.services-overview .section-title,
.main-services .section-title,
.project-stats .section-title,
.project-categories .section-title,
.featured-projects .section-title,
.contact-info .section-title,
.contact-form-section .section-title,
.faq-section .section-title {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

/* Fix for company stats text */
.company-stats .stat h3 {
  color: #00ff88 !important;
}

.company-stats .stat p {
  color: #666 !important;
}

/* Fix for tab buttons */
.tab-btn {
  color: #666 !important;
}

.tab-btn:hover,
.tab-btn.active {
  color: #000 !important;
}

/* Fix for form elements */
.checkbox-label {
  color: #333 !important;
}

.checkbox-label.consent {
  color: #333 !important;
}

/* Fix for benefit tags */
.benefit {
  color: #00ff88 !important;
}

.benefit-tag {
  color: #00ff88 !important;
}

/* Fix for service CTA buttons */
.service-cta {
  color: #000 !important;
}
/* Specific fixes for project section visibility */
.project-stats {
  background: #fff !important;
}

.project-stats .section-title,
.project-stats h2,
.project-stats h3 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.project-stats .section-subtitle,
.project-stats p {
  color: #666 !important;
}

.project-categories {
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%) !important;
}

.project-categories .section-title,
.project-categories h2,
.project-categories h3 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.project-categories .section-subtitle,
.project-categories p {
  color: #666 !important;
}

.featured-projects {
  background: #fff !important;
}

.featured-projects .section-title,
.featured-projects h2,
.featured-projects h3 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.featured-projects .section-subtitle,
.featured-projects p {
  color: #666 !important;
}

/* Fix tab buttons visibility */
.tab-btn {
  color: #666 !important;
  background: transparent !important;
}

.tab-btn:hover,
.tab-btn.active {
  color: #000 !important;
  background: linear-gradient(135deg, #00ff88, #00cc66) !important;
}
/* Contact page styles are now properly integrated above */

.checkbox-label {
  color: #333 !important;
}

.faq-section {
  background: #fff !important;
}

.faq-section .section-title,
.faq-section h2,
.faq-section h3 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.faq-section .section-subtitle,
.faq-section p {
  color: #666 !important;
}

.faq-item {
  background: rgba(0, 255, 136, 0.05) !important;
}

.faq-item h4 {
  color: #00ff88 !important;
}

.faq-item p {
  color: #555 !important;
}
/* Mobile hero text visibility fix */
@media (max-width: 768px) {
  .hero h1 {
    /* Force solid color on mobile if gradient text fails */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
  }

  /* Alternative approach for mobile browsers */
  .hero h1 span,
  .hero h1 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
  }
}

/* Force visibility for webkit browsers on mobile */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
  .hero h1 {
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    color: #fff !important;
  }
}
/* Final comprehensive visibility fixes */

/* Ensure all white section backgrounds are properly set */
.services,
.company-overview,
.team,
.services-overview,
.main-services,
.project-stats,
.project-categories,
.featured-projects,
.contact-info,
.contact-form-section,
.faq-section {
  background-color: #fff !important;
}

/* Force all text in white sections to be dark */
.services *,
.company-overview *,
.team *,
.services-overview *,
.main-services *,
.project-stats *,
.project-categories *,
.featured-projects *,
.contact-info *,
.contact-form-section *,
.faq-section * {
  color: inherit;
}

.services h1,
.services h2,
.services h3,
.services h4,
.services h5,
.services h6,
.company-overview h1,
.company-overview h2,
.company-overview h3,
.company-overview h4,
.company-overview h5,
.company-overview h6,
.team h1,
.team h2,
.team h3,
.team h4,
.team h5,
.team h6,
.services-overview h1,
.services-overview h2,
.services-overview h3,
.services-overview h4,
.services-overview h5,
.services-overview h6,
.main-services h1,
.main-services h2,
.main-services h3,
.main-services h4,
.main-services h5,
.main-services h6,
.project-stats h1,
.project-stats h2,
.project-stats h3,
.project-stats h4,
.project-stats h5,
.project-stats h6,
.project-categories h1,
.project-categories h2,
.project-categories h3,
.project-categories h4,
.project-categories h5,
.project-categories h6,
.featured-projects h1,
.featured-projects h2,
.featured-projects h3,
.featured-projects h4,
.featured-projects h5,
.featured-projects h6,
.contact-info h1,
.contact-info h2,
.contact-info h3,
.contact-info h4,
.contact-info h5,
.contact-info h6,
.contact-form-section h1,
.contact-form-section h2,
.contact-form-section h3,
.contact-form-section h4,
.contact-form-section h5,
.contact-form-section h6,
.faq-section h1,
.faq-section h2,
.faq-section h3,
.faq-section h4,
.faq-section h5,
.faq-section h6 {
  color: #000 !important;
  background: none !important;
  -webkit-text-fill-color: #000 !important;
}

.services p,
.services span,
.services div:not(.section-title):not(.section-subtitle),
.company-overview p,
.company-overview span,
.company-overview div:not(.section-title):not(.section-subtitle),
.team p,
.team span,
.team div:not(.section-title):not(.section-subtitle),
.services-overview p,
.services-overview span,
.services-overview div:not(.section-title):not(.section-subtitle),
.main-services p,
.main-services span,
.main-services div:not(.section-title):not(.section-subtitle),
.project-stats p,
.project-stats span,
.project-stats div:not(.section-title):not(.section-subtitle),
.project-categories p,
.project-categories span,
.project-categories div:not(.section-title):not(.section-subtitle),
.featured-projects p,
.featured-projects span,
.featured-projects div:not(.section-title):not(.section-subtitle),
.contact-info p,
.contact-info span,
.contact-info div:not(.section-title):not(.section-subtitle),
.contact-form-section p,
.contact-form-section span,
.contact-form-section div:not(.section-title):not(.section-subtitle),
.faq-section p,
.faq-section span,
.faq-section div:not(.section-title):not(.section-subtitle) {
  color: #333 !important;
}

/* Special cases for accent colors */
.services .section-subtitle,
.company-overview .section-subtitle,
.team .section-subtitle,
.services-overview .section-subtitle,
.main-services .section-subtitle,
.project-stats .section-subtitle,
.project-categories .section-subtitle,
.featured-projects .section-subtitle,
.contact-info .section-subtitle,
.contact-form-section .section-subtitle,
.faq-section .section-subtitle {
  color: #00ff88 !important;
}

/* Mobile hero text - ultimate fix */
@media (max-width: 768px) {
  .hero h1 {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
  }

  .hero-content h1 {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
  }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and up) - Default styles already applied */

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero h1 {
    font-size: 3.8rem;
  }
  
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
    padding: 0 1.5rem;
  }
  
  .hero {
    min-height: 80vh;
    padding: 8rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0;
    text-align: center;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-content.reverse {
    flex-direction: column;
  }
  
  .about-text,
  .about-image {
    flex: none;
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding: 0 1rem;
  }
  
  .header {
    padding: 0.8rem 0;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .hero {
    min-height: 70vh;
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
  
  .value-item {
    padding: 1.5rem;
    text-align: center;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .client-card {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 4rem 0;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
  }
}

/* Mobile Medium (480px to 575px) */
@media (max-width: 575px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    padding: 5rem 0 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .cta-button,
  .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .service-card {
    padding: 1.2rem;
  }
  
  .service-content h3 {
    font-size: 1.2rem;
  }
  
  .service-content p {
    font-size: 0.9rem;
  }
  
  .value-item {
    padding: 1.2rem;
  }
  
  .value-item h3 {
    font-size: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .hero-buttons {
    gap: 0.8rem;
  }
  
  .cta-button,
  .cta-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.1rem;
  }
  
  .service-content p {
    font-size: 0.85rem;
  }
  
  .value-item {
    padding: 1rem;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  .value-item h3 {
    font-size: 1.1rem;
  }
  
  .value-item p {
    font-size: 0.85rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .client-card {
    padding: 1rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .form-container {
    padding: 1rem;
  }
  
  .footer-section {
    padding: 1rem 0;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
  }
  
  .footer-section p {
    font-size: 0.85rem;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 3rem 0 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
  
  .cta-button,
  .cta-secondary {
    max-width: 200px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .cta-button,
  .cta-secondary,
  .nav-link,
  .mobile-nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-card,
  .value-item,
  .client-card,
  .gallery-item {
    transition: none;
  }
  
  .service-card:hover,
  .value-item:hover,
  .client-card:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* High DPI Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg-video,
  .about-img,
  .service-img,
  .gallery-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .mobile-menu,
  .hero-buttons,
  .cta-section,
  .contact-form,
  .footer {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-title,
  .hero h1 {
    color: #000 !important;
    background: none !important;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
  
  .services-grid,
  .values-grid,
  .stats-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark Mode Support (if user prefers dark) */
@media (prefers-color-scheme: dark) {
  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 26, 13, 0.8) 30%,
      rgba(0, 45, 26, 0.7) 70%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .cta-button,
  .cta-secondary {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .container {
    padding: 0 0.25rem;
  }
}

/* Header Logo Styles */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  width: 139px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

/* Footer Logo Styles */
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* Responsive logo styles */
@media (max-width: 991px) {
  .logo-icon {
    width: 75px;
    height: 75px;
  }
  
  .footer-logo-img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .logo-icon {
    width: 70px;
    height: 70px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 479px) {
  .logo-icon {
    width: 65px;
    height: 65px;
  }
  
  .footer-logo-img {
    width: 90px;
    height: 90px;
  }
}/* =
==== ENHANCED MOBILE RESPONSIVENESS FOR ALL SECTIONS ===== */

/* About Section Mobile Fixes */
@media (max-width: 767px) {
  .about {
    padding: 3rem 0;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-content.reverse {
    flex-direction: column;
  }
  
  .about-text,
  .about-image {
    width: 100%;
    flex: none;
  }
  
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .about-image {
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Services Section Mobile Fixes */
@media (max-width: 767px) {
  .services {
    padding: 3rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-image {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .service-icon-overlay {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

/* Values Section Mobile Fixes */
@media (max-width: 767px) {
  .values {
    padding: 3rem 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 1.5rem;
    text-align: center;
  }
  
  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .value-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Gallery Section Mobile Fixes */
@media (max-width: 767px) {
  .gallery {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gallery-overlay {
    padding: 1rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
  }
}

/* Stats Section Mobile Fixes */
@media (max-width: 767px) {
  .stats {
    padding: 3rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Clients Section Mobile Fixes */
@media (max-width: 767px) {
  .clients {
    padding: 3rem 0;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .client-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .client-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
  }
  
  .client-logo h3 {
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
  }
  
  .client-info {
    flex: 1;
  }
  
  .client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .client-info p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .client-location {
    font-size: 0.8rem;
    color: #666;
  }
}

/* CTA Section Mobile Fixes */
@media (max-width: 767px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    text-align: center;
  }
}

/* Contact Form Section Mobile Fixes */
@media (max-width: 767px) {
  .contact-form {
    padding: 3rem 0;
  }
  
  .form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-submit {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .form-submit .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
  }
}

/* Footer Mobile Fixes */
@media (max-width: 767px) {
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-section {
    padding: 1rem 0;
  }
  
  .footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .footer-section a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #00cc66;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
}

/* Extra Small Mobile Fixes */
@media (max-width: 479px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .service-card,
  .value-item,
  .client-card {
    padding: 1.2rem;
  }
  
  .stat-item {
    padding: 1.2rem 0.8rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .form-container {
    padding: 1.2rem;
    margin: 0 0.5rem;
  }
  
  .footer-section {
    padding: 0.8rem 0;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
  .about,
  .services,
  .values,
  .gallery,
  .stats,
  .clients,
  .cta-section,
  .contact-form {
    padding: 2rem 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .service-card,
  .value-item {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .client-card {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .client-logo {
    width: 60px;
    height: 60px;
  }
}/* 
===== ENHANCED RESPONSIVE DESIGN FOR ALL SECTIONS ===== */

/* About Section Enhanced Responsive Design */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-content.reverse {
  flex-direction: row-reverse;
}

.about-text,
.about-image {
  flex: 1;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: white;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00ff88;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Tablet About Section */
@media (max-width: 991px) {
  .about-content {
    gap: 2rem;
  }
  
  .about-img {
    height: 350px;
  }
  
  .image-overlay {
    padding: 1.5rem;
  }
  
  .overlay-content h3 {
    font-size: 1.3rem;
  }
}

/* Mobile About Section Enhanced */
@media (max-width: 767px) {
  .about-content {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .about-content.reverse {
    flex-direction: column !important;
  }
  
  .about-text,
  .about-image {
    width: 100%;
    flex: none;
  }
  
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .about-img {
    height: 250px;
  }
  
  .image-overlay {
    padding: 1rem;
  }
  
  .overlay-content h3 {
    font-size: 1.2rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
  }
}/* Pa
ge Header Background Styles */
.page-header {
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 26, 13, 0.6) 30%,
    rgba(0, 45, 26, 0.5) 70%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 3;
}

.page-header h1,
.page-header p {
  color: #fff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}/* Enhanced
 Contact Form Styles */
.form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-submit {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.form-submit .cta-secondary {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.form-submit .cta-secondary:hover {
  background: #f8f9fa;
  color: #333;
  border-color: #00ff88;
}

/* Mobile Form Styles */
@media (max-width: 767px) {
  .form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-submit {
    flex-direction: column;
    align-items: center;
  }
  
  .form-submit .cta-button,
  .form-submit .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== PROPER RESPONSIVE DESIGN WITH SPACING ===== */

/* Base responsive setup */
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Container with proper responsive spacing - keeps desktop margins */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Responsive container spacing */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 1.5rem;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
    padding: 0 1rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 0.75rem;
  }
}

@media (max-width: 479px) {
  .container {
    padding: 0 0.5rem;
  }
}

/* Images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Video backgrounds responsive */
.hero-bg-video,
.hero-bg-img,
.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix images */
img {
  max-width: 100%;
  height: auto;
}

/* Fix grids on mobile */
@media (max-width: 767px) {
  .services-grid,
  .values-grid,
  .stats-grid,
  .clients-grid,
  .gallery-grid {
    width: 100%;
    max-width: 100%;
  }
  
  .service-card,
  .value-item,
  .stat-item,
  .client-card,
  .gallery-item {
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix form container */
  .form-container {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem;
  }
  
  .form-grid {
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix about content */
  .about-content {
    width: 100%;
    max-width: 100%;
  }
  
  .about-text,
  .about-image {
    width: 100%;
    max-width: 100%;
  }
  
  /* Fix footer */
  .footer-content {
    width: 100%;
    max-width: 100%;
  }
  
  .footer-section {
    width: 100%;
    max-width: 100%;
  }
}

/* Fix very small screens */
@media (max-width: 479px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section-title {
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* Fix extra small screens */
@media (max-width: 320px) {
  .container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.1;
    word-wrap: break-word;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
    word-wrap: break-word;
  }
}





/* Fix specific elements that might cause overflow */
.hero-buttons {
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button,
.cta-secondary {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix text overflow */
h1, h2, h3, h4, h5, h6, p, span, div {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Fix mobile navigation */
@media (max-width: 767px) {
  .nav-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100vw;
  }
}/
* ===== ADDITIONAL MOBILE FIXES ===== */

/* Fix viewport meta issues */
@viewport {
  width: device-width;
  zoom: 1.0;
}

/* Prevent zoom on input focus (iOS) */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-size: 16px; /* Prevents zoom on iOS */
}

/* Fix any margin/padding issues */
@media (max-width: 767px) {
  body {
    margin: 0;
    padding: 0;
  }
  
  .hero,
  .about,
  .services,
  .values,
  .gallery,
  .stats,
  .clients,
  .cta-section,
  .contact-form,
  .footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Fix hero content spacing */
  .hero-content {
    max-width: calc(100vw - 2rem);
    margin: 0 auto;
  }
  
  /* Fix section padding */
  .about .container,
  .services .container,
  .values .container,
  .gallery .container,
  .stats .container,
  .clients .container,
  .cta-section .container,
  .contact-form .container,
  .footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
}

/* Fix button overflow */
@media (max-width: 479px) {
  .hero-buttons {
    padding: 0 1rem;
  }
  
  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin: 0;
  }
  
  /* Fix form elements */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
  }
}

/* Fix table/grid overflow */
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Fix image containers */
.about-image,
.service-image,
.gallery-item {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Fix long text content */
.about-text p,
.service-content p,
.value-item p {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}/* ===== 
PROPER RESPONSIVE SPACING SYSTEM ===== */

/* Navigation responsive spacing */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 991px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .nav-container {
    padding: 0 1rem;
  }
}

/* Hero content responsive spacing */
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 991px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 0 1rem;
  }
}

/* Form container responsive */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
}

@media (max-width: 767px) {
  .form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 479px) {
  .form-container {
    padding: 1rem;
    margin: 0 0.5rem;
  }
}

/* Grid responsive behavior */
@media (max-width: 767px) {
  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .clients-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Button responsive behavior */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* About content responsive */
@media (max-width: 767px) {
  .about-content {
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .about-content.reverse {
    flex-direction: column !important;
  }
}

/* Footer responsive */
@media (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* Mobile menu fix */
@media (max-width: 767px) {
  .mobile-menu {
    width: 100%;
    right: 0;
  }
}/* 
===== SERVICES PAGE MOBILE FIXES ===== */

/* Services page specific styles */
.main-services {
  background: #fff;
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card.detailed {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card.detailed:hover .service-header-img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 255, 136, 0.9);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
}

.service-body {
  padding: 2rem;
}

.service-body h3 {
  color: #000 !important;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-summary {
  color: #666 !important;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details h4 {
  color: #000 !important;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-details li {
  color: #555 !important;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details li:before {
  content: "✓";
  color: #00ff88;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-benefits {
  margin-top: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.benefit {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88 !important;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.service-cta {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: #000 !important;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
  color: #000 !important;
}

/* Mobile responsive for services */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .service-header {
    height: 200px;
  }
  
  .service-body {
    padding: 1.5rem;
  }
  
  .service-body h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .main-services {
    padding: 2rem 0;
  }
  
  .services-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .service-header {
    height: 180px;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .service-body {
    padding: 1rem;
  }
  
  .service-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .service-summary {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .service-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .service-details li {
    font-size: 0.9rem;
    padding: 0.2rem 0;
  }
  
  .benefits-list {
    gap: 0.3rem;
  }
  
  .benefit {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
  
  .service-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

@media (max-width: 479px) {
  .service-header {
    height: 150px;
  }
  
  .service-body {
    padding: 0.8rem;
  }
  
  .service-body h3 {
    font-size: 1.1rem;
  }
  
  .service-summary {
    font-size: 0.85rem;
  }
  
  .service-details h4 {
    font-size: 1rem;
  }
  
  .service-details li {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE VIDEO SUPPORT ===== */

/* Enhanced video attributes for mobile support */
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Mobile video support */
  -webkit-playsinline: true;
  -moz-playsinline: true;
  playsinline: true;
  /* Prevent video controls */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Ensure video loads */
  preload: auto;
}

/* Mobile specific video fixes */
@media (max-width: 767px) {
  .hero-bg-video {
    /* Force video to play on mobile */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    /* iOS specific fixes */
    -webkit-playsinline: true !important;
    playsinline: true !important;
    /* Prevent user interaction */
    pointer-events: none;
    /* Ensure proper display */
    display: block !important;
    visibility: visible !important;
  }
  
  /* Hero container mobile fixes */
  .hero-background-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

/* Services page white space fix */
.services-overview,
.main-services {
  background: #fff !important;
  color: #000 !important;
}

.services-overview * {
  color: inherit !important;
}

.services-intro h2 {
  color: #000 !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-intro p {
  color: #666 !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Fix any potential CSS conflicts */
.main-services .container {
  background: transparent;
}

.main-services .services-grid {
  background: transparent;
}

/* Ensure proper text colors on services page */
.services-overview h1,
.services-overview h2,
.services-overview h3,
.services-overview h4,
.services-overview h5,
.services-overview h6 {
  color: #000 !important;
}

.services-overview p,
.services-overview span,
.services-overview div {
  color: #333 !important;
}

.main-services h1,
.main-services h2,
.main-services h3,
.main-services h4,
.main-services h5,
.main-services h6 {
  color: #000 !important;
}

.main-services p,
.main-services span,
.main-services div {
  color: #333 !important;
}/* ==
=== COMPREHENSIVE SERVICES PAGE MOBILE FIX ===== */

/* Reset any conflicting styles */
body {
  background: #fff;
}

/* Services page sections */
.page-header,
.services-overview,
.main-services {
  background: #fff !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Container fixes */
.services-overview .container,
.main-services .container {
  background: transparent !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Mobile container fixes */
@media (max-width: 767px) {
  .services-overview .container,
  .main-services .container {
    padding: 0 1rem;
  }
  
  .services-overview,
  .main-services {
    padding: 2rem 0;
  }
  
  /* Force visibility on mobile */
  .services-overview *,
  .main-services * {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Text visibility fixes */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.services-intro h2 {
  color: #000 !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.services-intro p {
  color: #666 !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile text fixes */
@media (max-width: 767px) {
  .services-intro {
    padding: 1rem 0;
  }
  
  .services-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .services-intro p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Service cards mobile fixes */
@media (max-width: 767px) {
  .service-card.detailed {
    margin-bottom: 1rem;
    background: #fff !important;
    border: 1px solid #eee;
  }
  
  .service-card.detailed * {
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Emergency mobile fix */
@media (max-width: 767px) {
  .services-overview,
  .main-services,
  .services-overview *,
  .main-services * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
  }
  
  .services-overview h2,
  .main-services h3 {
    color: #000 !important;
  }
  
  .services-overview p,
  .main-services p {
    color: #666 !important;
  }
}/* 
===== ADDITIONAL MOBILE VIDEO FIXES ===== */

/* Ensure video container is properly sized */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Video element specific mobile fixes */
.hero-bg-video {
  /* Remove any potential blocking styles */
  border: none !important;
  outline: none !important;
  background: none !important;
  /* Ensure video fills container */
  min-width: 100%;
  min-height: 100%;
  /* Prevent video from being selectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Prevent context menu */
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* iOS Safari specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 1) {
  .hero-bg-video {
    -webkit-playsinline: true !important;
    playsinline: true !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Android Chrome specific fixes */
@media screen and (max-width: 767px) {
  .hero-bg-video {
    /* Force hardware acceleration */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    /* Ensure video is not paused by browser */
    -webkit-background-size: cover;
    background-size: cover;
  }
}

/* Prevent video from being paused on scroll */
.hero-bg-video::-webkit-media-controls {
  display: none !important;
}

.hero-bg-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-bg-video::-webkit-media-controls-play-button {
  display: none !important;
}

.hero-bg-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* Firefox mobile fixes */
@-moz-document url-prefix() {
  .hero-bg-video {
    -moz-appearance: none;
    appearance: none;
  }
}/* ====
= COMPREHENSIVE SERVICES PAGE MOBILE RESPONSIVENESS ===== */

/* Page Header Mobile */
@media (max-width: 767px) {
  .page-header {
    padding: 8rem 0 4rem;
    min-height: 60vh;
  }
  
  .page-header h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .page-header p {
    font-size: 1rem !important;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
  }
}

/* Services Overview Mobile */
@media (max-width: 767px) {
  .services-overview {
    padding: 3rem 0 !important;
  }
  
  .services-intro {
    padding: 1rem 0 !important;
    text-align: center;
  }
  
  .services-intro h2 {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000 !important;
  }
  
  .services-intro p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: #666 !important;
    max-width: 100%;
  }
}

/* Main Services Grid Mobile */
@media (max-width: 767px) {
  .main-services {
    padding: 2rem 0 !important;
  }
  
  .services-grid {
    display: block !important;
    gap: 0;
  }
  
  .service-card.detailed {
    margin-bottom: 2rem !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff !important;
  }
  
  .service-card.detailed:last-child {
    margin-bottom: 0;
  }
}

/* Service Header Mobile */
@media (max-width: 767px) {
  .service-header {
    height: 200px !important;
    position: relative;
    overflow: hidden;
  }
  
  .service-header-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  
  .service-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
    background: rgba(0, 255, 136, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }
}

/* Service Body Mobile */
@media (max-width: 767px) {
  .service-body {
    padding: 1.5rem !important;
  }
  
  .service-body h3 {
    font-size: 1.3rem !important;
    color: #000 !important;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .service-summary {
    font-size: 0.95rem !important;
    color: #666 !important;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}

/* Service Details Mobile */
@media (max-width: 767px) {
  .service-details {
    margin-bottom: 1.5rem;
  }
  
  .service-details h4 {
    font-size: 1.1rem !important;
    color: #000 !important;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  
  .service-details li {
    font-size: 0.9rem !important;
    color: #555 !important;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
  }
  
  .service-details li:before {
    content: "✓";
    color: #00ff88;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.4rem;
  }
}

/* Service Benefits Mobile */
@media (max-width: 767px) {
  .service-benefits {
    margin-top: 1.5rem;
  }
  
  .service-benefits h4 {
    font-size: 1.1rem !important;
    color: #000 !important;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }
  
  .benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
  }
  
  .benefit {
    background: rgba(0, 255, 136, 0.1) !important;
    color: #00ff88 !important;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem !important;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
    white-space: nowrap;
  }
}

/* Service CTA Mobile */
@media (max-width: 767px) {
  .service-cta {
    display: block !important;
    width: 100% !important;
    text-align: center;
    background: linear-gradient(135deg, #00ff88, #00cc66) !important;
    color: #000 !important;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    color: #000 !important;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 479px) {
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2rem !important;
  }
  
  .page-header p {
    font-size: 0.9rem !important;
  }
  
  .services-intro h2 {
    font-size: 1.8rem !important;
  }
  
  .services-intro p {
    font-size: 0.9rem !important;
  }
  
  .service-header {
    height: 180px !important;
  }
  
  .service-body {
    padding: 1rem !important;
  }
  
  .service-body h3 {
    font-size: 1.2rem !important;
  }
  
  .service-summary {
    font-size: 0.9rem !important;
  }
  
  .service-details li {
    font-size: 0.85rem !important;
  }
  
  .benefit {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem;
  }
  
  .service-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .service-header {
    height: 150px !important;
  }
  
  .service-body {
    padding: 0.8rem !important;
  }
  
  .service-body h3 {
    font-size: 1.1rem !important;
    line-height: 1.2;
  }
  
  .service-summary {
    font-size: 0.85rem !important;
  }
  
  .service-details h4 {
    font-size: 1rem !important;
  }
  
  .service-details li {
    font-size: 0.8rem !important;
    padding: 0.3rem 0;
  }
  
  .benefits-list {
    gap: 0.3rem;
  }
  
  .benefit {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem;
  }
}

/* Force visibility and proper display */
@media (max-width: 767px) {
  .services-overview,
  .main-services,
  .services-overview *,
  .main-services * {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
  }
  
  .services-grid {
    display: block !important;
  }
  
  .service-card.detailed {
    display: block !important;
  }
  
  .benefits-list {
    display: flex !important;
  }
  
  .service-cta {
    display: block !important;
  }
}

/* Container responsive fixes */
@media (max-width: 767px) {
  .services-overview .container,
  .main-services .container {
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
}

@media (max-width: 479px) {
  .services-overview .container,
  .main-services .container {
    padding: 0 0.5rem !important;
  }
}/
* ===== SERVICES PAGE PROCESS TIMELINE MOBILE ===== */

/* Process Timeline Mobile */
@media (max-width: 767px) {
  .process-timeline {
    max-width: 100%;
    margin: 2rem auto 0;
    padding: 0;
  }
  
  .process-step {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #00ff88;
    position: relative;
  }
  
  .process-step:last-child {
    margin-bottom: 0;
  }
  
  .step-number {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: absolute;
    top: -10px;
    right: 1rem;
  }
  
  .process-step h4 {
    color: #000 !important;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    padding-right: 60px;
  }
  
  .process-step p {
    color: #666 !important;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }
}

/* Small Mobile Process Timeline */
@media (max-width: 479px) {
  .process-step {
    padding: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: -8px;
    right: 0.8rem;
  }
  
  .process-step h4 {
    font-size: 1.1rem;
    padding-right: 50px;
  }
  
  .process-step p {
    font-size: 0.9rem;
  }
}

/* Services Page CTA Section Mobile */
@media (max-width: 767px) {
  .services .cta-section {
    padding: 3rem 0;
  }
  
  .services .cta-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .services .cta-content h2 {
    font-size: 2rem !important;
    color: #fff !important;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .services .cta-content p {
    font-size: 1rem !important;
    color: #ccc !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .services .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .services .cta-button,
  .services .cta-secondary {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.95rem;
  }
}

/* Small Mobile CTA */
@media (max-width: 479px) {
  .services .cta-content h2 {
    font-size: 1.8rem !important;
  }
  
  .services .cta-content p {
    font-size: 0.95rem !important;
  }
  
  .services .cta-button,
  .services .cta-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    max-width: 280px;
  }
}

/* Services Page Section Spacing Mobile */
@media (max-width: 767px) {
  .services .page-header + .services-overview {
    padding-top: 2rem !important;
  }
  
  .services-overview + .main-services {
    padding-top: 1rem !important;
  }
  
  .main-services + .process-section {
    padding-top: 2rem !important;
  }
  
  .process-section + .cta-section {
    padding-top: 1rem !important;
  }
}

/* Force all services page elements to be visible on mobile */
@media (max-width: 767px) {
  .services-page *,
  .services *,
  .services-overview *,
  .main-services *,
  .process-section *,
  .process-timeline *,
  .process-step * {
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Ensure proper text colors */
  .services h1, .services h2, .services h3, .services h4, .services h5, .services h6 {
    color: inherit !important;
  }
  
  .services p, .services span, .services div {
    color: inherit !important;
  }
  
  /* White background sections */
  .services-overview,
  .main-services {
    background: #fff !important;
  }
  
  .services-overview h2,
  .main-services h3,
  .process-step h4 {
    color: #000 !important;
  }
  
  .services-overview p,
  .main-services p,
  .process-step p {
    color: #666 !important;
  }
}/* =====
 COMPLETELY NEW SERVICES PAGE DESIGN ===== */

/* Override existing services styles */
.main-services {
  background: #f8f9fa !important;
  padding: 3rem 0 !important;
}

.services-grid {
  display: block !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}

/* Modern Service Card */
.service-card.detailed {
  background: #fff !important;
  border-radius: 16px !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 255, 136, 0.1) !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.service-card.detailed:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(0, 255, 136, 0.3) !important;
}

/* Service Header */
.service-header {
  position: relative !important;
  height: 220px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.1)) !important;
}

.service-header-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.9 !important;
  transition: transform 0.3s ease !important;
}

.service-card.detailed:hover .service-header-img {
  transform: scale(1.08) !important;
}

.service-icon {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #00ff88 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px) !important;
}

/* Service Body */
.service-body {
  padding: 2rem !important;
}

.service-body h3 {
  color: #1a1a1a !important;
  font-size: 1.6rem !important;
  margin-bottom: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

.service-summary {
  color: #666 !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.8rem !important;
  font-weight: 400 !important;
}

/* Service Details */
.service-details h4 {
  color: #1a1a1a !important;
  font-size: 1.25rem !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
  position: relative !important;
  padding-bottom: 0.5rem !important;
}

.service-details h4:after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 40px !important;
  height: 3px !important;
  background: linear-gradient(135deg, #00ff88, #00cc66) !important;
  border-radius: 2px !important;
}

.service-details ul {
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 2rem !important;
}

.service-details li {
  color: #555 !important;
  padding: 0.7rem 0 !important;
  position: relative !important;
  padding-left: 2rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border-bottom: 1px solid #f5f5f5 !important;
}

.service-details li:last-child {
  border-bottom: none !important;
}

.service-details li:before {
  content: "✓" !important;
  color: #00ff88 !important;
  font-weight: bold !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.7rem !important;
  font-size: 1.1rem !important;
}

/* Service Benefits */
.service-benefits {
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #f0f0f0 !important;
}

.service-benefits h4 {
  color: #1a1a1a !important;
  font-size: 1.25rem !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
}

.benefits-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.6rem !important;
  margin-top: 1rem !important;
}

.benefit {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 102, 0.05)) !important;
  color: #00cc66 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(0, 255, 136, 0.2) !important;
  transition: all 0.3s ease !important;
}

.benefit:hover {
  background: linear-gradient(135deg, #00ff88, #00cc66) !important;
  color: #000 !important;
  transform: translateY(-1px) !important;
}

/* Service CTA */
.service-cta {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: linear-gradient(135deg, #00ff88, #00cc66) !important;
  color: #000 !important;
  padding: 1rem 2rem !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  margin-top: 2rem !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3) !important;
}

.service-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4) !important;
  color: #000 !important;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Mobile Large (767px and below) */
@media (max-width: 767px) {
  .main-services {
    padding: 2rem 0 !important;
    background: #fff !important;
  }
  
  .services-grid {
    padding: 0 1rem !important;
  }
  
  .service-card.detailed {
    margin-bottom: 1.5rem !important;
    border-radius: 12px !important;
  }
  
  .service-header {
    height: 180px !important;
  }
  
  .service-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.2rem !important;
    top: 0.8rem !important;
    right: 0.8rem !important;
  }
  
  .service-body {
    padding: 1.5rem !important;
  }
  
  .service-body h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .service-summary {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .service-details h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .service-details li {
    font-size: 0.9rem !important;
    padding: 0.5rem 0 !important;
    padding-left: 1.8rem !important;
  }
  
  .service-benefits {
    margin-top: 1.5rem !important;
    padding-top: 1.2rem !important;
  }
  
  .benefits-list {
    gap: 0.4rem !important;
  }
  
  .benefit {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .service-cta {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.85rem !important;
    margin-top: 1.5rem !important;
  }
}

/* Mobile Medium (479px and below) */
@media (max-width: 479px) {
  .services-grid {
    padding: 0 0.5rem !important;
  }
  
  .service-header {
    height: 160px !important;
  }
  
  .service-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }
  
  .service-body {
    padding: 1.2rem !important;
  }
  
  .service-body h3 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
  }
  
  .service-summary {
    font-size: 0.9rem !important;
  }
  
  .service-details h4 {
    font-size: 1rem !important;
  }
  
  .service-details li {
    font-size: 0.85rem !important;
    padding-left: 1.5rem !important;
  }
  
  .benefit {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
  }
}

/* Mobile Small (320px and below) */
@media (max-width: 320px) {
  .service-header {
    height: 140px !important;
  }
  
  .service-body {
    padding: 1rem !important;
  }
  
  .service-body h3 {
    font-size: 1.1rem !important;
  }
  
  .service-summary {
    font-size: 0.85rem !important;
  }
  
  .service-details li {
    font-size: 0.8rem !important;
  }
}
/* Enhanc
ed Services Page Responsive Design */
.main-services {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card.detailed {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.service-card.detailed:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 255, 136, 0.4);
}

.service-card.detailed .service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.service-details {
  flex: 1;
  margin: 1.5rem 0;
}

.service-cta {
  display: inline-block;
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
  margin-top: auto;
  text-align: center;
}

.service-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.5);
}

.service-benefits {
  margin-top: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.benefit {
  background: rgba(0, 255, 136, 0.1);
  color: #00cc66;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Service Process Section */
.service-process {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.process-step h4 {
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step p {
  color: #333;
  line-height: 1.6;
}

/* Enhanced Mobile Responsiveness for Services */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .service-card.detailed {
    min-height: auto;
  }
  
  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .main-services {
    padding: 4rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .service-card.detailed {
    margin: 0 auto;
    max-width: 100%;
    min-height: auto;
  }
  
  .service-card.detailed .service-body {
    padding: 1.5rem;
  }
  
  .service-header {
    height: 180px;
  }
  
  .service-process {
    padding: 4rem 0;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 479px) {
  .services-grid {
    gap: 1rem;
  }
  
  .service-card.detailed .service-body {
    padding: 1rem;
  }
  
  .service-header {
    height: 160px;
  }
  
  .service-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .benefits-list {
    justify-content: center;
  }
  
  .benefit {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
  
  .process-step {
    padding: 1rem;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Fix for CTA buttons responsiveness */
@media (max-width: 767px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0;
  }
}

/* Ensure proper spacing for hero section below header */
.page-header {
  margin-top: 80px;
  padding: 6rem 0 4rem;
}

@media (max-width: 767px) {
  .page-header {
    margin-top: 70px;
    padding: 4rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 479px) {
  .page-header {
    margin-top: 65px;
    padding: 3rem 0 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
}