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

:root {
  --primary: #01949A;
  --primary-light: #02b6bd;
  --primary-dark: #00777c;
  --secondary: #9A776B;
  --secondary-light: #b08d81;
  --secondary-dark: #816054;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  
  --font-sans: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height-large: 90px;
  --header-height-small: 65px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height-large);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-large);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition-smooth);
}

/* Native Scroll-driven Animation for Header */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes shrink {
    to {
      height: var(--header-height-small);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      background: rgba(255, 255, 255, 0.95);
    }
  }
  
  header {
    animation: shrink auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 150px;
  }
}

/* Header state when shrunk via JS */
header.shrunk {
  height: var(--header-height-small);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: inline-block;
}

.logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.cta-nav {
  background-color: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 148, 154, 0.2);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  color: var(--primary);
  background-color: rgba(1, 148, 154, 0.1);
}

.lang-separator {
  color: var(--border-color);
  font-size: 0.8rem;
  user-select: none;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(90vh - var(--header-height-large));
  display: flex;
  align-items: center;
  padding: 6% 5%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.4) 100%), url('assets/Image2.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(1, 148, 154, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero h1 span.accent,
.hero h1 .accent,
.hero .accent {
  color: #01949A;
}

.hero h1 span.secondary-accent,
.hero h1 .secondary-accent,
.hero .secondary-accent {
  color: #9A776B;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 148, 154, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}


.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Partners Banner */
.partners {
  background-color: var(--bg-light);
  padding: 50px 5%;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.partners p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 600;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #94A3B8;
  transition: var(--transition-smooth);
  filter: grayscale(1);
  opacity: 0.7;
}

.partner-logo:hover {
  color: var(--primary);
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo-img {
  max-height: 120px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition-smooth);
  object-fit: contain;
}

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

/* Sections Base Styling */
section {
  padding: 100px 5%;
}

.section-white {
  background-color: var(--bg-white);
}

.section-light {
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-description {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Problem / Bridge Section */
.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bridge-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.bridge-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.bridge-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bridge-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.bridge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-color: rgba(1, 148, 154, 0.3);
}

.bridge-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bridge-card h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
}

.bridge-card.primary h4::before {
  background-color: var(--primary);
}

.bridge-card ul {
  list-style: none;
}

.bridge-card li {
  margin-bottom: 10px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}

.bridge-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Services (Pillars) Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: rgba(1, 148, 154, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.service-card:nth-child(2) .service-icon {
  background-color: rgba(154, 119, 107, 0.1);
  color: var(--secondary);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.98rem;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.service-list li {
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Metrics Section */
.metrics {
  background: linear-gradient(135deg, #016f73 0%, #004c4f 100%);
  color: white;
  padding: 80px 5%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.metric-item {
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
  background: linear-gradient(180deg, #ffffff 30%, #a2e8eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team Section */
.team-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.team-avatar {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 16px;
  border: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(1, 148, 154, 0.15);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover .team-avatar {
  border-color: #01949A;
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(1, 148, 154, 0.35);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: #01949A;
}

.team-role {
  font-size: 0.8rem;
  color: #9A776B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Vision 2030 & Values Section */
.vision-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: stretch;
}

.vision-card {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: white;
  padding: 50px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.vision-card p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.value-item:hover {
  border-color: var(--secondary-light);
  transform: translateY(-3px);
}

.value-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.value-title svg {
  color: var(--secondary);
}

.value-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(1, 148, 154, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Contact & CTA Footer Section */
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(1, 148, 154, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-details h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.channel-details p, .channel-details a {
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.channel-details a:hover {
  color: var(--primary);
}

.contact-form-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  background-color: var(--bg-light);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(1, 148, 154, 0.1);
}

.form-textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 5% 30px 5%;
  border-top: 1px solid #334155;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-links h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-newsletter h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #475569;
  background-color: #334155;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-light);
}

.newsletter-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background-color: var(--primary-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #334155;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: white;
  transform: scale(1.1);
}

/* Animations Scroll Reveal (fallback/JS driven or CSS native) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bridge-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: var(--header-height-small);
  }
  
  header {
    height: var(--header-height-small);
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: var(--header-height-small);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height-small));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: left 0.3s ease;
    align-items: stretch;
    text-align: center;
  }
  
  nav.active {
    left: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .metric-item:not(:last-child)::after {
    display: none;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%), url('assets/Image2.png');
    padding: 10% 4%;
  }

  .hero-content {
    padding: 0;
    background: none;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
}
