/* Global Styles */
:root {
  --primary-color: #004d00;
  --primary-color-rgb: 0, 77, 0;
  --secondary-color: #008000;
  --secondary-color-rgb: 0, 128, 0;
  --dark-color: #003300;
  --dark-color-rgb: 0, 51, 0;
  --light-color: #e6ffe6;
  --light-color-rgb: 230, 255, 230;
  --text-color: #333;
  --text-color-rgb: 51, 51, 51;
  --light-text: #fff;
  --light-text-rgb: 255, 255, 255;
  --background-color: #f9f9f9;
  --background-color-rgb: 249, 249, 249;
  --accent-color: #ffd700;
  --accent-color-rgb: 255, 215, 0;
  --accent-dark: #ccac00;
  --accent-dark-rgb: 204, 172, 0;
  --primary-color-dark: #003d00;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-dark)
  );
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Top Bar Styles */
.top-bar {
  background-color: var(--dark-color);
  color: var(--light-text);
  padding: 8px 0;
  font-size: 0.85rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001; /* Higher than header */
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-icon:hover {
  color: var(--accent-color);
}

.whatsapp-icon {
  background-color: #25d366;
  padding: 5px 10px;
  border-radius: var(--border-radius);
  color: white;
}

.whatsapp-icon:hover {
  background-color: #20bd5a;
  color: white;
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-contact {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  color: var(--dark-color);
  font-weight: 700;
  padding-bottom: 20px;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin-bottom: -5px;
  box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.2);
  animation: pulseGlow 2s infinite;
}

.btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--light-text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.25);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(76, 175, 80, 0.4);
}

.btn:hover::before {
  left: 100%;
}

.btn-small {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-text);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-small:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
}

.btn-small:hover::before {
  left: 100%;
}

/* Header Styles - Updated for better logo visibility */
header {
  position: fixed;
  width: 100%;
  top: 0; /* Set to 0 to have header at the top */
  left: 0;
  z-index: 1000;
  background: #0a1a2f; /* Dark navy blue as requested */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Ensure no overflow hidden that could clip the menu */
  overflow: visible;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo {
  display: flex;
  position: relative;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: transparent;
  border-radius: 0;
  mix-blend-mode: normal; /* Changed from multiply for better visibility on dark background */
  filter: brightness(1.2) contrast(1.3); /* Enhanced brightness and contrast */
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  padding: 8px 12px;
  transition: var(--transition);
  border-radius: 30px;
  font-size: 0.95rem;
  color: #ffffff; /* White text for better visibility on dark navy background */
}

.nav-links a:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient-primary);
  transition: var(--transition);
  opacity: 0;
}

.nav-links a:hover::after {
  opacity: 1;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: var(--text-color);
}

.hamburger.active .bar {
  background-color: var(--dark-color); /* Make the X more visible */
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger.active {
  position: fixed;
  right: 15px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(27, 94, 32, 0.7)),
    url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--light-text);
  position: relative;
  overflow: hidden;
  padding-top: 100px; /* Reduced padding to account for smaller header */
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(76, 175, 80, 0.2) 0%,
    transparent 70%
  );
  z-index: 1;
}

/* Hero Shape Elements */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  bottom: -150px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.3),
    rgba(56, 142, 60, 0.1)
  );
  filter: blur(80px);
  opacity: 0.6;
  animation: float-slow 15s ease-in-out infinite alternate;
}

.shape-2 {
  top: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.3),
    rgba(245, 124, 0, 0.1)
  );
  filter: blur(60px);
  opacity: 0.5;
  animation: float-slow 12s ease-in-out 1s infinite alternate-reverse;
}

.shape-3 {
  top: 40%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  filter: blur(40px);
  opacity: 0.4;
  animation: float-slow 10s ease-in-out 0.5s infinite alternate;
}

/* Hero Container Layout */
.hero-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

/* Hero Text Section */
.hero-text {
  padding-right: 30px;
}

.hero-badge-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  animation: fadeInLeft 0.8s ease forwards;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gradient-accent);
  border-radius: 50px;
  color: var(--light-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.badge-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  flex-grow: 1;
  margin-left: 15px;
  opacity: 0.6;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 800;
  animation: fadeInLeft 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .text-accent {
  color: var(--accent-color);
  position: relative;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 152, 0, 0.3);
  z-index: -1;
  border-radius: 10px;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInLeft 0.8s ease 0.4s forwards;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInLeft 0.8s ease 0.6s forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--light-text);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--light-text);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--light-text);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.25);
}

.btn-outline:hover::before {
  width: 100%;
}

/* Hero Visual Section */
.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  opacity: 0;
  animation: fadeInRight 1s ease 0.5s forwards;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
  border-radius: 20px;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

/* Hero Slideshow Position - Base Definition (Overridden by hero-slideshow-simple.css) */
.hero-slideshow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.year-text {
  font-size: 1rem !important;
  font-weight: normal !important;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
}

.counter-suffix {
  font-size: 1rem !important;
  font-weight: normal !important;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}

/* Floating Paws */
.floating-paws {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.fa-paw {
  position: absolute;
  color: var(--accent-color);
  opacity: 0.8;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.paw-1 {
  top: 15%;
  left: -5%;
  font-size: 2rem;
  animation: float-paw 6s ease-in-out infinite;
}

.paw-2 {
  top: 45%;
  right: -5%;
  font-size: 1.5rem;
  animation: float-paw 7s ease-in-out 1s infinite;
}

.paw-3 {
  bottom: 10%;
  left: 10%;
  font-size: 1.8rem;
  animation: float-paw 8s ease-in-out 2s infinite;
}

/* Hero Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateX(30px);
  }
  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateX(0);
  }
}

@keyframes float-slow {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(15px, 15px);
  }
}

@keyframes float-paw {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

/* Services Section - Unique Design */
.services {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.services-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.service-circle {
  border-radius: 50%;
  position: absolute;
  filter: blur(60px);
  opacity: 0.15;
}

.circle-1 {
  top: -15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  animation: float-slow 15s ease-in-out infinite alternate;
}

.circle-2 {
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-light)
  );
  animation: float-slow 12s ease-in-out infinite alternate-reverse;
}

.service-paws {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.services .paw {
  position: absolute;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  z-index: 0;
}

.services .paw-1 {
  top: 15%;
  right: 10%;
  animation: float-slow 8s ease-in-out infinite;
}

.services .paw-2 {
  top: 75%;
  right: 20%;
  animation: float-slow 12s ease-in-out infinite alternate;
}

.services .paw-3 {
  top: 40%;
  left: 10%;
  animation: float-slow 10s ease-in-out infinite alternate-reverse;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.services-title-wrapper {
  margin-bottom: 30px;
}

.services-badge {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: var(--light-text);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}

.services .section-title {
  margin-bottom: 15px;
  position: relative;
}

.services-divider {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-color-light);
  line-height: 1.7;
}

/* Services Showcase - Alternating Layout */
.services-showcase {
  position: relative;
  z-index: 2;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 100px;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item.reverse {
  grid-template-columns: 1.5fr 1fr;
  direction: rtl;
  transform: translateY(30px);
}

.service-item.reverse.animated {
  transform: translateY(0);
}

.service-item.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for service items */
.service-item:nth-child(1) {
  transition-delay: 0.1s;
}

.service-item:nth-child(2) {
  transition-delay: 0.3s;
}

.service-item:nth-child(3) {
  transition-delay: 0.5s;
}

.service-item:nth-child(4) {
  transition-delay: 0.7s;
}

.service-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.service-image-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.service-image-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--border-radius-lg);
  top: 20px;
  left: 20px;
  z-index: 1;
  transition: all 0.4s ease;
}

.service-item:hover .service-image-container::before {
  border-color: rgba(76, 175, 80, 0.6);
  transform: translate(-5px, -5px);
}

.service-item:nth-child(even) .service-image-container::before {
  border-color: rgba(255, 152, 0, 0.3);
}

.service-item:nth-child(even):hover .service-image-container::before {
  border-color: rgba(255, 152, 0, 0.6);
  transform: translate(5px, -5px);
}

.service-image {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover .service-image::before {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-icon-wrapper {
  position: absolute;
  bottom: -30px;
  right: 40px;
  z-index: 3;
}

.service-item.reverse .service-icon-wrapper {
  left: 40px;
  right: auto;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: var(--gradient-primary);
  color: var(--light-text);
  font-size: 2rem;
  transition: all 0.4s ease;
}

.service-item:nth-child(even) .service-icon {
  background: var(--gradient-accent);
}

.service-item:hover .service-icon {
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
}

.service-item:nth-child(even):hover .service-icon {
  box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

/* Service Content */
.service-content {
  padding-right: 30px;
  position: relative;
}

.service-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  line-height: 1.2;
}

.service-highlight {
  color: var(--primary-color);
  position: relative;
}

.service-item:nth-child(even) .service-highlight {
  color: var(--accent-color);
}

.service-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(76, 175, 80, 0.2);
  z-index: -1;
}

.service-item:nth-child(even) .service-highlight::after {
  background-color: rgba(255, 152, 0, 0.2);
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.service-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.service-features li i {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.service-item:nth-child(even) .service-features li i {
  color: var(--accent-color);
}

.service-action {
  margin-top: 30px;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  color: var(--light-text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.service-item:nth-child(even) .btn-service {
  background: var(--gradient-accent);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.btn-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(76, 175, 80, 0.4);
}

.service-item:nth-child(even) .btn-service:hover {
  box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);
}

.btn-service:hover::before {
  left: 100%;
}

.btn-service i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-service:hover i {
  transform: translateX(5px);
}

/* About Section - Unique Design */
.about {
  padding: 120px 0 100px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Background Elements */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Ensure content is above background */
.about .container {
  position: relative;
  z-index: 2;
}

.about-header,
.about-timeline,
.about-cards-container,
.about-team {
  position: relative;
  z-index: 5;
}

/* Timeline Section */
.about-timeline {
  margin-bottom: 80px;
}

.timeline-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.timeline-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.milestone {
  text-align: center;
  padding: 20px 10px;
  position: relative;
  z-index: 2;
}

.milestone-icon {
  width: 60px;
  height: 60px;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.milestone:hover .milestone-icon {
  transform: translateY(-5px);
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.milestone:nth-child(2) .milestone-icon {
  color: var(--accent-color);
  background: rgba(255, 152, 0, 0.1);
}

.milestone:nth-child(2):hover .milestone-icon {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.milestone:nth-child(3) .milestone-icon {
  color: var(--secondary-color);
  background: rgba(56, 142, 60, 0.1);
}

.milestone:nth-child(3):hover .milestone-icon {
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(56, 142, 60, 0.3);
}

.milestone:nth-child(4) .milestone-icon {
  color: #3f51b5;
  background: rgba(63, 81, 181, 0.1);
}

.milestone:nth-child(4):hover .milestone-icon {
  background: #3f51b5;
  color: white;
  box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

.milestone:nth-child(5) .milestone-icon {
  color: #9c27b0;
  background: rgba(156, 39, 176, 0.1);
}

.milestone:nth-child(5):hover .milestone-icon {
  background: #9c27b0;
  color: white;
  box-shadow: 0 10px 20px rgba(156, 39, 176, 0.3);
}

.milestone-content h4 {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.milestone-content span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.milestone-content span + span {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 2px;
}

/* Experience counter specific styling */
#experience-counter {
  display: inline-block;
  min-width: 30px;
  transition: transform 0.15s ease-out, color 0.2s ease;
}

#experience-counter.emphasize {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* About Team Section - Default Styles */
.about-team {
  margin-top: 80px;
  position: relative;
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

/* Fix for About section visibility */
.about-team,
.about-content-main,
.about-image-container,
.about-text,
.features-grid,
.feature-item,
.about-cta,
.about-card,
.milestone {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure image is visible */
#about-img {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure features are visible */
.feature-item {
  transform: translateY(0) !important;
}

/* About Cards */
.about-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.about-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(76, 175, 80, 0.05), transparent);
  transition: height 0.5s ease;
  z-index: -1;
}

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

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.card-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.card-vision .card-icon {
  background: var(--gradient-accent);
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.card-vision .card-icon::after {
  border-color: var(--accent-color);
}

.card-values .card-icon {
  background: linear-gradient(135deg, #3f51b5, #1a237e);
  box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

.card-values .card-icon::after {
  border-color: #3f51b5;
}

.about-card:hover .card-icon {
  transform: rotateY(360deg);
  transition: transform 1s ease;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.about-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Main About Content */
.about-content-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image-container {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.5s ease;
  transform: scale(1.05);
  filter: brightness(0.95);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.image-frame {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  z-index: 2;
  pointer-events: none;
}

.about-image-container:hover img {
  transform: scale(1);
  filter: brightness(1.05);
}

.about-image-accent {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 10px solid rgba(76, 175, 80, 0.1);
  border-radius: var(--border-radius-lg);
  top: 40px;
  left: -40px;
  z-index: 0;
}

.years-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background: var(--gradient-primary);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
  z-index: 3;
  animation: pulseGlow 3s infinite;
}

.years-content {
  text-align: center;
  padding: 5px;
}

.years-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.years-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.about-text {
  padding-right: 20px;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--text-color);
  line-height: 1.3;
}

.about-text .highlight {
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.about-text .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(76, 175, 80, 0.2);
  z-index: -1;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-item:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-text h4 {
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* About Badge Styling */
.about-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--light-text);
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shineEffect 2.5s infinite;
}

.about-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

@keyframes shineEffect {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* About Subtitle Styling */
.about-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 40px;
  max-width: 600px;
}

.subtitle-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 175, 80, 0.4),
    transparent
  );
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0 15px;
  text-align: center;
  position: relative;
  padding-bottom: 5px;
}

.about-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Enhanced WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 5px 15px;
  border-radius: 25px;
  margin-right: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseWhatsApp 2s infinite;
}

.whatsapp-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
  );
  animation: whatsappShine 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
  font-size: 1.5rem;
  margin-right: 8px;
}

.whatsapp-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(76, 175, 80, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: all 0.5s ease;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px 15px 15px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 500;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  border: 5px solid white;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 0 5px 5px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

.lightbox-prev {
  left: 15px;
}

.lightbox-next {
  right: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote {
  font-size: 2rem;
  color: var(--light-color);
  margin-bottom: 20px;
}

.testimonial-card p {
  margin-bottom: 20px;
  font-style: italic;
}

.client {
  display: flex;
  align-items: center;
}

.client-info h4 {
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.client-info span {
  color: #999;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.contact-form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  background-color: #fff;
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer - Modern & Unique Design */
footer {
  color: #fff;
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

/* Footer Wave SVG */
.footer-wave {
  line-height: 0;
  transform: translateY(3px);
}

.footer-wave svg {
  width: 100%;
  height: 160px;
  display: block;
}

/* Footer Main Area */
.footer-main {
  background-color: #333;
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

/* Footer Top with Badge */
.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(30deg);
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Footer Content Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Footer Info Section (Logo & Contact) */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  margin-bottom: 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
  background-color: transparent;
  border-radius: 0;
  mix-blend-mode: multiply; /* This helps remove white backgrounds */
  filter: drop-shadow(0 0 0 transparent); /* Removes any shadow */
}

.footer-logo-img:hover {
  filter: brightness(1.4);
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .footer-logo-img {
    height: 70px;
  }
}

@media screen and (max-width: 576px) {
  .footer-logo-img {
    height: 60px;
  }
}

.footer-tagline {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  background: rgba(255, 255, 255, 0.1);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-icon {
  transform: translateY(-3px) rotate(10deg);
  background: var(--primary-color);
  color: white;
}

.footer-contact-item p {
  color: #ccc;
  margin: 0;
  font-size: 0.95rem;
  padding-top: 10px;
}

/* Footer Nav Section (Links & Services) */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
}

.footer-divider {
  height: 3px;
  width: 50px;
  background: var(--gradient-primary);
  margin-bottom: 20px;
  position: relative;
  border-radius: 3px;
}

.footer-divider::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 3px;
  width: 10px;
  background: var(--accent-color);
  border-radius: 3px;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.7rem;
  margin-right: 8px;
  transition: transform 0.3s;
}

.footer-services a i {
  margin-right: 10px;
  font-size: 0.9rem;
  width: 20px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a:hover i,
.footer-services a:hover i {
  transform: translateX(3px);
}

/* Footer Newsletter Section */
.footer-newsletter {
  padding: 25px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
}

.footer-newsletter p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.form-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.form-input-group:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.input-icon {
  color: #ccc;
  font-size: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 15px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #999;
}

.btn-subscribe {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transition: all 0.6s;
}

.btn-subscribe:hover::before {
  left: 100%;
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Footer Social Links */
.footer-social h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(10deg);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Decorative Elements */
.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.footer-paw {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  font-size: 3rem;
  animation: floatAnimation 6s infinite ease-in-out;
}

.paw-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  transform: rotate(-20deg);
}

.paw-2 {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
  font-size: 4rem;
  transform: rotate(20deg);
}

.paw-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
  font-size: 2.5rem;
  transform: rotate(10deg);
}

.footer-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

/* Footer Bottom */
.footer-bottom {
  background-color: #222;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-policy-links a {
  color: #aaa;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-policy-links a:hover {
  color: var(--primary-color);
}

.designer-signature {
  display: inline-flex;
  align-items: center;
  font-style: italic;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 3px 8px;
  border-radius: 15px;
  background-color: rgba(40, 167, 69, 0.08);
}

.designer-signature i {
  margin-right: 6px;
  font-size: 14px;
  color: #28a745;
  transition: all 0.3s ease;
}

.designer-signature:hover {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.15);
}

.designer-signature:hover i {
  transform: rotate(20deg);
}

.separator {
  color: #555;
}

/* Scroll To Top Initial State */
.scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.scroll-to-top {
  background: var(--gradient-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  transition: all 0.3s;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Additional Modern Animations */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 152, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes bounceIn {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Transparent logo styling */
.transparent-logo {
  mix-blend-mode: multiply;
  filter: contrast(1.1);
  background: none !important;
  box-shadow: none !important;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(0deg);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  header {
    padding: 10px 0;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding-right: 0;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Responsive styles for About badges and WhatsApp button */
  .about-badge {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-subtitle-wrapper {
    margin: 15px auto 30px;
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn i {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .btn-small {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .service-item {
    margin-bottom: 70px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  /* Footer Action Buttons Responsive */
  .footer-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    gap: 10px;
  }

  .whatsapp-btn,
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .about-badge {
    padding: 6px 15px;
    font-size: 0.75rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
    margin: 0 10px;
  }

  .whatsapp-btn {
    width: 40px;
    height: 40px;
  }

  .whatsapp-btn i {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .service-item {
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 80px;
  }

  .service-item.reverse {
    grid-template-columns: 1.2fr 1fr;
  }

  .service-content h3 {
    font-size: 1.8rem;
  }

  .service-image {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .service-item,
  .service-item.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
    margin-bottom: 60px;
  }

  .service-visual {
    min-height: 300px;
  }

  .service-image {
    height: 300px;
  }

  .service-icon-wrapper {
    bottom: -25px;
    right: 20px;
  }

  .service-item.reverse .service-icon-wrapper {
    left: 20px;
    right: auto;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-content {
    padding-right: 0;
    padding-top: 15px;
  }

  .service-item.reverse .service-content {
    padding-left: 0;
  }

  .services-header {
    margin-bottom: 50px;
  }

  .services-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

@media screen and (max-width: 480px) {
  .services {
    padding: 80px 0;
  }

  .service-item {
    margin-bottom: 50px;
  }

  .service-visual {
    min-height: 250px;
  }

  .service-image {
    height: 250px;
  }

  .service-image-container::before {
    top: 10px;
    left: 10px;
  }

  .service-content h3 {
    font-size: 1.6rem;
  }

  .service-features li {
    font-size: 0.95rem;
  }

  .services .section-title {
    font-size: 1.8rem;
  }

  .services-intro {
    font-size: 1rem;
  }
}

/* Responsive Styles for Header and Hero */
@media screen and (max-width: 1200px) {
  .hero-container {
    padding: 80px 0 50px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-image {
    height: 450px;
  }
}

@media screen and (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 120px 0 50px;
  }

  .hero-text {
    padding-right: 0;
    text-align: center;
  }

  .hero-badge-wrapper {
    justify-content: center;
  }

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

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

  .hero-visual {
    margin-top: 20px;
  }

  .hero-image-container {
    transform: perspective(1000px) rotateY(0) rotateX(0);
    max-width: 80%;
    margin: 0 auto;
  }

  /* Footer Responsive Styles */
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-newsletter {
    grid-column: span 2;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 12px 0;
  }

  .hamburger {
    display: block;
    z-index: 1001; /* Ensure it's above everything else */
    position: relative;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100vh;
    z-index: 1000;
    text-align: center;
    transition: 0.3s ease-in-out;
    padding-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-links.active {
    left: 0;
    z-index: 1000;
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 15px;
    width: 80%;
    margin: 0 auto;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background-color: rgba(76, 175, 80, 0.1);
    transform: translateY(-3px);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 80%;
  }

  .hero-image {
    height: 400px;
  }

  .hero-image-container {
    max-width: 100%;
  }

  .hero-stats {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Footer Responsive Styles */
  .footer-wave svg {
    height: 100px;
  }

  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-shapes .paw-2 {
    display: none;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .hero-container {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 15px;
  }

  .hero-image {
    height: 300px;
  }

  .floating-paws {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .stat-number {
    margin-bottom: 0;
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Footer Action Buttons Responsive */
  .footer-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    gap: 10px;
  }

  .whatsapp-btn,
  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .about-badge {
    padding: 6px 15px;
    font-size: 0.75rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
    margin: 0 10px;
  }

  .whatsapp-btn {
    width: 40px;
    height: 40px;
  }

  .whatsapp-btn i {
    font-size: 1.2rem;
  }
}

/* About Section Responsive Styles */
@media screen and (max-width: 1024px) {
  .about-content-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-container {
    max-width: 80%;
    margin: 0 auto;
  }

  .about-image-wrapper img {
    height: 450px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-text {
    padding-right: 0;
  }

  .about-cards-container {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 80px 0 60px;
  }

  .timeline-header {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    padding: 20px;
  }

  .milestone {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 5px;
  }

  .milestone:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .about-image-wrapper img {
    height: 350px;
  }

  .years-badge {
    width: 100px;
    height: 100px;
    right: 20px;
    bottom: -15px;
  }

  .about-timeline .timeline-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-content: center;
    gap: 10px;
  }

  .about-timeline .milestone {
    width: 100%;
    margin-bottom: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .about-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

@media screen and (max-width: 992px) {
  .about-content-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-container {
    margin: 0 auto;
    max-width: 500px;
  }

  .about-text {
    padding-right: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .about-team {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media screen and (max-width: 768px) {
  .about-policy-links {
    margin: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  .designer-signature {
    margin-top: 8px;
  }
}

@media screen and (max-width: 576px) {
  .footer-policy-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-policy-links .separator {
    display: none;
  }

  .designer-signature {
    margin-top: 10px;
    padding: 5px 10px;
    border-top: 1px dotted rgba(255, 255, 255, 0.1);
  }
}

/* Transparent logo styling */
.transparent-logo {
  mix-blend-mode: multiply;
  filter: contrast(1.1);
  background: none !important;
  box-shadow: none !important;
}
