/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #8B5A2B;   /* Wood Brown */
    --secondary: #D6B894; /* Beige */
    --accent: #A67C52;    /* Darker Brown */
    --text-main: #8A7264; /* Logo Text */
    --dark-bg: #000000;
    --light-bg: #F7F4F1;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(139, 90, 43, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== HEADER & NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Left */
.logo {
    flex: 0 0 100px;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

/* Navigation Links Center */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 5px 10px;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Number Right */
.contact-number {
    flex: 0 0 200px;
    text-align: right;
}

.contact-number a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 5px;
    background: var(--light-bg);
    border-radius: 5px;
    transition: var(--transition);
}

.contact-number a:hover {
    background: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 60px;
     padding: 0 !important;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Remove container from hero slider */
.hero-slider-container {
    width: 100%;
    position: relative;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    /* Remove border-radius and shadow for full width */
    /* border-radius: 10px; */
    /* box-shadow: var(--shadow); */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* Make slide-image full width */
.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}

.slide-content {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */

  color: var(--white);
  padding: 40px;
  text-align: center;
}

/* Container for slide content to center it */
.slide-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.slide p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    
}
.slide h1,
.slide p {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .slide h1 {
    font-size: 2rem;
  }

  .slide p {
    font-size: 1rem;
  }
}

.slide .btn {
  display: inline-block;
  /* margin-top: 20px; */
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
        padding-top: 50px;
    }
    
    .slide h1 {
        font-size: 1.5rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
}
/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.company-info {
    margin: 30px 0;
}

.info-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.info-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(139, 90, 43, 0.2);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 3 boxes per row */
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* tablets */
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr; /* mobile */
    }
}

/* ===== HIGHLIGHTS ===== */
.highlights {
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #8B5E3C;
    margin-bottom: 60px;
    position: relative;
}

/* Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Design */
.testimonial-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* Text */
.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #8B5E3C;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .testimonials {
        padding: 50px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}



/* ===== CLIENTS ===== */
.clients {
    background: var(--light-bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow);
}

.client-logo img {
    max-width: 100%;
    max-height: 90px;
    /* filter: grayscale(100%); */
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    
    .contact-number {
        flex: 0 0 180px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 0 0 150px;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 1;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .contact-number {
        display: none;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.zero {
    margin-top: 90px;
    min-height: 40vh;
    background: linear-gradient(rgba(1, 0, 0, 0.9), rgba(66, 58, 58, 0.9)),
                url('assets/img/bg/2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.zero-content {
    padding: 80px 0;
}

.zero h1 {
    font-size: 3rem;
    color: white;
}

.zero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto 0;
}



.top1 {
  position: fixed;
  z-index: 999;
  bottom: 10%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top2 {
  position: fixed;
  z-index: 999;
  bottom: 16%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top3 {
  position: fixed;
  z-index: 999;
  bottom: 22%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top4 {
  position: fixed;
  z-index: 999;
  bottom: 28%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top5 {
  position: fixed;
  z-index: 999;
  bottom: 34%;
  right: 10px;
  width: 35px;
  height: auto;
}


.top6 {
  position: fixed;
  z-index: 999;
  bottom: 40%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top7 {
  position: fixed;
  z-index: 999;
  bottom: 46%;
  right: 10px;
  width: 35px;
  height: auto;
}

.top8 {
  position: fixed;
  z-index: 999;
  bottom: 52%;
  right: 10px;
  width: 35px;
  height: auto;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}


.our-work {
  padding: 60px 20px;
  background: #f8f9fb;
}

.our-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

/* Images & Video */
.our-photos img,
.our-photos video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s;
}

/* Hover Effect */
.our-photos img:hover,
.our-photos video:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img,
#lightbox video {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}