/* =========================================
   1. HERO SECTION & HEADER
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

/* Logo Styling */
.logo-box {
    width: 70px;
    height: 70px;
    background-color: #ff8c00;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text-large {
    font-size: 24px;
    border-bottom: 1px solid white;
    margin-bottom: 2px;
    letter-spacing: 2px;
}

.logo-text-small {
    font-size: 8px;
}

/* Navbar */
.navbar {
    background-color: white;
    display: flex;
    align-items: stretch;
    padding: 0;
    border-radius: 2px;
    height: 60px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0 30px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    font-size: 16px;
    position: relative;
}

.nav-link:hover {
    color: #ff8c00;
}

.divider {
    width: 0;
    margin: 0;
    background-color: transparent;
}

.nav-link.active {
    color: #ff8c00;
    font-weight: bold;
}

/* Header Buttons */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    color: white;
}

.btn-contact {
    background-color: #ff8c00;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quote {
    background-color: #333;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 76vh;
    background-image: url('assests/images/servicesbackground.png');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    padding-top: 180px;
}

.hero-content h1 {
    color: white;
    font-size: 80px;
    font-weight: 300;
    margin-bottom: 20px;
}

.breadcrumbs {
    margin-top: 140px;
    color: #ccc;
    font-size: 18px;
    font-weight: 400;
}

.breadcrumbs .arrow {
    margin: 0 10px;
    font-size: 14px;
}

.breadcrumbs .current {
    color: #ff8c00;
}

/* =========================================
   2. DETAILED SERVICES SECTION
   ========================================= */

input[name="service-tab"] {
    display: none;
}

.content-grid {
    display: none;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    animation: fadeIn 0.5s ease-in-out;
}

#tab-1:checked ~ #content-1,
#tab-2:checked ~ #content-2,
#tab-3:checked ~ #content-3,
#tab-4:checked ~ #content-4,
#tab-5:checked ~ #content-5,
#tab-6:checked ~ #content-6 {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Active Tab Styling */
#tab-1:checked ~ .tabs-container label[for="tab-1"] .tab-icon-box,
#tab-2:checked ~ .tabs-container label[for="tab-2"] .tab-icon-box,
#tab-3:checked ~ .tabs-container label[for="tab-3"] .tab-icon-box,
#tab-4:checked ~ .tabs-container label[for="tab-4"] .tab-icon-box,
#tab-5:checked ~ .tabs-container label[for="tab-5"] .tab-icon-box,
#tab-6:checked ~ .tabs-container label[for="tab-6"] .tab-icon-box {
    background-color: #ff8c00;
    color: white;
}

#tab-1:checked ~ .tabs-container label[for="tab-1"] span,
#tab-2:checked ~ .tabs-container label[for="tab-2"] span,
#tab-3:checked ~ .tabs-container label[for="tab-3"] span,
#tab-4:checked ~ .tabs-container label[for="tab-4"] span,
#tab-5:checked ~ .tabs-container label[for="tab-5"] span,
#tab-6:checked ~ .tabs-container label[for="tab-6"] span {
    color: #fff;
    font-weight: 700;
}

#tab-1:checked ~ .tabs-container label[for="tab-1"],
#tab-2:checked ~ .tabs-container label[for="tab-2"],
#tab-3:checked ~ .tabs-container label[for="tab-3"],
#tab-4:checked ~ .tabs-container label[for="tab-4"],
#tab-5:checked ~ .tabs-container label[for="tab-5"],
#tab-6:checked ~ .tabs-container label[for="tab-6"] {
    background-color: #1a1a1a;
    border-color: #555;
}

/* Layout */
.services-details {
    padding: 80px 100px;
    background-color: #000;
    min-height: 100vh;
}

.section-header {
    margin-bottom: 40px;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.main-heading span {
    color: #ff8c00;
}

.sub-heading {
    color: #999;
    font-size: 16px;
}

/* Tabs */
.tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: none;
}

.tab-btn {
    background-color: #111;
    padding: 15px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    border: 1px solid #333;
    transition: 0.3s;
    min-width: 240px;
}

.tab-btn:hover {
    background-color: #1a1a1a;
    border-color: #444;
}

.tab-icon-box {
    width: 35px;
    height: 35px;
    background-color: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
    transition: 0.3s;
}

.tab-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    transition: 0.3s;
}

/* --- TAB IMAGES LOGIC --- */
.value-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    /* Inactive State: Grey */
    filter: invert(0.5); 
    transition: all 0.3s ease;
}

/* Hover & Active State: White */
.tab-btn:hover .value-img,
input[type="radio"]:checked + label .value-img,
#tab-1:checked ~ .tabs-container label[for="tab-1"] .value-img,
#tab-2:checked ~ .tabs-container label[for="tab-2"] .value-img,
#tab-3:checked ~ .tabs-container label[for="tab-3"] .value-img,
#tab-4:checked ~ .tabs-container label[for="tab-4"] .value-img,
#tab-5:checked ~ .tabs-container label[for="tab-5"] .value-img,
#tab-6:checked ~ .tabs-container label[for="tab-6"] .value-img {
    filter: brightness(0) invert(1); /* Pure White */
}

/* --- LEFT CARD --- */
.service-card {
    background-color: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.card-image {
    position: relative;
    width: 100%;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Icon (Orange Box) */
.floating-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #ff8c00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Image inside Floating Icon */
.float-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    /* Always White inside the Orange Box */
    filter: brightness(0) invert(1);
}

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.card-body p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-request {
    width: 100%;
    padding: 15px;
    background-color: #ff8c00;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-request:hover {
    background-color: #e07b00;
}

/* --- RIGHT LIST CONTAINER (NEW STYLE) --- */
.offers-list {
    background-color: #0a0a0a; /* Dark background for the box */
    border-radius: 12px;       /* Rounded corners */
    border: 1px solid #222;    /* Subtle border */
    padding: 30px;             /* Gap inside the box */
}

.offers-list h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.offer-subtitle {
    color: #999;
    margin-bottom: 30px;
    font-size: 16px;
}

/* List Items */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0; /* Reduced padding between items */
    border-bottom: none; /* No border between items */
}

.item-icon {
    color: #ff8c00;
    font-size: 18px;
    margin-top: 5px;
    min-width: 20px;
}

.item-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}

.item-text p {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding-left: 50px;
    }
    .services-details {
        padding: 50px;
    }
}

/* =========================================
   3. WORK & PORTFOLIO SECTION
   ========================================= */

.work-section {
    padding: 60px 100px;
    background-color: #000;
    color: white;
}

/* Heading Styling */
.work-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
}

.work-heading span {
    color: #ff8c00; /* Orange 'Checkout' */
}

/* Grid Layout for 3 Cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
    gap: 30px;
    margin-bottom: 80px;
}

/* Card Styling */
.work-card {
    background-color: #050505; /* Very dark grey background */
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}

.work-image {
    position: relative;
    height: 220px;
    width: 100%;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corner Icon on Image */
.corner-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #ff8c00;  <-- Is line ko maine remove kar diya hai */
    border: none; /* Border hatane ke liye */
}
.corner-icon .float-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* Is filter se logo ab Orange (Tej Brand color) dikhega */
    filter: sepia(100%) saturate(500%) hue-rotate(-15deg) brightness(100%);
}

.work-body {
    padding: 25px;
}

.work-body h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.work-body p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 65px; /* Keeps cards aligned even if text is short */
}

/* Read More Button (Dark Brownish Style) */
.btn-readmore {
    width: 100%;
    padding: 12px;
    background-color: #1a0f05; /* Dark brownish/black background */
    border: 1px solid #331f0a;
    color: #ff8c00;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.btn-readmore:hover {
    background-color: #ff8c00;
    color: black;
}

/* Portfolio CTA Section */
.portfolio-cta {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-cta h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.btn-portfolio {
    background-color: #ff8c00;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn-portfolio:hover {
    background-color: #e07b00;
}

/* Footer Text Block */
.footer-text-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto; /* Center align */
    padding-bottom: 50px;
}

.footer-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}

/* Highlighted Text (Orange/Yellowish) */
.highlight {
    color: #ffaa00; /* Bright orange/yellow */
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: 1fr; /* Stack cards on tablet/mobile */
    }
    .work-section {
        padding: 50px;
    }
}

/* footer */
/* ========================================= */
/* --- FOOTER SECTION --- */
/* ========================================= */

.site-footer {
    background-color: #000000;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    padding: 80px 80px 20px;
    width: 100%;
    border-top: 1px solid #111;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

/* --- Columns Layout --- */
.footer-col {
    flex: 1;
    min-width: 200px;
}

.contact-col { flex: 1.4; }
.links-col { flex: 0.7; }
.services-col { flex: 0.7; }
.map-col { flex: 1.5; }

/* --- Logo & Contact --- */
.footer-logo {
    margin-bottom: 35px;
}

.footer-logo img {
    height: 75px;
    object-fit: contain;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

.icon-box {
    width: 20px;
    display: flex;
    justify-content: center;
    margin-top: 4px;
    color: #fff;
}
.icon-box svg {
    width: 20px;
    height: 20px;
}

/* --- Headings --- */
.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

/* --- Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff7a2f;
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-link svg {
    width: 22px;
    height: 22px;
    color: #fff;
    transition: 0.3s;
}

.social-link:hover svg {
    stroke: #ff7a2f;
    color: #ff7a2f;
}

/* --- Map --- */
.map-container {
    width: 100%;
    height: 350px;
    background-color: #222;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
}

.legal-links {
    display: flex;
    gap: 40px;
}

.legal-links a {
    color: #777;
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .map-container {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links {
        gap: 20px;
        justify-content: center;
    }
}