/*
Theme Name: Astra Child
Description: This is a child theme of Astra Theme.
Author: Your Name
Template: astra
Version: 1.0.0
*/

/* CSS Reset and Variables */
:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #00a896;
    --accent: #ff6b35;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    display: flex;
    align-items: center;
}

/* Icon-only search button (replaces input + button) */
.search-container {
    display: flex;
    align-items: center;
}

.search-container .search-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.search-container .search-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

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

.search-container .search-btn:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
    border-radius: 8px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    text-decoration: none;
    border-radius: 8px; /* subtle rounded rectangle for a professional look */
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 6px;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor; /* follow the anchor color */
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: var(--accent);
}

.social-icon:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Screen-reader helper */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: flex-start; /* keep logo + nav aligned to the left */
    align-items: center;
    gap: 28px; /* small gap between logo and nav */
}

.logo {
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
}

.site-logo,
.footer-logo {
    /* keep header and footer logos identical in size and scaling */
    width: 260px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Responsive logo sizing: smaller on narrow screens */
@media (max-width: 768px) {
    .site-logo,
    .footer-logo {
        width: 180px;
    }
}

/* Footer logo sizing */
.footer-logo {
    /* keep the full wordmark visible by sizing by width (SVG scales cleanly) */
    width: 260px;
    height: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 180px;
    }
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* small gap for mobile menu button so it doesn't collide with the search control */
.mobile-menu-btn {
    margin-left: 8px;
}

/* Nudge the primary nav slightly left and down so it sits closer and inline with the logo */
header .header-main nav {
    margin-left: 8px;
    /* shift more right and maintain vertical alignment */
    transform: translate(36px, 14px); /* increased X offset per request */
}

/* place the search control inside header-main and push it to the far right of the nav */
header .header-main .search-container.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* slightly smaller search button when inline with nav */
header .header-main .search-container .search-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C750,50 500,75 250,50S50,25 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 150px;
}

/* Three Pillars Section */
.pillars {
    background-color: var(--light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    /* Match the quote container: light sky, subtle border, polished card */
    background: linear-gradient(180deg, #f8fcff 0%, #eef9ff 100%);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.04);
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary); /* visible primary color for strong contrast */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff; /* icon/text inside circle should be white */
    box-shadow: 0 6px 18px rgba(0,102,204,0.08);
    border: 2px solid rgba(255,255,255,0.15);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.pillar-card p {
    color: rgba(33,37,41,0.85);
    margin-bottom: 20px;
}

.pillar-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Quote Section */
.quote {
    background-color: white;
}

.quote-container {
    /* light sky background for a calm, professional look */
    background: linear-gradient(180deg, #f5fbff 0%, #e6f7ff 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    padding-bottom: 72px; /* extra space to avoid content clipping on small screens */
    overflow: visible; /* ensure children (focus outlines, dropdowns) aren't clipped */
    margin-top: -28px; /* nudge the quote card slightly upward for tighter layout */
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 204, 0.06);
}

.quote-summary {
    background: #ffffff;
    border: 1px solid rgba(30,144,255,0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(13,62,100,0.06);
    color: #0b2540;
}
.quote-summary h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
}
.quote-summary p { margin: 0.35rem 0; }
.quote-summary hr { border: none; border-top: 1px solid rgba(11,37,64,0.06); margin: 0.6rem 0; }
.quote-summary .muted { color: #546b7a; font-size: 0.92rem; margin-top: 0.5rem; }

@media (max-width: 600px) {
    .quote-summary { padding: 0.9rem; }
}

.quote-title h3 {
    color: var(--primary-dark);
}

.quote-title p {
    color: rgba(33, 37, 41, 0.9); /* slightly darker for readability */
}

.trust-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(33, 37, 41, 0.7);
}

.quote-title {
    text-align: center;
    margin-bottom: 30px;
}

.quote-title h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* allow labels and inputs to wrap cleanly */
.form-group label,
.form-group input,
.form-group select {
    white-space: normal;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 15px; /* more vertical padding to center text and avoid clipping */
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    line-height: 1.3; /* ensures adequate vertical spacing inside controls */
    -webkit-appearance: none; /* normalize appearance across browsers */
    appearance: none;
}

/* ensure select has enough height so option text doesn't get visually clipped */
.form-group select {
    min-height: 48px;
}

.quote-btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 18px;
}

.trust-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Clients Section */
.clients {
    background-color: var(--light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
}

/* Case Studies Section */
.case-studies {
    /* default white background for Success Stories */
    background-color: white;
    border: none;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.case-image {
    height: 200px;
    background-color: var(--gray-light);
    position: relative;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.case-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* Ensure case study titles/content don't touch the left edge of their container */
.case-studies .case-content {
    padding-left: 40px; /* push content to the right within each case card */
    padding-right: 25px;
}

@media (max-width: 768px) {
    .case-studies .case-content {
        padding-left: 20px; /* reduce padding on smaller screens to fit layout */
        padding-right: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray-light);
    overflow: hidden; /* ensure inner img is clipped to the circle */
    background-size: cover;
    background-position: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* crop and fill the circular container */
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-preview {
    /* match quote card sky background for visual consistency */
    background: linear-gradient(180deg, #f5fbff 0%, #e6f7ff 100%);
    border: 1px solid rgba(0,102,204,0.04);
}

/* Ensure blog section titles remain readable on the light sky background */
.blog-preview .section-title h2 {
    color: var(--primary-dark);
}

.blog-preview .section-title p {
    color: rgba(33,37,41,0.85);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 180px;
    background-color: var(--gray-light);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    /* give the first column (logo/about) more room so the full wordmark fits */
    grid-template-columns: 1.9fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    color: #aaa;
    margin-bottom: 20px;
}

/* Make the about paragraph wrap into more lines for a neater footer layout */
.footer-about p {
    max-width: 240px; /* forces wrapping into approx. 4 lines on desktop */
    line-height: 1.55;
}

@media (max-width: 768px) {
    .footer-about p {
        max-width: 100%; /* full width on smaller screens */
    }
}

/* ensure footer-about doesn't clip wide content */
.footer-about {
    overflow: visible;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
}

.footer-links ul,
.footer-services ul {
    padding-left: 0;
    margin-left: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
    padding-left: 0;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 4px;
}

.legal-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pillars-grid,
    .case-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .tracking-widget {
        width: 100%;
        justify-content: center;
    }
    
    .tracking-widget input {
        width: 60%;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .quote-form {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .pillars-grid,
    .case-grid,
    .testimonial-grid,
    .blog-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .quote-container {
        padding: 30px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 80px 0;
    background-color: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    margin-top: 25px;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    list-style-type: disc;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* About Page Styling */
.about-page {
    background-color: white;
}

.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark);
}

.placeholder-image {
    background: var(--gray-light);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--gray);
    font-weight: 500;
}

.mission-vision {
    background: var(--light);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.our-values {
    padding: 80px 0;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.our-team {
    background: var(--light);
    padding: 80px 0;
}

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

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.member-photo {
    margin-bottom: 20px;
}

.placeholder-photo {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 600;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto;
    display: block;
    border: 3px solid var(--gray-light);
    transition: var(--transition);
}

.member-image:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
}

.company-stats {
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.about-cta {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Services Page Styling */
.services-page {
    background-color: white;
}

.services-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-overview {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.service-features li {
    padding: 8px 0;
    color: var(--dark);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-dark);
}

.our-process {
    background: var(--light);
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.industries-served {
    padding: 80px 0;
}

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

.industry-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.industry-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-benefits {
    background: var(--light);
    padding: 80px 0;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.services-cta {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Case Studies Page Styling */
.case-studies-page {
    background-color: white;
}

.case-studies-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.case-studies-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-studies-grid {
    padding: 80px 0;
}

.studies-grid {
    display: grid;
    gap: 60px;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.case-image .placeholder-image {
    height: 100%;
    min-height: 250px;
}

.case-content {
    padding: 40px 40px 40px 0;
}

.case-category {
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.case-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.case-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.case-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

.case-details h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.case-details ul {
    list-style: none;
    padding: 0;
}

.case-details li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.case-details li::before {
    content: "→";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.case-testimonials {
    background: var(--light);
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--dark);
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray);
    display: block;
    margin-top: 5px;
}

.case-studies-cta {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.case-studies-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Blog Page Styling */
.blog-page {
    background-color: white;
}

.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.featured-post {
    padding: 80px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image .placeholder-image {
    height: 300px;
}

.post-category {
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.blog-categories {
    background: var(--light);
    padding: 80px 0;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.post-count {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
    display: block;
}

.recent-posts {
    padding: 80px 0;
}

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

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.post-image .placeholder-image {
    height: 200px;
}

.post-content {
    padding: 30px;
}

.post-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    color: var(--primary-dark);
}

.newsletter-signup {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.popular-tags {
    padding: 80px 0;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.tag {
    background: var(--light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

/* Contact Page Styling */
.contact-page {
    background-color: white;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details span {
    font-size: 0.9rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links .social-link {
    color: var(--primary);
    text-decoration: none;
}

.office-hours {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
}

.office-hours h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.contact-faq {
    background: var(--light);
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.response-promise {
    padding: 80px 0;
}

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

.promise-item {
    text-align: center;
    padding: 30px 20px;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promise-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-hero h1,
    .services-hero h1,
    .case-studies-hero h1,
    .blog-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .story-content,
    .featured-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid,
    .case-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
    }
    
    .case-image .placeholder-image {
        min-height: 200px;
    }
    
    .case-content {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== SERVICE DETAIL PAGES STYLING ===== */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.hero-stats .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* Service Overview Section */
.service-overview {
    padding: 100px 0;
    background: #fafbfc;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.overview-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-benefits {
    margin-top: 40px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.service-benefits h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.6;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.overview-image {
    position: relative;
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    z-index: -1;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Technology Solutions Cards */
.technology-solutions {
    padding: 100px 0;
    background: white;
}

.technology-solutions .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solution-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-card > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.solution-features {
    margin-bottom: 25px;
}

.solution-features h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-features ul {
    list-style: none;
}

.solution-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.supported-platforms,
.integration-types,
.security-standards,
.analytics-tools,
.infrastructure-types,
.support-levels {
    margin-top: 20px;
}

.supported-platforms h4,
.integration-types h4,
.security-standards h4,
.analytics-tools h4,
.infrastructure-types h4,
.support-levels h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.platform-tag,
.type-tag,
.standard-tag,
.tool-tag,
.infra-tag,
.level-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 4px 6px 4px 0;
    font-weight: 500;
}

/* Technology Stack Section */
.technology-stack {
    padding: 100px 0;
    background: #f8f9fa;
}

.technology-stack .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.tech-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
}

.tech-category h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.tech-grid {
    display: grid;
    gap: 15px;
}

.tech-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid var(--secondary);
}

.tech-name {
    font-weight: 500;
    color: var(--dark);
}

.tech-expertise {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.tech-expertise:contains("Expert") {
    background: #d4edda;
    color: #155724;
}

.tech-item:has(.tech-expertise:contains("Expert")) .tech-expertise {
    background: #d4edda;
    color: #155724;
}

.tech-item:has(.tech-expertise:contains("Advanced")) .tech-expertise {
    background: #cce5ff;
    color: #004085;
}

.tech-item:has(.tech-expertise:contains("Intermediate")) .tech-expertise {
    background: #fff3cd;
    color: #856404;
}

/* Implementation Approach Section */
.implementation-approach {
    padding: 100px 0;
    background: white;
}

.implementation-approach .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.approach-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.approach-phase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.approach-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.approach-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.phase-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.approach-phase h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.approach-phase > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.approach-phase ul {
    list-style: none;
    text-align: left;
}

.approach-phase li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.approach-phase li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Service Level Agreements Section */
.service-levels {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-levels .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sla-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.sla-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 20px 20px 0 0;
}

.sla-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.sla-metric {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.sla-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background: white;
}

.pricing-plans .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.price span {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card > p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.6;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
}

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

.pricing-card .btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Design for Service Pages */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .overview-content h2,
    .technology-solutions .section-title,
    .technology-stack .section-title,
    .implementation-approach .section-title,
    .service-levels .section-title,
    .pricing-plans .section-title {
        font-size: 2.2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card {
        padding: 30px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sla-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-stats .stat-item {
        padding: 20px 15px;
    }
    
    .service-benefits {
        padding: 25px;
    }
    
    .solution-card,
    .tech-category,
    .approach-phase,
    .sla-card,
    .pricing-card {
        padding: 25px;
    }
    
    .sla-metric {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

/* ===== LOGISTICS PAGE SPECIFIC STYLING ===== */

/* Services Offered Section */
.services-offered {
    padding: 100px 0;
    background: white;
}

.services-offered .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-item ul {
    list-style: none;
}

.service-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.service-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Technology Integration Section */
.technology-integration {
    padding: 100px 0;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-content h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.tech-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tech-feature {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
}

.tech-feature h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-feature p {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-image {
    position: relative;
}

.tech-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    z-index: -1;
}

.tech-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Industries Served Section */
.industries-served {
    padding: 100px 0;
    background: white;
}

.industries-served .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.industry-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== DIGITAL TOOLS PAGE SPECIFIC STYLING ===== */

/* Digital Solutions Section */
.digital-solutions {
    padding: 100px 0;
    background: white;
}

.digital-solutions .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.digital-solutions .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.solution-use-cases {
    margin-top: 20px;
}

.solution-use-cases h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.use-case-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #00c4a7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 4px 6px 4px 0;
    font-weight: 500;
}

/* Implementation Process Section */
.implementation-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.implementation-process .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: white;
}

.success-stories .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 20px 20px 0 0;
}

.story-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.story-client {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-card > p:not(.story-client) {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.story-results {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.result {
    background: linear-gradient(135deg, var(--secondary), #00c4a7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Digital Tools Technology Stack Section */
.digital-solutions + .technology-stack {
    padding: 100px 0;
    background: #f8f9fa;
}

.digital-solutions + .technology-stack .tech-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.digital-solutions + .technology-stack .tech-content h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.digital-solutions + .technology-stack .tech-content > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.7;
}

.digital-solutions + .technology-stack .tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.digital-solutions + .technology-stack .tech-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary);
    text-align: center;
}

.digital-solutions + .technology-stack .tech-category h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN FOR LOGISTICS & DIGITAL TOOLS PAGES ===== */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .digital-solutions .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .digital-solutions + .technology-stack .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .digital-solutions .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-offered .section-title,
    .industries-served .section-title,
    .digital-solutions .section-title,
    .implementation-process .section-title,
    .success-stories .section-title,
    .tech-content h2 {
        font-size: 2.2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-content h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 30px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .industry-card {
        padding: 30px;
    }
    
    .digital-solutions .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .solution-card {
        padding: 30px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        padding: 30px 25px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-card {
        padding: 30px;
    }
    
    .digital-solutions + .technology-stack .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .digital-solutions + .technology-stack .tech-category {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .tech-feature {
        padding: 20px;
    }
    
    .service-item,
    .industry-card,
    .solution-card,
    .process-step,
    .story-card {
        padding: 25px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .story-results {
        flex-direction: column;
        gap: 8px;
    }
    
    .result {
        text-align: center;
    }
    
    .tech-tags {
        justify-content: flex-start;
    }
    
    .digital-solutions + .technology-stack .tech-category {
        padding: 25px;
    }
}

/* ===== TRUCK DISPATCHING PAGE SPECIFIC STYLING ===== */

/* Dispatching Services Section */
.dispatching-services {
    padding: 100px 0;
    background: white;
}

.dispatching-services .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.dispatching-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Fleet Types Section */
.fleet-types {
    padding: 100px 0;
    background: #f8f9fa;
}

.fleet-types .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.fleet-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.fleet-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.fleet-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dispatch Process Section */
.dispatch-process {
    padding: 100px 0;
    background: white;
}

.dispatch-process .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.dispatch-process .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Success Metrics Section */
.success-metrics {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-metrics .section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.metric-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

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

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 20px 20px 0 0;
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.metric-label {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: block;
}

.metric-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Truck Dispatching Page */
@media (max-width: 1200px) {
    .dispatching-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dispatch-process .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .dispatching-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .dispatch-process .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dispatching-services .section-title,
    .fleet-types .section-title,
    .dispatch-process .section-title,
    .success-metrics .section-title {
        font-size: 2.2rem;
    }
    
    .dispatching-services .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dispatch-process .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .fleet-card,
    .metric-card {
        padding: 30px;
    }
    
    .metric-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .fleet-card,
    .metric-card {
        padding: 25px;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .metric-label {
        font-size: 1.1rem;
    }
}