.fas, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* ROOT VARIABLES */
:root {
    --primary-green: #2E4F2F;    /* Deep Forest Green */
    --accent-green: #557C56;     /* Medium Sage */
    --light-green: #F4F9F4;      /* Very Light Green Background */
    --wood-brown: #8B5A2B;       /* Earthy Wood Tone */
    --gold: #D4AF37;             /* Luxury Accent */
    --white: #ffffff;
    --dark-text: #111111;
    --gray-text: #666666;
    --base-font-size: 18px;
}

/* STRICT FONT ENFORCEMENT */
* {
    font-family: 'Calibri', 'Candara', 'Segoe', 'Segoe UI', Optima, Arial, sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: var(--base-font-size);   
}

/* BODY */
body {
    background-color: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
    font-size: var(--base-font-size);   
    line-height: 1.5;
}

        a { text-decoration: none; }
        ul { list-style: none; padding: 0; }

        /* --- 1. TOP BAR --- */
        .top-header {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 10px 0;
            font-size: 15px;
            font-weight: bold;
        }
        .top-info span { margin-right: 20px; }
        .top-info i { color: var(--gold); margin-right: 5px; }

        /* --- 2. NAVBAR --- */
        .navbar {
            shadow: 0 4px 12px rgba(0,0,0,0.05);
            padding: 5px 0;
            transition: all 0.3s ease;
            background-color: #131a15 !IMPORTANT;
        }
        .navbar-brand {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-green);
            text-transform: uppercase;
        }
        .navbar-brand span { color: var(--wood-brown); }
        
        .nav-link {
            color: #fff !important;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            margin: 0 12px;
            position: relative;
            transition: 0.3s;
        }
        .nav-link:hover, .nav-link.active { color: #f1bb3c !important; }
        
        .btn-theme {
            background-color: var(--wood-brown);
            color: var(--white);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: bold;
            transition: 0.3s;
            border: 2px solid var(--wood-brown);
        }
        .btn-theme:hover {
            background-color: transparent;
            color: var(--wood-brown);
        }

       .navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

/* LOGO SIZE CONTROL */
.navbar-brand img {
    height: 190px;   /* 👈 yahan height bada ki */
    width: auto;
    max-height: none; /* navbar limit remove */
}
  
span a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

span a:hover {
    color: var(--gold);
}

.city-highlight{
  color: var(--gold);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  white-space: nowrap;   /* 🔥 THIS IS IMPORTANT */
}


/* --- 3. HERO SLIDER --- */
.hero-section{
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

/* Background slides */
.hero-bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease, opacity 1s ease;
    z-index: -2;
    opacity: 0;
    transform: scale(1.1);
}

.hero-bg.active{
    opacity: 1;
    transform: scale(1);
}

/* Overlay */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(30,50,30,0.8) 0%,
        rgba(30,50,30,0.3) 100%
    );
    z-index: -1;
}

/* ===============================
   HERO CONTENT (FIXED POSITION)
================================ */
.hero-content{
    position: absolute;
    left: 80px;            /* 👈 left corner */
    bottom: 150px;          /* 👈 bottom gap */
    max-width: 900px;
    color: var(--white);
    text-align: left;
    z-index: 2;
}

/* Text styles */
.hero-content h5{
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-content h1{
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
}

.hero-content p{
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px){
    .hero-content{
        left: 40px;
        bottom: 60px;
    }

    .hero-content h1{
        font-size: 3rem;
    }
}

@media (max-width: 768px){
    .hero-section{
        height: 75vh;
    }

    .hero-content{
        left: 20px;
        right: 20px;
        bottom: 40px;
        max-width: 100%;
    }

    .hero-content h1{
        font-size: 2.4rem;
    }

    .hero-content p{
        font-size: 1rem;
    }
}

        /* --- 4. SCROLLING KEYWORDS --- */
        .keyword-marquee {
            background: var(--light-green); padding: 12px 0; overflow: hidden;
            white-space: nowrap; border-bottom: 1px solid #ddd;
        }
        .marquee-track { display: inline-block; animation: marqueeScroll 25s linear infinite; }
        .k-tag { display: inline-block; margin: 0 25px; font-size: 15px; font-weight: 600; color: var(--primary-green); }
        .k-tag i { color: var(--wood-brown); margin-right: 5px; }
        @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- SECTION PADDING --- */
        .section-padding { padding: 90px 0; }
        .subtitle {
            color: var(--wood-brown); font-weight: bold; text-transform: uppercase;
            letter-spacing: 2px; display: block; margin-bottom: 10px; font-size: 14px;
        }
     

        /* --- 6. WHY CHOOSE US (Collage) --- */
        .wcu-section { background-color: #ffffff; }
        .collage-wrapper {
    position: relative;
    height: 500px;
    cursor: zoom-in;
}

/* COMMON IMAGE STYLE */
.collage-wrapper img {
    transition: transform 0.6s ease, box-shadow 0.4s ease;
    will-change: transform;
}

/* IMAGE 1 */
.collage-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    z-index: 1;
    border-radius: 6px;
}

/* IMAGE 2 */
.collage-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    object-fit: cover;
    border: 8px solid #fff;
    z-index: 2;
    border-radius: 6px;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.15);
}

/* 🔥 ZOOM ACTIVE STATE */
.collage-wrapper.zoom-active img {
    transform: scale(1.15);
    z-index: 5;
}

/* Extra depth */
.collage-wrapper.zoom-active .collage-img-2 {
    transform: scale(1.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .collage-wrapper {
        height: 320px;
    }
}

        .feature-box {
            display: flex; align-items: flex-start; margin-bottom: 30px;
            padding: 15px; border-bottom: 1px solid #f0f0f0; transition: 0.3s;
        }
        .feature-box:hover { transform: translateX(10px); }
        .feature-icon {
            min-width: 45px; height: 45px; background: var(--light-green);
            color: var(--primary-green); border-radius: 50%; display: flex;
            align-items: center; justify-content: center; font-size: 18px; margin-right: 20px;
        }
        .feature-content h5 { font-size: 18px; font-weight: bold; color: var(--dark-text); }
        .feature-content p { font-size: 15px; color: var(--gray-text); margin: 0; }

        /* --- 7. NEW SERVICES  */
        .ds-complete-section { background-color: #fff; padding: 100px 0; }
        
        /* Header Row Style */
        .ds-header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end; /* Align bottom */
            margin-bottom: 60px;
        }
        .ds-tag-line {
            display: block;
            color: var(--gray-text);
            font-size: 25px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .ds-main-heading {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--dark-text);
        }
        .ds-main-heading strong {
            font-weight: 800;
        }
        .ds-faded {
            
            color: #b0b0b0; /* The grey color for 'every need' */
        }
        .ds-text-col {
            padding-left: 30px;
            color: var(--gray-text);
            font-size: 18px;
            line-height: 1.6;
            max-width: 500px;
            margin-left: auto; /* Push to right */
        }

        /* Card Style */
        .ds-card {
            display: block;
            text-decoration: none;
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            cursor: pointer;
        }
        .ds-img-holder {
            width: 100%;
            height: 450px; /* Tall cards like screenshot */
            position: relative;
            overflow: hidden;
        }
        .ds-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .ds-card:hover .ds-img-holder img {
            transform: scale(1.1);
        }

        /* The Round Arrow Button */
        .ds-arrow-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2); /* Glass effect */
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            transition: all 0.4s ease;
            z-index: 2;
        }
        .ds-card:hover .ds-arrow-btn {
            background: var(--white);
            color: var(--dark-text);
            transform: rotate(45deg); /* Rotation animation */
        }
        
        .ds-card-content {
            margin-top: 20px;
        }
        .ds-card-content h3 {
            font-size: 24px;
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 5px;
        }
        .ds-card-content p {
            color: var(--gray-text);
            font-size: 15px;
        }

        /* Media Queries for Services */
        @media(max-width: 991px) {
            .ds-main-heading { font-size: 2.5rem; }
            .ds-text-col { padding-left: 0; margin-top: 20px; }
            .ds-img-holder { height: 300px; }
        }

        /* --- 8. PRODUCTS --- */
        .product-section { background-color: #f9f9f9; }
        .product-card {
            background: #fff; border: 1px solid #eee; overflow: hidden;
            transition: 0.3s; margin-bottom: 30px; border-radius: 0;
        }
        .product-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.08); transform: translateY(-5px); }
        .p-img-box { height: 300px; overflow: hidden; position: relative; }
        .p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
        .product-card:hover .p-img-box img { transform: scale(1.1); }
        .buy-now-overlay {
            position: absolute; bottom: -50px; left: 0; width: 100%;
            background: var(--primary-green); display: flex; justify-content: center;
            padding: 12px; transition: 0.3s;
        }
        .product-card:hover .buy-now-overlay { bottom: 0; }
        .buy-now-overlay a { color: var(--white); font-weight: bold; font-size: 14px; text-transform: uppercase; }
        .p-info { padding: 20px; text-align: left; }
        .p-cat { font-size: 11px; color: var(--wood-brown); font-weight: bold; text-transform: uppercase; letter-spacing: 1px;}
        .p-title { font-size: 18px; font-weight: bold; margin: 5px 0; color: var(--dark-text); }


        /* --- 9. VIDEO BANNER --- */
        .video-cta {
            background: linear-gradient(rgba(46, 79, 47, 0.7), rgba(46, 79, 47, 0.7)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?q=80&w=1600');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }
        .play-button {
            width: 70px; height: 70px;
            background: var(--white);
            color: var(--primary-green);
            border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0% {box-shadow: 0 0 0 0 rgba(255,255,255,0.7);} 70% {box-shadow: 0 0 0 20px rgba(255,255,255,0);} 100% {box-shadow: 0 0 0 0 rgba(255,255,255,0);} }

/*about us*/

        /* --- PAGE BANNER --- */
        .page-banner {
            position: relative;
            height: 60vh;
            background: url('../img/servicesbanner.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .page-banner::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(rgba(46, 79, 47, 0.8), rgba(46, 79, 47, 0.5));
        }
        .banner-content { position: relative; z-index: 2; animation: fadeUp 1s ease; }
        .banner-content h1 { font-size: 3.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
        .breadcrumb { font-size: 1.2rem; color: var(--gold); justify-content: center;}
        .breadcrumb a { color: #fff; }

        /* --- SECTION STYLES --- */
        .section-padding { padding: 90px 0; }
        .subtitle { color: var(--wood-brown); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; }
        .heading { font-size: 2.5rem; font-weight: 800; color: var(--primary-green); margin-bottom: 20px; }
        .text-desc { color: var(--gray-text); font-size: 1.05rem; line-height: 1.7; }

        
.about-section {
    padding: 100px 0;
    background-color: #F4F9F4; /* Very Light Green Background (Earthy) */
    overflow: hidden;
}

/* Image Composition Wrapper */
.about-img-wrapper {
    position: relative;
    padding-bottom: 50px; /* Space for overlay image */
    padding-right: 30px;
}

/* Main Image (Big) */
.about-img-wrapper .img-main {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(46, 79, 47, 0.15); /* Greenish Shadow */
    object-fit: cover;
}

/* Secondary Image (Overlapping) */
.about-img-wrapper .img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border: 10px solid #F4F9F4; /* Matches section background to create cut-out effect */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Experience Badge */
.exp-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background-color: #2E4F2F; /* Primary Green */
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(46, 79, 47, 0.3);
    z-index: 3;
    text-align: center;
    border-bottom: 4px solid #D4AF37; /* Gold Border */
}

.exp-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #D4AF37; /* Gold Color */
}

.exp-badge .text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content */
.section-subtitle {
    color: #D4AF37; /* Gold/Earth Tone */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    color: #2E4F2F; /* Primary Green */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-text strong {
    color: #2E4F2F;
    font-weight: 700;
}

/* Feature List Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.feature-item i {
    color: #2E4F2F; /* Green Icon */
    background: #e6f0e6; /* Light Green Circle */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
}

/* Button */
.btn-about {
    display: inline-block;
    padding: 12px 35px;
    background-color: #2E4F2F; /* Primary Green */
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #2E4F2F;
}

.btn-about:hover {
    background-color: transparent;
    color: #2E4F2F;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .section-title { font-size: 2.2rem; }
    .about-img-wrapper { margin-bottom: 40px; padding-right: 0; }
    .img-secondary { width: 45%; }
    .exp-badge { left: 0; }
}

/* --- CORE VALUES CARDS --- */
.value-card {
    background: var(--light-green);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
    margin-top: 45px;        
}

.value-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.v-icon {
    font-size: 2.5rem;
    color: var(--wood-brown);
    margin-bottom: 15px;
    margin-top: 15px;
}

.value-card h4 {
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}


        /* --- STORY & DESCRIPTION --- */
        .story-section {
    background: #f8f9fb;
}

.story-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    height: 380px;            /* <-- yahin height control hogi */
}

.story-img img {
    width: 100%;
    height: 100%;             /* important */
    object-fit: cover;        /* image crop hogi, stretch nahi */
    transition: transform 0.6s ease;
}

.story-img:hover img {
    transform: scale(1.08);
}

.story-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.35));
}

.story-content {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.story-subtitle {
    color: #c59d5f;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.story-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-points {
    padding-left: 0;
    list-style: none;
    margin-top: 20px;
}

.story-points li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

/* Mobile */
@media(max-width: 768px){
    .story-content {
        padding: 25px;
    }

    .story-img {
        height: 260px;
    }
}

      /* --- VISION & MISSION --- */
        .vision-mission-section { background: var(--light-green); }
        .vm-card {
            background: #fff; padding: 40px; border-radius: 12px; margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 5px solid var(--gold);
        }
        .vm-card h3 { color: var(--primary-green); font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }

        /* --- MATERIALS --- */
        .material-strip {
            background: #1a1a1a; padding: 40px 0; text-align: center;
        }
        .mat-tag {
            display: inline-block; background: #333; color: #ccc; 
            padding: 8px 20px; border-radius: 30px; margin: 5px; font-weight: 600;
            border: 1px solid #444; transition: 0.3s;
        }
        .mat-tag:hover { background: var(--gold); color: #000; border-color: var(--gold); }

        /* --- WHY CHOOSE US --- */
        .wcu-img-wrapper { position: relative; height: 500px; }
        .wcu-img-1 { position: absolute; top:0; left:0; width: 70%; height: 80%; object-fit: cover; border-radius: 10px; }
        .wcu-img-2 { position: absolute; bottom:0; right:0; width: 60%; height: 50%; object-fit: cover; border-radius: 10px; border: 8px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        
        .wcu-item { display: flex; margin-bottom: 30px; }
        .wcu-icon {
            min-width: 50px; height: 50px; background: var(--primary-green); color: #fff;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            margin-right: 20px; font-size: 18px;
        }
        .wcu-text h5 { font-weight: 700; color: var(--dark-text); }

        /* --- HOW WE WORK (MACHINERY) --- */
        .process-card {
            background: #fff; padding: 30px; border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05); text-align: center;
            position: relative; overflow: hidden; height: 100%; transition: 0.3s;
        }
        .process-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--primary-green); }
        .step-num {
            font-size: 3rem; font-weight: 900; color: rgba(0,0,0,0.05);
            position: absolute; top: 10px; right: 20px;
        }
        .process-icon { font-size: 2.5rem; color: var(--wood-brown); margin-bottom: 20px; }
        .process-card h4 { font-weight: 700; color: var(--primary-green); }

        /* --- TESTIMONIALS --- */
/* SECTION BG */
.testimonial-section {
    background: radial-gradient(circle at top, #f8faf8, #eef3ef);
    position: relative;
    overflow: hidden;
}

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 55px 40px 45px;
    border-radius: 26px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    transition: all 0.45s ease;
}

/* hover lift */
.testimonial-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 45px 90px rgba(0,0,0,0.18);
}

/* BIG QUOTE BG */
.quote-bg {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 140px;
    font-weight: 800;
    color: rgba(197,157,95,0.12);
    line-height: 1;
    pointer-events: none;
}

/* Avatar */
.avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -85px auto 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Text */
.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Name */
.t-name {
    font-weight: 800;
    color: var(--primary-green);
    font-size: 17px;
    display: block;
}

/* Stars */
.stars {
    color: #f4c430;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Rating summary */
.rating-summary {
    font-size: 15px;
    color: #666;
}

/* Floating animation */
.testimonial-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Mobile */
@media(max-width:768px){
    .testimonial-card {
        padding: 45px 28px 40px;
    }
}

      /* ================= FOOTER ================= */
.footer-logo {
    display: inline-block;
    max-height: 140px;
    overflow: hidden;
    margin-top: 0;
    line-height: 0;          /* Extra space remove karne ke liye */
    vertical-align: top;     /* Logo ko upar align karne ke liye */
}

.footer-logo img {
    height: 100%;
    width: auto;
    max-height: 140px;
    display: block;
    object-fit: contain;
}



footer {
    background: linear-gradient(180deg, #1a231b, #0f1511);
    color: #e0e0e0;
    padding: 90px 0 0;
    font-size: 16px;
   
    padding-bottom: 20px; /* neeche thoda space rahe */
}

.footer-widget {
    margin-bottom: 40px;
}

/* Headings */
.footer-widget h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-widget h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: -10px;
}

/* Paragraph */
.footer-widget p {
    line-height: 1.8;
    color: #cccccc;
}

/* Links */
.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #cccccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    transition: 0.3s;
}

.contact-list li:hover {
    transform: translateX(5px);
}

.contact-list i {
    color: var(--gold);
    font-size: 20px;
    margin-right: 15px;
}

/* Remove blue */
footer a,
footer a:visited {
    color: #cccccc;
    text-decoration: none;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    background: #0b0f0c;
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}


/* Contact */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Bottom Bar */
.copyright-area {
    background: #110a07;
    padding: 18px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: #1a100b;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 999;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
    .social-box {
        margin-top: 20px;
    }
    .social-box a {
        margin: 0 6px;
    }
}


/* 4. Intro Section (Dark) */
.intro-section { background: #2c1b12; color: #fff; }
.features-list-row { display: flex; flex-wrap: wrap; gap: 20px; }
.f-item { font-weight: 500; display: flex; align-items: center; gap: 8px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
    background: rgba(255,255,255,0.05); padding: 30px; text-align: center;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; transition: 0.3s;
}
.stat-box:hover { background: #d4af37; border-color: #d4af37; transform: translateY(-5px); }
.stat-box:hover h3, .stat-box:hover p { color: #1a0f0a; }
.stat-box h3 { font-size: 2.5rem; color: #d4af37; margin-bottom: 5px; }
.stat-box p { color: #ccc; margin: 0; text-transform: uppercase; font-size: 0.85rem; }
.full-width { grid-column: span 2; }

/* 5. Highlight Box */
.highlight-box {
    background: #fff; border-left: 5px solid #d4af37; padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.highlight-box h4 { font-size: 1.2rem; color: #2c1b12; margin-bottom: 5px; }

/* 6. Feature Image Cards (Why Choose Us) */
.bg-darker { background: #1a100b; }
.feature-image-card {
    background: #fff; border-radius: 10px; overflow: hidden; height: 100%; transition: 0.3s;
}
.feature-image-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2); }
.img-wrap { height: 200px; overflow: hidden; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.feature-image-card:hover .img-wrap img { transform: scale(1.1); }
.feature-image-card .f-content { padding: 25px; text-align: center; }
.feature-image-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #2c1b12; }
.feature-image-card p { font-size: 0.9rem; color: #666; margin: 0; }

/* Animations */
.reveal-up { opacity: 0; transform: translateY(40px); transition: 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: 0.8s ease; }
.active-anim { opacity: 1 !important; transform: translate(0) !important; }

/* Responsive */
@media(max-width: 992px) {
    .img-composition { margin-bottom: 50px; }
    .page-banner { height: 40vh; }
    .banner-content h1 { font-size: 2.5rem; }
}

/* =========================
   1. CONTACT US
========================= */
.contact-banner {
    position: relative;
    min-height: 70vh;
    background:
        linear-gradient(rgba(20,35,25,0.65), rgba(20,35,25,0.65)),
        url('../img/contactusbanner.jpg')
        center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}


.contact-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 60%, rgba(212,175,55,0.25));
}

.contact-banner h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 800;
    animation: fadeDown 1s ease forwards;
}

.contact-banner p {
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 15px auto 0;
    animation: fadeUp 1s ease forwards;
}

/* ===== Contact Section Headings ===== */

.contact-sub-heading {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-gold-text {
   color: var(--gold);
    font-size: inherit;       /* parent h1 ke size ko inherit kare */
    font-weight: 800;         /* bold maintain kare */
    display: inline;          /* inline-block ya block hata do */
    line-height: 1.2;         /* same line-height */
}

/* Description Text */
.contact-text-muted {
    font-size: 1rem;
    color: #6c757d;
    max-width: 650px;
}

/* Margin bottom replacement for mb-4 */
.contact-mb-4 {
    margin-bottom: 1.5rem;
}

/* =========================
   2. CONTACT FORM AREA
========================= */
.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    animation: fadeUp 1.1s ease forwards;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    background: #f6f7f6;
    border: 1px solid transparent;
    padding: 16px 18px;
    border-radius: 8px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.35s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
    outline: none;
}

/* Button */
.contact-form-wrapper button {
    background: linear-gradient(135deg, var(--gold), #9a6b2f);
    color: #1a100b;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.4s ease;
}

.contact-form-wrapper button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}

/* =========================
   3. CONTACT INFO PANEL
========================= */
.contact-info-wrapper {
    background: linear-gradient(180deg, #1f3327, #0f1a14);
    color: #fff;
    padding: 55px 45px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: fadeLeft 1.1s ease forwards;
}

.info-header p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* Info Cards */
.c-info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.c-info-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.c-info-card .icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--gold), #9a6b2f);
    color: #1a100b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
    transition: 0.4s ease;
}

.c-info-card:hover .icon-box {
    transform: rotate(12deg) scale(1.1);
}

.c-info-card .text-box h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #fff;
}

.c-info-card .text-box p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================
   4. MAP SECTION
========================= */
.map-section {
    margin-top: 60px;
    line-height: 0;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}

/* =========================
   5. ANIMATIONS
========================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* =========================
   6. RESPONSIVE
========================= */
@media (max-width: 992px) {
    .contact-banner {
        min-height: 55vh;
        margin-top: 70px;
    }

    .contact-info-wrapper {
        margin-top: 40px;
    }

    .contact-banner h1 {
        font-size: 2.3rem;
    }
}


/*our store */
.section-padding {
    padding: 90px 0;
}

.gold-text {
    color: var(--gold);
    font-size: inherit;       /* parent h1 ke size ko inherit kare */
    font-weight: 800;         /* bold maintain kare */
    display: inline;          /* inline-block ya block hata do */
    line-height: 1.2;         /* same line-height */
}

.sub-heading {
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ===============================
   1. HERO BANNER
================================ */
.store-banner {
    height: 85vh;
    background: url('../img/storebanner.jpg')
        center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 70, 45, 0.35),
        rgba(10, 40, 25, 0.65)
    );
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
    animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(212,175,55,0.7);
    color: #f4e2b8;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.banner-content h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

/* ===============================
   BUTTONS
================================ */
.btn-fill {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), #f1d27a);
    color: #1a100b;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
}

.btn-fill:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.35);
}

/* ===============================
   2. SHOWROOM CARDS
================================ */
.store-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.store-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.store-card:hover .card-img img {
    transform: scale(1.12);
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), #f1d27a);
    border-radius: 50%;
    color: #1a100b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.card-body {
    padding: 30px 25px;
    color: var(--primary-green);
}

/* ===============================
   3. VIDEO SECTION
================================ */
.video-section {
    position: relative;
    height: 520px;
    margin: 80px 0;
    overflow: hidden;
}

.video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15,50,30,0.55),
        rgba(10,30,20,0.8)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.play-btn {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: 0.4s;
}

.play-btn:hover {
    background: var(--gold);
    color: #1a100b;
    transform: scale(1.1);
}

/* ===============================
   4. LIVE FABRICATION - RESPONSIVE + ANIMATION
================================ */
.live-fabrication-section {
    background: var(--cream);
    padding: 80px 0;
    overflow: hidden;
}

.live-fabrication-section .sub-heading {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    animation: fadeUp 1s ease forwards;
}

.live-fabrication-section h2 {
     margin-bottom: 10px;  
    line-height: 1.1;      
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.live-fabrication-section h2 .gold-text {
    display: inline-block;
      line-height: 1.2;     
    margin-top: 4px;
}


.live-fabrication-section p {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #555;
    animation: fadeUp 1s ease 0.4s forwards;
    opacity: 0;
}

.live-fabrication-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-fabrication-section .feature-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.live-fabrication-section .feature-list li:nth-child(1) {
    animation-delay: 0.6s;
}
.live-fabrication-section .feature-list li:nth-child(2) {
    animation-delay: 0.8s;
}
.live-fabrication-section .feature-list li:nth-child(3) {
    animation-delay: 1s;
}

.live-fabrication-section .feature-list li i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* IMAGE WRAPPER ANIMATION */
.live-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.live-img-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: transform 0.5s ease;
}

.live-img-wrapper:hover img {
    transform: scale(1.05);
}

/* FLOATING BADGE */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: linear-gradient(135deg, var(--gold), #f1d27a);
    color: #1a100b;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
    animation: fadeUp 1s ease 1.2s forwards;
    opacity: 0;
}

.badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .live-fabrication-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .live-fabrication-section h2 {
        font-size: 2rem;
    }
    .live-fabrication-section p {
        font-size: 0.95rem;
    }
    .feature-list li {
        font-size: 0.9rem;
    }
    .live-img-wrapper {
        margin-top: 40px;
        transform: translateY(0);
        animation: none;
    }
}

@media (max-width: 576px) {
    .live-fabrication-section {
        padding: 40px 15px;
    }
    .feature-list li {
        gap: 8px;
    }
}

/* ===============================
   5. PLAN VISIT
================================ */
section.section-padding {
    padding: 60px 0; /* pehle 100+ tha */
}

.visit-step {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    overflow: hidden;
}
.visit-step::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #8a5a2b);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}
.visit-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.visit-step:hover::before {
    transform: scaleX(1);
}
.v-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    color: var(--gold);
    font-size: 1.9rem;
    transition: 0.4s ease;
}
.visit-step:hover .v-icon {
    background: var(--gold);
    color: #fff;
    transform: rotateY(360deg);
}
.visit-step h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.visit-step p {
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    section.section-padding {
        padding: 40px 0;
    }
}


/* ===============================
   6. PREMIUM CTA (FINAL FIX 🔥)
================================ */
.premium-cta-section {
    position: relative;
    padding: 60px 0 120px; /* upar kam, neeche same */
    margin-top: 0;        /* extra margin kill */
    background: var(--white);
    overflow: hidden;
}

.cta-image-wrapper {
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,0.45);
    position: relative;
}

.cta-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.45)
    );
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text-card {
    position: relative;
    z-index: 10;
    background: linear-gradient(
        135deg,
        rgba(23, 55, 39, 0.95),
        rgba(10, 30, 20, 0.95)
    ) !important;

    padding: 70px 60px;
    margin-left: -120px;
    border-left: 6px solid #d4af37;
    box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}

.gold-line {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0 30px;
}

.btn-premium {
    display: inline-block;
    padding: 15px 38px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-premium:hover {
    background: var(--gold);
    color: #1a100b;
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .cta-text-card {
        margin-left: 0;
        margin-top: -60px;
        padding: 40px 30px;
    }

    .cta-image-wrapper {
        height: 300px;
    }
}

 /* ================= SERVICES PAGE SPECIFIC CSS ================= */
        
        /* ---------------- PAGE BANNER ---------------- */
        .dg-page-banner{
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: url('../img/servicesbanner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

        .dg-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(46, 79, 47, 0.85), rgba(46, 79, 47, 0.6));
        }
        .dg-banner-content {
            position: relative; z-index: 2; color: #fff;
            animation: fadeUp 1.2s ease forwards;
        }
        .dg-banner-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; }
        .dg-breadcrumb { font-size: 1.1rem; color: var(--gold); }
        .dg-breadcrumb a { color: #ffffff; text-decoration: none; }

        /* ---------------- MAIN LAYOUT ---------------- */
        .dg-main-section { padding: 80px 0; }
        
        /* LEFT CONTENT */
        .dg-main-image {
            width: 100%; height: 400px; border-radius: 12px; overflow: hidden;
            margin-bottom: 35px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            animation: zoomFade 1.2s ease forwards;
        }
        .dg-main-image img { width: 100%; height: 100%; object-fit: cover; }

        .dg-heading { font-size: 2.2rem; font-weight: 800; color: var(--primary-green); margin-bottom: 20px; }
        .dg-sub-heading { font-size: 1.5rem; font-weight: 700; color: var(--wood-brown); margin-top: 40px; margin-bottom: 15px; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
        .dg-text { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 20px; }

        /* FEATURES GRID */
        .dg-features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; margin-bottom: 50px;
        }
        .dg-feature-item {
            background: #fff; padding: 30px 20px; text-align: center; border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: 0.4s ease; border: 1px solid #eee;
        }
        .dg-feature-item:hover { transform: translateY(-10px); border-color: var(--gold); }
        .dg-feature-item i { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 15px; }
        .dg-feature-item h4 { font-size: 1.2rem; font-weight: bold; color: var(--dark-text); }

        /* RIGHT SIDEBAR */
        .dg-sidebar-card {
            background: #fff; padding: 30px; border-radius: 14px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05); margin-bottom: 30px;
            border-top: 5px solid var(--primary-green);
        }
        .dg-sidebar-card h3 {
            font-size: 1.4rem; color: var(--primary-green); margin-bottom: 20px; font-weight: bold;
            border-bottom: 1px solid #eee; padding-bottom: 15px;
        }
        .dg-service-menu li { margin-bottom: 12px; }
        .dg-service-menu a {
            display: block; padding: 14px 18px; background: #f8f8f8; border-radius: 8px;
            color: #333; font-weight: 600; transition: 0.3s ease;
        }
        .dg-service-menu a:hover, .dg-service-menu li.active a {
            background: var(--primary-green); color: #fff; padding-left: 26px;
        }
        .dg-service-menu i { margin-right: 10px; }

        /* SIDEBAR CONTACT */
        .dg-sidebar-contact {
            background: linear-gradient(135deg, #2E4F2F, #1a2e1b);
            color: #fff; padding: 35px; border-radius: 14px; text-align: center;
        }
        .dg-sidebar-contact h3 { color: var(--gold); font-weight: bold; margin-bottom: 15px; }
        .dg-phone-btn {
            display: inline-block; margin-top: 18px; background: var(--gold);
            color: #fff; padding: 12px 26px; border-radius: 50px; font-weight: bold; transition: 0.3s;
        }
        .dg-phone-btn:hover { background: #fff; color: var(--primary-green); }

        /* ANIMATIONS */
        @keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes zoomFade { from { opacity: 0; transform: scale(1.05); } to { opacity: 1; transform: scale(1); } }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .dg-features-grid { grid-template-columns: 1fr; }
            .dg-banner-content h1 { font-size: 2.5rem; }
        }

        /*products page*/
h1, h2, h3, h4, h5, h6, p, a, span, button {
    font-family: 'Calibri', 'Candara', 'Segoe', 'Segoe UI', Optima, Arial, sans-serif !important;
}

/* -----------------------------------------------------------
   1. CATALOG HEADER (Premium Hero)
----------------------------------------------------------- */
.catalog-header {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1618220179428-22790b461013?q=80&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.catalog-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(46, 79, 47, 0.85), rgba(46, 79, 47, 0.6)); /* Green Overlay */
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.ls-2 { letter-spacing: 2px; font-weight: 600; font-size: 14px; color: var(--gold); }

.catalog-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 15px 0;
    text-transform: uppercase;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.catalog-header .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* -----------------------------------------------------------
   2. FILTER & HEADING SECTION
----------------------------------------------------------- */
.latest-product-section {
    padding: 80px 0 40px;
    background-color: var(--white);
}

.lp-heading { margin-bottom: 40px; }

.lp-subtitle {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lp-heading h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.lp-heading h2 span { color: var(--wood-brown); }

.lp-heading p { color: var(--gray-text); font-size: 1.1rem; }


/* -----------------------------------------------------------
   3. PRODUCT GRID (E-commerce Card Style)
----------------------------------------------------------- */
.product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 79, 47, 0.15); /* Green Shadow */
    border-color: var(--gold);
}

.img-box {
    position: relative;
    height: 320px; /* Tall Images */
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .img-box img {
    transform: scale(1.1);
}

/* Hover Overlay Effect */
.img-box .overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 79, 47, 0.85); /* Green Overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.product-card:hover .img-box .overlay {
    opacity: 1;
}

.img-box .overlay p {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.img-box .overlay h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.btn-view {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.3s, background 0.3s, color 0.3s;
}

.btn-view:hover {
    background: var(--gold);
    color: #fff;
}

/* Staggered Animation on Hover */
.product-card:hover .overlay p,
.product-card:hover .overlay h4,
.product-card:hover .btn-view {
    transform: translateY(0);
}

/* Load More Button */
#loadMoreBtn {
    border: 2px solid var(--primary-green) !important;
    color: var(--primary-green) !important;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

#loadMoreBtn:hover {
    background-color: var(--primary-green);
    color: var(--white) !important;
}


/* -----------------------------------------------------------
   PREMIUM CTA SECTION
----------------------------------------------------------- */
.cta-section-pro {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1504198458649-3128b932f49e?q=80&w=1600') fixed center/cover;
    overflow: hidden;
    margin-top: 80px;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 79, 47, 0.95), rgba(28, 50, 29, 0.9));
    z-index: 1;
}

.relative-z { position: relative; z-index: 2; }

.cta-frame-box {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(212, 175, 55, 0.3); /* Transparent Gold Border */
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.cta-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-subtitle {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-title span { color: var(--gold); }

.cta-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--primary-green);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-premium i { margin-left: 10px; transition: 0.3s; }

.btn-premium:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-premium:hover i { transform: translateX(5px); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .catalog-header h1 { font-size: 2.5rem; }
    .cta-frame-box { padding: 30px 20px; }
    .cta-title { font-size: 2rem; }
}
