/* =========================================
   1. HERO SECTION & HEADER (DESKTOP FIRST)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 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/services.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: 90px;
    font-weight: 400;
    margin-bottom: 235px;
    margin-left: -25px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.35;
    color: #ffffff;
    opacity: 0.9;
    max-width: 760px;
}

.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 (DESKTOP)
   ========================================= */

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,
#tab-7:checked ~ #content-7 {
    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,
#tab-7:checked ~ .tabs-container label[for="tab-7"] .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,
#tab-7:checked ~ .tabs-container label[for="tab-7"] 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"],
#tab-7:checked ~ .tabs-container label[for="tab-7"] {
    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: 14px;
}

/* Tabs */
/* ===== DESKTOP TABS STYLE ===== */

.tabs-container{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
    margin-bottom:50px;
}

.tab-btn{
    display:flex;
    align-items:center;
    gap:40px;

    background:#0f0f0f;
    border:1px solid #1f1f1f;

    padding:8px 24px 8px 8px;

    border-radius:16px;

    cursor:pointer;
    transition:all .3s ease;

    min-width:auto;
}

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

.tab-icon-box{
    width:40px;
    height:40px;

    background:#1a1a1a;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.tab-btn span{
    font-size:15px;
    font-weight:500;
    color:#9ca3af;
}

.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,
#tab-7:checked ~ .tabs-container label[for="tab-7"] .value-img {
    filter: brightness(0) invert(1); 
}
.tab-btn {
    display: flex;
    align-items: center;
    
    gap: 14px; 
    

    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    padding: 8px 24px 8px 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: all .3s ease;
    min-width: auto;
}

/* --- 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;
    border-bottom: none;
    position: relative;
    padding-left: 20px;
}

/* ===== LEFT VERTICAL LINE ===== */
.list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 2px;
    height: calc(100% - 12px);
    background-color: rgb(59, 19, 13);
}

.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 (DESKTOP)
   ========================================= */

.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' */
}

/* =========================================
   WORK CARD FIX - BUTTON ALWAYS BOTTOM
   ========================================= */

.work-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.work-body p {
    flex-grow: 1;   /* Text jitna bhi ho, space fill kare */
}

.btn-readmore {
    margin-top: auto;  /* Button hamesha bottom pe */
}
/* 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: none; 
}
.corner-icon .float-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    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 */
}


.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;

    text-decoration: none;   
    display: inline-block;   
}

.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;
}

.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 (DESKTOP) --- */
/* ========================================= */

.site-footer {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', 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;
    }
}

/* =========================================
   MOBILE RESPONSIVE (Max Width 768px) 
   ========================================= */
@media (max-width: 768px) {

    header {
        padding: 20px 20px;
    }

    .navbar, .header-actions {
        display: none; 
    }

@media (max-width: 768px) {

    .hero-section {
        height: 250px;
        min-height: auto;

        background-image: url('assests/images/mobileservice.png');
        background-size: 150%;   /* 👈 yaha zoom increase */
        background-position: center;
        background-repeat: no-repeat;
    }

}
    /* 3. Hero Content Formatting */
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 100px;
        justify-content: flex-start; 
    }

   .hero-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;        /* 👈 22px as you said */
        line-height: 32px;
        font-weight: 800;       /* ExtraBold */
        letter-spacing: 0px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }
    /* 4. Breadcrumbs ko bottom mein set karna */
    .breadcrumbs {
        position: absolute;
        bottom: 25px; 
        left: 20px;
        margin-top: 0;
        font-size: 14px;
    }

    /* 5. Services aur Work section ki padding */
    .services-details, .work-section {
        padding: 15px 20px;
    }

   @media (max-width: 768px) {

    .main-heading {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;     
        line-height: 32px;
        font-weight: 700;
        letter-spacing: 0px;
    }

}

    /* =========================================
       6. TABS EXACT MOBILE DESIGN
       ========================================= */
    .tabs-container {
        display: flex;
        flex-direction: row;  
        flex-wrap: wrap;      
        gap: 10px; 
        justify-content: flex-start;
        align-items: center;
    }

    /* Normal Tab Layout (Dark Background) */
    .tab-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #121212; 
        border: 1px solid #222;    
        padding: 6px 18px 6px 6px; 
        border-radius: 12px;       
        width: auto;          
        min-width: unset;
        flex: 0 0 auto;       
        box-sizing: border-box;
        margin: 0;
        cursor: pointer;
    }

    .tab-btn span {
        font-size: 14px;
        color: #888; /* Normal text color */
        font-weight: 500;
    }

    /* Icon Box Layout */
    .tab-icon-box {
        width: 32px;
        height: 32px;
        background-color: #1a1a1a; 
        border-radius: 8px; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tab-icon-box .value-img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        filter: invert(0.5); /* Normal icon grey color */
    }

    /* --- ACTIVE STATE LOGIC FOR MOBILE --- */
    
    #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,
    #tab-7:checked ~ .tabs-container label[for="tab-7"] .tab-icon-box {
        background-color: #FF8C00 !important; /* Orange background */
    }

    
    #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,
    #tab-7:checked ~ .tabs-container label[for="tab-7"] span {
        color: #ffffff !important;
        font-weight: 600;
    }

    /* Click hone par Icon White hoga */
    #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,
    #tab-7:checked ~ .tabs-container label[for="tab-7"] .value-img {
        filter: brightness(0) invert(1) !important;
    }

    /* =========================================
       7. Footer Adjustments
       ========================================= */
    .work-section {
        padding-bottom: 30px !important; 
    }

    .footer-text-block {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }

      .site-footer {
        margin-top: 0px !important;
        padding-top: 20px !important; 
    }
}

/* ===== MOBILE FOOTER PARAGRAPH LEFT ALIGN ===== */
@media (max-width: 768px) {

    .footer-text-block {
        text-align: left !important;
    }

    .footer-text-block p {
        text-align: left !important;
        margin: 0;   /* center auto margin remove */
    }

}

@media (max-width: 768px) {

    .portfolio-cta {
        margin-bottom: 30px !important;   
    }

    .portfolio-cta h3 {
        margin-bottom: 15px !important;
    }

    .work-grid {
        margin-bottom: 30px !important;
    }

    .footer-text-block {
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

}
@media (max-width: 768px) {

    .card-body h3 {
        font-size: 22px;     
        line-height: 30px;
        font-weight: 600;
    }

}

@media (max-width: 768px) {

    .offers-list h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;     
        line-height: 32px;
        font-weight: 700;
        letter-spacing: 0px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }

}
@media (max-width: 768px) {

    .item-text h4 {
        font-size: 16px;     
        line-height: 24px;
        font-weight: 600;
    }

}
@media (max-width: 768px) {

    .item-text p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;      
        line-height: 20px;    
        font-weight: 400;
        letter-spacing: 0px;
        color: #A0A0A0;       
    }

}
@media (max-width: 768px) {

    .work-heading {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;     
        line-height: 32px;
        font-weight: 700;
        letter-spacing: 0px;
        color: #FFFFFF;
    }

}
@media (max-width: 768px) {

    .work-body h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;      
        line-height: 28px;
        font-weight: 600;
        letter-spacing: 0px;
        color: #FFFFFF;
    }

}
@media (max-width: 768px) {

    .work-body p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;         
        line-height: 22.75px;   
        font-weight: 400;
        letter-spacing: 0px;
        color: #6A7282;          
    }

}
@media (max-width: 768px) {

    .portfolio-cta h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;       
        line-height: 30px;     
        font-weight: 600;      
        letter-spacing: 0px;
        color: #FFFFFF;
        text-align: center;
    }

}

/* Breadcrumb + hero content style same as About page */
.hero-section .breadcrumbs {
    position: absolute;
    bottom: 60px;
    left: 80px;
    z-index: 10;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.hero-section .breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 5px;
}

.hero-section .breadcrumbs span {
    background: linear-gradient(45deg, #FF6900, #FE9A00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        position: relative;
    }

    .hero-section .hero-content {
        width: 100%;
        max-width: none;
        height: 100%;
        padding: 0 24px 70px !important;
        text-align: left;
        justify-content: flex-end !important;
    }

    .hero-section .hero-content h1 {
        font-size: 22px !important;
        line-height: 1.1 !important;
        margin-bottom: 45px !important;
        font-weight: 700 !important;
         margin-left: -5px;
    }

    .hero-section .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.45 !important;
        font-weight: 400 !important;
        color: #ffffff !important;
        opacity: 0.9;
        max-width: 100%;
        margin: 0;
    }

    .hero-section .breadcrumbs {
        left: 24px !important;
        right: 24px;
        bottom: 24px !important;
        font-size: 14px !important;
    }
}

