:root {
    /* Premium Corporate Palette */
    --color-primary: #2f8ccf;
    /* Thulasi Blue */
    --color-primary-light: #5baae0;
    /* Lighter Blue */
    --color-primary-dark: #1a5f8b;
    /* Darker Blue */
    --color-accent: #f59e0b;
    /* Amber 500 */
    --color-accent-hover: #d97706;
    --color-bg: #f8fafc;
    /* Slate 50 */
    --color-bg-alt: #fff;
    /* White */
    --color-text-main: #1e293b;
    /* Slate 800 */
    --color-text-muted: #64748b;
    /* Slate 500 */
    --color-border: #e2e8f0;
    /* Slate 200 */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-container: 1200px;
    --section-padding: 6rem 2rem;

    /* Mobile Overrides */
    --section-padding-mobile: 3.5rem 1.25rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    h1 {
        font-size: 2.25rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed header */
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Logo Image resizing */
.logo-image {
    height: 48px;
    /* Adjust as needed based on aspect ratio */
    width: auto;
    max-width: 200px;
    /* Prevent being too wide */
    object-fit: contain;
    display: block;
}

.drawer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer img {
    max-width: 200px;
    height: auto !important;
}

.footer-logo {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
    .footer-logo {
        height: 45px;
    }
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 83, 9, 0.2);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: color var(--transition-fast);
}

.nav-link:not(.btn):hover {
    color: var(--color-accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed header */
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    overflow: hidden;
}

/* Abstract Background Shapes for Hero */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 83, 9, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 50px;
    left: -50px;
    border-radius: 50%;
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* More space for header */
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

.hero-text-col {
    max-width: 600px;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Image Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 450px;
    /* Fixed height for stability */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
    transform: scale(0.95);
    display: flex;
    /* Center img */
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(47, 140, 207, 0.2));
}

.carousel-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(47, 140, 207, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .hero-carousel {
        height: 350px;
        /* Smaller height on mobile */
        max-width: 100%;
        /* Utilize full width */
    }

    .carousel-dots {
        bottom: -30px;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge {
    display: inline-block;
    background: rgba(47, 140, 207, 0.1);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(47, 140, 207, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.2;
    }
}

.hero-text {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text-col {
        margin: 0 auto;
    }

    .hero-image-col {
        order: -1;
        /* Image on top for mobile */
    }

    .hero-img {
        max-width: 100%;
        margin-top: 2rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-outline {
    border: 2px solid var(--color-border);
    background: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    /* Align to top for long content */
}

/* Make image sticky for better long-content reading experience */
.about-image {
    position: sticky;
    top: 6rem;
    /* Adjust based on navbar height */
    align-self: start;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        position: relative;
        /* Reset sticky on mobile */
        top: 0;
    }
}

.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
}

.check-icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.feature-list span {
    color: var(--color-text-muted);
}

/* About Typography & Layout Styles */
.about-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-main);
    padding-left: 1.5rem;
    border-left: 5px solid var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.highlight-box {
    background: linear-gradient(to right, rgba(47, 140, 207, 0.05), transparent);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(47, 140, 207, 0.1);
    margin: 2rem 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--color-text-main);
    font-weight: 500;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.3;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: #f1f5f9;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all var(--transition-medium);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(47, 140, 207, 0.12);
    border-color: rgba(47, 140, 207, 0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(47, 140, 207, 0.08);
    /* Lighter primary bg */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: all var(--transition-medium);
    color: var(--color-primary);
}

.service-card:hover .icon-box {
    background-color: var(--color-primary);
    transform: rotate(5deg) scale(1.1);
    color: white;
    box-shadow: 0 10px 20px rgba(47, 140, 207, 0.3);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Hide old link arrow if present, though we will remove from HTML */
.link-arrow {
    display: none;
}

/* About Page Styles Enhanced */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, #f8fafc);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-vision-section {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(47, 140, 207, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(47, 140, 207, 0.15);
    border-color: rgba(47, 140, 207, 0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(47, 140, 207, 0.1));
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.mission-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: var(--color-primary);
    color: white;
}

/* Client Logo Grid Section (Split Layout) */
.clients-grid-section {
    padding: 6rem 0;
    background-color: white;
}

.grid-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.grid-title-col {
    flex: 1;
}

.grid-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.grid-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.grid-logos-col {
    flex: 2;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 columns for better density with 45 logos */
    border: 1px solid #f0f0f0;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    /* Reduced padding for more logos */
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    min-height: 100px;
}

.logo-box:nth-child(5n) {
    border-right: none;
}

.logo-box:nth-last-child(-n+5) {
    border-bottom: none;
}

.logo-box:hover {
    background-color: #f8fafc;
}

.logo-box img {
    max-width: 100%;
    max-height: 45px;
    /* Slightly smaller for dense grid */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .logo-box:nth-child(5n) {
        border-right: 1px solid #f0f0f0;
    }

    .logo-box:nth-child(4n) {
        border-right: none;
    }

    .logo-box:nth-last-child(-n+4) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .grid-split {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .grid-logos-col {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-box:nth-child(4n) {
        border-right: 1px solid #f0f0f0;
    }

    .logo-box:nth-child(3n) {
        border-right: none;
    }

    .logo-box {
        border-bottom: 1px solid #f0f0f0;
    }

    .logo-box:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-box:nth-child(3n) {
        border-right: 1px solid #f0f0f0;
    }

    .logo-box:nth-child(2n) {
        border-right: none;
    }

    .logo-box:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .grid-main-title {
        font-size: 1.8rem;
    }
}

.carousel-slide img,
.carousel-slide span {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
}



/* Mobile Drawer Menu */
/* Mobile Drawer Menu */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
}

.drawer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    color: var(--color-primary);
}

.drawer-nav {
    flex: 1;
    padding: 1.5rem 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.drawer-link .icon {
    margin-right: 1rem;
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
    display: inline-block;
}

.drawer-link:hover,
.drawer-link.active {
    background-color: #f1f5f9;
    color: var(--color-primary);
    transform: translateX(4px);
}

.drawer-footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    background-color: #f8fafc;
}

/* CTA */
.cta {
    background-color: var(--color-primary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #020617;
    /* Darker than primary */
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    /* Correction */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Media Queries */
/* Expand mobile view to include Tablets and Small Laptops */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .navbar-content {
        justify-content: center;
        /* Center the logo */
        position: relative;
        /* Context for absolute toggle */
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
        position: absolute;
        /* Take out of flow */
        left: 1.5rem;
        /* Alignment with container padding */
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        order: initial;
        /* Reset order */
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Removed legacy nav-links.active styles as we use drawer now */
}

/* Global Mobile Responsiveness */
/* Global Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.2rem;
        word-wrap: break-word;
        /* Prevent long words breaking layout */
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo-image {
        max-width: 130px;
    }

    .drawer-link {
        padding: 0.8rem 1rem;
    }

    .mobile-toggle {
        left: 1.25rem;
        /* Match small screen padding */
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Fix for very small devices (Galaxy Fold, etc) */
@media (max-width: 350px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .mobile-drawer {
        width: 85%;
        /* Make drawer responsive width on tiny screens */
    }
}

/* Page Header */
.page-header {
    background-color: var(--color-background-alt);
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(47, 140, 207, 0.1);
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }
}


/* Contact Info Cards */
.contact-info-cards {
    padding: 3rem 0;
    margin-top: -2rem;
    /* Pull up closer to header */
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow like image */
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    background: white;
    /* Ensure bg is white */
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    font-size: 1.25rem;
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Services Page Styles */
.services-wrapper {
    padding: 2rem 0 4rem;
}

.service-detail-section {
    padding: 4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail-section:last-child {
    border-bottom: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-grid.reverse .service-detail-image {
    order: 2;
}

.service-detail-grid.reverse .service-detail-content {
    order: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.service-detail-image img:hover {
    transform: scale(1.02);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

@media (max-width: 900px) {

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-grid.reverse .service-detail-image {
        order: 1;
        /* Image always top on mobile */
    }

    .service-detail-grid.reverse .service-detail-content {
        order: 2;
    }
}

/* CTA Banner with Form */
.cta-banner {
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.1;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-content ul {
    margin-bottom: 2rem;
}

.cta-content li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-content li span {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-form-card h3 {
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.compact-form .form-group {
    margin-bottom: 1.2rem;
}

.compact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.4rem;
}

.compact-form input,
.compact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
    background: #f8fafc;
}

.compact-form input:focus,
.compact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(47, 140, 207, 0.1);
}

.compact-form button {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem;
}

@media (max-width: 900px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-form-card {
        text-align: left;
    }

    .cta-content li {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Nav Dropdown */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.arrow-icon {
    font-size: 0.7em;
    transition: transform 0.2s;
}

.nav-item-dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: left;
}

.dropdown-link:hover {
    background-color: #f1f5f9;
    color: var(--color-primary);
    transform: translateX(4px);
}

/* New Active Nav State (Pill style) */
.nav-link.active {
    color: var(--color-primary);
    background-color: rgba(47, 140, 207, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link:not(.active):not(.btn) {
    padding: 0.5rem 1rem;
}

/* Mobile Dropdown styles */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 1rem;
    background: rgba(0, 0, 0, 0.03);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-dropdown-content.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-sublink {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sublink:last-child {
    border-bottom: none;
}

.mobile-sublink:hover {
    color: var(--color-primary);
    background: rgba(0, 0, 0, 0.02);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-img-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-row:hover .service-img-premium {
    transform: scale(1.05);
}

/* Services Page Redesign - Modern / Glassmorphism */

.services-hero {
    padding: 8rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(47, 140, 207, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent 40%);
    text-align: center;
}

.services-wrapper-modern {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding-bottom: 6rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Alternating Backgrounds */
.service-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(47, 140, 207, 0.2);
}

/* Zigzag Layout */
.service-row.reverse .service-image-col {
    order: 1;
}

.service-row.reverse .service-content-col {
    order: 0;
}

/* Image Column */
.service-image-col {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient Placeholders since we missed image quota */
.img-gradient-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.grad-1 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.grad-2 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.grad-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.grad-4 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.grad-5 {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.grad-6 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Content Column */
.service-content-col {
    padding: 1rem;
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(47, 140, 207, 0.1);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 0;
}

.service-content-col h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--color-text-main), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Fallback needs care, but mostly supported */
    position: relative;
    z-index: 1;
}

/* Fallback for text gradient if needed */
@supports not (background-clip: text) {
    .service-content-col h2 {
        background: none;
        color: var(--color-text-main);
    }
}

.service-content-col p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modern-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-list li {
    background: rgba(47, 140, 207, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-list li::before {
    content: '•';
    color: var(--color-accent);
    font-size: 1.5em;
    line-height: 0;
}

/* Responsive */
@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-row.reverse .service-image-col {
        order: -1;
        /* Image always top on mobile */
    }

    .service-image-col {
        height: 250px;
    }

    .service-content-col h2 {
        font-size: 1.8rem;
    }
}

/* Content Updates: Our Strengths (About) */
.strengths-section {
    padding: 4rem 0;
    background-color: #f8fafc;
    margin-bottom: 4rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.strengths-content h3 {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.strengths-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.features-list li:hover {
    transform: translateX(5px);
    border-color: rgba(47, 140, 207, 0.2);
}

.check-icon {
    color: var(--color-accent);
    background: rgba(245, 158, 11, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Content Updates: Client Coverage (Home) */
.client-coverage-section {
    padding: 4rem 0;
    /* Reduced padding */
    background: radial-gradient(circle at 10% 20%, rgba(47, 140, 207, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 20%),
        linear-gradient(to bottom, #f8fafc, #ffffff);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.client-coverage-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    position: relative;
    z-index: 1;
}

.client-coverage-section .section-subtitle {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* Marquee Container */
.industry-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.industry-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.industry-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
        /* Scroll half the track (since duplicated) */
    }
}

.industry-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    /* Compact padding */
    border-radius: 50px;
    /* Pill shape for single row */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;


    /* Footer Social Media Icons */
    .footer .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .footer .social-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer .social-icon:hover {
        background-color: var(--color-primary);
        transform: translateY(-3px);
        color: white;
    }

    /* Footer Business Hours */
    .footer .hours {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .hours strong {
        color: white;
        display: block;
        margin-bottom: 0.5rem;
    }

    /* Scroll to Top Button */
    .scroll-top-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 50px;
        height: 50px;
        background-color: var(--color-primary);
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .scroll-top-btn.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        background-color: var(--color-primary-dark, #2374b0);
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(47, 140, 207, 0.3);
    }

    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--color-primary);
    white-space: nowrap;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(47, 140, 207, 0.15);
    background: white;
    border-color: var(--color-primary);
}

.industry-icon {
    font-size: 1.5rem;
}

.industry-name {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .industry-track {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
        width: 100%;
    }

    .industry-marquee-container {
        mask-image: none;
        -webkit-mask-image: none;
    }

    /* Hide duplicated items on mobile to reduce clutter */
    .industry-card:nth-child(n+8) {
        display: none;
    }

    .industry-card {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        white-space: normal;
        flex: 1 1 calc(50% - 1rem);
        min-width: 140px;
        justify-content: flex-start;
    }

    .client-coverage-section {
        padding: 3rem 0;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    color: white;
}

/* Business Hours */
.footer-contact .hours {
    margin-top: 1rem;
}

.footer-contact .hours strong {
    color: white;
    display: inline;
    margin-right: 0.5rem;
}

.footer-contact .hours p {
    display: inline;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--color-primary-dark, #2374b0);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(47, 140, 207, 0.3);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* Our Strengths Section - Compact Design */
.strengths-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.strengths-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    border-left: 3px solid var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.strength-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(47, 140, 207, 0.15);
    border-left-color: var(--color-primary-dark);
}

.strength-icon-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: transform 0.3s ease;
}

.strength-item:hover .strength-icon-small {
    transform: scale(1.05);
}

.strength-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
    font-family: var(--font-heading);
}

.strength-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .strengths-section {
        padding: 2.5rem 1.5rem;
    }

    .strengths-compact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .strength-item {
        padding: 1rem;
    }

    .strength-icon-small {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.2rem;
    }

    .strength-text h4 {
        font-size: 1rem;
    }

    .strength-text p {
        font-size: 0.85rem;
    }
}