@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
  }
  
ul{
 list-style:none;
}
body{
    background-color:#FFF5EE ;
}
a{
    text-decoration: none;
}
.selection-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100rem;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* background-color: #3b141c; */
    background-color: #3b141c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  body {
    padding-top: 80px; /* prevent content from going under fixed header */
  }
  
button{
    cursor:pointer;
    border: none;
    background: local;
}
.logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffa726;
  }
  
header .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.navbar .nav-menue{
    display: flex;
    gap: 10px;
}
.navbar .nav-menue .nav-link {
 color:white;
 font-size: 1rem;
 font-weight: 700;
 padding: 10px 18px;
 border-radius: 20px;
 transition: 0.3s ease;
}

.navbar :where(#menu-close-button,#menu-open-button){
    display: none;
   }
.navbar .nav-menue .nav-link:hover{
    
    background: #f3961c;
    
   }
   .about-us {
    background-color: #fff5ee;
    padding: 60px 20px;
    color: #3b141c;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3b141c;
  }
  
  .about-text {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
  .services {
    background-color: #fdf6f0;
    padding: 60px 20px;
    color: #3b141c;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
  
  .service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .service-card img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3b141c;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }
  
  @media (min-width: 600px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .gallery {
    background-color: #3b141c;
    padding: 60px 20px;
    color: white;
  }
  
  .gallery .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffa726;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  @media (min-width: 600px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .testimonials {
    background-color: #fdf6f0;
    padding: 60px 20px;
    color: #3b141c;
  }
  
  .testimonials .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #f3961c;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonial-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
  }
  
  .testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .client-info img {
    width: 40px;
    height: 40px;
  }
  
  .client-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #3b141c;
  }
  
  @media (min-width: 768px) {
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .why-choose-us {
    background-color: #fff5ee;
    padding: 60px 20px;
    color: #3b141c;
    text-align: center;
  }
  
  .why-choose-us .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3b141c;
  }
  
  .why-text {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a2a16;
  }
  
  .choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .choose-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(243, 150, 28, 0.3);
  }
  
  .choose-card img {
    width: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 2px #f3961c);
  }
  
  .choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3b141c;
  }
  
  .choose-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  
  @media (min-width: 600px) {
    .choose-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .choose-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .faq-section {
    background-color: #fdf6f0;
    padding: 60px 20px;
    color: #3b141c;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #3b141c;
    color: #ffa726;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
  }
  
  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-question[aria-expanded="true"]::after {
    content: "-";
    transform: rotate(180deg);
  }
  
  .faq-question:hover {
    background-color: #4a1d26;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #fff5ee;
    color: #3b141c;
    font-size: 1rem;
    line-height: 1.5;
    transition: max-height 0.4s ease;
  }
  
  .faq-answer p {
    margin: 15px 0;
  }
  
  .faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px; /* enough height to show content */
    padding-bottom: 15px;
  }
  .contact-section {
    background-color: #fff5ee;
    padding: 60px 20px;
    color: #3b141c;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }
  
  .contact-form label {
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    color: #3b141c;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1.5px solid #3b141c;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #f3961c;
    outline: none;
  }
  
  .btn-submit {
    background-color: #f3961c;
    color: white;
    padding: 14px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-submit:hover {
    background-color: #d17b16;
  }
  .footer {
    background-color: #3b141c;
    color: #fff5ee;
    padding: 40px 20px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100rem;
    margin: 0 auto;
  }
  
  .footer-left {
    max-width: 400px;
  }
  
  .footer-left .logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffa726;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
  }
  
  .footer-links li a {
    color: #fff5ee;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: #f3961c;
  }
  
  .footer-copy {
    margin-top: 10px;
    color: #f3961c;
  }
  
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .footer-right {
      align-items: flex-end;
    }
  }
             
   
@media screen  and (max-width:800px){
   .navbar .nav-menue{
    display: block;
    position: fixed;
    left:-300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    transition: left 0.2s ease;
   } 
  
   body.show-mobile-menue .navbar .nav-menue{
       left: 0;
   }
   .navbar :where(#menu-close-button,#menu-open-button){
    font-size: 25px;
    display: block;
   }
  
   .navbar #menu-close-button{
    position: absolute;
    right: 30px;
    top:30px;
   }
   .navbar #menu-open-button{
    color: white;
   }
   .navbar .nav-menue .nav-link{
    color: #252525;
    font-size:larger;
    display: block;
    margin-top: 17px;
   }
   .navbar .nav-menue .nav-link:hover{
    
    background: #f3961c;
    
   }
   
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0px;
  }
  
  .cta-button {
    background-color: #ffa726;
    padding: 12px 24px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
  }
  #splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3b141c; /* your theme color */
    color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1s ease;
    font-family: "Poppins", sans-serif;
  }
  
  .splash-content {
    text-align: center;
  }
  
  .splash-title {
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .splash-subtitle {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 300;
  }
  
  #splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
  }
  