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

:root {
  --dark-blue: #1e3a8a;
  --blue: #3b82f6;
  --mustard: #f59e0b;
  --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;
  --gray-900: #212529;
  --font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--gray-100);
  overflow-x: hidden;
  width: 100vw;
}
.text-yellow{
  color: var(--mustard);
}
.container {
  width: 90%;
}
section{
  width: 100% !important;
  display: flex !important;
  align-items:center !important;
  justify-content: center;

}
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 25px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  transition: all 0.3s ease;

}

/* Navigation */

.nav {
  top: 25px;
  width: 90%;
  height: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sticky header state */
header.sticky {
  top: 0; 
  /* height: 80px; */
  transition: all .5s ease-in-out;
}

header.sticky .nav {
  width: 100%;
  border-radius: 0;
  /* background: var(--blue-600, #007BFF);  */
  color: white;
  backdrop-filter: none;
  border-bottom: none;  
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 90%;

}

.nav-brand {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  letter-spacing: -0.05em;
  display: flex;
  align-items: center; 
  justify-content: center;
height: 100%;
}
.nav-logo {
  width: 72px;
  height: 100%;
}
.nav-logo img{

  width: 100%;
  height: 100%;
  
}
.nav-brand span{
  font-weight: 500;
  /* font-size: .8rem; */
  color: var(--mustard);
}
.nav-links {
  display: none;
  gap: var(--space-8);
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition: color var(--transition-normal);
  position: relative;
}

.nav-links a:hover {
  color: var(--dark-blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mustard);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--dark-blue);
  transition: all var(--transition-normal);
}
/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: start; */
  background: var(--white);
  /* overflow: hidden; */
  padding: 150px 0;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%) contrast(1.2); */
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.8) 0%,
    rgba(59, 130, 246, 0.6) 50%,
    rgba(30, 58, 138, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 90%; */
  /* margin: 0 auto; */
  /* padding: 0 var(--space-4); */
  display: flex;
  flex-direction: row;
  gap: var(--space-12);
  align-items: center;

}
/* Scroll Indicator */
#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, var(--mustard), var(--blue));
  z-index: 9999;
  transition: width 0.1s linear;
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-black);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: slideUp 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

.title-line:nth-child(1) {
  animation-delay: 0.1s;
}
.title-line:nth-child(2) {
  animation-delay: 0.35s;
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Subtitle Animation */
.hero-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards;
  will-change: transform, opacity;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.cta-primary {
  background: var(--mustard);
  color: var(--white);
  border: none;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeIn 0.8s ease 0.9s forwards;
  text-decoration: none;
}

.cta-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.cta-primary.large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}
.hero-images {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 500px; 
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
}


.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  animation: scrollUp 20s linear infinite;
}

.grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Infinite vertical scroll */
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%); 
  }
}

@media (max-width: 768px) {
  .hero-images {
    height: auto;
    mask-image: none;
    -webkit-mask-image: none;
    width: 100%;
  }
.hero-content{
  flex-direction: column;
}
  .hero-image-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    animation: none; 
  }

  .grid-image {
    flex: 0 0 70%;
    scroll-snap-align: center;
    border-radius: 12px;
  }
}



/* Section Styling */
.section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.section-number {
  font-size: var(--text-6xl);
  font-weight: var(--font-weight-black);
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* About Section */
.about {
  padding: var(--space-24) 0;
  background: var(--white);
  border-bottom-left-radius: 68px;
  border-bottom-right-radius: 68px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-lead {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  color: var(--dark-blue);
  line-height: 1.4;
}

.about-text p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.7;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* filter: grayscale(100%) contrast(1.1); */
}

/* Services Section */
.services {
  padding: var(--space-24) 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.service-item {
  padding: var(--space-8);
  background: var(--white);
  transition: all var(--transition-normal);
}

.service-item:hover {
  transform: translateY(-4px);
}

.service-item h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-blue);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.service-item p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.6;
}

/* Values Section - Mobile Stacked Cards */
.values {
  padding: var(--space-10) 0;
  background: var(--white);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;

}

.values-container {
  position: relative;
}

.values-stack {
  display: block;
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.value-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  /* border: 2px solid var(--blue); */
  padding: var(--space-8);
  box-shadow: 3px 3px 6px var(--gray-500);

  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
}

.value-card.active {
  z-index: 8;
  transform: translateY(0) scale(1);
  box-shadow: 3px 3px 6px var(--gray-500);
  border-color: var(--mustard);
}

.value-card:not(.active) {
  z-index: 1;
  transform: translateY(20px) scale(0.95);
  opacity: 0.7;
}

.value-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-blue);
  margin-bottom: var(--space-3);
}

.value-card p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.6;
}

.values-desktop {
  display: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.value-item {
  position: relative;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  z-index: 1;

  /* Added base shadow + faint ambient glow */
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    0 0 10px rgba(59, 130, 246, 0.05);
}

/* Hover animations with lift effect and enhanced glow */
.value-item:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(59, 130, 246, 0.2),
    0 0 40px rgba(251, 191, 36, 0.15);
  animation: softGlow 2.5s ease-in-out infinite alternate;
}

/* Subtle background glow gradient */
.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(251, 191, 36, 0.05) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.value-item:hover::before {
  opacity: 1;
}

/* 🔥 Mouse-follow glow layer */
.value-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--x, 50%) var(--y, 50%),
    rgba(59, 130, 246, 0.12),
    rgba(251, 191, 36, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.value-item:hover::after {
  opacity: 1;
}

/* Animated border accent on hover */
.value-item::marker {
  display: none;
}

/* Title */
.value-item h4 {
  position: relative;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  z-index: 4;
  transition: color var(--transition-normal);
}

.value-item:hover h4 {
  color: var(--blue);
}

/* Description */
.value-item p {
  position: relative;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  z-index: 4;
}

/* Breathing glow animation */
@keyframes softGlow {
  0%, 100% {
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.15),
      0 0 25px rgba(59, 130, 246, 0.2),
      0 0 40px rgba(251, 191, 36, 0.15);
  }
  50% {
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.15),
      0 0 35px rgba(59, 130, 246, 0.3),
      0 0 55px rgba(251, 191, 36, 0.2);
  }
}

/* Team Section */
.team {
  padding: var(--space-24) 0;
  background: var(--dark-blue);
  color: var(--white);
  border-bottom-left-radius: 120px;
  border-top-right-radius: 120px;
}

.team .section-number {
  color: var(--mustard);
}

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

.team-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.team-text h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.team-role {
  font-size: var(--text-base);
  color: var(--mustard);
  margin-bottom: var(--space-6);
}

.team-description {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  color: var(--gray-300);
}
.team-quote {
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--mustard);
  border-left: 4px solid var(--mustard);
  padding-left: var(--space-4);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.cta-secondary:hover {
  background: var(--mustard);
  color: var(--white);
  border: none;
}

.team-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  border: 1px solid var(--white);
}

.stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-black);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Gallery Section */
.gallery {
  padding: var(--space-24) 0;
  background: var(--gray-100);
}

.gallery-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}

.carousel-slide img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%) contrast(1.1); */
  transition: filter var(--transition-slow);
}


.carousel-slide.portrait img {
  height: 500px;
  width: auto;
}

.carousel-slide.landscape img {
  width: 100%;
  height: auto;
  max-height: 400px;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
  color: var(--white);
  padding: var(--space-8);
}

.slide-overlay h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
}

.slide-overlay p {
  font-size: var(--text-base);
  line-height: 1.6;
  opacity: 0.9;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  background: var(--white);
}

.carousel-btn {
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--blue);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: var(--space-2);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-400);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dot.active {
  background: var(--mustard);
  transform: scale(1.3);
}

/* Contact Section */
.contact {
  position: relative;
  padding: var(--space-10) var(--space-6) 0px var(--space-6);
  background: var(--gray-100);
  overflow: hidden;
  font-family: var(--font-family);
}

/* Decorative Mustard Blob */
.contact::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at center, var(--mustard) 0%, transparent 70%);
  opacity: 0.5;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--mustard);
  margin-bottom: var(--space-2);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  line-height: 1.2;
}

/* Contact Content */
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-top: var(--space-12);
}

/* Contact Info Boxes */
.contact-info {
  flex: 1;
  display: grid;
  gap: var(--space-8);
}

.contact-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-blue);
  margin-bottom: var(--space-2);
}

.contact-item a {
  font-size: var(--text-base);
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.contact-item a:hover {
  color: var(--mustard);
}

/* CTA Button */
.cta-primary.large {
  background: var(--blue);
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-4) var(--space-8);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-normal), transform var(--transition-fast);
}

.cta-primary.large:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-10);
  }

  .contact-info {
    gap: var(--space-6);
  }

  .cta-primary.large {
    width: 100%;
    text-align: center;
  }
  .team {
  padding: var(--space-24) 0;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 0;
  border-top-left-radius:32px;
  border-top-right-radius: 32px;
}
}
.location-section {
  background: var(--gray-100);
  padding: var(--space-16) var(--space-4);
  text-align: center;
}

.location-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-blue);
  margin-bottom: var(--space-6);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--gray-200);
  border: 2px dashed var(--gray-400);
  border-radius: 12px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: var(--text-base);
}
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--mustard);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-normal);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.scroll-to-top:hover {
  background: var(--dark-blue);
  transform: scale(1.1);
}

.scroll-to-top.show {
  display: flex;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.footer {
  background: var(--dark-blue);
  color: var(--white);
  font-family: var(--font-family);
  padding: var(--space-12) var(--space-4);
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--blue);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer-logo img {
  max-width: 140px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 50%;

}

.footer-links a {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-weight: 300;
}
.footer_links{
 display: flex;
  /* flex-direction: column; */
  gap: var(--space-6);
  width: 50%;
}
.footer-links h3{
  text-align: left;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--gray-300);
}

.footer-bottom p {
  margin: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.25rem;
  transition: background var(--transition-normal), transform var(--transition-normal);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-top {
    /* flex-direction: column; */
    text-align: center;
    gap: var(--space-4);
  }
   .map-container {
    height: 280px;
    font-size: var(--text-sm);
  }

  .footer_links {
    flex-direction: column;
    gap: var(--space-2);
  text-align: left;

  }

  .footer-bottom {
    flex-direction: column;
    /* text-align: center; */
    gap: var(--space-4);
    align-items: start;
  }
   .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info {
    gap: var(--space-6);
  }

  .cta-primary.large {
    width: 100%;
  }
}



/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }

  .nav-container {
    padding: 0 var(--space-6);
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .hero-image-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  .grid-image {
    height: 150px;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .about-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-stack {
    display: none;
  }

  .values-desktop {
    display: block;
  }

  .team-content {
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--text-6xl);
  }

  .section-number {
    font-size: var(--text-7xl);
  }

  .section-title {
    font-size: var(--text-5xl);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
