/* ================= Global Reset ================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= HTML & Body ================= */
html {
    scroll-behavior: smooth;
    font-size: 100%;
    /* base font-size: 16px */
    overflow-x: hidden;
    /* prevent horizontal scroll */
}

body {
    width: 100%;
    min-width: 320px;
    /* prevent content from shrinking too small on mobile */
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
    /* extra safety */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================= Typography ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
    font-size: 1rem;
}

/* ================= Responsive Typography ================= */
@media (max-width: 768px) {
    html {
        font-size: 90%;
        /* slightly smaller on tablets */
    }
}

@media (max-width: 480px) {
    html {
        font-size: 85%;
        /* smaller font on mobile */
    }

    body {
        line-height: 1.4;
    }
}

/* ================= Images & Media ================= */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= Links ================= */
a {
    text-decoration: none;
    color: inherit;
}

/* ================= Lists ================= */
ul,
ol {
    list-style: none;
}

/* ================= Buttons ================= */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* ================= Smooth Scroll for Anchors ================= */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* ================= Prevent Horizontal Scroll Globally ================= */
body,
html {
    overflow-x: hidden;
}

/* ================= Optional Helpers ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 60px 0;
}
/* ===== Navbar ===== */
.site-header {
  background-color: white;
  color: #8b1f3d;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 100px;
  width: auto;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover {
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.2) drop-shadow(0 4px 8px rgba(139, 31, 61, 0.3));
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-item-link,
.dropdown-btn {
  background: white;
  border: none;
  color: #8b1f3d;
  font-weight: 600;
  padding: 10px 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-item-link:hover,
.dropdown-btn:hover {
  color: #f70d47;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: #8b1f3d;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
}

.nav-dropdown.open .dropdown-list {
  display: block;
}

.dropdown-list li a {
  display: block;
  padding: 14px 18px;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-list li:last-child a {
  border-bottom: none;
}

.dropdown-list li a:hover {
  background-color: #cc1515;
  padding-left: 22px;
  transition: all 0.3s ease;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.toggle-bar {
  width: 25px;
  height: 3px;
  background-color: #8b1f3d;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 40px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-item-link,
  .dropdown-btn {
    width: 100%;
    text-align: left;
    padding: 16px 0;
  }

  .dropdown-list {
    position: static;
    width: 100%;
    background: #8b1f3d;
    border-radius: 0;
  }

  .dropdown-list li a {
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}
/* ================================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(219, 18, 18, 0.25);
    z-index: 10;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8b1f3d, #ff6b6b);
    transition: width 5s linear;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(139, 31, 61, 0.85);
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f4b942;
}

/* Hero Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 20px;
}

/* CTA Button */
.hero-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: #8b1f3d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #a2294d;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */

/* TABLET (≤ 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 85vh;
    }

    .slide-image {
        object-fit: cover;
    }
}

/* TABLET (≤ 768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
    }

    .slide-image {
        /* height: 75vh; */
        width: 100%;
        object-fit: contain;
        /* background-color: #000; */
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 4vw, 2.2rem);
        line-height: 1.3;
    }

    .hero-content p {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.4;
    }

    .hero-btn {
        /* padding: 10px 22px; */
        font-size: 0.95rem;
    }
}

/* MOBILE (≤ 480px) */
@media (max-width: 480px) {
    .hero-section {
        min-height:50vh;
        margin-top:-120px;
    }

    .slide-image {
        height: 65vh;
        width: 100%;
        object-fit: contain;
    }

    .slider-arrow {
        width: 30px;
        /* height: 30px; */
        font-size: 0.9rem;
        top:65%;
    }

    .hero-content {
        padding: 8px;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: clamp(1rem, 5vw, 1.6rem);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: clamp(0.75rem, 3vw, 0.95rem);
    }

    .hero-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }
}

/* VERY SMALL (≤ 360px) */
@media (max-width: 360px) {
    .hero-section {
        min-height: 60vh;
    }

    .slide-image {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1rem;
    }
}
/* ==================================== */
/* ================================== */
.dual-offer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 5%;
    justify-content: center;
    background: #f9f9f9;
}

/* Offer Box */
.dual-offer-box {
    flex: 1 1 48%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dual-offer-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Content Layout */
.dual-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dual-offer-content.reverse-layout {
    flex-direction: row-reverse;
}

/* Text Section */
.dual-offer-text {
    flex: 1 1 45%;
    padding: 25px;
    text-align: left;
}

.dual-offer-text h4 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #e63946;
    margin-bottom: 10px;
}

.dual-offer-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Button */
.dual-offer-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #e63946;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dual-offer-btn:hover {
    background: #d62839;
    transform: scale(1.05);
}

/* Video Section */
.dual-offer-video {
    flex: 1 1 50%;
}

.dual-offer-video .dual-video {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
    transition: filter 0.4s ease;
}

.dual-offer-box:hover .dual-video {
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
}

/* ================= Responsive Styles ================= */

/* Medium Screens (Tablets) */
@media (max-width: 992px) {
    .dual-offer-box {
        flex: 1 1 100%;
    }

    .dual-offer-content,
    .dual-offer-content.reverse-layout {
        flex-direction: column;
        text-align: center;
    }

    .dual-offer-video {
        margin-top: 15px;
        max-height: 250px;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 480px) {
    .dual-offer-box {
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .dual-offer-text h2 {
        font-size: 1.4rem;
    }

    .dual-offer-text h4 {
        font-size: 1rem;
    }

    .dual-offer-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        display: block;
        margin: 10px auto 0;
    }

    .dual-offer-video {
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 15px;
    }

    .dual-offer-video .dual-video {
        width: 100%;
        max-height: 240px;
        border-radius: 12px;
    }
}/* =============================== */
/* 🌟 About Section */
.about-section {
    background-color: #fff;
    padding: 80px 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-video {
    flex: 1 1 45%;
}

.about-video video {
    width: 100%;
    max-height: 400px;
    /* ✅ Limit height for best look */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    border:5px solid #8b1f3d;
    /* ✅ Maintain crop without distortion */
}

/* 📱 Mobile Height Adjust */
@media (max-width: 768px) {
    .about-video video {
        max-height: 300px;
        /* Slightly smaller on mobile */
    }
}

.about-content {
    flex: 1 1 50%;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8b1f3d;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #8b1f3d, #a02349);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: linear-gradient(45deg, #a02349, #8b1f3d);
    transform: translateY(-2px);
}

/* 📱 Responsive Layout */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-video video {
        border-radius: 10px;
    }
}
/* ======================== */
.client-services {
    background-color:white;
    padding: 40px 5% 60px;
}

.client-services .container {
    max-width: 1200px;
    margin: auto;
}
.section-heading {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin: 0;
    padding: 0;
    text-align: left;
     justify-content:left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: black;
    margin: 0;
    padding: 0;
    text-align: left;
    justify-content: left;
}

/* Enforce left alignment for all headings and subheadings */
h1, h2, h3, h4, h5, h6,
.section-heading, .section-subtitle, .section-title {
    text-align: left !important;
}
.services-circle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-circle-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    gap: 15px;
}

.service-circle-item:hover {
    transform: translateY(-5px);
}

.video-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border:5px solid #8b1f3d;
    background-color: #ddd;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-circle-item h3 {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .service-circle-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {

    .section-heading,
    .section-subtitle {
        text-align: center;
    }

    .services-circle-row {
        justify-content: center;
    }

    .service-circle-item {
        flex: 1 1 100%;
    }

    .video-circle {
        width: 150px;
        height: 150px;
    }
}

/* ================= */
/* Products Section */
.products-section {
    background-color: #fff;
    padding: 80px 5% 60px;
}

/* Heading & Subtitle */
.products-section h2 {
    font-size: 2.5rem;
    color: #8b1f3d;
    text-align: left;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    margin-top: 0;
    text-align: left;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
/* Product Image (Full Fit – No Crop) */
.product-image {
    width: 100%;
    height: 330px;
    /* fixed height */
    border: 8px solid #8b1f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* space fill */
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* pura image dikhana */
}
/* Product Image (Full Fit – No Crop) */
.product-image {
    width: 100%;
    height: 330px;
    /* fixed height */
    border: 8px solid #8b1f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* space fill */
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* pura image dikhana */
}

/* Product Info */
.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Learn More Button */
.product-info .btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #8b1f3d;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.product-info .btn:hover {
    background-color: #a02349;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 200px; /* smaller images on mobile */
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-info p {
        font-size: 0.95rem;
    }
}
/* ================================ */
/* Unique Slider Container */
.unique-slider {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
}

/* Track for moving slides */
.unique-slider-track {
    display: flex;
    gap: 20px;
    /* spacing between slides */
    width: calc(320px * 10);
    /* (slide width × total images) */
    animation: unique-scroll 30s linear infinite;
}

/* Each Slide */
.unique-slide {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide Images */
.unique-slide img {
    width: 100%;
    height: 250px;
    /* bigger image size */
    object-fit: cover;
    /* fills box without distortion */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.unique-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Infinite Scroll Animation */
@keyframes unique-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .unique-slide {
        width: 260px;
    }

    .unique-slide img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .unique-slide {
        width: 220px;
    }

    .unique-slide img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .unique-slide {
        width: 180px;
    }

    .unique-slide img {
        height: 150px;
    }
}
/* =============== */
.features-section {
    /* padding: 80px 5%; */
    background-color:white;
    text-align: center;
}
.features-section h2 {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin-bottom: 10px;
    text-align: left;
    /* margin-left: -90px; */
}

.section-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: #f9f9f9;
    border-radius: 12px;
    /* padding: /30px 20px; */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.feature-box:hover {
    background-color: #8b1f3d;
    color: #fff;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.8rem;
    color: #8b1f3d;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-box:hover .feature-icon {
    color: #fff;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}
/* ========================= */
/* Base Section Styling */
.gallery-section {
    padding: 80px 5% 60px;
    background-color: #fff;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin-bottom: 10px;
    text-align: left;
}

.gallery-section .section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
}

/* Grid Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Images full natural proportion */
.gallery-item img {
    width: 100%;
    height: auto;
    /* natural proportion */
    object-fit: contain;
    /* pura image show */
    border: 8px solid #8b1f3d;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 31, 61, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Button Inside Overlay */
.gallery-btn {
    display: inline-block;
    background: #fff;
    color: #8b1f3d;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.gallery-btn:hover {
    background: #8b1f3d;
    color: #fff;
}

/* View Full Gallery CTA Button */
.gallery-cta {
    margin-top: 40px;
}

.btn.btn-large {
    padding: 14px 28px;
    background-color: #8b1f3d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn.btn-large:hover {
    background-color: #6e182f;
}

/* Responsive Headings Left Aligned on Wide Screens */
@media (min-width: 768px) {

    .gallery-section h2,
    .gallery-section .section-subtitle {
        text-align: left;
    }
}
/* ==================== */

.testimonials-section {
    padding: 80px 5% 60px;
    background-color:white;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    margin-bottom: 10px;
}

.review-header h4 {
    margin: 0;
    color: #8b1f3d;
    font-size: 1.1rem;
}

.review-header span {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.review-header .stars {
    color:green;
    font-size: 1.1rem;
}

.review-header .date {
    color: #999;
    font-size: 0.8rem;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.review-card .tags {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #8b1f3d;
    font-weight: 500;
}

/* =================== */
/* Products Section */
.products-section {
    padding: 80px 5% 60px;
    background-color: #fefefe;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin-bottom: 10px;
    text-align: left;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #333;
    text-align: left;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(139, 31, 61, 0.3);
}

.product-image img {
    width: 100%;
    height:330px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #8b1f3d;
    margin-bottom: 10px;
    text-align: left;
}

.product-info p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 15px;
}

.product-info .btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #8b1f3d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.product-info .btn:hover {
    background-color: #a3254a;
}

/* ========== Stats Section ========== */
.stats-section {
    background: #fff;
    padding: 80px 5% 60px;
    color: #4a2f1b;
    /* Brown shade */
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: #f8f4f1;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a0522d;
    /* Dark brown */
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5a3e2b;
}

/* Responsive */
@media (max-width: 600px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .stat-title {
        font-size: 1rem;
    }
}
/* ================= */
.faq-section {
    padding: 40px 5% 60px;
    background: #f9f9f9 url("img/modular.jpg") no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    text-align: left;
    color: #975165;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.faq-section .section-subtitle {
    text-align: left;
    color: #333;
    font-size: 1rem;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-left: 5px solid #8b1f3d;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #222;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #8b1f3d;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ================== */
.map-section {
    /* background-color: #f8f8f8; */
    /* padding: 100px 5% 80px; */
    position: relative;
    z-index: 1;
}

.map-flex.column-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.map-content {
    text-align: center;
    max-width: 700px;
}

.section-title {
    font-size: 2.5rem;
    color: #8b1f3d;
    margin-bottom: 20px;
    font-weight: 800;
}

.map-address {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
}

.map-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #8b1f3d;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(139, 31, 61, 0.3);
}

.map-btn:hover {
    background-color: #721832;
    transform: translateY(-2px);
}

.full-width-map {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.full-width-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .full-width-map {
        height: 300px;
    }
}
/* =========== */

/* =================== */
/* Contact Section */
.contact-section {
    position: relative;
    padding: 100px 5% 80px;
    color:black;
    background-color: white;
    overflow: hidden;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
    opacity: 0.9;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-content {
    flex: 1 1 350px;
}

.contact-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color:black;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color:black;
}

.contact-info .contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info .contact-item i {
    font-size: 20px;
    color: #8b1f3d;
    min-width: 25px;
    margin-top: 5px;
}

.contact-info .contact-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: black;
}

.contact-info .contact-item p {
    margin: 5px 0 0;
    color:black;
    font-size: 0.95rem;
}

.contact-form {
    flex: 1 1 450px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
}

.contact-form form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 0 0 1px #ccc;
    transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #8b1f3d;
}

.contact-btn {
    background-color: #8b1f3d;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background-color: #721832;
}

/* Footer */
.footer {
    background-color: #8b1f3d;
    color: #ffffff;
    padding: 60px 5% 30px;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color:white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: black;
}

.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: black;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid black;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: white;
    /* background: #222; */
    /* optional: gives a neat dark footer */
    text-align: center;
}

/* Text section */
.footer-bottom p {
    flex: 1 1 100%;
    margin-bottom: 10px;
}

/* Footer links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    flex: 1 1 100%;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b3b3b3;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    .footer-bottom {
        flex-wrap: nowrap;
        text-align: left;
        /* margin-top:-30px; */
    }

    .footer-bottom p {
        flex: 1 1 auto;
        margin-bottom: 0;
    }

    .footer-links {
        justify-content: flex-end;
        flex: 1 1 auto;
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
    }

    .contact-content,
    .contact-form {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 70px 4% 60px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

