@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* High-end corporate color palette */
  --primary-green: #0a5c36; /* Deep, rich emerald green */
  --primary-green-dark: #064024;
  --accent-green: #e6f2eb;
  --dark-charcoal: #0b1120; /* Sleek, dark slate */
  --text-body: #475569;
  --text-muted: #64748b;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 20px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.08), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(10, 92, 54, 0.15); /* Soft glowing shadow for branded hover */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
  font-size: 1.05rem; /* Slightly larger base text */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

section {
  padding: 120px 0; /* More breathing room */
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px; /* Wider, modern container */
  margin: 0 auto;
  padding: 0 32px;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

/* Subtitle with elegant decorative line */
.section-subtitle {
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}

.section-subtitle::before,
.text-center .section-subtitle::after {
  content: '';
  height: 2px;
  width: 40px;
  background-color: var(--primary-green);
  border-radius: 2px;
}

.text-center .section-subtitle::before,
.text-center .section-subtitle::after {
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px; /* Pill shape for modern look */
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  border: none;
  gap: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 10px 20px -10px var(--primary-green);
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px -10px var(--primary-green);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-3px) scale(1.02);
}

.btn-accent {
  background-color: var(--white);
  color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  background-color: var(--light-gray);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 52px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links li a.btn {
  padding: 0.5rem 1.5rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
}

.navbar.scrolled .nav-links a {
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--white);
  opacity: 1;
}

.nav-links a.btn:hover {
  color: var(--primary-green) !important;
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary-green);
}

.navbar.scrolled .nav-links a.btn {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.navbar.scrolled .nav-links a.btn:hover {
  background-color: var(--primary-green) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .hamburger {
  color: var(--dark-charcoal);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 17, 32, 0.95) 0%,
    rgba(11, 17, 32, 0.75) 40%,
    rgba(10, 92, 54, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: var(--white);
}

.hero-tagline {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-title {
  font-size: 4.5rem; /* Larger, dramatic */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-title span {
  color: #4ade80; /* Brighter, high-contrast accent */
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 650px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

/* About Section */
.about {
  background-color: var(--light-gray);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-green);
  z-index: 1; /* Place border inside visually */
  transform: translate(20px, 20px);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.5;
  transition: var(--transition);
}

.about-img:hover::before {
  transform: translate(12px, 12px);
  opacity: 1;
}

.about-img img {
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img:hover img {
  transform: scale(1.02);
}

.about-text .section-title {
  font-size: 2.75rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-body);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Services */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Hover background fill */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, var(--primary-green-dark), var(--primary-green));
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::after {
  height: 100%;
}

.service-icon {
  height: 80px;
  width: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-green);
  border-radius: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.service-icon img {
  max-height: 40px;
  max-width: 40px;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-desc {
  font-size: 1rem;
  transition: var(--transition);
  line-height: 1.6;
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--white);
}

/* ISO Certificates */
.iso-list {
  background: var(--accent-green);
  padding: 4rem;
  border-radius: 24px;
  margin-top: 5rem;
  border: 1px solid rgba(10, 92, 54, 0.1);
}

.iso-list h3 {
  font-size: 2rem;
}

.iso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.iso-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.iso-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-green);
}

.iso-item i {
  color: var(--primary-green);
  font-size: 1.25rem;
}

.iso-item span {
  font-weight: 600;
  color: var(--dark-charcoal);
  font-size: 1.05rem;
}

/* Why Choose Us */
.why-us {
  background-color: var(--dark-charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Add subtle background pattern */
.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(10, 92, 54, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.why-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.why-icon {
  font-size: 3rem;
  color: #4ade80;
  margin-bottom: 1.5rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

/* Clients */
.clients {
  background: var(--light-gray);
  padding: 80px 0;
  overflow: hidden;
}

.clients-wrapper {
  position: relative;
  /* Excellent mask effect for fade out at edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-slider {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  align-items: center;
}

.clients-slider:hover {
  animation-play-state: paused;
}

.client-logo {
  width: 240px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-logo img {
  max-height: 90px;
  max-width: 160px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 14)); } /* Adjust based on count */
}

/* Media Coverage */
.media-coverage {
  background-color: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.media-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}

.media-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.media-img-wrapper {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.media-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.media-item:hover .media-img-wrapper::after {
  background: transparent;
}

.media-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-item:hover .media-img-wrapper img {
  transform: scale(1.06);
}

.media-content {
  padding: 2rem;
}

.media-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.media-zoom {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 10;
  font-size: 1.1rem;
}

.media-item:hover .media-zoom {
  opacity: 1;
  transform: scale(1.1);
}

/* Custom Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: #4ade80;
  transform: rotate(90deg);
}

/* CEO Section */
.ceo-section {
  padding: 120px 0;
  background-color: var(--light-gray);
}

.ceo-wrapper {
  background: var(--dark-charcoal);
  border-radius: 20px;
  display: flex;
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.ceo-image {
  flex: 0 0 45%;
  position: relative;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ceo-content {
  padding: 5rem 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Decorative quote mark */
.ceo-content::before {
  content: '\201C';
  position: absolute;
  top: 3rem;
  left: 3rem;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.ceo-quote {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
}

.ceo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.ceo-title {
  color: #4ade80;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Brochure CTA */
.brochure-cta {
  background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.brochure-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
}

.brochure-cta .container {
  position: relative;
  z-index: 2;
}

.brochure-cta .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.brochure-cta .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Section */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.contact-info {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.info-icon {
  height: 52px;
  width: 52px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--primary-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark-charcoal);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
}

.form-control {
  padding: 1rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: var(--transition);
  font-size: 1.05rem;
  background-color: var(--white);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(10, 92, 54, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Footer */
.footer {
  background: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 100px 0 30px;
  border-top: 5px solid var(--primary-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
  display: inline-block;
  background-color: transparent;
}

.footer-logo img {
  height: 100%;
  object-fit: contain;
}

.footer-about {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #4ade80;
  transform: translateX(5px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: left;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

/* Enhanced Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px); /* Larger initial distance */
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.5rem; }
  .about-grid, .contact-grid { gap: 3rem; }
}

@media (max-width: 992px) {
  section { padding: 100px 0; }
  .section-title { font-size: 2.5rem; }
  .hero-title { font-size: 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .ceo-wrapper { flex-direction: column; }
  .ceo-image { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .navbar .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .navbar .nav-links a {
    color: var(--dark-charcoal);
    font-size: 1.15rem;
  }

  .nav-links li a.btn {
    border: 1px solid var(--primary-green);
    color: var(--primary-green) !important;
  }

  .hamburger { display: block; color: var(--dark-charcoal); }
  .navbar { background: rgba(255,255,255,0.98); padding: 1rem 0; box-shadow: var(--shadow-sm); border: none; }
  
  .hero-title { font-size: 2.5rem; }
  .hero-desc { font-size: 1.15rem; }
  
  .ceo-content { padding: 3rem 2rem; }
  .ceo-quote { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
