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

    body {
      background-color: #ffffff;
    }
  
    /* 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 {
  background: url('../images/heroback.jpeg') no-repeat center center/cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

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

.hero-content h1 {
  color: gold;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-family: 'Sans-serif', sans-serif;
}

/* .hero-content .highlight {
  color: gold;
} */

.highlight {
  color: #8b0000; /* Dark red (professional, rich, and intense) */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: none;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f8f8f8;
}

.hero-btn {
  background-color: #a41c1c;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

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

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}




/* about 
 */

.about-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.about-container {
  max-width: 1400px;
  margin: auto;
}

.about-section h1 {
  font-size: 2.8rem;
  color: gold;
  text-align: left;
  margin-bottom: 50px;
}

.about-section h2 span {
  color: gold;
}

.about-intro-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px;
}

.about-intro-text {
  flex: 1;
  min-width: 300px;
}

.about-intro-text p {
  font-size: 1.1rem;
  color: #333;
  text-align: left;
  line-height: 1.7;
}

.about-intro-image {
  flex: 1;
  max-width: 100%;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-intro-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-intro-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .about-intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-intro-image {
    padding-left: 0;
    margin-top: 20px;
  }

  .about-intro-image img {
    max-width: 90%;
  }
}


/* 3-column boxes section */
.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
}

.about-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  transition: all 0.3s ease;
  text-align: left;
}

.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.about-box h3 {
  color: #a41c1c;
  margin-bottom: 18px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.about-box h3::before {
  /* content: "⭐"; */
  font-size: 1.2rem;
  color: gold;
  transition: transform 0.3s ease;
}

.about-box:hover h3::before {
  transform: rotate(20deg);
}

.about-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.about-box ul {
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.about-box li {
  margin-bottom: 10px;
}

.about-bottom {
  margin-top: 60px;
  text-align: left;
}

.about-bottom h3 {
  color: #a41c1c;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.about-bottom p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-intro-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-intro-text p {
    text-align: center;
  }

  .about-intro-image {
    text-align: center;
  }

  .about-section h2 {
    font-size: 2rem;
  }
}



/* PROJECTS */
.projects-section {
      padding: 70px 30px;
      background-color: #f5f5f5;
    }

    .projects-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .section-title {
      text-align: center;
      font-size: 2.8rem;
      font-weight: bold;
      color: #a41c1c;
      margin-bottom: 40px;
      position: relative;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      width: 100%;
      border-top: 2px solid #a41c1c;
      border-bottom: 2px solid #a41c1c;
    }

    .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;
}


    .project-card {
      background-color: #fff;
      padding: 20px;
      border-left: 2px solid #a41c1c;
      border-right: 2px solid #a41c1c;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s, box-shadow 0.3s;
      text-align: center;
    }

    .project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .project-card .main-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .project-card .project-head {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.7rem;
      font-weight: 600;
      color: #a41c1c;
      margin-bottom: 10px;
    }

    .project-card .project-head img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 6px;
    }

    .project-card p {
      font-size: 1rem;
      color: #333;
      line-height: 1.4;
    }

    @media (max-width: 992px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .projects-grid {
        grid-template-columns: 1fr;
      }
    }



/* team  */
  .team-section {
    padding: 60px 20px;
    background-color: #fff5f5;
    position: relative;
    overflow: hidden;
  }

  .team-section .section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #a41c1c;
    font-weight: bold;
    z-index: 2;
    position: relative;
  }

  .team-carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 10px;
  }

  .team-carousel {
    display: flex;
    gap: 30px;
    animation: scrollTeam 40s linear infinite;
    width: max-content;
  }

  .team-slide {
    flex: 0 0 auto;
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 200px;
  }

  .team-slide:hover {
    transform: translateY(-8px);
  }

  .team-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .team-slide h3 {
    font-size: 1.3rem;
    color: #a41c1c;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .team-slide:hover h3 {
    color: goldenrod;
  }

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

  @media (max-width: 768px) {
    .team-carousel {
      animation-duration: 60s;
    }
  }


  /* footer  */
  .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;
  }
}




.projects-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.projects-page .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

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

.project-text {
  flex: 1;
  min-width: 280px;
}

.project-text h3 {
  color: #c49b43;
  font-size: 24px;
  margin-bottom: 10px;
}

.project-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.project-image {
  flex: 1;
  min-width: 280px;
}

.project-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .project-row,
  .project-row.reverse {
    flex-direction: column;
  }
}
