/* Thasweerah Limited - Clean Corporate CSS (Inspired by DataHub Consulting) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Navy & Orange Accent Theme */
    --bg-white: #ffffff;
    --bg-light: #f4f6fa;
    --bg-light-alt: #ebf0f6;
    --bg-dark-navy: #0a152d;
    
    --primary: #0a152d; /* Deep Navy */
    --primary-light: #ff7a00; /* Orange Accent */
    --primary-glow: rgba(255, 122, 0, 0.08);
    
    --accent: #ff7a00;
    --accent-light: #ffa34d;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --text-primary: #0a152d;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-light: #cbd5e1;
    
    --border-light: #e2e8f0;
    --border-focus: #ff7a00;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-lg: 12px;
    --border-radius-md: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.04), 0 4px 6px -2px rgba(0,0,0,0.02);
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

/* Layout Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sticky Header */
header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.05);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}

header.scrolled .navbar {
    height: 62px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Menu Toggler Button */
.menu-toggler {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    z-index: 120;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-line {
    height: 2px;
    background-color: var(--text-primary);
    width: 100%;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hamburger Active Animation */
body.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Offcanvas Sidebar Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--bg-dark-navy);
    z-index: 110;
    padding: 6rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.menu-open .offcanvas-menu {
    transform: translateX(0);
}

.offcanvas-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto;
}

.offcanvas-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.offcanvas-nav a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.offcanvas-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offcanvas-contact-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.offcanvas-contact a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.offcanvas-contact a:hover {
    color: #ffffff;
}

/* Page Mask Overlay */
.page-mask {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    border: none;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.3s ease;
}

body.menu-open .page-mask {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background-color: var(--bg-light-alt);
    position: relative;
    overflow: hidden;
}

/* Animated background wrapper */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Base shape attributes with glassmorphic filter */
.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: multiply;
    animation: floatAround 25s infinite alternate ease-in-out;
}

/* Shape positions, sizes, and colors matched to the theme variables */
.shape-1 {
    top: -10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background-color: var(--primary-light); /* Corporate Blue */
    animation-delay: 0s;
}

.shape-2 {
    bottom: -10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background-color: var(--accent); /* Teal Accent */
    animation-delay: 5s;
}

.shape-3 {
    top: 30%;
    right: 30%;
    width: 350px;
    height: 350px;
    background-color: var(--primary); /* Deep Navy */
    animation-delay: 10s;
}

/* Smooth slow floating keyframe animation */
@keyframes floatAround {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -60px) scale(1.1);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.95);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.25rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1), 0 2px 4px -1px rgba(30, 58, 138, 0.06);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(30, 58, 138, 0.05);
    transform: translateY(-2px);
}

/* Intro Section (Restructured Section 1) */
.intro-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.intro-lead {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.intro-lead h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.split-text h4 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.split-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.split-list {
    list-style: none;
}

.split-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.split-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Styled Image Placeholders */
.image-placeholder {
    width: 100%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4rem 2rem;
    text-align: center;
}

.image-placeholder-icon {
    width: 40px;
    height: 40px;
    stroke: var(--text-light);
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

/* Services Grid Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 58, 138, 0.15);
}

.service-card.selected {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-lg);
}

.service-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-light-alt);
    transition: var(--transition-smooth);
}

.service-card:hover .service-num {
    color: var(--primary-glow);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--bg-light-alt);
}

.service-target {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 70%;
}

.select-indicator {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 1px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.service-card:hover .select-indicator {
    border-color: var(--primary-light);
}

.service-card.selected .select-indicator {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.select-indicator svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
    stroke-width: 3;
    display: none;
}

.service-card.selected .select-indicator svg {
    display: block;
}

/* Floating Request Bar */
.floating-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--bg-dark-navy);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    z-index: 90;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-bar.show {
    transform: translateX(-50%) translateY(0);
}

.floating-bar-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.floating-bar-text span {
    color: var(--primary-light);
    font-weight: 700;
}

.btn-floating {
    background-color: var(--primary-light);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.btn-floating:hover {
    background-color: #3b82f6;
}

/* Request Consultation Section */
.request-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.request-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.request-info h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.request-info p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.info-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-feature-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
    flex-shrink: 0;
}

.info-feature h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.info-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Form Styles */
.request-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Selected Services checklist under form */
.selected-services-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.selected-services-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-badge {
    background-color: var(--bg-light-alt);
    border: 1px solid var(--border-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-badge svg {
    width: 12px;
    height: 12px;
    cursor: pointer;
    stroke: var(--text-muted);
}

.selected-badge svg:hover {
    stroke: var(--error);
}

.no-services-placeholder {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark-navy);
    padding: 4rem 0;
    color: #94a3b8;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.modal-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .request-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .intro-lead h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-bar {
        width: calc(100% - 2rem);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        justify-content: space-between;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Service Details Modal Styles */
.details-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.details-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.details-modal-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.details-modal-overlay.show .details-modal-card {
    transform: scale(1);
}

.details-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    padding: 0.25rem;
}

.details-modal-close:hover {
    color: var(--text-primary);
}

.details-modal-close svg {
    width: 24px;
    height: 24px;
}

.details-modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light-alt);
    padding-right: 2.5rem;
}

.details-modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.details-modal-target {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.details-modal-body {
    margin-bottom: 2rem;
}

.details-modal-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.details-modal-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.details-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .details-services-grid {
        grid-template-columns: 1fr;
    }
}

.details-service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.details-service-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    stroke-width: 2.5;
    margin-top: 2px;
    flex-shrink: 0;
}

.details-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid var(--bg-light-alt);
    padding-top: 1.5rem;
}

/* Client Logo Carousel Section */
.logo-carousel-section {
    padding: 3.5rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.logo-carousel-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.logo-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.logo-carousel-track {
    display: flex;
    width: calc(240px * 14);
    animation: scrollLogos 25s linear infinite;
    gap: 4.5rem;
    align-items: center;
}

.logo-item {
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 0.75;
}

.logo-placeholder-svg {
    max-width: 100%;
    max-height: 100%;
    color: var(--text-muted);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 7 - 4.5rem * 7)); }
}

/* FAQ Accordion Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(30, 58, 138, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-right: 1.5rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s;
    padding: 0 2rem;
}

.faq-item.active .faq-body {
    max-height: 500px;
    opacity: 1;
    padding: 0 2rem 1.75rem;
}

.faq-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* REDESIGNED COMPONENT STYLES (Inspired by Datahub Consulting) */

/* 1. Header & Custom Logo */
header {
    background: #0a152d !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
header.scrolled {
    background: #080f22 !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
}
header .navbar {
    height: 90px;
}
header.scrolled .navbar {
    height: 70px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}
.logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}
.logo-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #ff7a00 !important;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-top: 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 3px;
    width: 100%;
    text-align: center;
}
.menu-toggler {
    color: #ffffff !important;
}
.hamburger-line {
    background-color: #ffffff !important;
}

/* 2. Redesigned Hero Section */
.hero {
    padding: 13rem 0 9rem !important;
    background: linear-gradient(rgba(10, 21, 45, 0.65), rgba(10, 21, 45, 0.8)), url('../images/hero_bg.png') no-repeat center center !important;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero h1 {
    font-size: 4rem !important;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.3rem !important;
    color: #e2e8f0 !important;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}
.btn-orange {
    background-color: #ff7a00 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.35);
    border: none;
    border-radius: 4px;
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}
.btn-orange:hover {
    background-color: #e66e00 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.45);
}

/* 3. Intro Section */
.intro-section {
    padding: 5.5rem 0 !important;
    background-color: #081023 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center;
}
.intro-lead h2 {
    font-size: 1.85rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.55 !important;
    max-width: 1000px;
    margin: 0 auto;
}

/* 4. Aviation Specialization Section */
.aviation-section {
    padding: 7.5rem 0;
    background-color: #f4f6fa;
}
.aviation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.aviation-img-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}
.aviation-img {
    width: 100%;
    height: auto;
    display: block;
}
.aviation-content h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #ff7a00;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.aviation-content h4 {
    font-size: 1.85rem;
    color: #0a152d;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    font-weight: 800;
}
.aviation-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.75rem;
}
.aviation-link {
    color: #ff7a00;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}
.aviation-link:hover {
    color: #e66e00;
    transform: translateX(4px);
}

/* 5. Divisions Section */
.divisions-section {
    padding: 7.5rem 0;
    background-color: #0a152d;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.divisions-section .section-header h2 {
    color: #ffffff !important;
}
.divisions-section .section-header p {
    color: #94a3b8 !important;
}
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.division-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}
.division-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 122, 0, 0.25);
    transform: translateY(-5px);
}
.division-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #ff7a00;
    padding-bottom: 0.75rem;
    font-weight: 700;
}
.division-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.division-card h4 {
    font-size: 0.8rem;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.division-list {
    list-style: none;
}
.division-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
    line-height: 1.45;
}
.division-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.65rem;
    color: #ff7a00;
}

/* 6. Redesigned Services Cards */
.services-section {
    background-color: #f4f6fa !important;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.25rem !important;
}
.service-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 10px rgba(10, 21, 45, 0.02) !important;
    transition: var(--transition-smooth) !important;
}
.service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(10, 21, 45, 0.08) !important;
    border-color: rgba(255, 122, 0, 0.2) !important;
}
.service-card.selected {
    border-color: #ff7a00 !important;
    box-shadow: 0 0 0 2px #ff7a00, 0 20px 40px rgba(10, 21, 45, 0.08) !important;
}
.service-icon-box {
    margin-bottom: 1.75rem;
    color: #ff7a00;
}
.service-icon-box svg {
    width: 44px;
    height: 44px;
    stroke: currentColor;
    stroke-width: 1.5;
}
.service-card h3 {
    font-size: 1.4rem !important;
    color: #0a152d !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
}
.service-desc {
    font-size: 0.95rem !important;
    color: #475569 !important;
    line-height: 1.65 !important;
    margin-bottom: 1.75rem !important;
}
.service-readmore {
    color: #ff7a00;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    margin-top: auto;
}
.service-card:hover .service-readmore {
    color: #e66e00;
    transform: translateX(4px);
}
.select-indicator {
    border-color: #cbd5e1 !important;
}
.service-card:hover .select-indicator {
    border-color: #ff7a00 !important;
}
.service-card.selected .select-indicator {
    background-color: #ff7a00 !important;
    border-color: #ff7a00 !important;
}

/* 7. Global Projects Section */
.projects-section {
    padding: 7.5rem 0;
    background-color: #0a152d;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.projects-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}
.projects-content h2 {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.projects-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.projects-map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #081023;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.projects-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 8. Stats/Customer Reviews Section */
.stats-section {
    padding: 7.5rem 0;
    background-color: #081023;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-section .section-header h2 {
    color: #ffffff !important;
}
.stats-section .section-header p {
    color: #94a3b8 !important;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-ring {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 1.75rem;
}
.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.stat-ring circle {
    fill: none;
    stroke-width: 6;
}
.stat-ring .ring-bg {
    stroke: rgba(255, 255, 255, 0.05);
}
.stat-ring .ring-fg {
    stroke: #ff7a00;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
}
.stat-label {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.45;
    font-weight: 500;
}

/* 9. Brands Section & Carousel */
.brands-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.brands-title {
    font-size: 1.85rem;
    color: #0a152d;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.brands-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 3.5rem;
}
.brands-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.brands-row {
    display: flex;
    justify-content: center;
    gap: 4.5rem;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.brand-logo-item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.brand-logo-item svg {
    max-height: 100%;
    width: auto;
    color: #475569;
}
.carousel-dots {
    display: flex;
    gap: 0.65rem;
    margin-top: 2rem;
}
.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.carousel-dot.active {
    background-color: #ff7a00;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    header .navbar {
        height: 80px;
    }
    .hero {
        padding: 9rem 0 6.5rem !important;
    }
    .hero h1 {
        font-size: 2.5rem !important;
    }
    .hero p {
        font-size: 1.15rem !important;
    }
    .intro-section {
        padding: 4rem 0 !important;
    }
    .intro-lead h2 {
        font-size: 1.45rem !important;
    }
    .aviation-section,
    .divisions-section,
    .services-section,
    .projects-section,
    .stats-section,
    .request-section {
        padding: 5rem 0 !important;
    }
    .brands-section,
    .faq-section {
        padding: 4.5rem 0 !important;
    }
    .aviation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6.5rem 0 4.5rem !important;
    }
    .hero h1 {
        font-size: 1.85rem !important;
    }
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 1.75rem !important;
    }
    .intro-section {
        padding: 3rem 0 !important;
    }
    .intro-lead h2 {
        font-size: 1.15rem !important;
        line-height: 1.55 !important;
    }
    .aviation-section,
    .divisions-section,
    .services-section,
    .projects-section,
    .stats-section,
    .request-section {
        padding: 4rem 0 !important;
    }
    .brands-section,
    .faq-section {
        padding: 3.5rem 0 !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .brands-row {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7.5rem 0 3.5rem !important;
    }
    .hero h1 {
        font-size: 1.55rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.25 !important;
    }
    .hero p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
    }
    .btn-orange {
        padding: 0.8rem 1.75rem !important;
        font-size: 0.95rem !important;
    }
    .intro-section {
        padding: 2rem 0 !important;
    }
    .intro-lead h2 {
        font-size: 1rem !important;
        line-height: 1.45 !important;
        font-weight: 500 !important;
    }
    .aviation-section,
    .divisions-section,
    .services-section,
    .projects-section,
    .stats-section,
    .request-section {
        padding: 3rem 0 !important;
    }
    .brands-section,
    .faq-section {
        padding: 2.5rem 0 !important;
    }
}
