/* Base Styles & Variables */
:root {
    --primary-color: #0B1A30;
    --orange-color: #F9590F;
    --text-color: #0B1A30;
    --text-light: rgba(11, 26, 48, 0.75);
    --bg-color: #ffffff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography Colors */
.text-orange {
    color: var(--orange-color);
}
.text-white {
    color: #fff;
}
.bg-dark-blue {
    background-color: var(--primary-color);
}
.bg-orange {
    background-color: var(--orange-color);
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px; /* Reduced vertical padding to minimum */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 1;
}

.header-logo img {
    height: 125px !important;
    max-height: 125px;
    width: auto;
    display: block;
    margin: -15px 0 -30px 0 !important; /* Shuffled top margin down to create space above the logo */
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.03);
}


.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.header-nav a {
    color: var(--primary-color);
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--orange-color);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: var(--shadow);
    z-index: 1000;
    border-radius: var(--radius);
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

.nav-dropdown-menu a {
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background-color: var(--bg-gray);
    color: var(--orange-color);
    border-bottom: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.header-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-dark-blue {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-dark-blue:hover {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.btn-link {
    display: inline-block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--orange-color);
    margin-left: 16px;
}

.btn-link:hover {
    color: var(--orange-color);
}

/* Hero Slanted */
.hero-slanted {
    position: relative;
    height: 580px;
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 57%; /* Pulled left to hit Products exactly */
    background: #fff;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%); /* Ends near Home */
    display: flex;
    align-items: stretch; /* Stretch to full height to align content */
    padding-left: 40px;
}

.hero-left-content {
    max-width: 520px;
    padding-right: 20px;
    padding-top: 65px; /* Adjusted to balance spacing above button */
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-color);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-subtitle .dot {
    color: var(--text-light);
    margin: 0 4px;
}

.hero-left-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto; /* Push buttons to the bottom of the flex container */
}

.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: #fff;
}

.hero-collage {
    display: flex;
    height: 100%;
    padding: 30px 40px 30px 0; /* Added 30px gap at top and bottom */
    gap: 8px;
    background: #fff;
    box-sizing: border-box;
}

.hero-collage img {
    object-fit: contain !important; /* Zoom out so the entire Burj Khalifa fits vertically */
    object-position: right center !important; /* Keep it anchored to the right */
}

.collage-main {
    flex: 1.2;
    height: 100%;
}
.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.collage-top {
    flex: 1;
}
.collage-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-bottom {
    flex: 1;
    display: flex;
    gap: 8px;
}
.collage-bottom img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.hero-sidebar-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #fff;
    z-index: 5;
    border-left: 1px solid var(--border-color);
}

.hero-right-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(11, 26, 48, 0.5);
    white-space: nowrap;
}

/* Info Bar */
.info-bar {
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.info-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}
.info-item:last-child {
    border-right: none;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.info-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* Services Cards Section */
.our-services {
    padding: 40px 0 0;
    background: #fff;
    scroll-margin-top: 100px; /* Offset for fixed header when navigating via hash anchor */
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Service Banners (Small Landscape Layout - Scrollable) */
.services-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 20px; /* Reduced margin to keep the visual gap identical */
    margin-bottom: 60px;
    overflow-x: auto;
    overflow-y: hidden; /* Prevent any accidental vertical wiggling */
    -webkit-overflow-scrolling: touch; /* Crucial for smooth momentum scrolling on iOS */
    padding-top: 22px; /* Increased to let the top shadow spread out */
    padding-bottom: 24px;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
    outline: none !important;
}
.services-list:focus, .services-list:focus-visible {
    outline: none !important;
    border: none !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-list::-webkit-scrollbar {
    display: none;
}

/* Grid layout for "View All" state */
.services-list.show-all-grid {
    flex-wrap: wrap !important;
    justify-content: flex-start;
    overflow: visible !important;
}

.service-card-l {
    display: flex;
    flex-direction: row;
    flex: 0 0 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    height: 330px;
    border: none;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-l::before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    width: 60%;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    z-index: 2;
}

/* Flat Card for Raw Mockup Tests */
.service-card-flat {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.service-card-flat::before {
    display: none;
}
.service-card-flat img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* changed from cover to contain to avoid cropping the mockup's native border */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

/* No-slope variation (straight vertical split) */
.service-card-l.no-slope::before {
    clip-path: none;
    width: 56%; /* Optimized width for more image exposure */
}
.service-card-l.no-slope .card-l-content {
    flex: 0 0 56%;
}
.service-card-l.no-slope .card-l-img {
    width: 44%;
}

@media (hover: hover) and (pointer: fine) {
    .service-card-l:hover, .service-card-l:active {
        transform: translateY(-5px);
        box-shadow: 0 0 25px rgba(249, 89, 15, 0.18); /* Centered orange glow spreading evenly to all sides */
        outline: 1px solid var(--orange-color); /* 1px thin orange outline to match about page images */
        outline-offset: -1px;
    }
}

.card-l-content {
    flex: 0 0 56%;
    padding: 24px 18px 20px 18px; /* Balanced padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Top align heading, line, lists, and descriptions */
    z-index: 3;
    background: transparent;
    position: relative;
}

.card-l-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card-l-line {
    display: block;
    width: 25px;
    height: 3px;
    background: rgba(249, 89, 15, 0.4);
    margin: 6px 0 10px 0; /* Reduced margin */
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.service-card-l:hover .card-l-line, .service-card-l:active .card-l-line {
    width: 45px;
    background: var(--orange-color);
}

.card-l-desc {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.card-l-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0; /* Restored tight margin to avoid large gaps in the middle */
}

.card-l-list li {
    padding: 4px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 12px;
}

.card-l-list li i {
    margin-right: 8px;
    font-size: 12px;
}

.card-l-btn {
    align-self: flex-start;
    border: 1px solid #E0B09E;
    color: var(--primary-color);
    padding: 3px 8px; /* Reduced padding */
    font-weight: 700;
    text-decoration: none;
    font-size: 8px; /* Reduced font size */
    letter-spacing: 0.3px;
    border-radius: 3px;
    transition: all 0.2s;
    margin-top: auto;
}

.card-l-btn:hover {
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: #fff;
}

.card-l-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44%;
    z-index: 1;
}

.card-l-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Focuses on the right side where objects typically are */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

/* Image zoom highlight on hover */
.service-card-l:hover .card-l-img img {
    transform: scale(1.06);
}


/* ================= MODEL 2: FULL BACKGROUND OVERLAY ================= */
.card-model-2 {
    height: 330px !important;
    background: #000000 !important;
}
.card-model-2::before {
    display: none !important;
}
.card-model-2 .card-l-img {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}
.card-model-2 .card-l-img img {
    object-position: center !important;
    opacity: 0.85 !important; /* Made default same as hover */
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.card-model-2 .card-l-content {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    background: linear-gradient(90deg, rgba(11, 26, 48, 0.76) 0%, rgba(11, 26, 48, 0.64) 35%, rgba(11, 26, 48, 0.17) 68%, rgba(11, 26, 48, 0.0) 100%) !important;
    padding: 10px 12px !important;
    transition: background 0.4s ease !important;
}
.card-model-2 .card-l-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
}
.card-model-2 .card-l-title .text-dark-blue {
    color: #fff !important;
}
.card-model-2 .card-l-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 11px !important;
    margin-bottom: 8px !important;
    line-height: 1.5 !important;
}
.card-model-2 .card-l-list li {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 12px !important;
    margin-bottom: 4px !important;
}
.card-model-2 .card-l-btn {
    border-color: #ffffff !important;
    color: #ffffff !important;
    transition: all 0.4s ease !important;
}

/* Hover/active state: Button and Gradient effects */
@media (hover: hover) and (pointer: fine) {
    .card-model-2:hover .card-l-content {
        background: linear-gradient(90deg, rgba(11, 26, 48, 0.92) 0%, rgba(11, 26, 48, 0.82) 35%, rgba(11, 26, 48, 0.45) 68%, rgba(11, 26, 48, 0.1) 100%) !important;
    }
    .card-model-2:hover .card-l-btn {
        border-color: #ffffff !important;
        color: #ffffff !important;
    }
    .card-model-2:hover .card-l-btn:hover {
        background: var(--orange-color) !important;
        border-color: var(--orange-color) !important;
        color: #ffffff !important;
    }
}



.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --- Who We Serve --- */
.who-we-serve {
    padding: 40px 0;
}
.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.serve-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(11, 26, 48, 0.15), 0 10px 25px rgba(11, 26, 48, 0.05);
    overflow: hidden;
    border: 1px solid rgba(11, 26, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(249, 89, 15, 0.18);
    border-color: var(--orange-color);
}
.serve-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.serve-card-content {
    padding: 30px;
}
.serve-card-content h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.serve-card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.serve-list {
    list-style: none;
    padding: 0;
}
.serve-list li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.serve-list li i {
    margin-top: 3px;
}

/* --- How We Work --- */
.how-we-work {
    padding: 40px 0;
    background: #fdfdfd;
}
.hww-zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0;
}
.hww-row {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hww-row.reverse {
    flex-direction: row-reverse;
}
.hww-image-wrap {
    flex: 1;
    position: relative;
}
.hww-image-wrap img {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}
.hww-step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--orange-color);
    color: white;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}
.hww-row.reverse .hww-step-number {
    left: auto;
    right: -20px;
}
.hww-content {
    flex: 1;
}
.hww-content h4 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.hww-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .hww-row, .hww-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hww-step-number {
        top: -15px;
        left: 20px;
        right: auto !important;
    }
    .hww-image-wrap img {
        height: 250px;
    }
}

/* --- Success Stories --- */
.success-stories {
    padding: 40px 0 0 0; /* Reduced bottom padding to remove extra space before footer */
}
.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* Thinner gap (layout thickness) */
}

.gallery-modern-card {
    position: relative;
    border-radius: 12px; /* Restored rounded edges, but more subtle */
    overflow: hidden;
    height: 320px;
    box-shadow: none;
    cursor: pointer;
}

.gallery-modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-card:hover img {
    transform: scale(1.08);
}

.gallery-modern-card:hover .gallery-modern-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-modern-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.6s 0.1s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.5;
    transform: translateY(15px);
    transition: transform 0.6s 0.2s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-btn {
    display: inline-block;
    color: var(--orange-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(15px);
    transition: transform 0.6s 0.3s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-card:hover .gallery-modern-overlay h4,
.gallery-modern-card:hover .gallery-modern-overlay p,
.gallery-modern-card:hover .gallery-modern-btn {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hww-line { display: none; }
    .hww-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hww-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .gallery-modern-grid { grid-template-columns: 1fr; }
    .gallery-modern-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .gallery-modern-overlay h4,
    .gallery-modern-overlay p,
    .gallery-modern-btn {
        transform: translateY(0);
    }
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--dark-blue);
    padding: 70px 0;
    margin-top: 20px;
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}
.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.5;
}
.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-secondary-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-secondary-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 24px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo-row {
    margin-bottom: 40px;
}

.footer-logo-row img {
    height: 110px !important; /* Increased from 65px to make it larger */
    width: auto;
    display: block;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column a {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--orange-color);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
.social-icons a:hover {
    border-color: var(--orange-color);
    color: var(--orange-color);
}

.contact-info-footer p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    word-break: break-word;
}
.contact-info-footer p i {
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

/* Custom Banners Section */
.detailed-services {
    padding: 60px 0 0;
    background: #fff;
}

.custom-banner {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin: 0 auto 40px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    height: 480px;
}

.banner-left {
    width: 60%;
    padding: 60px;
    position: relative;
    z-index: 2;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-quote-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    align-self: flex-start;
    transition: all 0.2s;
}

.btn-quote-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.banner-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.banner-divider {
    width: 60px;
    height: 4px;
    background: var(--orange-color);
    margin-bottom: 24px;
}

.banner-desc {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
    max-width: 80%;
}

.banner-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-list li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-floating-card {
    position: absolute;
    bottom: 40px;
    right: 25%;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-left {
        width: 100%;
        clip-path: none;
        background: rgba(255, 255, 255, 0.9);
    }
    .hero-right {
        width: 100%;
    }
    .hero-slanted {
        height: auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .info-item {
        flex: 1 1 40%;
        border: none;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    .header-nav, .header-action {
        display: none;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px; /* Smaller gap on mobile to allow text to fit side-by-side */
    }
    .footer-column:last-child {
        grid-column: span 2; /* Gives email address full width so it doesn't squash */
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding-bottom: 80px;
}
.faq-container {
    width: 100%;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px; /* Smooth rounded corners */
    margin-bottom: 20px;
    padding: 0 30px; /* Spacious horizontal padding */
    box-shadow: 0 4px 15px rgba(11, 26, 48, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0); /* Hidden/collapsed by default */
    width: 4px;
    height: 70%;
    background: var(--orange-color);
    border-radius: 0 4px 4px 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}
.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(249, 89, 15, 0.25);
    box-shadow: none;
}
.faq-item.active {
    background: #fdfbf9; /* Soft premium cream/warm-neutral color */
    border-color: rgba(249, 89, 15, 0.3);
    box-shadow: none;
}
.faq-item.active::before {
    transform: translateY(-50%) scaleY(1); /* Grows smoothly when active */
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    outline: none;
}
.faq-question span {
    padding-right: 20px;
    line-height: 1.45;
}
.faq-question:hover {
    color: var(--orange-color);
}
.faq-icon {
    font-size: 13px; /* Clean, elegant chevron size */
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--orange-color) !important;
}
.faq-item:hover .faq-icon {
    color: var(--orange-color) !important;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 24px 0;
    opacity: 1;
}
.faq-answer p {
    margin: 0;
    font-size: 14.5px;
    color: #52525b;
    line-height: 1.65;
}

/* Interactive Hover Accordion (Who We Serve) */
.serve-accordion {
    display: flex;
    width: 100%;
    height: 650px;
    gap: 10px;
    margin-bottom: 50px;
}

.serve-accordion-item {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.serve-accordion-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    transition: all 1.2s ease;
}

.serve-accordion-item:hover {
    flex: 3;
}

.serve-accordion-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.serve-accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.serve-accordion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 1.2s ease;
}

.serve-accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 20px;
    transition: all 1.2s ease;
}

.serve-accordion-item:hover .serve-accordion-icon {
    background: var(--primary-color);
}

.serve-accordion-item:hover .serve-accordion-content h3 {
    margin-bottom: 20px;
}

.serve-accordion-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.25, 1);
    transform: translateY(20px);
}

.serve-accordion-item:hover .serve-accordion-hidden {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
}

.serve-accordion-hidden p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.serve-accordion-hidden ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-accordion-hidden li {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.serve-accordion-hidden li i {
    color: var(--orange-color);
}

@media (max-width: 991px) {
    .serve-accordion {
        flex-direction: column;
        height: 1050px;
    }
    .serve-accordion-item {
        flex: 1;
    }
    .serve-accordion-item:hover {
        flex: 2;
    }
    .serve-accordion-content {
        padding: 25px;
    }
    .serve-accordion-hidden p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .serve-accordion-hidden li {
        margin-bottom: 6px;
    }
}
/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Animations and Minor Fixes */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-whatsapp {
    animation: pulse 2s infinite;
}

/* Timeline Connected Flow */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.timeline-line {
    position: absolute;
    left: 40px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.timeline-marker {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.timeline-step:hover .timeline-marker {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}
.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-grow: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}
.timeline-icon {
    font-size: 32px;
    color: var(--orange-color);
    margin-bottom: 15px;
}
.timeline-content h4 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.timeline-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline-line { left: 30px; }
    .timeline-marker { width: 60px; height: 60px; font-size: 18px; }
    .timeline-content { padding: 20px; }
    .timeline-content::before { top: 20px; }
}

/* AMC Package Enhancements */
.amc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amc-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

/* Stats Item Hover */
.stat-item {
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.1);
}

/* Testimonial Hover */
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
:root {
    --dark-blue: #0B1A30;
}
.text-dark-blue {
    color: var(--dark-blue) !important;
}
.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

/* Products Page Styles */
.banner-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
    margin-top: 20px;
}

.category-pill {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.category-pill:hover {
    color: var(--orange-color);
}

/* Contact Page Styles */
.contact-split {
    display: grid;
    grid-template-columns: 1.15fr 1.5fr;
    gap: 50px;
    max-width: 1150px;
    margin: 0 auto;
}

@media(max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.minimal-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media(max-width: 600px) {
    .minimal-form {
        grid-template-columns: 1fr;
    }
}

.form-group-minimal {
    display: flex;
    flex-direction: column;
}

.form-group-minimal input,
.form-group-minimal select,
.form-group-minimal textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(11, 26, 48, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: rgba(245, 247, 250, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--dark-blue);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02), 0 8px 20px rgba(11, 26, 48, 0.06);
    transition: all 0.3s ease;
}

.form-group-minimal input:focus,
.form-group-minimal select:focus,
.form-group-minimal textarea:focus {
    outline: none;
    border-color: rgba(255, 102, 0, 0.4);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.08);
}

.form-group-minimal input::placeholder,
.form-group-minimal textarea::placeholder {
    color: #94a3b8;
}

.form-group-minimal select:invalid {
    color: #94a3b8;
}

.product-category {
    padding-top: 80px;
    margin-bottom: 20px;
}
.product-category-header {
    text-align: left;
    margin-bottom: 40px;
}

.product-category-header .section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-category-header .category-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
    border-left: 4px solid var(--orange-color);
    padding-left: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.product-card {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-color);
    box-shadow: 0 20px 40px rgba(249, 89, 15, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.product-image-container {
    width: 100%;
    height: 250px;
    background-color: #ffffff; /* Complete white color */
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.04);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff; /* Complete white color */
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.btn-product-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(11, 26, 48, 0.2);
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.btn-product-enquiry i {
    margin-right: 8px;
    font-size: 15px;
}

.btn-product-enquiry:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 26, 48, 0.15);
}

@media(max-width: 768px) {
    .subnav-container {
        justify-content: flex-start;
    }
}

/* Scroll Reveal Utility Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Styles */
/* Hide mobile menu button by default */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 992px) {
    .home-page .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        box-shadow: none;
        border-bottom: none;
    }
    .header-container {
        padding: 5px 15px !important; /* Reduced vertical padding to make overall header shorter */
    }
    .header-logo img {
        height: 55px !important; /* Increased logo size slightly */
    }
    .mobile-menu-btn {
        background: rgba(255, 255, 255, 0.8) !important; /* Make button readable if image is dark */
        border-radius: 5px;
        padding: 5px 10px;
    }
    .section-container, .footer-container {
        padding: 0 15px !important;
    }
    .hero-slanted {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .hero-left, .hero-right, .hero-sidebar-right {
        width: 100%;
        position: relative;
        clip-path: none !important;
        height: auto;
    }
    .hero-left {
        padding: 25px 15px;
        order: 2;
    }
    .hero-left-content {
        padding-top: 10px !important; /* Removes the massive gap above AC MEP on mobile */
    }
    .hero-right {
        height: 280px; /* Slightly taller to accommodate header */
        clip-path: none !important;
        order: 1;
        padding: 0; /* Full bleed image on mobile */
    }
    .hero-collage {
        padding: 0;
        gap: 0;
        height: 100%;
        width: 100%;
    }
    .hero-collage img {
        object-fit: cover !important; /* Use cover so there's no empty space */
        object-position: center top !important;
        object-position: center !important;
        width: 100% !important;
        height: 100% !important;
    }
    .hero-sidebar-right {
        display: none;
    }
    
    .trust-bar-container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 0 10px;
    }
    .trust-item {
        width: 48%;
        justify-content: center;
        font-size: 13px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .services-overview-container {
        flex-direction: column;
    }
    .service-card-l-wrapper, .products-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1001;
    }
    
    .header-action {
        display: none;
    }
    
    .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .header-nav a {
        font-size: 16px;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
    }

    .header-nav .nav-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .header-nav .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
    }

    .header-nav .nav-dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        border: none;
        padding: 0 0 0 15px;
        display: none;
        width: 100%;
        background: transparent;
    }

    .header-nav .nav-dropdown-menu a {
        border-bottom: none;
        padding: 12px 0;
        font-size: 15px;
        color: #555;
    }

    .header-nav .nav-dropdown:hover .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    
    .header-logo img {
        height: 50px !important;
        margin-left: -10px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: scale(1.2);
        transform-origin: left center;
    }
    
    .hero-title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-title span {
        white-space: normal !important;
    }
    
    .hero-desc {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .trust-item {
        width: 100%;
    }
    .section-title {
        font-size: 24px !important;
    }

    /* Compacting How We Work Timeline */
    .hww-timeline-container {
        gap: 25px !important;
    }
    .hww-timeline-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
    .hww-timeline-title {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }
    .hww-timeline-desc {
        font-size: 13px !important;
    }

    /* Compacting Service Cards */
    .service-card-l {
        border-radius: 15px !important;
        flex: 0 0 85vw !important;
        max-width: 85vw !important;
        height: auto !important;
        min-height: 330px !important;
    }
    .card-model-2 {
        height: auto !important;
        min-height: 330px !important;
    }
    .card-l-content {
        padding: 15px !important;
    }
    .card-l-title {
        font-size: 20px !important;
    }
    .card-l-list li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    .card-l-desc {
        font-size: 13px !important;
    }

    /* Compacting Why Choose Us Cards */
    .premium-white-card {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    .premium-icon-circle {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
    .premium-card-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    .premium-card-desc {
        font-size: 13px !important;
    }

    /* Compacting FAQ Section */
    .faq-glass-card {
        padding: 20px 15px !important;
        border-radius: 12px !important;
    }
    .faq-glass-question {
        padding: 15px 40px 15px 0 !important;
        font-size: 15px !important;
    }
    .faq-glass-answer {
        font-size: 13px !important;
    }

    /* Fix Hero Image aspect ratio */
    .hero-right {
        height: 250px !important;
    }
    .hero-collage {
        height: 100% !important;
    }
    .hero-collage img {
        height: 100% !important;
        object-fit: contain !important;
    }

    /* Fix Trust Bar spacing */
    .trust-bar {
        padding: 15px 0 !important;
    }
    .trust-item {
        padding-top: 15px !important;
        border-top: 1px solid #eaeaea;
    }
    .trust-item:first-child {
        border-top: none;
        padding-top: 0 !important;
    }

    /* Fix Services Header so View All isn't overlapped */
    #servicesList .section-container > div:first-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    /* Reduce inline font-sizes for descriptions */
    .ps-banner-desc, .why-choose-us p {
        font-size: 15px !important;
    }
}
