  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Sans-serif', sans-serif;
    }

    body {
      background-color: #ffffff;
    }

/* body {
  background-color: #f9f9f9;
  color: #333;
} */

html {
  scroll-behavior: smooth;
}

/* Default Header */
    .header {
      background-color: #a41c1c;
      padding: 10px 40px;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* On Scroll */
    .header.scrolled {
      background-color: #630707; /* slightly darker or solid */
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      padding: 8px 40px; /* optional */
    }


    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: auto;
    }

    .logo {
      flex-shrink: 0;
      margin-right: auto;
    }

    .logo img {
      height: 70px;
      transition: transform 0.3s ease-in-out;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    .nav {
      flex-grow: 0;
    }

    .nav-list {
      list-style: none;
      display: flex;
      gap: 35px;
      justify-content: flex-end;
    }

    .nav-list li a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      position: relative;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .nav-list li a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background: gold;
      left: 0;
      bottom: -4px;
      transition: 0.3s;
    }

    .nav-list li a:hover {
      color: gold;
    }

    .nav-list li a:hover::after {
      width: 100%;
    }
    /* .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
} */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  color: white;
}


    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      margin-left: 20px;
    }

    .menu-toggle span {
      background-color: #fff;
      height: 3px;
      width: 25px;
      margin: 4px 0;
      transition: all 0.3s ease;
    }

    @media screen and (max-width: 768px) {
      .nav-list {
        display: none;
        flex-direction: column;
        background-color: #a41c1c;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
      }

      .nav-list.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out forwards;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


/* HERO SECTION */
.projects-hero {
  position: relative;
  background: linear-gradient(rgba(36, 3, 3, 0.6), rgba(180, 23, 31, 0.6)),
              url('assets/images/projects-hero.jpg') center/cover no-repeat;
  height: 120px;
  min-height: 100px;
  max-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: white;
  overflow: hidden;
}

.hero-container {
  /* background: rgba(255, 255, 255, 0.05); */
  padding: 40px;
  border-radius: 16px;
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1.5px 6px rgba(0,0,0,0.08); */
  backdrop-filter: blur(6px);
  animation: fadeInUp 1.2s ease both;
}

.projects-hero h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.projects-hero .highlight {
  color: #e3b04b;
}

.projects-hero p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.btn-hero {
  display: inline-block;
  padding: 8px 18px;
  background-color: #e3b04b;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #c59334;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  font-size: 2rem;
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PROJECT SECTION */
.project-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
  transform: scale(1.05);
}

.project-text {
  flex: 1;
  padding: 40px;
}

.project-text h2 {
  font-size: 2rem;
  color: #b0171f;
  margin-bottom: 20px;
  font-weight: 700;
}

.project-text small {
  display: block;
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 10px;
}

.project-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

 .image-note {
  font-size: 1rem;
  color: #999;
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.05); /* subtle transparent bg */
  border-left: 3px solid #8b0000; /* match your dark red theme */
  max-width: 700px;
  margin: 0 auto 2rem auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .projects-hero h1 {
    font-size: 2.2rem;
  }

  .projects-hero p {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-container {
    padding: 30px;
  }

  .scroll-down {
    font-size: 1.5rem;
  }

  .project-item {
    flex-direction: column !important;
  }

  .project-image img {
    max-height: 300px;
  }

  .project-text {
    padding: 25px 20px;
  }

  .project-text h2 {
    font-size: 1.5rem;
  }

  .project-text p {
    font-size: 1rem;
  }
}

.footer {
  background-color: #240303;
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer a:hover {
  color: #e3b04b;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-logo {
  max-width: 180px;
}

.footer-center h4,
.footer-right h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #e3b04b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;   
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  color: #e3b04b;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer h5{
  text-align: center;
  font-family: 'Sans-serif', sans-serif;

}
.social-links i {
  margin-right: 8px;
  color: #e3b04b;
}



@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right,
  .footer-column {
    margin: 20px 0;
  }
}

/* Header Mobile Navigation Fix */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  display: block;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  nav.nav ul.nav-list {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    z-index: 999;
  }

  nav.nav ul.nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .project {
    flex-direction: column;
  }

  .project.reverse {
    flex-direction: column;
  }
}

/* AOS animation setup */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

.nav {
  flex-grow: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 35px;
  justify-content: flex-end;
}

.nav-list li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: gold;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-list li a:hover {
  color: gold;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
}

.menu-toggle span {
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    background-color: #a41c1c;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-list.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out forwards;
  }

  .menu-toggle {
    display: flex;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

.logo {
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  height: 70px;
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05);
}
