:root {
  --background: #ffffff;
  --text-primary: #1d1d1f;
  --accent-primary: #0071e3;
  --text-secondary: #6e6e73;
  --divider: #d2d2d7;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Navigation */
.main-header {
  width: 100%;
  background: var(--background);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--divider);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 35px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content img {
  width: 360px;   /* ⬅️ Increased logo size */
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-content img {
    width: 240px; /* ⬅️ Adjusted for mobile */
  }
}

.hero-content h1 {
  font-size: 2rem;      /* Reduced from 2.8rem */
  font-weight: 600;     /* Optional: slightly lighter than bold */
  color: white;
  margin-top: 0;
}

.hero-content p {
  font-size: 0.85rem;   /* Reduced from 0.95rem */
  color: #e0e0e0;
  margin-top: 0;
}


.hero-button {
  all: unset;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  transition: opacity 0.3s ease;
}

.hero-button:hover {
  opacity: 0.8;
}


/* --- KEEPING REST UNCHANGED --- */

/* ABOUT VIDEO SECTION */
.about-video-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 5%;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 40px 20px;
}

.about-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.8;
}


/* WHAT WE DO SECTION */
.what-we-do-section {
  position: relative;
  background: url('./assets/what-we-do.png') no-repeat center center/cover;
  padding: 100px 5%;
  color: white;
  overflow: hidden;
}

.what-we-do-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1.5px);
  z-index: 0;
}

.what-we-do-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.what-we-do-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.what-we-do-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.why-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
}

.why-header h2 span {
  color: var(--accent-primary);
}

.why-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-top: 15px;
}

.why-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  flex: 1 1 300px;
  padding: 20px;
  text-align: center;
}

.feature .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* TRUSTED BRANDS */
.brand-slider-section {
  background: #f9f9f9;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-slider-content {
  max-width: 1000px;
  width: 100%;
}

.brand-slider-content h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollSlider 30s linear infinite;
  gap: 60px;
  align-items: center;
}

.slider-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.05);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MEET OUR TEAM SECTION */
.team-section {
  padding: 100px 20px;
  background: #f5f5f7;
  text-align: center;
}

.team-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.team-header h2 span {
  color: var(--accent-primary);
}

.team-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  max-width: 180px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.team-member:hover {
  transform: translateY(-5px);
}

.img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.team-member h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.team-member p {
  font-size: 1rem;
  color: var(--text-secondary);
}


/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu ul {
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .nav-menu ul li a {
    font-size: 0.95rem;
  }

  .hero-content h1,
  .about-content h2,
  .what-we-do-content h2,
  .why-header h2,
  .team-header h2 {
    font-size: 2rem;
  }

  .hero-content p,
  .about-content p,
  .what-we-do-content p,
  .why-header p,
  .team-header p {
    font-size: 1rem;
  }

  .slider-track {
    gap: 40px;
  }

  .slider-track img {
    height: 40px;
  }
}
/* === SERVICES SECTION === */
.services-section {
  background: #eafaff;
  padding: 100px 20px;
  text-align: center;
}

.services-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 60px;
}

/* === SCROLLABLE GRID === */
.services-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 40px;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.service-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
  text-align: left;
  cursor: pointer;
}

.service-card img {
  height: 40px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1d1d1f;
}

.service-card p {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.6;
}

/* === BOUNCE EFFECT ON HOVER === */
.service-card:hover {
  animation: bounceCard 0.5s;
}

@keyframes bounceCard {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

/* === Schedule Button === */
.schedule-btn {
  padding: 14px 32px;
  background-color: #0071e3;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.schedule-btn:hover {
  background-color: #005bb5;
}
/* === MOTTO SECTION === */
.motto-section {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.motto-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.motto-subtext {
  font-size: 1.2rem;
  color: #6e6e73;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === SERVICES SECTION === */
.services-section {
  background: #e9faff; /* soft blue */
  padding: 100px 20px;
  text-align: center;
}

.services-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 260px;
  flex: 0 0 auto;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card img {
  height: 50px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1d1d1f;
}

.service-card p {
  font-size: 0.95rem;
  color: #6e6e73;
  line-height: 1.5;
}

/* Bounce on hover */
.service-card:hover {
  animation: bounce 0.6s;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
  60% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

/* === SCHEDULE BUTTON === */
.schedule-btn {
  margin-top: 40px;
  padding: 14px 32px;
  background-color: #0071e3;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.schedule-btn:hover {
  background-color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .service-card {
    min-width: 240px;
  }
}
/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== POPUP FORM ===== */
.popup-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: popupFade 0.5s ease;
}

.popup-form h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #1d1d1f;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.popup-form button {
  background: #0071e3;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-form button:hover {
  background: #005bb5;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}

/* Popup Animation */
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Popup Card Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Card-style Popup Form */
.popup-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: popupFade 0.3s ease;
}

.popup-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #1d1d1f;
}

.popup-card input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.popup-card button {
  width: 100%;
  background: #0071e3;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-card button:hover {
  background: #005bb5;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}

/* Fade Animation */
@keyframes popupFade {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* SERVICE CARD IMAGE WRAPPER */
.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
/* === CONTACT PAGE CUSTOM STYLES === */

.contact-hero {
  background: url('./assets/contact-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-options {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.options-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.option-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card img {
  height: 60px;
  margin-bottom: 20px;
}

.option-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.option-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 24px;
  background-color: var(--accent-primary);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.option-button:hover {
  background-color: #005bb5;
}

.contact-form-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #f5f5f7;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-container button {
  background: var(--accent-primary);
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background: #005bb5;
}

.location-info {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.info-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

/* === THANK YOU PAGE === */

.hero-section.thank-you {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: white;
  padding-top: 60px;
}

.hero-section.thank-you .hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section.thank-you .hero-content p {
  font-size: 1.2rem;
  color: #f1f1f1;
  margin-bottom: 40px;
}
/* === TEAM POPUP CLOSE FIX === */
.team-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.team-popup {
  position: relative;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  animation: flipIn 0.6s ease;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  z-index: 10001;
}

.popup-linkedin {
  margin-top: 20px;
  display: inline-block;
  background-color: #0077b5;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popup-linkedin:hover {
  background-color: #005983;
}
.services-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1d1d1f;
}

.services-title .highlight-blue {
  color: #0071e3; /* Same Apple-style blue */
}
/* ===== MOBILE OPTIMIZATION FOR iPhone 13 AND BELOW ===== */
@media (max-width: 430px) {
  /* NAVBAR STACKING */
  .navbar-container {
    flex-direction: column;
    padding: 10px;
    text-align: center;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  /* HERO SECTION */
  .hero-section,
  .contact-hero,
  .hero-section.thank-you {
    padding-top: 80px;
    height: auto;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .hero-content img {
    width: 180px;
  }

  /* ABOUT / WHAT WE DO / WHY CHOOSE US HEADINGS */
  .about-content,
  .what-we-do-content,
  .why-header,
  .team-header {
    padding: 30px 20px;
  }

  .about-text h1,
  .what-we-do-content h2,
  .why-header h2,
  .team-header h2,
  .services-title {
    font-size: 1.8rem;
  }

  .about-text p,
  .what-we-do-content p,
  .why-header p,
  .team-header p {
    font-size: 1rem;
  }

  /* CARDS + TEAM */
  .card-container,
  .info-grid,
  .services-grid,
  .team-grid,
  .options-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-card,
  .option-card,
  .info-card,
  .team-member,
  .popup-card {
    width: 90%;
    max-width: 100%;
  }

  /* MOTTO & MISSION */
  .motto-heading {
    font-size: 1.6rem;
  }

  .motto-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* CONTACT BUTTONS */
  .option-button,
  .schedule-btn,
  .popup-form button {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
  }

  /* POPUPS */
  .popup-form,
  .popup-card {
    padding: 20px;
  }

  .popup-card h3 {
    font-size: 1.3rem;
  }

  .popup-card input,
  .popup-card textarea {
    font-size: 1rem;
  }

  /* LOGO SLIDER IMAGES */
  .slider-track img {
    height: 40px;
  }

  /* VIDEO BACKGROUND FIX */
  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/* === ABOUT SIIL SECTION FIX === */
.about-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}

.about-text {
  flex: 1;
  min-width: 280px;
  padding: 20px;
}

/* === NAVIGATION BAR FIX === */
@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .navbar-container {
    flex-direction: row; /* ⬅️ Keeps nav horizontal */
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-menu ul {
    flex-direction: row;  /* ⬅️ Horizontal layout */
    gap: 16px;
    align-items: center;
  }

  .nav-menu a {
    font-size: 1rem;
    color: #1d1d1f;
  }

  .about-content {
    flex-direction: column;
    padding-top: 100px;
  }

  .hero-section,
  .contact-hero,
  .about-content {
    padding-top: 100px;
  }
}
