:root {
    --bg-light: #ffffff;
    --bg-card: #f8f9fa;
    --bg-card-hover: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --accent-1: #0056b3; /* Corporate Navy Blue */
    --accent-2: #003d82; /* Darker Navy */
    --accent-3: #17a2b8; /* Light Blue / Teal */
    
    --border-color: #e9ecef;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--accent-2);
}

body {
    font-family: var(--font-body);
    background-color: var(--accent-2);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

main {
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-2);
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    scroll-margin-top: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-desc {
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    font-weight: 300;
}

.text-gradient {
    color: var(--accent-1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-1);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-1);
    border: 2px solid var(--accent-1);
}

.btn-outline:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: var(--container-width);
    padding: 0.6rem 1.5rem;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.logo img {
    height: 45px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--accent-1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-color: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title, .about-text .section-desc {
    text-align: left;
    margin-left: 0;
}

.vision-box {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.vision-icon {
    font-size: 2rem;
    color: var(--accent-1);
    margin-top: 0.5rem;
}

.vision-box h3 {
    margin-bottom: 0.5rem;
}

.vision-box p {
    color: var(--text-muted);
}

.value-prop-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.clean-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.clean-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-1);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.clean-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.clean-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background-color: var(--bg-card);
}

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

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.service-content {
    padding: 2rem;
    flex: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-list {
    margin-top: 1rem;
}

.service-list li {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--accent-1);
    font-size: 0.8rem;
}

/* Industries Section */
.industry-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.pill {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    cursor: default;
    color: var(--accent-2);
    box-shadow: var(--card-shadow);
}

.pill:hover {
    background: rgba(0, 86, 179, 0.05);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.pill i {
    color: var(--accent-3);
    font-size: 1.2rem;
}

/* Process Timeline */
.process {
    background-color: var(--bg-card);
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    padding: 2rem 1rem;
}

.timeline::-webkit-scrollbar {
    display: none;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 100px;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-1);
    transition: var(--transition);
}

.step:hover .step-num {
    background: var(--accent-1);
    color: #fff;
}

.step-name {
    font-weight: 600;
    color: var(--text-main);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    min-width: 30px;
    position: relative;
}

.step-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--accent-1);
    width: 50%; /* Just to show some progress statically */
}

/* Why Choose Us */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: calc(33.333% - 1.5rem);
    min-width: 200px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-1);
    box-shadow: var(--card-shadow-hover);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--accent-2);
}

/* Footer */
.footer {
    background: var(--accent-2);
    color: #fff;
    padding: 4rem 0 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    margin: 0;
    scroll-margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 1.5rem 0;
    max-width: 400px;
}

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

.contact-info a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-3);
}

.contact-info i {
    color: var(--accent-3);
    width: 20px;
}

.footer-cta {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* No scroll animations — elements visible by default */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-cta { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-text .section-title, .about-text .section-desc { text-align: center; margin: 0 auto 1.5rem; }
    .vision-box { justify-content: center; text-align: left; }
    .footer-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .hero-title { font-size: 2.5rem; }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .navbar {
        top: 0;
        left: 0;
        width: 100%;
        transform: none !important;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 1rem 0.5rem 1rem;
    }
    
    .nav-container {
        gap: 0.75rem;
    }

    .nav-links {
        position: static;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        box-shadow: none;
        overflow-x: auto;
        white-space: nowrap;
        gap: 0.4rem;
        padding-bottom: 2px;
        mask-image: linear-gradient(to right, transparent 0%, black 12px, black calc(100% - 12px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12px, black calc(100% - 12px), transparent 100%);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 0.75rem;
        background: transparent;
        border-radius: 50px;
        font-size: 0.75rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .nav-links .btn {
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
        flex-shrink: 0;
        background: transparent;
        color: var(--accent-1);
        box-shadow: none;
    }
    
    .hero-cta { flex-direction: column; }
    
    .feature-item { width: 100%; }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-left: 2rem;
        border-left: 2px solid var(--border-color);
        margin-left: 2rem;
    }
    
    .step {
        flex-direction: row;
    }
    
    .step-line {
        display: none;
    }

    /* Disable specific hover and translate animations on mobile */
    .btn:hover,
    .clean-card:hover,
    .service-card:hover,
    .pill:hover,
    .feature-item:hover,
    .step:hover .step-num {
        transform: none !important;
    }
}
