/* ─── Reset & Base ─── */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:sans-serif;
  background:#fff;
  color:#000;
  /* line-height:1.7; */
}
  * {
      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-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 ─── */
.hero-banner{
  height:75vh;
  background: url("../images/pexels-pixabay-273209.jpg") no-repeat center center fixed;
  background-size: cover;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.hero-overlay{
  background:rgba(0,0,0,.55);
  width:100%;text-align:center;padding:40px;color:#fff;
}
.hero-title{font-size:48px;font-weight:700;margin-bottom:15px;}
.hero-subtitle{font-size:22px;font-weight:400;}

/* ─── Sticky Section Tabs ─── */
.about-nav{
  position:sticky;top:80px;z-index:900;
  background:#fff;border-bottom:1px solid #eee;
}
.about-nav ul{display:flex;gap:40px;padding:15px 5%;overflow-x:auto;list-style:none;}
.about-nav a{
  color:#000;font-weight:600;text-decoration:none;transition:color .2s;
}
.about-nav a:hover,
.about-nav a.current{color:#a41c1c;}

/* ─── Sections ─── */
.section{padding:80px 5% 60px;}
.section h2{color:#a41c1c;font-size:32px;margin-bottom:20px;}
.section p{margin-bottom:18px;font-size:16px;}
.quote{font-style:italic;font-weight:600;}

/* Split layout */
.split-layout{display:flex;flex-wrap:wrap;gap:40px;align-items:center;}
.split-left,.split-right{flex:1 1 350px;}
.split-right img{max-width:100%;border-radius:8px;}

/* Projects grid */
.project-grid{
  display:grid;gap:25px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  margin-top:30px;
}
.project-card{
  background:#fafafa;border-left:5px solid #a41c1c;
  padding:22px;box-shadow:0 4px 10px rgba(0,0,0,.05);
  transition:transform .3s,box-shadow .3s;
}
.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.project-card h3{font-size:20px;color:#a41c1c;margin-bottom:10px;}
.project-card p{font-size:15px;line-height:1.5;}

/* Values slider */
.values-slider{
  display:flex;gap:25px;margin-top:30px;
  overflow-x:auto;padding-bottom:5px;
  scroll-snap-type:x mandatory;
}
.value-card{
  flex:0 0 220px;scroll-snap-align:start;
  background:#fafafa;padding:30px 20px;text-align:center;
  border-top:4px solid #a41c1c;border-radius:6px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
  transition:transform .3s,box-shadow .3s;
}
.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.value-card i{font-size:30px;color:#a41c1c;margin-bottom:15px;}
.value-card h4{font-size:18px;color:#a41c1c;margin-bottom:10px;font-weight:600;}
.value-card p{font-size:14px;}

/* Animate on scroll */
.fade-in{opacity:0;transform:translateY(40px);transition:opacity .8s ease,transform .8s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}

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

.social-links i {  
  margin-right: 8px;
  color: #e3b04b;
}
.footer h5{
  text-align: center;
  font-family: 'Sans-serif', sans-serif;

}

/* ─── Responsive ─── */
@media(max-width:992px){
  .nav-list{gap:25px;}
  .hero-title{font-size:40px;}
  .hero-subtitle{font-size:20px;}
}
@media(max-width:768px){
  .header{padding:15px 20px;}
  .menu-toggle{display:flex;}
  /* Force flexbox for nav, hide on mobile */
  .nav-list{
    display:none;position:absolute;top:70px;right:0;width:100%;
    background:#a41c1c;flex-direction:column;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
  }
  .nav-list.active{display:flex;}
  .nav-list li{width:100%;text-align:right;padding:10px 20px;}
  .nav-list li a{display:block;}
  /* Animated burger icon */
  .menu-toggle.open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
  /* Other mobile tweaks */
  .about-nav ul{gap:24px;}
  .hero-title{font-size:32px;}
  .hero-subtitle{font-size:18px;}
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

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