/* style.css - Complete Stylesheet for Spireleap Innovations */
:root {
    --primary: #219dd0;
    --secondary: #78cfea;
    --accent: #0d7ba8;
    --dark: #0f172a;
    --light: #f8fafc;
    --off-white: #f9fbfd;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--off-white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    flex: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Buttons */
.cta-button {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(33, 157, 208, 0.2);
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(33, 157, 208, 0.3);
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--gray-light);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Header & Navigation */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(33, 157, 208, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(33, 157, 208, 0.08);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary);
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Sections */
.hero, .about-hero, .services-hero {
    padding: 12rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero {
    background-color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(33, 157, 208, 0.05) 0%, rgba(120, 207, 234, 0.05) 100%);
    transform: rotate(15deg);
    z-index: 0;
}

.about-hero {
    background: linear-gradient(135deg, rgba(33, 157, 208, 0.08) 0%, rgba(120, 207, 234, 0.08) 100%);
    text-align: center;
}

.about-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,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="white"/></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 150px;
    pointer-events: none;
}

.services-hero {
    background: linear-gradient(135deg, rgba(33, 157, 208, 0.1) 0%, rgba(120, 207, 234, 0.1) 100%);
    text-align: center;
}

.hero-content, .about-hero-content, .services-hero-content {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.about-hero-content, .services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1, .about-hero h1, .services-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p, .about-hero p, .services-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.about-hero p, .services-hero p {
    max-width: 100%;
    margin: 0 auto 2rem;
}

.hero-buttons, .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Hero Visual Elements */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.dashboard-mockup {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(33, 157, 208, 0.1);
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.dashboard-header {
    height: 50px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.dashboard-controls {
    display: flex;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dashboard-item {
    height: 80px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
}

.dashboard-item.large {
    grid-column: span 2;
    height: 120px;
}

/* Services Navigation */
.services-nav {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.services-nav-scroll {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-nav-item {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: var(--off-white);
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    white-space: nowrap;
}

.service-nav-item:hover,
.service-nav-item.active {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 12px rgba(33, 157, 208, 0.2);
}

/* Section Common Styles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features, .services, .mission-vision, .values, .team, .story, .industries, .process, .faq, .stats {
    padding: 6rem 0;
}

.features, .values, .industries, .faq {
    background-color: var(--off-white);
}

.services, .mission-vision, .team, .story, .process, .stats {
    background-color: white;
}

/* Service Sections */
.service-section {
    padding: 6rem 0;
    scroll-margin-top: 140px;
}

.service-section:nth-child(even) {
    background-color: white;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.service-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.service-features li i {
    color: var(--success);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.service-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-large {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-large i {
    font-size: 4rem;
    color: white;
}

/* Grid Layouts */
.services-grid, .features-grid, .values-grid, .team-grid, .industries-grid, .process-steps, .stats-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 3rem;
}

.services-grid, .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.values-grid, .team-grid, .industries-grid, .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.service-card, .feature-card, .value-card, .team-card, .industry-card, .process-step, .mv-card {
    background: var(--off-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card, .feature-card, .team-card, .mv-card {
    background: white;
}

.service-card:hover, .feature-card:hover, .value-card:hover, .team-card:hover, .industry-card:hover, .process-step:hover, .mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(33, 157, 208, 0.1);
    border-color: var(--secondary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 2;
}

.team-card, .mv-card {
    padding: 0;
    overflow: hidden;
}

.mv-card {
    padding: 3rem 2.5rem;
}

/* Icons */
.service-icon, .feature-icon, .mv-icon, .industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-icon i, .feature-icon i, .mv-icon i, .industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.mv-icon i {
    font-size: 2rem;
}

.value-number, .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Team Cards */
.team-img {
    height: 250px;
    background: linear-gradient(135deg, rgba(33, 157, 208, 0.2), rgba(120, 207, 234, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.7;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-info .position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(33, 157, 208, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--gray);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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,100 250,50S0,25 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100% 100px;
    background-position: bottom;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col p, .footer-col a {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-col a:hover {
    color: var(--secondary);
}

/* Footer Logo */
.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

/* Social Links */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #cbd5e1;
}

.contact-item i {
    color: var(--secondary);
    width: 20px;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 157, 208, 0.1);
    border-color: var(--secondary);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray);
}

.testimonial-author h4 {
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(33, 157, 208, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Portfolio */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gray-light);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(33, 157, 208, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 4rem; padding-bottom: 4rem; }

.px-1 { padding-left: 1rem; padding-right: 1rem; }
.px-2 { padding-left: 2rem; padding-right: 2rem; }
.px-3 { padding-left: 3rem; padding-right: 3rem; }
.px-4 { padding-left: 4rem; padding-right: 4rem; }

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero, .about-hero, .services-hero {
        padding: 10rem 0 4rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons, .cta-buttons {
        justify-content: center;
    }
    
    .dashboard-mockup {
        margin-top: 3rem;
        max-width: 500px;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .nav-links a {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-light);
        width: 100%;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .services-nav {
        top: 70px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-visual {
        order: -1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 4rem;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .services-nav-scroll {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .service-nav-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .services-grid, .features-grid, .values-grid, .team-grid, .industries-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .services-grid, .features-grid, .values-grid, .team-grid, .industries-grid, .process-steps, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon-large {
        width: 140px;
        height: 140px;
    }
    
    .service-icon-large i {
        font-size: 3rem;
    }
    
    .service-card, .feature-card, .value-card, .team-card, .industry-card, .process-step, .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .cta-button,
    .services-nav,
    .nav-links,
    .mobile-menu-toggle,
    footer,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .hero, .about-hero, .services-hero {
        padding: 2rem 0 !important;
        min-height: auto !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
}

/* About Page Specific Styles */
.about-hero {
    padding: 12rem 0 5rem;
    background: linear-gradient(135deg, rgba(33, 157, 208, 0.08) 0%, rgba(120, 207, 234, 0.08) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-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,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="white"/></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 150px;
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    background: var(--off-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(33, 157, 208, 0.1);
    border-color: var(--secondary);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}