/* ==========================================================================
   1. GLOBAL RESET & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-orange: #FF5E14;
    --dark-grey: #1D2024;
    --footer-bg: #171a1d; /* Slightly darker for footer */
    --border-grey: #2a2d32;
    --white: #FFFFFF;
    --text-light: #cccccc;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

p {
    font-family: 'Open Sans', sans-serif;
}
/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */

/* Top Bar Info */
.top-bar {
    background-color: var(--dark-grey);
    border-bottom: 4px solid var(--primary-orange);
    color: var(--white);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info { display: flex; }

.info-item {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-right: 1px solid var(--border-grey);
}

.icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: #16191d;
}

.icon-box i {
    color: var(--primary-orange);
    font-size: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    color: var(--white);
    font-size: 14px;
    margin-left: 18px;
    transition: 0.3s;
}

.social-links a:hover { color: var(--primary-orange); }

/* Main Navigation */
.main-header-wrapper {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
    display: block;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.navbar ul li a.active, .navbar ul li a:hover { color: var(--primary-orange); }

/* Header Actions & Search */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    padding-right: 20px;
    border-right: 1px solid #ddd;
    height: 30px;
}

.free-quote {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: 0.3s;
    border: 2px solid var(--primary-orange);
}

.free-quote:hover {
    background: transparent;
    color: var(--primary-orange);
}

.mobile-menu-btn{
    display: none;
}
/* Add !important if other styles are fighting against it */
.navbar ul li a.active {
    color: var(--primary-orange) !important;
}

/* --- Corrected Vertical Dropdown --- */
.navbar ul li {
    position: relative;
}

/* Ensure the dropdown container stacks items vertically */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--white);
    display: flex;          /* Use flex */
    flex-direction: column; /* Force vertical stacking */
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-orange);
    
    /* Animation settings */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}
ul.dropdown {
    gap: 0px;

}
i.fas.fa-chevron-down {
    padding-left: 5px;
}

/* Show on hover */
.navbar ul li:hover > .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Reset dropdown list items */
.navbar ul li .dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block; /* Ensure it takes full width */
}

/* Style the links inside the dropdown */
.navbar ul li .dropdown li a {
    padding: 12px 20px !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    display: block !important; /* Block ensures it fills the row */
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.3s;
    text-align: left; /* Aligns text to the left */
}

.navbar ul li .dropdown li a:hover {
    background: #f9f9f9;
    color: var(--primary-orange) !important;
    padding-left: 25px !important;
}

/* Remove border from last item */
.navbar ul li .dropdown li:last-child a {
    border-bottom: none;
}
/* ==========================================================================
   3. MOBILE OVERRIDES (Max 991px)
   ========================================================================== */
@media (max-width: 991px) {
    .top-bar, .header-actions, .navbar ul li a i { display: none !important; }

    .main-header {
        padding: 10px 30px; /* Fixed from 80px to allow corner alignment */
        height: 70px;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 26px;
        order: 1;
    }

    .logo { order: 2; }
    .logo img { max-height: 40px; }

    .navbar {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        z-index: 999;
        border-top: 2px solid var(--primary-orange);
    }

    .navbar.show-menu { display: block !important; }

    .navbar ul { flex-direction: column; gap: 0; }

    .navbar ul li { border-bottom: 1px solid #f2f2f2; }

    .navbar ul li a { padding: 18px 25px; width: 100%; }

    .navbar.show-menu::after {
        content: "FREE QUOTE";
        display: block;
        background: var(--primary-orange);
        color: white;
        text-align: center;
        padding: 15px;
        margin: 20px;
        font-weight: 700;
    }
}

/* ==========================================================================
   4. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #1d2024;
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Column 1 Specifics */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.c-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.c-text span {
    font-size: 12px;
    color: #999;
}

.c-text, .c-text a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.call-us {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

.call-us span { font-size: 13px; font-weight: 600; }
.call-us h2 { font-size: 28px; color: #fff; margin-top: 10px; }

/* Links Styling (Col 2 & 3) */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-links li a:hover { color: var(--primary-orange); padding-left: 5px; }

/* Opening Hours & Newsletter (Col 4) */
.opening-hours { list-style: none; padding: 0; margin-bottom: 30px; }
.opening-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}

.sub-title { margin-top: 40px; margin-bottom: 20px; }

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    background: #25282c;
    border: none;
    padding: 15px 20px;
    color: #fff;
    border-radius: 30px;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    background: var(--primary-orange);
    border: none;
    width: 50px;
    height: 40px;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #171a1d;
    padding: 25px 0;
    border-top: 1px solid #2a2d32;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-flex p { font-size: 13px; color: #888; }
.bottom-flex a { color: var(--primary-orange); text-decoration: none; }

.bottom-links { display: flex; list-style: none; }
.bottom-links li { margin-left: 20px; padding: 0 15px; border-left: 1px solid #333; }
.bottom-links li:first-child { border: none; }
.bottom-links li a { color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; }

/* Responsive */
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; gap: 20px; text-align: center; }
}
.main-footer .container{
    padding: 0 30px;
}

/* ==========================================================================
   5. HERO SLIDER SECTION
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 85vh; /* Large impactful height */
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .container {
    margin-left: 15%;
}
.slide-content {
    max-width: 800px;
    color: var(--white);
}

.since-text {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.slide-content h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 35px;
    text-transform: capitalize;
}

.slide-content .highlight {
    color: var(--primary-orange);
}

/* Hero Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-primary:hover { background: #e04d0d; }
.btn-outline:hover {
    background: var(--white);
    color: #333;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-nav:hover { background: var(--primary-orange); }
.prev { left: 20px; }
.next { right: 20px; }

/* ==========================================================================
   MOBILE HERO SLIDER (Max 991px)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-slider {
        height: fit-content; 
        min-height: 500px;
    }

    .slide-content {
        padding: 0 20px;
        text-align: left; /* Maintains the alignment from your reference */
    }

    .since-text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .slide-content h1 {
        font-size: 35px; /* Scaled down for mobile readability */
        line-height: 1.2;
        margin-bottom: 25px;
    }

    /* Buttons Stacked for easier tapping on mobile */
    .hero-btns {
        gap: 15px;
        width: 100%;
        flex-direction: column;
    }

    .btn-primary, .btn-outline {
        padding: 14px 20px;
        text-align: center;
        width: 100%;
        display: block;
        font-size: 13px;
    }

    /* Smaller Navigation arrows for mobile */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.5); /* Slightly darker for better visibility */
    }
    
    .prev { left: 10px; }
    .next { right: 10px; }
    .slide .container {
    margin-left: 10%;
}
}


/* Extra small devices (Phones) */
@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 35px;
    }
    
    .hero-slider {
        height: fit-content; 
    }
.slide .container{
    margin-left: 10%;
}
}

/* ==========================================================================
   6. ABOUT FEATURE SECTION
   ========================================================================== */
.about-feature-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.feature-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-content { flex: 1; }
.feature-grid-box { 
    flex: 1; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #f1f1f1;
}

/* Left Content Styles */
.feature-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #232323;
}

.text-highlight { color: #e04d0d; } /* Adjust color to match your theme */

.feature-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.chairman-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chairman-img-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.chairman-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.chairman-text h4 span { color: #999; font-weight: 400; }
.signature { max-width: 150px; opacity: 0.8; }

/* Right Grid Styles */
.feature-item {
    padding: 40px;
    border: 0.5px solid #f1f1f1;
    transition: 0.3s;
}

.feature-item:hover { background-color: #fafafa; }

.f-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #333;
}

.f-icon.highlight { color: #ff5e14; } /* The orange accent icons */

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .feature-flex { flex-direction: column; }
    .feature-content h2 { font-size: 32px; }
    .feature-grid-box { grid-template-columns: 1fr; }
}

/* ==========================================================================
   7. WHY CHOOSE US SECTION (UPDATED)
   ========================================================================== */
.why-choose-us {
    background-color: #F7F7F7; /* Section background */
    overflow: hidden;
}

.choose-flex {
    display: flex;
    flex-wrap: wrap;
    min-height: 650px; /* Ensures the image has a significant height */
}

/* Left side background image styling */
.choose-bg-image {
    flex: 0 0 50%;
    max-width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

/* Right side content styling */
.choose-content {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #F7F7F7; /* Exact background color requested */
    display: flex;
    align-items: center;
    padding: 50px;
}

.content-wrapper {
    max-width: 550px;
}

.sub-title {
    font-family: 'Poppins', sans-serif;
    color: #ff5e14;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.choose-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #232323;
    margin-bottom: 25px;
}

.choose-content p {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Check List Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #232323;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #ff5e14;
    font-size:20px;
}

/* Stats Styling */
.stats-grid {
    display: flex;
    gap: 60px;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.stat-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 5px;
}

.stat-item p {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #232323;
}

/* Responsive Fix for Mobile */
@media (max-width: 991px) {
    .choose-bg-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 350px; /* Fixed height for image on mobile */
    }
    
    .choose-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 20px;
    }
     .stat-item p, .check-list li{
        font-size: 13px;
    }
}

/* ==========================================================================
   8. OUR SERVICES SLIDER SECTION
   ========================================================================== */
.services-slider-section {
    padding: 100px 0;
    background-color: #fff;
}

.text-center { text-align: center; }

.section-title {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
    color: #232323;
}

.title-divider {
    width: 50px;
    height: 2px;
    background: #ff5e14;
    margin: 20px auto;
}

/* Service Card Layout */
.services-carousel {
    display: flex;
    gap: 30px;
}

.service-card {
    flex: 1;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.service-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Hover Overlay Effect */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay h3 { color: #fff; margin-bottom: 15px; font-size: 20px; }
.service-overlay p { color: #ccc; font-size: 14px; margin-bottom: 20px; }

.read-more {
    color: #ff5e14;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Static Footer below Image */
.service-footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #f1f1f1;
}

.service-footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 20px;
}

.footer-icon i {
    font-size: 35px;
    color: #ff5e14; /* Orange icons at the bottom */
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .services-carousel {
        flex-direction: column; /* Stacks cards on mobile */
    }
    
    .service-card {
        width: 100%;
    }
}

/* Slider spacing */
.service-card-item {
    padding: 15px; /* Creates the gap between cards */
    outline: none;
}

.service-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.slick-prev, .slick-next {
    width: auto !important;
    height: auto !important;
    background: transparent !important; /* Removes the white circle */
    border: none !important; /* Removes the border */
    z-index: 10;
    transition: 0.3s ease;
}

/* Positioning the arrows */
.slick-prev { left: 10 !important; }
.slick-next { right: 10 !important; }

/* Styling the actual icon/arrow */
.slick-prev:before, .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 30px !important; /* Larger, simple arrow size */
    color: #cccccc !important; /* Simple light grey color */
    opacity: 1 !important;
    transition: 0.3s;
}

/* Specific Arrow Icons */
.slick-prev:before { content: "\f104" !important; } /* FontAwesome angle-left */
.slick-next:before { content: "\f105" !important; } /* FontAwesome angle-right */

/* Hover State: Simple Color Change to Orange */
.slick-prev:hover:before, 
.slick-next:hover:before {
    color: #ff5e14 !important; /* Brand orange on hover */
}

/* Responsive: Hide on small mobile screens */
@media (max-width: 767px) {
    .services-slider { padding: 0; }
    .slick-prev, .slick-next { display: none !important; }
}

/* ==========================================================================
   CASES SECTION 
   ========================================================================== */
.cases-section {
    padding: 100px 0;
    background-color: #F7F7F7; /* Section Background */
}

/* Filter Menu Styling */
.filter-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    margin: 0 auto 50px;
    max-width: fit-content;
}

.filter-btn {
    border: none;
    background: none;
    padding: 12px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.filter-btn.active {
    background: #ff5e14; /* Brand Orange */
    color: #fff;
    border-radius: 30px;
}

/* Grid & Hover Styling */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-inner {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: rgba(0,0,0,0.4); /* Default darkish tint */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.4s ease;
}

/* Hover Effect: Background darkens and buttons appear */
.case-item:hover .case-overlay {
    background: rgba(0,0,0,0.8);
}

.case-overlay h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    transform: translateY(10px);
    transition: 0.4s;
}

.case-item:hover h4 {
    transform: translateY(0);
}

/* Orange Action Buttons */
.case-actions {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s;
}

.case-item:hover .case-actions {
    opacity: 1;
    transform: scale(1);
}

.case-actions a {
    width: 40px;
    height: 40px;
    background: #ff5e14; /* Orange circle buttons */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.case-actions a:hover {
    background: #fff;
    color: #ff5e14;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .cases-grid { grid-template-columns: 1fr; }
    button.filter-btn {
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    margin: 5px;}
}

/* ==========================================================================
   TEAM SECTION (MEET OUR EXPERTS)
   ========================================================================== */
.team-section {
    padding: 50px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.member-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* The specific orange line from your image */
.member-info {
    padding: 30px 20px;
    border-top: 3px solid #ff5e14; /* Brand Orange line */
}

.member-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #232323;
}

.designation {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #ff5e14;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.member-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer with Email Link */
.member-footer {
    border-top: 1px solid #eeeeee;
    padding: 15px;
}

.member-footer a {
    text-decoration: none;
    color: #232323;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.member-footer i {
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .team-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FUN FACTS SECTION (PARALLAX)
   ========================================================================== */
.fun-facts-section {
    padding: 60px 0;
    position: relative;
    /* Replace with your actual image path */
    background-image: url('images/types-of-carpentry-role-scaled.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

/* Dark Overlay to make white text pop */
.fun-facts-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent tint */
    z-index: 1;
}

.fun-facts-section .container {
    position: relative;
    z-index: 2;
}

.fun-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

/* Vertical separator lines between columns */
.fact-item {
    position: relative;
    padding: 20px;
}

.fact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* Icon & Typography Styling */
.fact-icon i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.fact-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
}

/* The "+" symbol next to numbers */
.fact-content h2::after {
    content: "+";
    color: #ffffff;
    font-size: 30px;
    vertical-align: top;
    margin-left: 2px;
}

.fact-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .fun-fact-grid { grid-template-columns: repeat(2, 1fr); }
    .fact-item::after { display: none; }
}

@media (max-width: 575px) {
    .fun-fact-grid { grid-template-columns: 1fr; }
    .contact-info-bar { 
        flex-direction: column;
}

   }
.consultation-faq-section {
    padding: 80px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    
}

.flex-row {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.column-left, .column-right {
    flex: 1;
    min-width: 450px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #232323;
}

.sub-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Form Styles */
.input-row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-full { margin-bottom: 20px; }

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #f1f1f1;
    background: #fdfdfd;
    font-size: 14px;
}

textarea { height: 130px; resize: none; }

.btn-send {
    padding: 15px 30px;
    border: 2px solid #232323;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-send:hover { background: #232323; color: #fff; }

/* Info Bar Styling */
.contact-info-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding: 25px;
    border: 1px solid #f1f1f1;
    background: #fdfdfd;
}

.info-box { display: flex; align-items: center; gap: 15px; }
.info-box i { font-size: 30px; color: #333; }
.info-details .label { display: block; font-size: 11px; color: #777; font-weight: 600; }
.info-details .value { font-size: 14px; color: #333; font-weight: 400; }
.divider-line { width: 1px; height: 40px; background: #eee; }

/* Accordion Styles */
.faq-accordion { margin-top: 10px; }

.accordion-item { margin-bottom: 15px; }

.accordion-header {
    background: #f7f7f7;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.accordion-content {
    display: none;
    padding: 20px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.accordion-item.active .accordion-content { display: block; }

@media (max-width: 991px) {
    .column-left, .column-right { min-width: 100%; }
}

/* Section Background */
.testimonial-section {
    padding: 100px 0;
    background-color: #F7F7F7; /* Requested Background */
}

/* Slide Spacing for Slick Slider */
.testimonial-item {
    padding: 20px 15px;
}

/* Individual Card Styling */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* Floating Orange Quote Icon */
.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #fff;
    color: #ff5e14; /* Brand Orange */
    font-size: 24px;
    padding: 0 10px;
}

.card-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 2px;
}

/* Typography & Ratings */
.testimonial-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 8px;
}

.rating i {
    color: #ff5e14; /* Orange stars */
    font-size: 12px;
    margin-right: 2px;
}

/* Custom Pagination Dots */
.slick-dots {
    bottom: -60px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #bbb;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #ff5e14 !important; /* Active orange dot */
}

@media (max-width: 575px) {
   .card-inner{
    flex-direction: column;
   }
   }

.map{
    margin: 10px 0;
}
.map .container iframe {
    border-radius: 20px;
}

.breadcrumb-section {
    position: relative;
    /* Replace with your actual image path */
    background-image: url('images/types-of-carpentry-role-scaled.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* This makes the background fixed */
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Darkened Overlay for Text Readability */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark tint from image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

.breadcrumb-content h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Breadcrumb Navigation Box */
.breadcrumb-nav {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 30px;
    border-radius: 5px;
}

.breadcrumb-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.breadcrumb-nav ul li {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.breadcrumb-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav ul li a:hover {
    color: #ff5e14; /* Brand Orange */
}

.breadcrumb-nav ul li.active {
    text-decoration: underline;
}

/* Responsive Handling */
@media (max-width: 768px) {
    .breadcrumb-section { height: 300px; }
    .breadcrumb-content h1 { font-size: 32px; }
}

.about-company-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Side: Image & Video Accents */
.about-image-wrapper {
    flex: 1;
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Orange Decorative Corner */
.decorative-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-top: 15px solid #ff5e14; /* Brand Orange */
    border-left: 15px solid #ff5e14;
    z-index: 1;
}

/* Video Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-link {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5e14;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
    transition: 0.3s;
}

.play-link:hover {
    transform: scale(1.1);
}

/* Right Side: Content Styling */
.about-content {
    flex: 1.2;
}

.sub-heading {
    display: block;
    font-size: 14px;
    color: #777;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 1.2;
    color: #232323;
    margin-bottom: 25px;
}

.main-title strong {
    font-weight: 800;
}

.description p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Orange Button */
.btn-read-more {
    display: inline-block;
    background: #ff5e14; /* Exact Orange */
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: #232323;
}

/* Responsive Logic */
@media (max-width: 991px) {
    .about-grid { flex-direction: column; text-align: left; }
    .about-image-wrapper { width: 100%; margin-bottom: 40px; }
}
 .about-choose-content,.about-why-choose-us{
    background-color: #1D2024;
 }
 
 .about-choose-content p, .about-choose-content h2 , .about-choose-content li , .about-choose-content h3{
    color:white;
 }

 /* Partner Logo Styles */
.partner-logo-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.brand-item {
    outline: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.brand-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

/* Vertical Divider Lines between logos */
.brand-inner::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70%;
    background: #eeeeee;
}

.brand-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%); /* Grayscale as per design */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.slick-slide{
        height: auto !important;
}
.featured-services-section {
    padding: 40px 0;
    background: #fff;
}

.services-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.services-info {
    flex: 0 0 35%; /* Left column width */
}

.services-info h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-bold {
    font-weight: 800;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #333;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    margin-top: 20px;
}

/* Service Card Styles */
.services-carousel {
    flex: 0 0 65%; /* Slider width */
}

.service-card {
    border: 1px solid #eee;
    margin: 0 10px;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.read-more {
    color: #333;
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
}

/* Slick Dots Styling */
.slick-dots li.slick-active button:before {
    color: #ff5e14 !important; /* Orange accent */
}
/* Service Card Footer Icons */
.footer-icon i {
    color: #ff5e14; /* Your brand orange */
    font-size: 28px; /* Standardizing icon size */
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Icon animation on card hover */
.service-card:hover .footer-icon i {
    transform: rotate(45deg); /* Subtle spin for the gear */
}

.read-more {
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: underline;
    font-size: 13px;
    text-transform: uppercase;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-top: 1px solid #eeeeee;
}

    @media (max-width: 480px) {
        .services-carousel{
            display: none !important;
        }
    }

    .consultation-left{
    flex: 0 0 45%;
    background-image: url('images/worker.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px; 
}

.services-grid-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light background to make white cards pop */
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 30px;
}

.service-grid-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-grid-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 40px;
    color: #ff5e14; /* Your brand orange */
    margin-right: 20px;
    padding-right: 20px;
    border-right: 2px solid #eee; /* The vertical line from the image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.service-grid-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .services-grid-layout {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 767px) {
    .services-grid-layout {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
    
    .service-grid-card {
        padding: 30px;
    }
}

/* ==========================================================================
   SERVICE PAGE HERO
   ========================================================================== */
.service-hero {
    padding: 10px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.service-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-hero-content {
    flex: 1;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-grey);
}

.hero-lead {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}

.service-hero-content p {
    color: #666;
    margin-bottom: 30px;
}

/* Image Side Styling */
.service-hero-image {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    padding-left: 30px;
}

.image-stack::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 80%;
    height: 100%;
    border: 10px solid #f7f7f7;
    z-index: 1;
}

.main-img {
    width: 100%;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 0;
    background: var(--primary-orange);
    color: white;
    padding: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 2px;
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 800;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}
.single-feature-flex{
    display: flex;
    flex-direction: column;
}
.single-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.single-feature-content h2, .single-feature-content p {
    text-align: center;
}
.single-feature-grid-box { 
    flex: 1; 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #f1f1f1;
}
.single-section-title {
    max-width: 100%;
    margin: 0 auto 60px;
}
/* Responsive */
@media (max-width: 991px) {
    .service-hero-flex {
        flex-direction: column;
        gap: 80px;
    }
    
    .service-hero-content {
        text-align: center;
    }

    .service-hero-content h1 {
        font-size: 36px;
    }

    .image-stack {
        padding-left: 0;
    }
    .single-feature-grid-box { 
       grid-template-columns: repeat(2, 1fr);
 
}
}

.service-grid-card * {
    text-decoration: none !important;
}