:root {
    --primary-bg: #fffffff0;
    --secondary-blue: #003366;
    --accent-orange: #c06000;
    --text-main: #212121;
    --text-secondary: #5F6368;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    --yellow-button: #dbbc0d;
    --yellow-button-hover: #c79d08;
    --nav-bg: #2a2a2a;
    --nav-text: #003366;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--primary-bg);
    padding-top: 60px;
    font-size: 1.12rem;
    animation: fadeInBody 0.7s ease-in;
    overflow-x: hidden;
}

@keyframes fadeInBody {
    from {
        opacity: 0.7;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    min-height: 60px;
    box-shadow: var(--shadow);
}

@media (min-width: 640px) {
    .main-nav {
        padding: 0.75rem 1.5rem;
        min-height: 70px;
    }
}

@media (min-width: 1024px) {
    .main-nav {
        padding: 0.75rem 2.5rem;
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 2rem;
    width: auto;
}

@media (min-width: 640px) {
    .logo-img {
        height: 2.5rem;
    }
}

@media (min-width: 768px) {
    .logo-img {
        height: 3rem;
    }
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--nav-text);
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.875rem;
    color: var(--nav-text);
    opacity: 0.8;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .brand-name {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 1.25rem;
    }
}

@media (min-width: 640px) {
    .brand-sub {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .brand-sub {
        font-size: 1.125rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    z-index: 101;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn i {
    font-size: 1.5rem;
    color: var(--nav-text);
}

/* Navigation Links */
.nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.07);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    right: 0;
    display: flex;
}

@media (min-width: 768px) {
    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: none;
    }
}

.nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.75rem;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Active state for navigation links */
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a.active::after {
    width: 80%;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    min-height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

@media (min-width: 768px) {
    .hero {
        min-height: 520px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
}

.hero-sub {
    color: var(--white);
}

@media (min-width: 640px) {
    .hero-content {
        padding: 6rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-content {
        padding: 8rem 2.5rem;
    }
}

.hero-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.hero-content .highlight {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    .hero-content .highlight {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero-content .highlight {
        font-size: 3rem;
    }
}

.hero-content p, .hero-sub {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-content p, .hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-content p, .hero-sub {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn.primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .btn.primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn.primary:hover {
    transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2.5rem;
    }
}

.stat {
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .stat {
        padding: 1rem;
    }
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-left: 0.1rem;
    margin-top: 0.2rem;
    position: relative;
    top: 0.2rem;
    display: inline-block;
}

@media (min-width: 640px) {
    .stat-num {
        font-size: 2.5rem;
    }
    .stat-plus {
        font-size: 1.75rem;
        margin-left: 0.15rem;
        margin-top: 0.25rem;
        top: 0.25rem;
    }
}

@media (min-width: 768px) {
    .stat-num {
        font-size: 3rem;
    }
    .stat-plus {
        font-size: 2rem;
        margin-left: 0.2rem;
        margin-top: 0.3rem;
        top: 0.3rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1.125rem;
    }
}

/* Mobile Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Sections */
section {
    text-align: center;
    padding: 3rem 0;
}

section h2 {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Core Business */
.core-business {
    text-align: left;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #b0c0e4;
    border-left: 5px solid var(--secondary-blue);
    border-radius: 8px;
}

.core-business h3 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.core-business p {
    text-align: left;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .core-business {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .core-business {
        padding: 2rem;
        margin-top: 2.5rem;
    }
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-card .card-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    color: var(--secondary-blue);
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

.product-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    color: var(--text-main);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

@media (min-width: 640px) {
    .product-card {
        padding: 1.5rem;
    }
}

.product-card i {
    font-size: 1.75rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .product-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.product-card h3 {
    color: var(--secondary-blue);
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card ul {
    text-align: left;
    margin: 1rem auto;
    max-width: 280px;
}

.product-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .product-card ul li {
        font-size: 1rem;
        margin: 0.25rem 0;
    }
}

.product-card ul li::marker {
    color: var(--accent-orange);
    font-size: 1.1em;
}

/* Clients Section */
.clients .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .clients .grid {
        gap: 1.5rem;
    }
}

.client-card-link {
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 7rem;
}

@media (min-width: 640px) {
    .client-card-link {
        width: 9rem;
        padding: 1.25rem;
    }
}

@media (min-width: 768px) {
    .client-card-link {
        width: 10rem;
        padding: 1.5rem;
    }
}

.client-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,51,102,0.13);
    text-decoration: none;
}

.client-card-link .w-16.h-16 {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .client-card-link .w-16.h-16 {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
}

.client-card-link .text-2xl {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

@media (min-width: 640px) {
    .client-card-link .text-2xl {
        font-size: 1.5rem;
    }
}

.client-card-link .text-lg {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .client-card-link .text-lg {
        font-size: 1rem;
    }
}

.client-card-link .text-sm {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .client-card-link .text-sm {
        font-size: 0.875rem;
    }
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-card,
.contact-form-card {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-label {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-info-label.offices {
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 8px;
    width: 2.5rem;
    height: 2.5rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-info-title {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.contact-info-text a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #ff8f00;
}

/* Office Cards */
.office-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.office-card:last-child {
    margin-bottom: 0;
}

.office-card .contact-icon.office {
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

.office-card .contact-icon.office i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.office-title {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.office-info p {
    font-size: 0.9rem;
    color: #777;
}

/* Contact Form Card */
.contact-form-title {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
    outline: none;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form .btn.primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .btn.primary:hover {
    background: #e69500;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.2);
}

.contact-form .btn.primary:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .contact-info-card {
        order: 2;
    }
    
    .contact-form-card {
        order: 1;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-label {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-info-label.offices {
        margin-top: 1.5rem;
    }
    
    .contact-info-item {
        margin-bottom: 0.75rem;
    }
    
    .contact-icon {
        width: 2rem;
        height: 2rem;
        border-radius: 6px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }

    .contact-info-title,
    .contact-info-text a,
    .office-title,
    .office-info p {
        font-size: 0.85rem;
    }

    .office-card {
        margin-bottom: 0.75rem;
    }

    .office-card .contact-icon.office i {
        font-size: 1rem;
    }

    .contact-form-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form .btn.primary {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

/* Footer */
footer {
    background: var(--secondary-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

@media (min-width: 640px) {
    footer {
        padding: 3rem 0;
    }
}

.social-links {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.social-links a {
    color: var(--white);
    font-size: 1.25rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .social-links a {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
}

.social-links a:hover {
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.15);
}

footer p {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (min-width: 640px) {
    footer p {
        font-size: 1rem;
    }
}

/* Scroll Margin for Anchor Links */
[id] {
    scroll-margin-top: 5rem;
}

@media (min-width: 640px) {
    [id] {
        scroll-margin-top: 6rem;
    }
}

/* Prevent Horizontal Scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Container Max Width */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Ensure Images Don't Overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Secondary text */
.client-logo, .brand-sub {
    color: var(--text-secondary);
}

/* White text on blue background */
.hero-content,
footer,
.nav-links a[href="#contact"],
.nav-links a[href="#about"],
.nav-links a[href="#products"],
.nav-links a[href="#services"],
.nav-links a[href="#clients"] {
    color: var(--nav-text);
    }

/* Override specific elements that should keep their original color */
.hero-content .highlight {
    color: var(--accent-orange);
}

.stat-num {
    color: var(--accent-orange);
}

/* Footer specific styles */
footer .social-links a {
    color: var(--white);
}

footer .social-links a:hover {
    color: var(--accent-orange);
}

/* Responsive Design */
@media (max-width: 900px) {
    .main-nav {
        padding: 0 16px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content .highlight {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 24px;
    }
    body {
        font-size: 1rem;
    }
    section h2 {
        font-size: 2rem;
    }
    .hero-content p, .hero-sub, section p {
        font-size: 1.05rem;
    }
}

@media (max-width: 600px) {
    .main-nav {
        flex-direction: column;
        height: auto;
        padding: 10px 6px;
    }
    .nav-links {
        gap: 16px;
        font-size: 0.95rem;
    }
    .hero-content {
        padding: 60px 8px 24px 8px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    body {
        font-size: 0.97rem;
    }
    .hero-content h1 {
        font-size: 1.4rem;
    }
    section h2 {
        font-size: 1.2rem;
    }
    .hero-content p, .hero-sub, section p {
        font-size: 0.97rem;
    }
    .product-card ul li {
        max-width: 98%;
        width: 98%;
        font-size: 0.97rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-main);
        cursor: pointer;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .service-cards,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Ultra-wide screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
    
    .hero-content {
        padding: 8rem 4rem;
    }
    
    .service-cards,
    .product-grid {
        gap: 3rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Touch target improvements */
@media (hover: none) {
    .nav-links a,
    .btn,
    .social-links a {
        padding: 0.75rem;
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Section Text Formatting */
section {
    text-align: center;
    padding: 3rem 0;
}

section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

section h2 {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-orange);
}

/* Core Business Section */
.core-business {
    text-align: left;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8faff;
    border-left: 5px solid var(--secondary-blue);
    border-radius: 8px;
}

.core-business h3 {
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.core-business p {
    text-align: left;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-card .card-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service-card h3 {
    color: var(--secondary-blue);
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Product Cards */
.product-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    color: var(--text-main);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .card-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.product-card i {
    font-size: 1.75rem;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.product-card h3 {
    color: var(--secondary-blue);
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-card ul {
    text-align: left;
    margin: 1rem auto;
    max-width: 280px;
}

.product-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .product-card ul li {
        font-size: 1rem;
        margin: 0.25rem 0;
    }
}

.product-card ul li::marker {
    color: var(--accent-orange);
    font-size: 1.1em;
}

/* About Section */
.about-section {
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-info-card,
.contact-form-card {
    text-align: left;
}

.contact-info-label {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-form-title {
    text-align: center;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .core-business {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .service-card,
    .product-card {
        padding: 1.5rem;
    }
}

/* Reach Section */
.reach {
    background-color: #ffffff;
}

.reach-desc {
    font-size: 1.15rem;
    color: #5f6368;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.reach-card {
    background-color: #ffffff; /* Changed to white background */
    padding: 25px;
    border-radius: 12px; /* More rounded corners */
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Adjusted shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reach-card:hover {
    transform: translateY(-10px); /* Enhanced hover effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); /* Enhanced hover shadow */
}

.reach-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #F57C00; /* Accent orange background for reach icons */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.reach-icon i {
    color: #ffffff; /* White color for the map marker icon */
    font-size: 1.5rem; /* Adjust size as needed */
}

.reach-region {
    font-size: 1.1rem;
    color: #003366; /* Dark blue text */
    font-weight: 500;
}

/* Explore Solutions Button */
.explore-btn {
    display: inline-block;
    padding: 0.35rem 2.5rem;
    background-color: var(--yellow-button);
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    min-width: 200px;
}

.explore-btn:hover {
    background-color: var(--yellow-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.explore-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .explore-btn {
        padding: 0.4rem 3rem;
        font-size: 1rem;
        min-width: 220px;
    }
}

@media (min-width: 768px) {
    .explore-btn {
        padding: 0.45rem 3.5rem;
        font-size: 1.1rem;
        min-width: 250px;
    }
}

.about-section p {
    font-size: 1.1rem !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-section p {
        font-size: 1.25rem !important;
    }
}

@media (min-width: 1024px) {
    .about-section p {
        font-size: 1.4rem !important;
    }
}

/* Core Business Text Styles */
.about-section .core-business p {
    font-size: 1.1rem !important;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .about-section .core-business p {
        font-size: 1.25rem !important;
    }
}

.about-section .core-business h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
}

@media (min-width: 768px) {
    .about-section .core-business h3 {
        font-size: 1.4rem !important;
    }
}

/* Typography Scale */
h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    line-height: 1.4;
}

p, .section-desc {
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    line-height: 1.6;
}

/* Card Layouts */
.service-card, .product-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .card-content,
.product-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.service-card p,
.product-card ul {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Grid Layouts */
.service-cards,
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .service-cards,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (min-width: 1024px) {
    .service-cards,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Section Dividers */
.section-divider {
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-bg));
    margin: 2rem 0;
}

/* Ultra-wide Screen Support */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
    
    .service-cards,
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

/* Contact Form Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info,
.contact-offices {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-offices h3.contact-info-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.25rem;
    color: var(--white);
    background: var(--success-color);
    padding: 0.75rem;
    border-radius: 8px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item div p {
    color: var(--text-light);
    line-height: 1.5;
}

.info-item div a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item div a:hover {
    color: var(--accent-orange);
}

.office-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-card:last-child {
    margin-bottom: 0;
}

.office-card i {
    font-size: 1.25rem;
    color: var(--success-color);
    margin-top: 0.25rem; /* Align icon with text */
}

.office-details h4.office-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.office-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form .form-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
    outline: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #388e3c;
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .contact-info-wrapper {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info,
    .contact-offices {
        padding: 1.5rem;
    }

    .info-item,
    .office-card {
        margin-bottom: 0.75rem;
    }
    
    .info-item i {
        font-size: 1rem;
        padding: 0.6rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .office-card i {
        font-size: 1rem;
    }
} 