:root {
    --primary-purple: #5e3a95;
    --navy: #1a2a47;
    --accent-orange: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    padding-top: 100px;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
}

header.scrolled .logo-img {
    height: 50px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) perspective(500px) rotateX(5deg);
}

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { 
    text-decoration: none; 
    color: #333; 
    font-size: 14px; 
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active { 
    color: var(--accent-orange); 
}

.contact-info { display: flex; align-items: center; gap: 10px; }
.phone-icon { color: var(--accent-orange); font-size: 24px; }
.phone-text small { display: block; color: var(--text-light); font-size: 11px; }

/* Hero Section */
.hero {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(94, 58, 149, 0.5);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 18px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev { left: 30px; }
.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.3);
}

/* Features Section */
.features {
    margin-top: -60px; /* Pulls cards up over the hero */
    position: relative;
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Connected look */
}

.feature-card {
    background: white;
    padding: 40px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-card:nth-child(2) { border-left: 1px solid #eee; border-right: 1px solid #eee; }

.feature-card i {
    font-size: 30px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Discover Section */
.discover {
    padding: 80px 0;
}

.discover-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.discover-image {
    flex: 1;
    position: relative;
}

.discover-image img {
    width: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

/* The dot pattern from your image */
.dot-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.discover-text {
    flex: 1;
}

.discover-text h2 {
    font-size: 36px;
    color: #1a2a47;
    margin-bottom: 25px;
}

.discover-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Tabs Section */
.tabs-header-bg {
    background: linear-gradient(to right, #4b2c73, #8e44ad, #b33939); /* Gradient from image */
    padding: 60px 0 0 0;
    text-align: center;
    color: white;
}

.tabs-header-bg h2 {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: #c0392b; /* Dark red/orange from image */
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.tab-btn.active {
    background: white;
    color: #1a2a47;
}

.tab-content-wrapper {
    padding: 80px 0;
}

.tab-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tab-text { flex: 1.2; }
.tab-image { flex: 1; }
.tab-image img { width: 100%; border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

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

.tab-text h2 { font-size: 36px; margin-bottom: 25px; color: #1a2a47; }
.tab-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }

/* Service Category Cards */
.service-cards {
    background-color: #f4f9fb; /* Light bluish tint from image */
    padding: 80px 0;
}

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

.s-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.s-card-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.s-card-body {
    padding: 30px;
}

.s-card-body h3 {
    margin-bottom: 15px;
    color: #1a2a47;
    font-size: 20px;
}

.s-card-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    text-decoration: none;
    color: #1a2a47;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.learn-more i { color: var(--accent-orange); }

/* Footer */
footer {
    background: #1a2a47;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 { margin-bottom: 20px; font-size: 18px; }
.footer-col p { color: #bdc3c7; font-size: 14px; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bdc3c7; text-decoration: none; font-size: 14px; }

/* CQC badge - official-looking badge at bottom of footer */
.cqc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cqc-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.cqc-badge-icon {
    font-size: 20px;
    opacity: 0.95;
}
.cqc-badge-img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
.cqc-badge-fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Tab Transitions */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.tab-btn {
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Enhanced Service Card Hover Effects */
.s-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.s-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.s-card-img {
    overflow: hidden;
}

.s-card-img img {
    transition: transform 0.5s ease;
}

.s-card:hover .s-card-img img {
    transform: scale(1.05);
}

/* Feature Card Enhancements */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.feature-card i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--primary-purple);
}

/* Page Hero Section */
.page-hero {
    height: 400px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581578731522-5b17b88bb5d5?auto=format&fit=crop&q=80&w=1500') center/cover;
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.team-card-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 30px 20px;
}

.team-card-body h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 8px;
}

.team-card-body .role {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: var(--navy);
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
    color: var(--accent-orange);
    transform: translateY(-3px);
}

/* Team role cards (no photos/names) */
.team-roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 80px 0;
}

.team-role-card {
    background: white;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(94, 58, 149, 0.12);
}

.team-role-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.team-role-card:hover .team-role-icon {
    transform: scale(1.08);
}

.team-role-body h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.team-role-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 30px;
}

.blog-card-date {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.blog-card-link:hover {
    color: var(--accent-orange);
    gap: 12px;
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-section .contact-info {
    display: block;
}

.contact-section .contact-info h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-section .contact-info-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section .contact-info-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.contact-section .contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-section .contact-info-item:hover .contact-info-icon {
    background-color: var(--accent-orange);
    transform: scale(1.1);
}

.contact-section .contact-info-text h4 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-section .contact-info-text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(94, 58, 149, 0.1);
}

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

.btn-submit {
    background: var(--accent-orange);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: #d46a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Careers Section */
.careers-section {
    padding: 80px 0;
}

.job-listings {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-orange);
}

.job-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-card-header h3 {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 8px;
}

.job-card-header .job-type {
    background: var(--primary-purple);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-card-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.job-card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.job-card-meta-item i {
    color: var(--accent-orange);
}

.job-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.job-card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-tag {
    background: #f0f0f0;
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.btn-apply {
    background: var(--accent-orange);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-apply:hover {
    background: #d46a1a;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    background: var(--navy);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    font-size: 18px;
    opacity: 0.9;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-heading p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: nowrap;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    nav.active {
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    
    .discover-flex,
    .tab-flex {
        flex-direction: column;
    }
    
    .service-card-grid,
    .team-grid,
    .team-roles-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .job-card-header,
    .job-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        font-size: 12px;
        gap: 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .slider-btn {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}