.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    height: 60vh;
    background: url("/static/img/hero-bg.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    /* padding-top: 80px; */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48,48,48,0.55);
}

.hero-contents {
    position: relative;
    max-width: 958px;
    padding: 0 205px;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
  
.hero p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
  
.hero small {
    opacity: 0.8;
}
/* trust bar */
.trust-bar {
    background: #1f5f3b;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

/* section services */
.services-section {
    background: #faf9f6;
    padding: 90px 20px;
}
  
.services-container {
    max-width: 1150px;
    margin: auto;
    text-align: center;
}
  
.services-container h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #1e2b24;
}
  
.services-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #6b6f6c;
    font-size: 0.95rem;
}
  
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
  
.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #e8ebe8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.3s ease;
}
  
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}
  
.service-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1f5f3b;
}
  
.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1f5f3b;
}
  
.service-card p {
    font-size: 0.9rem;
    color: #5f6461;
    line-height: 1.5;
}
  
.services-btn {
    display: inline-block;
    margin-top: 45px;
    background: #1f5f3b;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
  
.services-btn:hover {
background: #184c2f;
}

/* Logo wrapper */
.logo-wrapper {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 122px;     /* keeps navbar height the same */
    width: auto;
    display: block;
  }

  header {
    height: 95px;              /* ðŸ‘ˆ controls navbar height */
    top: 0;

    position: sticky;
    width: 100%;
    z-index: 1000;
  
    background: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

/* contact section */
body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f4f4f4;
    margin:0;
  }
  
  .container{
    max-width:900px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
  }
  
  .service-area{
    background:#f7f7f7;
    padding:40px 0;
  }
  
  .service-area h2{
    font-size:28px;
    margin-bottom:10px;
  }
  
  .service-area p{
    color:#666;
  }
  
  .estimate{
    background:#f4f4f4;
  }
  
  .subtitle{
    color:#777;
    margin-bottom:30px;
  }
  
  .estimate-form{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
  }
  
  .form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
  }
  
  input, select, textarea{
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
    width:100%;
    box-sizing:border-box;
  }
  
  textarea{
    width:100%;
    height:120px;
    margin-top:10px;
  }
  
  .upload-note{
    font-size:13px;
    color:#777;
    margin:10px 0 20px;
  }
  
  .estimate-btn{
    background:#f5a623;
    border:none;
    padding:14px;
    width:100%;
    font-size:16px;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
  }
  
  .estimate-btn:hover{
    background:#e6951f;
  }
  /* footer */

  .site-footer{
    background:#1f1f1f;
    color:#ccc;
    padding-top:50px;
  }
  
  .footer-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:0 20px 40px;
  }
  
  .footer-column h3,
  .footer-column h4{
    color:white;
    margin-bottom:15px;
  }
  
  .footer-column p{
    font-size:14px;
    line-height:1.6;
  }
  
  .footer-column ul{
    list-style:none;
    padding:0;
  }
  
  .footer-column li{
    margin-bottom:10px;
  }
  
  .footer-column a{
    color:#ccc;
    text-decoration:none;
    font-size:14px;
  }
  
  .footer-column a:hover{
    color:#f5a623;
  }
  
  .footer-bottom{
    border-top:1px solid #333;
    text-align:center;
    padding:15px;
    font-size:13px;
    color:#777;
  }
  .footer-logo{
    width:160px;
    margin-bottom:-35px;
  }
  /* Mobile */
  
  @media(max-width:900px){
  
    .footer-container{
      grid-template-columns:1fr 1fr;
    }
  
  }
  
  @media(max-width:600px){
  
    .footer-container{
      grid-template-columns:1fr;
      text-align:center;
    }
  
  }
  /* Mobile */
  @media(max-width:700px){
    .form-grid{
      grid-template-columns:1fr;
    }
  }
@media (max-width: 768px) {

    /* Hero */
    .hero {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
    }

    .hero-contents {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons a {
        text-align: center;
    }

    /* Trust bar */
    .trust-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 16px 20px;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Projects grid on home */
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    main {
        margin-top: 72px;
    }
}

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-section {
        padding: 50px 16px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}
/* ── Homepage Featured Projects ── */
.projects-section {
  background: #f5f5f0;
  padding: 80px 20px;
}
 
.projects-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
 
.projects-container h2 {
  font-size: 2.2rem;
  color: #1e2b24;
  margin-bottom: 10px;
}
 
.projects-subtitle {
  color: #6b6f6c;
  font-size: 0.95rem;
  margin-bottom: 50px;
}
 
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
 
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}
 
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
 
.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
 
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.project-card:hover .project-image img {
  transform: scale(1.05);
}
 
.project-info {
  padding: 16px 18px 20px;
}
 
.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f5f3b;
  background: #e8f4ed;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
}
 
.project-info h3 {
  font-size: 1rem;
  color: #1e2b24;
  margin: 0;
  line-height: 1.4;
}
 
.projects-btn {
  display: inline-block;
  background: #1f5f3b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
 
.projects-btn:hover {
  background: #184c2f;
}
       /* Language toggle button */
      .lang-btn {
        background: transparent;
        border: 2px solid #1f5f3b;
        color: #1f5f3b;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
      }
      .lang-btn:hover {
        background: #1f5f3b;
        color: #fff;
      }
      @media (max-width: 768px) {
        .lang-btn {
          font-size: 0.75rem;
          padding: 5px 10px;
        }
      }
/* Responsive */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}