:root {
  --navy: #0a1628;
  --navy-light: #142238;
  --navy-dark: #060d18;
  --green-primary: #00a878;
  --green-light: #00d998;
  --green-dark: #007a57;
  --gold: #c9a962;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.6);
}

* {
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* This is your safety net */
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-inner {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 168, 120, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-primary);
  color: var(--white) !important;
  padding: 14px 28px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 120, 0.4);
}

/* ========== PRODUCTS DROPDOWN ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  padding-top: 20px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.dropdown-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light), var(--gold));
}

.dropdown-column {
  padding: 0 20px;
  border-right: 1px solid var(--gray-200);
}

.dropdown-column:last-child {
  border-right: none;
}

.dropdown-column:first-child {
  padding-left: 0;
}

.dropdown-column:last-child {
  padding-right: 0;
}

.dropdown-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-heading i {
  font-size: 14px;
  opacity: 0.8;
}

.dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 2px;
}

.dropdown-item:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.dropdown-item-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.dropdown-item-desc {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--green-primary);
}

.dropdown-cta {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  text-align: center;
}

.dropdown-cta p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dropdown-cta .btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .dropdown-menu { display: none; }
}

/* ========== MOBILE DROPDOWN ========== */
.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 16px;
  border-left: 2px solid var(--green-primary);
  margin-left: 8px;
  margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 700px;
}

.mobile-dropdown-heading {
  font-size: 10px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0 6px;
}

.mobile-dropdown-menu a {
  font-size: 15px !important;
  padding: 6px 0 !important;
  color: var(--text-muted) !important;
}

.mobile-dropdown-menu a:hover {
  color: var(--green-light) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.85) 100%);
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 168, 120, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 217, 152, 0.06) 0%, transparent 50%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  /* Fixed: Removed the '0' that was killing your side margins */
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(0, 168, 120, 0.15);
  border: 1px solid rgba(0, 168, 120, 0.3);
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
  color: var(--green-primary);
  font-style: italic;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description strong {
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 168, 120, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}

.hero-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 28px;
}

.hero-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-card-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--green-light);
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--green-primary);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 24px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-description {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-dark .section-description {
  color: var(--text-muted);
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.about-images {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .about-image-secondary {
    right: 20px;
    bottom: -30px;
    width: 180px;
    height: 150px;
  }
}

.about-content {
  padding-left: 40px;
}

@media (max-width: 1024px) {
  .about-content { padding-left: 0; }
}

.about-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-title {
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--gray-800);
  margin-bottom: 28px;
}

.about-text {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 168, 120, 0.1), rgba(0, 168, 120, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border-color: var(--green-primary);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 28px;
  color: var(--green-light);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.service-description {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 8px 14px;
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 24px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 14px;
}

/* ========== EXPERTISE SECTION ========== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.expertise-content {
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .expertise-content { padding-right: 0; }
}

.expertise-list {
  margin-top: 40px;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.expertise-item:first-child {
  padding-top: 0;
}

.expertise-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--green-primary);
  line-height: 1;
  min-width: 50px;
}

.expertise-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.expertise-item p {
  color: var(--text-muted);
  font-size: 14px;
}

.expertise-image {
  position: relative;
}

.expertise-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 24px;
}

.expertise-badge{
position:absolute;
left:24px;
right:24px;
bottom:24px;

background:#ffffff;
border:1px solid rgba(15, 23, 42, 0.08);
border-radius:18px;

padding:26px 28px;

box-shadow:
0 20px 50px rgba(0,0,0,0.18),
0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 768px){
.expertise-badge{
left:16px; right:16px; bottom:16px;
padding:18px 18px;
border-radius:16px;
}
}


.expertise-badge-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.expertise-badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gray-800);
}

/* ========== PARTNERS ========== */
.partners-intro {
  text-align: center;
  margin-bottom: 60px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

.partner-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s ease;
  min-height: 120px;
}

.partner-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--green-primary);
  transform: translateY(-5px);
}

.partner-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-card:hover .partner-logo img {
  opacity: 1;
}

.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
}

.partners-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .partners-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.partner-category {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
}

.partner-category-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.partner-category-icon i {
  font-size: 24px;
  color: var(--white);
}

.partner-category h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.partner-category p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.partner-logos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-logo-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
}

/* ========== METHODOLOGY ========== */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

@media (max-width: 1200px) {
  .methodology-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .methodology-grid { grid-template-columns: 1fr; }
}

.methodology-step {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--gray-200);
}

.methodology-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border-color: var(--green-primary);
}

.methodology-number {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-light);
  margin: 0 auto 24px;
}

.methodology-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 168, 120, 0.1), rgba(0, 168, 120, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.methodology-icon i {
  font-size: 24px;
  color: var(--green-primary);
}

.methodology-step:hover .methodology-icon {
  background: var(--green-primary);
}

.methodology-step:hover .methodology-icon i {
  color: var(--white);
}

.methodology-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 0% 100%, rgba(0, 168, 120, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(0, 217, 152, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 24px;
}

.cta-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info {
  background: var(--navy);
  border-radius: 24px;
  padding: 50px;
  color: var(--white);
}

.contact-info-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info-text {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 168, 120, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.contact-legal {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-legal-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-legal-text {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-200);
}

/* Improved Status Styling */
.status-message {
    margin-bottom: 25px; /* Better margin from the form */
    padding: 15px 20px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
    font-size: 0.95rem;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.status-message.show {
    display: flex;
    animation: slideDown 0.4s ease-out;
}

.status-loading {
    background-color: #f0f7ff;
    color: #0056b3;
    border-color: #cce5ff;
}

.status-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.status-error {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-title {
  font-size: 28px;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.form-text {
  color: var(--gray-600);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--green-light);
}

.mobile-cta {
  margin-top: 40px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== MOBILE REFINEMENTS ========== */
@media (max-width: 768px) {
  /* 1. Force the side air */
  .container { 
    padding-left: 30px !important; 
    padding-right: 30px !important; 
  }

  /* 2. Scale the Hero for smaller screens */
  .hero-content {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 36px; /* Prevents text from feeling overwhelming */
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 16px;
  }

  /* 3. Stack the visual card below the text */
  .hero-visual {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  /* 4. Full-width buttons for easy thumb tapping */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  /* CRITICAL: Prevents the whole page from shaking/scrolling sideways */
  overflow-x: hidden; 
  width: 100%;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  /* CRITICAL: Forces long words or tight lines to wrap instead of overflowing */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 768px) {
  /* 1. Ensure the container never exceeds screen width */
  .container { 
    padding: 0 20px !important; 
    width: 100%;
    overflow: hidden;
  }

  /* 2. Fix the Title to wrap correctly */
  .hero-title {
    font-size: clamp(28px, 9vw, 36px);
    overflow-wrap: break-word;
    word-wrap: break-word;
    width: 100%;
  }

  /* 3. The CULPRIT: Fix the Card and Visual */
  .hero-visual {
    width: 100%;
    margin-top: 30px;
  }

  .hero-card {
    padding: 20px; /* Reduce padding from 40px */
    width: 100%;
    margin: 0;
  }

  .hero-card-image {
    height: 200px; /* Shorter for mobile */
  }

  /* 4. Fix the Stats Grid (This is what was pushing the width) */
  .hero-stats {
    grid-template-columns: 1fr; /* Stack them vertically instead of 3 side-by-side */
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
  }

  .hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
  }

  .hero-stat-value {
    font-size: 24px;
  }
}
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
  }
  
  .hero-left {
    width: 100%; /* Ensure the text container doesn't have a ghost width */
  }
}