/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, .logo a, .stat-number {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
}

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

/* Glassmorphism Color Scheme */
:root {
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --primary: #0f172a;
    --accent: #64748b;
    --accent-light: #94a3b8;
    --text: #1e293b;
    --text-light: #64748b;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1400px;
    height: 70px;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.logo-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.logo-icon rect {
    fill: url(#logoGradient);
}

.logo-text {
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(100, 116, 139, 0.1);
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1920');
}

.hero-slide:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1920');
}

.hero-slide:nth-child(5) {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920');
}

.hero-slide:nth-child(6) {
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920');
}

.hero-slide:nth-child(7) {
    background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.15;
    transition: opacity 0.3s ease;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.hero-mission {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 30px;
    border-radius: 20px;
    margin: 35px 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-mission strong {
    color: var(--accent-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(100, 116, 139, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 116, 139, 0.5);
}

.slide-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

.slide-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.slide-dots {
    display: flex;
    gap: 8px;
    padding: 0 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 10px;
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}


/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 60px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.about-content.about-full-width {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.about-content.about-full-width .about-text p {
    text-align: justify;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

.about-text p strong {
    color: var(--primary);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    position: relative;
}

.services .section-title,
.services .section-subtitle {
    color: white;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    text-decoration: none;
    display: block;
}

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

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 1.7rem;
    color: white;
}

.service-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.95) 0%, rgba(203, 213, 225, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.15);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.culture-statement {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 50px 60px;
    border-radius: 24px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.3);
}


/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.stat-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, white 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.contact-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.contact-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
    color: white;
}

.contact-hero-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.contact-hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 116, 139, 0.12);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-card-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-map {
    margin-top: 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.1);
}

.contact-form-wrapper .btn {
    width: 100%;
    padding: 18px;
}


/* Partners Minimal Section */
.partners-minimal {
    padding: 40px 0;
    background: #f8fafc;
}

.partners-label {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.partners-grid-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.partners-minimal .partner-logo {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: auto;
    flex-shrink: 0;
}

.partners-minimal .partner-logo img {
    max-width: 90px;
    max-height: 32px;
}

@media (max-width: 768px) {
    .partners-grid-minimal {
        gap: 20px;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .partners-minimal .partner-logo {
        padding: 12px 18px;
    }
    
    .partners-minimal .partner-logo img {
        max-width: 70px;
        max-height: 26px;
    }
}

/* Partners Strip (below hero) */
.partners-strip {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.partners-grid-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.partner-logo-inline img {
    max-width: 90px;
    max-height: 35px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-inline:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-grid-inline {
        gap: 30px;
    }
    
    .partner-logo-inline img {
        max-width: 70px;
        max-height: 28px;
    }
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background: #f8fafc;
}

.partners .section-title {
    color: var(--primary);
    margin-bottom: 10px;
}

.partners .section-subtitle {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    height: 80px;
    text-decoration: none;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100px;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        height: 60px;
        padding: 15px;
    }
    
    .partner-logo img {
        max-width: 80px;
        max-height: 30px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo .logo-icon {
    flex-shrink: 0;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.footer-brand span {
    color: var(--accent-light);
}

.footer-brand p {
    opacity: 0.6;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 1.3rem;
}

/* X (Twitter) logo - needs explicit color since it's transparent by default */
.social-links a .ph-x-logo {
    color: white;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }
    
    .navbar .container {
        height: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 5px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .contact-hero {
        height: 280px;
    }
    
    .contact-hero-overlay {
        padding: 30px;
    }
    
    .contact-hero-overlay h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .culture-statement {
        padding: 35px 25px;
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}


/* Page Header for subpages */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Page Section adjustments */
.page-section {
    padding-top: 80px;
}

.page-section.about {
    padding: 80px 0;
}

.page-section.services {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.page-section.services .service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.page-section.services .service-card:hover {
    background: rgba(255, 255, 255, 0.95);
}

.page-section.services .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
}

.page-section.services .service-card h3 {
    color: var(--primary);
}

.page-section.services .service-card p {
    color: var(--text-light);
}

.page-section.why-us {
    padding: 80px 0;
}

.page-section.contact {
    padding-top: 0;
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent);
    background: rgba(100, 116, 139, 0.1);
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}


/* Careers Page */
.careers-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.careers-intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.careers-intro-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 50px;
}

.careers-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.benefit i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.benefit h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.job-listings {
    padding: 80px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.job-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.job-header h3 {
    color: var(--primary);
    font-size: 1.3rem;
}

.job-type {
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Blog Page */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

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

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 280px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-content h3 {
    color: var(--primary);
    margin: 10px 0 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-card.featured .blog-content h3 {
    font-size: 1.5rem;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

.news-source {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* News Filters */
.news-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
}

/* Loading State */
.news-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(100, 116, 139, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* News Sources */
.news-sources {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.news-sources i {
    margin-right: 8px;
    color: var(--accent);
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.article-modal.active {
    opacity: 1;
    visibility: visible;
}

.article-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.article-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.article-category {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: capitalize;
}

.article-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

#modal-body h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
}

.article-content {
    color: var(--text);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h4 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Make blog cards clickable */
.blog-card {
    cursor: pointer;
}

/* Service card clickable */
.service-card {
    cursor: pointer;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-weight: 600;
    margin-top: 15px;
    transition: gap 0.3s;
}

.service-card:hover .service-more {
    gap: 12px;
}

.page-section.services .service-more {
    color: var(--accent);
}

/* Service Modal Header */
.service-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.service-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-modal-icon i {
    font-size: 2rem;
    color: white;
}

.service-modal-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.article-content ul, .article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .article-modal-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    #modal-body h2 {
        font-size: 1.5rem;
    }
    
    .article-image {
        height: 200px;
    }
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.faq-category {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.faq-category h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category h3 i {
    color: var(--accent);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > p {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.faq-item.active .faq-answer > p {
    padding: 10px 0 15px 0;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: padding 0.3s ease;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.faq-cta p {
    opacity: 0.8;
    margin-bottom: 25px;
}

/* Responsive for new pages */
@media (max-width: 992px) {
    .careers-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card.featured {
        grid-column: span 2;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-benefits {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .blog-card.featured .blog-image {
        height: 200px;
    }
}


/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 0;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(100, 116, 139, 0.1);
    color: var(--accent);
    padding-left: 25px;
}


/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(100, 116, 139, 0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Company Highlights */
.company-highlights {
    padding: 100px 0;
    background: white;
}

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

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

.highlight-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-list {
    list-style: none;
    margin-bottom: 35px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-size: 1rem;
}

.highlight-list i {
    color: var(--accent);
    font-size: 1.3rem;
}

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

.h-stat {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.h-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.h-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* About page specific */
.about-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.about-text h2:first-child {
    margin-top: 0;
}

@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Service Detail Pages */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 95, 0.8) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.service-detail {
    padding: 80px 0;
    background: #f8fafc;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.feature-block {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-block h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-block p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.content-block h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
}

.check-list li i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 2px;
}

.service-extra {
    margin-top: 60px;
    padding: 50px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-extra h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-extra > p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

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

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 1.5rem;
    color: #60a5fa;
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-extra {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.service-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
    margin-top: 60px;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-cta p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.service-cta .btn {
    margin: 0 10px;
}

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

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

@media (max-width: 992px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .service-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-cta {
        padding: 40px 25px;
    }
    
    .service-cta .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 250px;
    }
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-banner-icon {
    font-size: 2.5rem;
    color: #60a5fa;
}

.cookie-banner-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

.cookie-btn-settings {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Newsletter Popup */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.newsletter-overlay.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.newsletter-overlay.show .newsletter-popup {
    transform: scale(1) translateY(0);
}

.newsletter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.newsletter-popup h2 {
    color: white;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-popup > p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.newsletter-privacy {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-privacy a {
    color: #60a5fa;
}

@media (max-width: 480px) {
    .newsletter-popup {
        padding: 35px 25px;
    }
    
    .newsletter-popup h2 {
        font-size: 1.5rem;
    }
}


/* Custom Form Validation Styles */
.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.error-message {
    display: none;
    position: absolute;
    bottom: -28px;
    left: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    z-index: 10;
    animation: errorSlideIn 0.3s ease;
    white-space: nowrap;
}

.error-message::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ef4444;
}

.error-message.show {
    display: block;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    margin-bottom: 35px;
}

/* Error icon inside input */
.input-wrapper {
    position: relative;
}

.input-wrapper .error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ef4444;
    font-size: 1.2rem;
    display: none;
}

.input-wrapper .error-icon.show {
    display: block;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    20%, 60% { transform: translateY(-50%) translateX(-3px); }
    40%, 80% { transform: translateY(-50%) translateX(3px); }
}


/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Dropdown menu for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        padding: 10px 0 10px 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 80vh;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 30px 20px;
    }
    
    /* Contact section mobile */
    .contact-details {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    /* Stats section mobile */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Partners section mobile */
    .partners {
        padding: 40px 0;
    }
    
    /* Service detail pages mobile */
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-intro .lead {
        font-size: 1rem;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .service-cta {
        padding: 40px 25px;
    }
    
    .service-cta h2 {
        font-size: 1.5rem;
    }
    
    .service-cta .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .contact-hero-overlay h2 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    /* Cookie banner extra small */
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature:hover,
    .partner-logo:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Larger touch targets */
    .nav-links a {
        padding: 15px 20px;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .newsletter-popup {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger span {
    transition: all 0.3s ease;
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better mobile nav spacing */
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
    }
    
    /* Dropdown arrow rotation on mobile */
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* Slide controls mobile */
    .slide-controls {
        bottom: 20px;
        padding: 8px 12px;
    }
    
    .slide-btn {
        width: 32px;
        height: 32px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 18px;
    }
    
    /* Hero mission box mobile */
    .hero-mission {
        padding: 20px;
        margin: 25px 0;
        font-size: 0.95rem;
    }
    
    /* About image mobile */
    .about-image img {
        min-height: 300px;
    }
}


/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-content {
    padding: 80px 0;
    background: #f8fafc;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-document h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px 0 15px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin: 25px 0 10px;
}

.legal-document p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-document ul {
    margin: 15px 0 20px 25px;
    color: var(--text);
}

.legal-document ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info-box {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 20px;
}

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

@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
}

/* Sitemap Section */
.sitemap-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(226, 232, 240, 0.95) 100%);
}

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

.sitemap-column h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.sitemap-column ul {
    list-style: none;
}

.sitemap-column li {
    margin-bottom: 12px;
}

.sitemap-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-column a:hover {
    color: var(--accent);
}

.sitemap-column a i {
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog Featured Article */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.blog-featured-image {
    position: relative;
    min-height: 400px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-image .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.blog-featured-content {
    padding: 50px 40px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 15px 0 20px;
    line-height: 1.3;
}

.blog-featured-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-featured-content .btn {
    align-self: flex-start;
    margin-top: 15px;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
    padding: 60px;
    border-radius: 20px;
    color: white;
    margin-top: 50px;
}

.blog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Source Links */
.blog-source {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.blog-source .source-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.blog-source a {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.blog-source a:hover {
    color: var(--accent);
}

.blog-source a i {
    font-size: 0.85rem;
}

/* Blog Sources Section */
.blog-sources {
    background: #f8fafc;
    border-radius: 16px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
}

.blog-sources h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-sources > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.source-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.source-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.source-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.source-item span {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 992px) {
    .sources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-sources {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .sources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-sources {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        min-height: 300px;
    }
    
    .blog-featured-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-featured-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-cta {
        padding: 40px 25px;
    }
}

/* Application Modal */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.application-modal.show {
    opacity: 1;
    visibility: visible;
}

.application-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px;
}

.application-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.application-modal-close:hover {
    background: var(--primary);
}

.application-modal h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.application-modal .job-position {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

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

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.1);
}

.file-upload {
    position: relative;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-upload:hover {
    border-color: var(--accent);
    background: rgba(100, 116, 139, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.file-upload p {
    color: var(--text-light);
    margin: 0;
}

.file-upload .file-name {
    color: var(--accent);
    font-weight: 500;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .application-modal-content {
        padding: 30px 20px;
    }
}


/* ============================================
   13. PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   14. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   15. BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
    background: #f8fafc;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb-separator {
    color: #cbd5e1;
    font-size: 0.8rem;
}

/* ============================================
   16. SEARCH FUNCTIONALITY
   ============================================ */
.search-toggle {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.search-toggle:hover {
    color: var(--accent);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 99998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search-close:hover {
    opacity: 1;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    font-size: 1.3rem;
    border: none;
    border-radius: 16px;
    background: white;
    color: var(--primary);
    font-family: inherit;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #94a3b8;
}

.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: var(--accent);
}

.search-results {
    margin-top: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.search-result-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-result-item h4 {
    color: var(--primary);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.search-result-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.search-result-item .result-category {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.search-no-results {
    text-align: center;
    color: white;
    padding: 40px;
    opacity: 0.8;
}

.search-no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.search-hint {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .search-input {
        font-size: 1.1rem;
        padding: 18px 55px 18px 20px;
    }
    
    .search-container {
        padding: 0 15px;
    }
    
    .search-close {
        top: 20px;
        right: 20px;
    }
}
