/* ========================================
   VHUTHELU RESOURCES - PREMIUM WEBSITE STYLING
   Dark Green Theme (#2E7D32)
   "Integrated Infrastructure. Intelligent Solutions."
======================================== */

/* CSS Variables & Reset */
:root {
  /* Primary Colors - Dark Green Theme */
  --green-deep: #2E7D32;
  --green-medium: #4CAF50;
  --green-light: #81C784;
  --green-soft: #E8F5E9;
  --green-mint: #C8E6C9;

  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8FAF8;
  --cream: #FAF7F2;
  --gray-light: #F0F0F0;
  --gray-medium: #E0E0E0;
  --gray-dark: #4A4A4A;
  --black: #1E2B1E;

  /* Accent Colors */
  --gold: #D4AF37;
  --gold-light: #F5E8D9;

  /* Text Colors */
  --text-primary: #1E2B1E;
  --text-secondary: #4A5A4A;
  --text-light: #6B7A6B;
  --text-white: #FFFFFF;

  /* Background Colors */
  --bg-primary: var(--off-white);
  --bg-secondary: var(--white);
  --bg-accent: var(--green-soft);
  --bg-dark: var(--green-deep);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2E7D32, #4CAF50);
  --gradient-secondary: linear-gradient(135deg, #4CAF50, #81C784);
  --gradient-dark: linear-gradient(135deg, #2E7D32, #4CAF50);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F5E8D9);

  /* Shadows */
  --shadow-sm: 0 5px 20px rgba(46,125,50,0.1);
  --shadow-md: 0 10px 30px rgba(46,125,50,0.15);
  --shadow-lg: 0 20px 40px rgba(46,125,50,0.2);
  --shadow-hover: 0 30px 50px rgba(46,125,50,0.25);

  /* Borders */
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
  --border-radius-xl: 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-primary: #121C12;
  --bg-secondary: #1E2B1E;
  --bg-accent: #2A402A;
  --text-primary: #F0F7F0;
  --text-secondary: #C8E6C9;
  --text-light: #A5D6A7;
  --text-white: #FFFFFF;
  --green-deep: #4CAF50;
  --green-medium: #66BB6A;
  --green-light: #81C784;
  --gradient-primary: linear-gradient(135deg, #4CAF50, #66BB6A);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.4);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width : 100%;
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  width : 100%;
}

.container {
  width : 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;

}

h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.center-text {
  text-align: center;
  display: block;
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green-deep);
}

[data-theme="dark"] header {
  background: rgba(18, 28, 18, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo img {
  height: 100px;
  width: auto;
  background: white;
  padding: 5px 15px;
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
  border-radius: 3px;
}

nav a:hover::before,
nav a.active::before {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--green-deep);
}

/* ===== BUTTONS ===== */
.btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  transition: left var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn i {
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.btn:hover i {
  transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(46,125,50,0.05), rgba(255,255,255,0.95)),
  url('https://images.unsplash.com/photo-1581092160560-4d7e6d0b2f3a?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, rgba(18,28,18,0.95), rgba(46,125,50,0.8)),
  url('https://images.unsplash.com/photo-1581092160560-4d7e6d0b2f3a?auto=format&fit=crop&w=2000&q=80');
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

[data-theme="dark"] .hero h1 {
  color: var(--text-white);
}

.hero h1 span {
  color: var(--green-deep);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--green-soft);
  z-index: -1;
  opacity: 0.5;
  border-radius: 10px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .hero p {
  color: var(--text-light);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.stat-item {
  background: rgba(255,255,240,0.15);
  backdrop-filter: blur(8px);
  padding: 1rem 2rem;
  border-radius: 80px;
  font-weight: 600;
}

.stat-item i {
  color: var(--green-deep);
  font-size: 1.2rem;
  transition: color var(--transition-normal);
}



/* ===== ABOUT SECTION ===== */
#about {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: var(--gradient-primary);
  opacity: 0.03;
  border-radius: 50%;
  transform: rotate(20deg);
  pointer-events: none;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.header-decoration .line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-deep), transparent);
}

.header-decoration i {
  font-size: 2.5rem;
  color: var(--green-deep);
  animation: rotate 10s infinite linear;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-header h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
}

.sub-line {
  font-size: 1.2rem;
  color: var(--green-deep);
  font-weight: 500;
  letter-spacing: 1px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0 1rem;
  border-left: 4px solid var(--green-deep);
  padding-left: 2rem;
  font-family: 'Jost', sans-serif;
}

.regular {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.highlight-text {
  color: var(--green-deep);
  font-weight: 700;
  background: linear-gradient(120deg, transparent 0%, var(--green-soft) 100%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.with-icon i {
  color: var(--green-deep);
  font-size: 1.3rem;
  animation: slideRight 2s infinite;
}

@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.pull-quote {
  display: flex;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--green-mint);
}

.quote-mark {
  font-size: 6rem;
  font-family: serif;
  color: var(--green-deep);
  line-height: 1;
  opacity: 0.3;
  margin-top: -1rem;
}

.quote-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
}

/* How We Work Section */
.how-we-work {
  margin: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
}

.title-underline::before,
.title-underline::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 3px;
  background: var(--green-deep);
  top: 0;
  border-radius: 3px;
}

.title-underline::before {
  left: -15px;
}

.title-underline::after {
  right: -15px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.work-card {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--green-mint);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-deep);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.work-card:hover .card-icon {
  transform: scale(1.1) rotate(360deg);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.work-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.work-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.work-card:hover .card-shine {
  left: 100%;
}

/* Commitment Section */
.commitment {
  margin: 5rem 0;
  background: var(--gradient-dark);
  border-radius: var(--border-radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  color: white;
}


.commitment::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.commitment-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.commitment-icon {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  animation: pulse 2s infinite;
}

.commitment-icon i {
  font-size: 3.5rem;
  color: white;
}

.commitment-text {
  flex: 1;
}

.commitment-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.commitment-lead {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  font-weight: 600;
}

.commitment-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* About Footer */
.about-footer {
  margin-top: 4rem;
  text-align: center;
}

.footer-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-decoration .dot {
  width: 8px;
  height: 8px;
  background: var(--green-deep);
  border-radius: 50%;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

.footer-decoration .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.footer-decoration .dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-info i {
  color: var(--green-deep);
  margin-right: 0.5rem;
}

.separator {
  color: var(--green-deep);
  font-size: 1rem;
}

/* ===== SERVICES SECTION ===== */
#services {
  background: var(--bg-accent);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--green-mint);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-deep);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem 1.5rem;
  position: relative;
}

.service-content i.service-icon {
  position: absolute;
  top: -25px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: rotate(360deg);
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--green-deep);
}

.service-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CLIENTS SECTION ===== */
#clients {
  background: var(--bg-primary);
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: scroll 60s linear infinite;
}
.marquee span {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: color var(--transition-fast);
}

.marquee span:hover {
  color: var(--green-deep);
}

.marquee i {
  color: var(--green-deep);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--bg-accent);
  padding: 80px 20px;
}

#contact h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

#contact .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-mint);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  align-items: start;
}

.contact-form,
.contact-info {
  width: 100%;
  min-width: 0;
}

.contact-form {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--green-mint);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--green-deep);
  line-height: 1.3;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--green-mint);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.privacy-note i {
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  width: 100%;
}

.contact-info .info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--green-mint);
  transition: all var(--transition-normal);
  width: 100%;
}

.info-box:hover {
  transform: translateX(6px);
  border-color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}

.info-box i {
  font-size: 1.8rem;
  color: var(--green-deep);
  width: 45px;
  text-align: center;
  flex-shrink: 0;
}

.info-box span,
.info-box a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  word-break: break-word;
}

.info-box a:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  #contact h2 {
    font-size: 2.5rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  #contact {
    padding: 60px 15px;
  }

  #contact h2 {
    font-size: 2rem;
  }

  #contact .intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .contact-form h3 {
    font-size: 1.4rem;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    font-size: 0.95rem;
  }

  .contact-info .info-box {
    padding: 1rem;
    gap: 0.8rem;
  }

  .info-box:hover {
    transform: none;
  }

  .info-box i {
    font-size: 1.5rem;
    width: 36px;
  }

  .info-box span,
  .info-box a {
    font-size: 0.95rem;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  #contact {
    padding: 50px 12px;
  }

  #contact h2 {
    font-size: 1.7rem;
  }

  .contact-wrapper {
    padding: 0.9rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem;
  }

  .contact-form button {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
}
/* ===== FOOTER ===== */
footer {
  background: var(--gradient-dark);
  color: var(--text-white);
  padding: 4rem 2rem 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 40s linear infinite;
}

.footer-top-decoration {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-top-decoration span {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
  border-radius: 3px;
  animation: footerGlow 3s infinite;
}

.footer-top-decoration span:nth-child(2) { animation-delay: 0.2s; width: 70px; }
.footer-top-decoration span:nth-child(3) { animation-delay: 0.4s; width: 90px; }
.footer-top-decoration span:nth-child(4) { animation-delay: 0.6s; width: 70px; }
.footer-top-decoration span:nth-child(5) { animation-delay: 0.8s; width: 50px; }

@keyframes footerGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.footer-brand .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-wrapper h3 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.footer-brand .logo-wrapper h3 span {
  display: block;
  font-size: 0.9rem;
  color: var(--green-light);
  letter-spacing: 2px;
  font-weight: 400;
}

.reg {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reg::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--green-light);
}

.badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--text-primary);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  border-left: 2px solid var(--green-light);
  padding-left: 1rem;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: white;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--green-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal p,
.footer-legal a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-links a:hover,
.footer-legal p:hover,
.footer-legal a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a i,
.footer-legal p i,
.footer-legal a i {
  font-size: 0.8rem;
  color: var(--green-light);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: white;
  transform: translateX(5px);
}

.social-link i {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-normal);
}

.social-link:hover i {
  background: var(--gradient-primary);
  transform: rotate(360deg);
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-note p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.brand-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.brand-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.brand-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px) rotate(360deg);
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .services-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  h2 {
    font-size: 2.5rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .about-header h2 {
    font-size: 2.5rem;
  }

  .commitment-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width:768px){

  .container{
    padding-left:15px;
    padding-right:15px;
  }

  section{
    width:100%;
  }

}
@media (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .services-grid,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pull-quote {
    flex-direction: column;
    padding: 1.5rem;
  }}

/* Hide menu button on desktop */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #0b6b3a;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: white;
    display: none;
  }

  nav ul {
    flex-direction: column;
    padding: 20px 0;
  }

  nav ul li {
    text-align: center;
    padding: 15px 0;
  }

  nav.active {
    display: block;
  }

}@media (max-width: 768px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

}@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
}

