 /* Reset and Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    :root {
      --primary-color: #d48c17;
      --secondary-color: #da9e3c;
      --dark-color: #000000;
      --light-color: #ffffff;
      --gray-color: #d2cbcb;
      --overlay-color: rgba(0, 0, 0, 0.37);
      --font-heading: 'Iceland', cursive;
      --font-body: 'Inter', sans-serif;
    }
    
    body {
      font-family: var(--font-body);
      line-height: 1.6;
      color: var(--dark-color);
      overflow-x: hidden;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    ul {
      list-style: none;
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      
    }
    
    .section {
      padding: 60px 0;
    }
    
    .section-title {
      font-family: var(--font-heading);
      color: var(--primary-color);
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 30px;
    }
    
    .btn {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: bold;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .btn:hover {
      background-color: var(--secondary-color);
      transform: translateY(-3px);
    }
    
    /* Header Styles */
    .top-bar .top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.top-bar .logo img {
  height: 50px; /* adjust as needed */
}

.top-bar .contact-info-wrapper {
  display: flex;
  gap: 20px;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

    
    .contact-info {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .header {
      background-color: var(--secondary-color);
      padding: 10px 0;
    }
    
    .header .header-content {
  display: flex;
  justify-content: center; /* centers the menu horizontally */
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 30px; /* space between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #fdfdfd; /* optional hover effect */
}

/* Mobile toggle adjustments */
.menu-toggle {
  position: absolute;
  right: 0;
  display: none; /* show only on mobile via media queries */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
}

.btn-gradient {
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(45deg, #863804, #ff8400);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Responsive: show toggle on small screens */
/* @media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
} */
    
    /* Hero Section */
    .hero {
      position: relative;
      height: 80vh;
      min-height: 500px;
      overflow: hidden;
    }
    
    .hero-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    
    .hero-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--overlay-color);
      z-index: 0;
    }
    
    .hero-content {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--light-color);
      z-index: 1;
      padding: 20px 15px;
    }
    
    .hero-title {
      font-family: var(--font-heading);
      font-size: 3rem;
      margin-bottom: 20px;
    }
    
    .hero-subtitle {
      font-style: italic;
      font-size: 1.5rem;
      margin-bottom: 30px;
      max-width: 800px;
    }
    
    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .about-image {
      border-radius: 20px;
      box-shadow: 8px 10px 20px 0px rgba(141, 135, 135, 0.5);
    }
    
    .about-text h3 {
      color: var(--primary-color);
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 10px;
    }
    
    .about-text h2 {
      color: var(--primary-color);
      font-family: var(--font-heading);
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    
/* Process Section */
.process {
  background: linear-gradient(135deg, #fff7f0, #fff0e6);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Floating Gradient Background Effect */
.process::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 126, 0, 0.15), transparent 60%);
  animation: bgMove 12s linear infinite;
}

@keyframes bgMove {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.process-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Columns */
.process-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 280px;
}

.process-column.left { text-align: right; }
.process-column.right { text-align: left; }

/* Step Box */
/* Step Box */
.process-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 25px;
  border-radius: 50px; /* fully rounded pill style */
  background: linear-gradient(135deg, #ff7e00, #ffb347); /* orange gradient */
  box-shadow: 0 6px 18px rgba(255, 126, 0, 0.25);
  transition: all 0.4s ease;
  cursor: pointer;
  color: #fff; /* text/icon contrast */
}

.process-step:hover {
  transform: translateY(-6px) scale(1.03);
  background: linear-gradient(135deg, #ff944d, #ffcc80); /* lighter hover gradient */
  box-shadow: 0 12px 28px rgba(255, 126, 0, 0.35);
}

/* Icons inside step */
.process-icon {
  width: 65px;
  height: 65px;
  padding: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #042243, #00c6ff);
  box-shadow: 0 5px 12px rgba(0,123,255,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon {
  transform: rotate(12deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,123,255,0.5);
}


/* Text */
.process-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff; /* plain white text for better readability */
  transition: all 0.3s ease;
}



.process-step:hover .process-name {
  letter-spacing: 1px;
}

/* Center Image */
.process-image img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.2));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

    
   /* Services Section */
.services {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px;
}

/* Background Image */
.services-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0; /* reset to 0 */
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

/* Animate Background Zoom */
.services:hover .services-bg {
  transform: scale(1.1);
}

/* Dark Overlay with Gradient */
.services-overlay {
  position: absolute;
  top: 0; /* add these */
  left: 0; /* add these */
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 94, 0, 0.4));
  z-index: 1; /* must be above background image */
  animation: overlayPulse 8s infinite alternate;
}

/* Overlay Animation */
@keyframes overlayPulse {
  0% { background: rgba(0, 0, 0, 0.6); }
  100% { background: rgba(0, 0, 0, 0.4); }
}

/* Content */
.services-content {
  position: relative;
  z-index: 2; /* always above overlay */
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.5);
}

/* Button */
.services .btn {
  background: #ff5e00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255, 94, 0, 0.4);
  transition: all 0.3s ease;
}

.services .btn:hover {
  background: #ff7f32;
  box-shadow: 0 10px 24px rgba(255, 94, 0, 0.6);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 20px; }
  .services .btn { padding: 10px 20px; font-size: 14px; }
}

   /* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px); /* fixed width 300px */
  gap: 30px;
  justify-content: center; /* centers cards if last row not filled */
  margin-bottom: 40px;
  padding: 20px 0;
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #ff5e00, #ff9966);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
}

/* Hover Animation */
.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Project Image with Overlay */
.project-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

/* Gradient Overlay on Hover */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::after {
  opacity: 1;
}

/* Project Name */
.project-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.project-card:hover .project-name {
  opacity: 1;
  bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-image { height: 200px; }
  .project-name { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .project-image { height: 180px; }
  .project-name { font-size: 1rem; }
}

    
    /* Mission Section */

 /* Mission Section */
.mission {
  background: linear-gradient(135deg, #c3652f, #ff9966);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Floating Glow Background */
.mission::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 70%);
  animation: spin 20s linear infinite;
  z-index: 0;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mission-text, .vision-text {
  margin-bottom: 30px;
}

.mission-text h2, .vision-text h2 {
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.mission-images {
  position: relative;
  height: 500px;
}

.mission-img {
  position: absolute;
  border: 4px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mission-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Specific Image Positions */
.mission-img-1 {
  width: 60%;
  right: 0;
  top: 0;
}

.mission-img-2 {
  width: 70%;
  left: 0;
  top: 150px;
}

.mission-img-3 {
  width: 60%;
  right: 0;
  top: 300px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .mission-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-images {
    height: auto;
    margin-top: 30px;
  }

  .mission-img {
    position: relative;
    width: 80%;
    margin: 15px auto;
    display: block;
  }
}
    
    /* Infrastructure Section */
.infrastructure {
  position: relative;
  color: var(--light-color, #fff);
  text-align: center;
  padding: 0; /* remove padding so background is full height */
  overflow: hidden;
  min-height: 600px; /* adjust height as you like */
  display: flex;
  align-items: center; /* center content vertically */
  justify-content: center;
}

/* Background Image with Zoom Animation */
.infrastructure-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Overlay covering full background */
.infrastructure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  z-index: -1;
  animation: overlayPulse 6s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  from { opacity: 0.7; }
  to { opacity: 0.9; }
}

/* Content Styling */
.infrastructure-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  animation: fadeUp 1.5s ease-in-out;
}

.infrastructure-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

.infrastructure-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Fade-Up Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .infrastructure-content h2 { font-size: 2rem; }
  .infrastructure-content p { font-size: 1rem; }
  .infrastructure { min-height: 500px; }
}

@media (max-width: 576px) {
  .infrastructure-content h2 { font-size: 1.6rem; }
  .infrastructure-content p { font-size: 0.95rem; }
  .infrastructure { min-height: 400px; }
}



/* Clients Section */
.section.clients {
  background: #f9f9f9; /* Light background */
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #333;
  text-align: center;
}

/* Decorative subtle gradient overlay */
.section.clients::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.04), transparent 70%);
  z-index: 0;
}



/* Grid Layout: 4 per row on large */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

/* Client Logo Card */
.client-logo {
  width: 100%;
  height: 280px; /* increased size */
  object-fit: contain;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 25px; /* more padding for larger logos */
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
  
  cursor: pointer;
}

/* Hover effect with smooth animation */
.client-logo:hover {
  transform: translateY(-12px) scale(1.1) rotate(-1deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05) contrast(1.1);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .client-logo { height: 150px; }
}

@media (max-width: 480px) {
  .client-logo { height: 120px; }
}
/* Section Title */
.section.clients .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section.clients { padding: 60px 15px; }
  .section.clients .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .section.clients { padding: 50px 10px; }
  .section.clients .section-title { font-size: 1.7rem; }
}

    
   /* Architects Section */
.architects {
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #ff7e5f, #feb47b); /* modern gradient */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Subtle animated glow */
.architects::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
  animation: spinGlow 25s linear infinite;
  z-index: 0;
}

@keyframes spinGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section Title */
.architects .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 4px 10px rgba(241, 237, 237, 0.4);
  color: #fff;
  position: relative;
  z-index: 1;
  animation: fadeUp 1.2s ease-in-out;
}

/* Architects List */
.architects-list {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.7;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px); /* glassmorphism effect */
  position: relative;
  z-index: 1;
  animation: fadeUp 1.5s ease-in-out;
}

/* Fade-up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .architects {
    padding: 60px 15px;
  }
  .architects .section-title {
    font-size: 2rem;
  }
  .architects-list {
    font-size: 1rem;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .architects .section-title {
    font-size: 1.7rem;
  }
  .architects-list {
    font-size: 0.95rem;
  }
}
    
    /* Footer */
    .footer {
      background-color: var(--gray-color);
      padding: 60px 0 30px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-logo {
      max-width: 200px;
      margin-bottom: 15px;
    }
    
    .footer-heading {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a:hover {
      color: var(--primary-color);
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 15px;
    }
    
    .contact-icon {
      font-size: 1.2rem;
      min-width: 20px;
    }
    
    .subscribe-form {
      display: flex;
      margin-bottom: 30px;
    }
    
    .subscribe-input {
      flex-grow: 1;
      padding: 15px;
      border-radius: 50px 0 0 50px;
      border: none;
    }
    
    .subscribe-btn {
      background-color: var(--primary-color);
      color: var(--light-color);
      border: none;
      padding: 0 20px;
      border-radius: 0 50px 50px 0;
      cursor: pointer;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
    }
    
    .social-icon {
      width: 50px;
      height: 50px;
      background-color: var(--light-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--primary-color);
      color: var(--light-color);
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      .section-title {
        font-size: 2rem;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
      }
      
      .about-content {
        gap: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .top-bar-content {
        justify-content: center;
      }
      
      .header-content {
        flex-direction: column;
        gap: 15px;
      }
      
      .top-bar .contact-info-wrapper {
          display: none;
        }
      .top-bar .logo {
        display: block;
        text-align: center; /* center the logo container */
      }
    
      .top-bar .logo img {
        max-width: 180px; /* adjust as needed */
        height: auto;
        margin: 0 auto; /* center the image */
        display: inline-block;
      }
      
      .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .hero {
        height: auto;
        min-height: auto;
        
      }
      
      .about-content {
        grid-template-columns: 1fr;
      }
      
      .mission-content {
        grid-template-columns: 1fr;
      }
      
      .mission-images {
        height: 400px;
        margin-top: 30px;
      }
      
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .contact-item {
        justify-content: center;
      }
      
      .social-icons {
        justify-content: center;
      }
    }
    
    @media (max-width: 576px) {
      .section {
        padding: 40px 0;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
      }
      
      .process-steps {
        grid-template-columns: 1fr;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
      }
      
      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .subscribe-form {
        flex-direction: column;
      }
      
      .subscribe-input {
        border-radius: 50px;
        margin-bottom: 10px;
      }
      
      .subscribe-btn {
        border-radius: 50px;
        padding: 12px;
      }
    }
    
    /* Hamburger Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
    }
    
    .menu-toggle span {
      height: 3px;
      width: 100%;
      background-color: var(--light-color);
      border-radius: 3px;
    }

  @media (max-width: 768px) {
  /* Header content layout */
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Needed for absolute nav */
    width: 100%;
  }

  

  /* Toggle Button */
  .menu-toggle {
    display: flex;
    order: 2;
    position: relative;
    z-index: 101; /* above nav menu */
  }

  /* Nav Menu inside navbar */
  .nav-menu {
    position: absolute;
    top: 100%; /* directly below navbar */
    right: 0;
    width: 100%;
    background-color: var(--secondary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none; /* hidden by default */
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 20px 0;
    z-index: 2;
  }

  /* Show menu when active */
  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 10px 0;
  }
}

    
    