/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Navbar Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(71, 85, 105, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex: 0 0 auto;
    z-index: 1001;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    will-change: transform;
}

.nav-link:hover {
    color: #1e40af;
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #1e40af !important;
    background: rgba(30, 64, 175, 0.15) !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #1e40af !important;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Modern Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 100vw;
    max-width: 1200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 999;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-top: none;
    will-change: opacity, transform;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mega-menu-section {
    padding: 0;
}

.mega-menu-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 2px;
}

.mega-menu-links {
    display: grid;
    gap: 0.25rem;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    border-radius: 8px;
    position: relative;
    will-change: transform;
}

.mega-menu-link:hover {
    color: #334155;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.08), rgba(203, 213, 225, 0.12));
    transform: translateX(4px);
}

.mega-menu-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.mega-menu-link:hover::before {
    background: #64748b;
    transform: scale(1.2);
}

/* Simple Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 999;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-top: none;
    will-change: opacity, transform;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    color: #334155;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.08), rgba(203, 213, 225, 0.12));
    transform: translateX(4px);
}

/* Compact Solutions Menu */
.solutions-mega-menu {
    max-width: 1400px;
    padding: 1.5rem;
}

.solutions-mega-menu .mega-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.solutions-mega-menu .mega-menu-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.solutions-mega-menu .mega-menu-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(148, 163, 184, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: #64748b;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mega-menu {
        max-width: 95vw;
        padding: 1.5rem;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .solutions-mega-menu .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
        border-radius: 0;
        font-size: 1.1rem;
    }
    
    /* Mobile Dropdown */
    .dropdown .nav-link::after {
        content: '+';
        font-size: 1.2rem;
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav-link::after {
        transform: rotate(45deg);
    }
    
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 2rem 1rem 2rem;
        margin-top: 0;
        background: #f8fafc;
        border: none;
        border-top: 1px solid #e2e8f0;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active .mega-menu {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mega-menu-section {
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 1rem;
    }
    
    .mega-menu-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .mega-menu-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        justify-content: flex-start;
    }
    
    .mega-menu-link:hover {
        transform: none;
        background: rgba(148, 163, 184, 0.1);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .mega-menu {
        padding: 0 1rem 1rem 1rem;
    }
    
    .mega-menu-link {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.3s ease;
}

.hero:hover .hero-img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.8), 
        rgba(30, 41, 59, 0.7),
        rgba(51, 65, 85, 0.6)
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-detail {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: 2px solid transparent;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Modern Button Styles */
.btn {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #475569, #334155);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
    background: #f8fafc;
    color: #475569;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    background: #64748b;
    color: white;
    border-color: #64748b;
    transform: translateY(-1px);
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hiring Stats Summary - Grey Color Override */
.hiring-stats-summary .stat-number {
    color: #64748b;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hiring-stats-summary .stat-label {
    color: #475569;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add floating animation for hero content */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}



/* Add parallax effect enhancement */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.section-description {
    margin-top: 1rem;
}

.section-description p {
    font-size: 1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Enhanced Homepage Service Cards - Improved Padding */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.service-icon::before {
    display: none;
}

.service-icon img {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease;
    filter: brightness(0.8);
}

.service-card:hover .service-icon img {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #92400e;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #64748b;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    padding: 2px;
    border: 1px solid #a7f3d0;
    flex-shrink: 0;
}

.service-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.service-link:hover {
    background: #64748b;
    color: white;
    border-color: #64748b;
    gap: 0.75rem;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fbbf24;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #2563eb;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        border-radius: 0;
    }
    
    .hero {
        height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Services Detail Styles */
.services-detail {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
}

/* Complete Service Cards Redesign */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0;
}

/* Clean Service Cards Redesign - From Scratch */
.service-detail-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-detail-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid #93c5fd;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.service-detail-card:hover .service-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #1d4ed8;
    transform: scale(1.05);
}

.service-detail-card .service-icon i {
    font-size: 1.75rem;
    color: #1e40af;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-detail-card:hover .service-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-detail-card .service-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0.7) saturate(1.2);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-detail-card:hover .service-icon img {
    filter: brightness(2) saturate(0);
    transform: scale(1.1);
}

.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-detail-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-card h3 a:hover {
    color: #3b82f6;
}

.service-detail-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-detail-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-shrink: 0;
}

.service-detail-card .service-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-detail-card .service-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.service-detail-card .service-pricing {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3b82f6;
    text-align: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    margin-top: auto;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Category Headers */
.service-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
}

.category-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* CTA Section - Clean Design with Black/Brown Gradient Text */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937 0%, #8b4513 50%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: inline-block;
}

.cta-content p {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #374151 0%, #8b4513 50%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.6;
    display: inline-block;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-section .btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive adjustments for solutions page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        margin: 0 1rem;
    }
    
    .solution-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .solution-card-body {
        padding: 0 1.5rem 1rem;
    }
    
    .solution-card-footer {
        padding: 1rem 1.5rem;
    }
    
    .solution-icon {
        width: 64px;
        height: 64px;
    }
    
    .solution-card h3 {
        font-size: 1.25rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .solution-card-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .solution-card-body {
        padding: 0 1.25rem 1rem;
    }
    
    .solution-card-footer {
        padding: 1rem 1.25rem;
    }
    
    .solution-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    
    .solution-icon img {
        width: 28px;
        height: 28px;
    }
    
    .solution-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .solution-card > p {
        font-size: 0.9rem;
    }
    
    .solution-pricing {
        font-size: 1rem;
    }
}
/* Solutions Page Styles */
.solutions-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.solutions-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solutions-intro p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e1;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-color: #3b82f6;
    transform: scale(1.05);
}

.solution-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0.6);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon img {
    filter: brightness(0) invert(1);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.solution-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-card:hover h3 a {
    color: #3b82f6;
}

.solution-card > p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-pricing {
    background: #f8fafc;
    color: #475569;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    margin-top: auto;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-pricing {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.solution-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.solution-tag {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.solution-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-features h4,
.solution-benefits h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-features li i {
    color: #10b981;
    font-size: 0.875rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.benefit-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.solution-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

/* Solution Process */
.solution-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #e5e7eb;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
}

.step-content li {
    color: #4b5563;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8fafc;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.story-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.story-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.story-author strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
}

.story-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive adjustments for solutions page */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .solution-pricing {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        justify-content: space-around;
    }
}
/* Training Page Styles */
.training-programs {
    padding: 80px 0;
    background: #f8fafc;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card.featured {
    border: 2px solid #fbbf24;
    transform: scale(1.02);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #6b7280;
    font-weight: 500;
}

.program-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.program-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f1f5f9;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    font-weight: 500;
}

.program-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.program-stats .stat {
    text-align: center;
    flex: 1;
}

.program-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.program-stats .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.program-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.program-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-actions .btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.program-actions .btn-outline:hover {
    background: #2563eb;
    color: white;
}

.program-actions .btn-primary {
    background: #2563eb;
    color: white;
}

.program-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Placement Services */
.placement-services {
    padding: 80px 0;
    background: white;
}

.placement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.placement-feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

/* Removed hover effects for feature icons */

.placement-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.placement-feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Student Success */
.student-success {
    padding: 80px 0;
    background: #f8fafc;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-story-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.success-story-card:hover::before {
    transform: scaleX(1);
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.success-story-card .student-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #f0fdf4;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    position: relative;
}

.success-story-card .student-photo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #34d399);
    z-index: -1;
}

.success-story-card .student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-story-card .student-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.success-story-card .student-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.success-story-card .company-name {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.success-story-card .package-amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #a7f3d0;
    display: inline-block;
    margin-top: 0.25rem;
}

/* Placement Download Section */
.placement-download-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid #e2e8f0;
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-download {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-download i {
    font-size: 1.1rem;
}

/* Hiring Partners */
.hiring-partners {
    padding: 80px 0;
    background: white;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments for training page */
@media (max-width: 1200px) {
    .success-stories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .program-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .placement-features {
        grid-template-columns: 1fr;
    }
    
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .success-story-card {
        padding: 1.25rem;
    }
    
    .success-story-card .student-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .success-story-card .student-name {
        font-size: 0.9rem;
    }
    
    .success-story-card .company-name {
        font-size: 0.8rem;
    }
    
    .success-story-card .package-amount {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .success-story-card {
        padding: 1rem;
    }
    
    .success-story-card .student-photo {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .success-story-card .student-name {
        font-size: 0.875rem;
    }
    
    .success-story-card .company-name {
        font-size: 0.75rem;
    }
    
    .success-story-card .package-amount {
        font-size: 0.9rem;
        padding: 0.35rem 0.7rem;
    }
    
    .download-content h3 {
        font-size: 1.5rem;
    }
    
    .download-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-download {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container,
.contact-info-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-info-container p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Details */
.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.detail-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.social-contact {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.social-contact h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        align-self: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

/* Loading state for form submission */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* About Page Styles */
.company-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.overview-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.company-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.company-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Values */
.mission-vision {
    padding: 80px 0;
    background: #f8fafc;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.mvv-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transform: rotate(45deg);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #6b7280;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.mvv-card li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Leadership Team */
.leadership-team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.member-credentials span {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Company Timeline - Complete Redesign */
.company-timeline {
    padding: 100px 0;
    background: #f8fafc;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8, #3b82f6);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 2rem;
}

.timeline-year {
    grid-column: 2;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
    border: 5px solid white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-year:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    max-width: 350px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    justify-self: end;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    justify-self: start;
    margin-left: 0;
}

/* Content arrows pointing to timeline */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Add subtle animation */
.timeline-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

/* Certifications & Awards */
.certifications-awards {
    padding: 80px 0;
    background: white;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.credential-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.credential-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.credential-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.credential-item i {
    color: #2563eb;
    font-size: 1.25rem;
}

.credential-item span {
    color: #4b5563;
    font-weight: 500;
}

/* Careers Page Styles */
.why-work-with-us {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Open Positions */
.open-positions {
    padding: 80px 0;
    background: white;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.position-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.position-card.featured {
    border: 2px solid #fbbf24;
    background: white;
}

.position-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.position-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.position-meta span {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.position-summary {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.position-details {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.detail-section ul {
    list-style: none;
}

.detail-section li {
    padding: 0.25rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.salary-range {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563eb;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Employee Testimonials */
.employee-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Application Form */
.application-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.application-form input[type="file"] {
    padding: 0.75rem;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    background: #f8fafc;
}

.application-form small {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Industries Page Styles */
.industries-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.industry-icon::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-bottom: 20px solid #fbbf24;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.industry-card > p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.industry-challenges,
.industry-solutions {
    margin-bottom: 2rem;
}

.industry-challenges h4,
.industry-solutions h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.industry-challenges ul,
.industry-solutions ul {
    list-style: none;
}

.industry-challenges li,
.industry-solutions li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.industry-challenges li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #f59e0b;
}

.industry-solutions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.industry-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.industry-stats .stat {
    text-align: center;
    flex: 1;
}

.industry-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.industry-stats .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Compliance Standards */
.compliance-standards {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.compliance-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

.compliance-categories {
    display: grid;
    gap: 3rem;
}

.compliance-category-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.healthcare-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.financial-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.government-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.international-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #64748b;
    font-size: 1rem;
}

.compliance-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.compliance-logo-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compliance-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    text-align: center;
    flex-shrink: 0;
}

.hipaa-logo { background: linear-gradient(135deg, #ef4444, #dc2626); }
.hitech-logo { background: linear-gradient(135deg, #f59e0b, #d97706); }
.fda-logo { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.pci-logo { background: linear-gradient(135deg, #10b981, #059669); }
.sox-logo { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.glba-logo { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.fedramp-logo { background: linear-gradient(135deg, #1f2937, #374151); }
.fisma-logo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.nist-logo { background: linear-gradient(135deg, #059669, #047857); }
.iso-logo { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.gdpr-logo { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.soc2-logo { background: linear-gradient(135deg, #7c3aed, #6d28d9); }

.compliance-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.compliance-info p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.compliance-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Industry Case Studies */
.industry-case-studies {
    padding: 80px 0;
    background: #f8fafc;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.case-study-header {
    margin-bottom: 2rem;
}

.industry-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.industry-badge.healthcare {
    background: #fef3c7;
    color: #92400e;
}

.industry-badge.financial {
    background: #dbeafe;
    color: #1e40af;
}

.industry-badge.manufacturing {
    background: #d1fae5;
    color: #065f46;
}

.case-study-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.case-study-challenge,
.case-study-solution {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.case-study-results h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.case-study-results ul {
    list-style: none;
}

.case-study-results li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.case-study-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Partners Page Styles */
.partnership-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.overview-content p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.partnership-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.partnership-stats .stat-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Technology Partners */
.technology-partners {
    padding: 80px 0;
    background: #f8fafc;
}

.partners-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.partner-category h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.partner-card.featured {
    border: 2px solid #fbbf24;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.partner-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.partner-level {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}

.partner-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partner-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hiring Partners */
.hiring-partners-section {
    padding: 80px 0;
    background: white;
}

.hiring-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hiring-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.hiring-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hiring-partner {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.hiring-partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hiring-partner img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.hiring-partner:hover img {
    filter: grayscale(0%);
}

.partner-stats span {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Educational Partners */
.educational-partners {
    padding: 80px 0;
    background: #f8fafc;
}

.educational-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.educational-partner {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.educational-partner .partner-logo {
    width: 100px;
    height: 100px;
}

.partnership-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.partnership-type {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 1rem;
}

.partnership-details p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partnership-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.partnership-benefits span {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Certification Partners */
.certification-partners {
    padding: 80px 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cert-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cert-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.certification-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.certification-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cert-programs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-programs span {
    background: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Partnership Benefits */
.partnership-benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Become a Partner */
.become-partner {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.partner-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partner-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-type {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.partner-type h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-type p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: white;
    color: #2563eb;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline Mobile Redesign */
    .timeline {
        padding: 1rem 0;
        max-width: 100%;
    }
    
    .timeline::before {
        left: 60px;
        width: 4px;
    }
    
    .timeline-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 3rem;
        gap: 2rem;
    }
    
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.1rem;
        border-width: 4px;
        flex-shrink: 0;
        position: relative;
        left: auto;
        transform: none;
        margin-left: 20px;
    }
    
    .timeline-content {
        max-width: none;
        width: calc(100% - 120px);
        padding: 2rem 1.5rem;
        margin: 0;
        grid-column: auto;
        justify-self: auto;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: auto;
        justify-self: auto;
        margin: 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .position-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .hiring-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .educational-grid {
        grid-template-columns: 1fr;
    }
    
    .educational-partner {
        flex-direction: column;
        text-align: center;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partnership-stats {
        grid-template-columns: 1fr;
    }
    
    .hiring-partners-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline extra small screen adjustments */
    .timeline {
        padding: 0.5rem 0;
    }
    
    .timeline::before {
        left: 50px;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
        margin-left: 15px;
    }
    
    .timeline-content {
        width: calc(100% - 110px);
        padding: 1.5rem 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-bottom: 0.25rem;
    }
}
/* Homepage Preview Sections */

/* Solutions Preview */
.solutions-preview {
    padding: 80px 0;
    background: white;
}

.solutions-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-preview-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.solution-preview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-preview-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-highlights {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.solution-highlights span {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    color: #2563eb !important;
    border: 2px solid #2563eb !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-outline:hover {
    background: #2563eb !important;
    color: white !important;
}

/* Industries Preview */
.industries-preview {
    padding: 80px 0;
    background: #f8fafc;
}

.industries-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.industry-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-preview-card .industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.industry-preview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.industry-preview-card p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Training Preview */
.training-preview {
    padding: 80px 0;
    background: white;
}

.training-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.training-stat {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.training-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.training-stat p {
    color: #6b7280;
    font-weight: 500;
}

.training-programs-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-preview {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.program-preview h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.program-preview p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    color: #2563eb;
    font-size: 1.25rem;
}

.highlight-item span {
    color: #4b5563;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Preview */
.contact-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-align: center;
}

.contact-preview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-preview-content > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-option i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.contact-option h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-option p {
    opacity: 0.9;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-preview .btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.contact-preview .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-preview .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Responsive Design for Homepage Sections */
@media (max-width: 768px) {
    .solutions-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-programs-preview {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        justify-content: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .industries-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .training-stats {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        flex-direction: column;
        align-items: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #334155;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #64748b;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.story-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.story-icon i {
    font-size: 1rem;
    color: white;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.story-challenge, .story-solution {
    margin-bottom: 1rem;
    color: #475569;
    line-height: 1.6;
}

.story-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.result-item {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Technology Stack Section */
.technology-stack {
    padding: 5rem 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
}

.technology-stack .section-title {
    color: white;
}

.technology-stack .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.security-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.development-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cloud-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.category-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.tech-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tech-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(251, 191, 36, 0.3);
}

.tech-item-card i {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.tech-item-card span {
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .features-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-category-card {
        padding: 1.5rem;
    }
    
    .tech-items-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .feature-card,
    .story-card {
        padding: 1.5rem;
    }
    
    .story-results {
        justify-content: center;
    }
    
    /* Compliance Section Responsive */
    .compliance-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .compliance-category-modern {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .compliance-logos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .compliance-logo-card {
        padding: 1rem;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
    
    .compliance-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* Dropdown Navigation Styles */
.dropdown {
    position: relative;
}

.dropdown .nav-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 600px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

/* Special handling for solutions dropdown with more content */
.dropdown-content:has(.dropdown-section:nth-child(5)) {
    min-width: 800px;
    max-width: 95vw;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section a {
    display: block;
    padding: 0.4rem 0;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding-left: 0.5rem;
}

.dropdown-section a:hover {
    color: #334155;
    background: rgba(148, 163, 184, 0.05);
    padding-left: 1rem;
}

/* Mobile dropdown adjustments */
@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 500px;
        max-width: 85vw;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .dropdown-content:has(.dropdown-section:nth-child(5)) {
        min-width: 600px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dropdown-content {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        min-width: auto;
        max-width: none;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 90px);
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        display: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: grid;
    }
    
    .dropdown-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.25rem;
    }
    
    .dropdown-section a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .dropdown-content {
        left: 5px;
        right: 5px;
        width: calc(100vw - 10px);
        padding: 0.75rem;
    }
    
    .dropdown-section {
        margin-bottom: 1rem;
    }
    
    .dropdown-section h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-section a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}
/* Service Page Styles */
.service-hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
    line-height: 1.6;
}

.service-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.service-overview {
    padding: 5rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #334155;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.overview-stats .stat-item {
    text-align: center;
}

.overview-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.overview-stats .stat-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.overview-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.service-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #334155;
}

.service-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

.service-technologies {
    padding: 5rem 0;
    background: white;
}

.service-technologies h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #334155;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-technologies .tech-category {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #64748b;
}

.service-technologies .tech-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #334155;
}

.service-technologies .tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.service-technologies .tech-items span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-technologies .tech-items span:hover {
    background: #64748b;
    color: white;
    transform: translateY(-2px);
}



.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-features .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Client Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: white;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Key Metrics Section */
.key-metrics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.key-metrics .section-title {
    color: white !important;
}

.key-metrics .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.metrics-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.metric-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24 !important;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white !important;
}

.metric-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

/* News & Insights Section */
.news-insights {
    padding: 5rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #64748b;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-date {
    text-align: center;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 60px;
    height: fit-content;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.date-month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #334155;
}

.news-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 1rem;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #334155;
    border-color: white;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .testimonials-grid,
    .metrics-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card,
    .metric-card {
        padding: 1.5rem;
    }
    
    .news-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-date {
        align-self: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
/* Service Page Styles */
.service-hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-hero .btn-primary {
    background: #fbbf24;
    color: #1f2937;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.service-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.service-hero .btn-secondary:hover {
    background: white;
    color: #334155;
}

/* Service Overview */
.service-overview {
    padding: 5rem 0;
    background: white;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-description {
    text-align: center;
    margin-bottom: 4rem;
}

.service-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #334155;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Technologies */
.service-technologies {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-technologies h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #334155;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-item {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 500;
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    transform: translateY(-2px);
}

/* Service Process */
.service-process {
    padding: 5rem 0;
    background: white;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Service CTA - Clean Design with Black/Brown Gradient Text */
.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.service-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937 0%, #8b4513 50%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: inline-block;
}

.service-cta .cta-content p {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #374151 0%, #8b4513 50%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.6;
    display: inline-block;
    max-width: 600px;
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.service-cta .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero .btn-primary,
    .service-hero .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .service-features-grid,
    .tech-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .service-description h2,
    .service-technologies h2,
    .service-process h2 {
        font-size: 2rem;
    }
    
    .service-cta .cta-content h2 {
        font-size: 2rem;
    }
}
/* Enhanced Service Page Components */

/* Service Stats Section */
.service-stats {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

/* Service Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: white;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #64748b, #94a3b8);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Testimonial */
.service-testimonial {
    padding: 5rem 0;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: white;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-content .quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content .quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 3rem 0 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Service Pricing */
.service-pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #64748b;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #334155;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #475569;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Service FAQ */
.service-faq {
    padding: 5rem 0;
    background: white;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Related Services */
.related-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.related-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #334155;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.related-service-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.related-service-card .service-icon i {
    font-size: 1.25rem;
    color: white;
}

.related-service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #334155;
}

.related-service-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design for Enhanced Components */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid,
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .service-benefits h2,
    .service-pricing h2,
    .service-faq h2,
    .related-services h2 {
        font-size: 2rem;
    }
}
/* Image Icon Styles */
.service-icon img,
.feature-icon img,
.benefit-icon img,
.related-service-card .service-icon img {
    transition: all 0.3s ease;
}

/* Removed hover effects for feature icons */

/* Update existing feature icon styles for images */
.feature-item .feature-icon {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px solid rgba(148, 163, 184, 0.1) !important;
}

.feature-item .feature-icon img {
    width: 32px;
    height: 32px;
}

/* Removed hover effects for feature icons */

/* Update benefit icon styles for images */
.benefit-icon {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px solid rgba(148, 163, 184, 0.1) !important;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
}

/* Removed hover effects for benefit icons */

/* Update related service icon styles for images */
.related-service-card .service-icon {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px solid rgba(148, 163, 184, 0.1) !important;
}

.related-service-card .service-icon img {
    width: 28px;
    height: 28px;
}

/* Removed hover effects for related service icons */
/* Additional Modern Card Components */

.news-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.news-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    margin-top: 1rem;
}

.news-link:hover {
    background: #64748b;
    color: white;
    border-color: #64748b;
    gap: 0.75rem;
    transform: translateY(-1px);
}

.industry-preview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.industry-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.industry-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.industry-icon i {
    font-size: 1.25rem;
    color: white;
}

.solution-preview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.solution-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #64748b, #94a3b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.solution-icon i {
    font-size: 1.25rem;
    color: white;
}

/* Contact and Form Cards */
.contact-option {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.contact-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Program and Training Cards */
.program-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.program-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.training-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.training-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Service Page Specific Cards */
.service-stats-card,
.service-benefit-card,
.service-process-card,
.service-testimonial-card,
.service-pricing-card,
.service-faq-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-stats-card:hover,
.service-benefit-card:hover,
.service-process-card:hover,
.service-testimonial-card:hover,
.service-pricing-card:hover,
.service-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Small Button Variants */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.btn-xs {
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
}

/* Card Action Buttons */
.card-action-btn {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.card-action-btn:hover {
    background: #64748b;
    color: white;
    border-color: #64748b;
    transform: translateY(-1px);
}


/* Enhanced visibility for all card feature lists */
.feature-card .service-features li,
.solution-card .service-features li,
.story-card .service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-card .service-features li i,
.solution-card .service-features li i,
.story-card .service-features li i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    padding: 2px;
    border: 1px solid #a7f3d0;
    flex-shrink: 0;
}



/* Hover effects for better interactivity */
.service-features li:hover {
    color: #1f2937;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.service-features li:hover i {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: #10b981;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}
/* Enhanced Responsive Dropdown Styles */
.dropdown {
    position: relative;
}

/* Prevent body scroll when dropdown is active on mobile */
body.dropdown-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Improved dropdown positioning */
.dropdown-content {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Ensure dropdown doesn't extend beyond viewport */
@media (max-width: 1200px) {
    .dropdown-content {
        right: 0;
        left: auto;
        min-width: 500px;
    }
    
    .dropdown:first-child .dropdown-content {
        left: 0;
        right: auto;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 450px;
        max-width: 80vw;
        padding: 1rem;
        gap: 1rem;
    }
    
    .dropdown-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-section a {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .dropdown-content {
        max-height: calc(100vh - 120px);
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .dropdown-content {
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .dropdown-section {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .dropdown-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Accessibility improvements */
.dropdown-content {
    outline: none;
}

.dropdown-section a:focus {
    outline: 2px solid #64748b;
    outline-offset: 2px;
    background: rgba(148, 163, 184, 0.1);
}

/* Animation improvements */
@media (prefers-reduced-motion: reduce) {
    .dropdown-content {
        transition: none;
    }
    
    .dropdown-section a {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dropdown-content {
        border: 2px solid #000;
        background: #fff;
    }
    
    .dropdown-section h4 {
        color: #000;
        border-bottom-color: #000;
    }
    
    .dropdown-section a {
        color: #000;
    }
    
    .dropdown-section a:hover {
        background: #000;
        color: #fff;
    }
}

/* Loading state for large dropdowns */
.dropdown-content.loading {
    opacity: 0.7;
    pointer-events: none;
}

.dropdown-content.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e2e8f0;
    border-top-color: #64748b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .dropdown-section a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.75rem 0.5rem;
        margin: 0.1rem 0;
        border-radius: 8px;
    }
    
    .dropdown-section a:hover,
    .dropdown-section a:focus {
        padding-left: 0.75rem;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    .dropdown-content {
        overflow-x: hidden;
    }
    
    .dropdown-section a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}
/* Enhanced Solution Pages Styles */
.solution-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.solution-hero .container {
    position: relative;
    z-index: 2;
}

.solution-hero-content {
    color: white;
    max-width: 600px;
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.solution-badge i {
    font-size: 16px;
}

.solution-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.solution-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.solution-subtitle i {
    font-size: 1.8rem;
}

.solution-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.solution-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solution-hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.solution-hero-buttons .btn-primary {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.solution-hero-buttons .btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.solution-hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.solution-hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin-left: auto;
}

.hero-main-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Features Section */
.solution-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.advantage-content p {
    color: #6c757d;
    margin: 0;
}

/* Enhanced CTA Section */
.solution-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    margin-bottom: 30px;
}

.cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.cta-buttons .btn-primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.cta-feature i {
    font-size: 1.2rem;
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solution-hero {
        padding: 80px 0 60px;
    }
    
    .solution-title {
        font-size: 2.5rem;
    }
    
    .solution-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-icon-container {
        width: 200px;
        height: 200px;
        margin: 40px auto 0;
    }
    
    .hero-main-icon {
        font-size: 5rem;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}
/* Enhanced Services Section Styles */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    opacity: 0.5;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.services .section-icon i {
    font-size: 2.5rem;
    color: white;
}

.services .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services .section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Removed hover effects for service icons */

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 40px auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content {
    padding: 0 40px 40px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #495057;
    font-weight: 500;
}

.service-features li i {
    color: #28a745;
    font-size: 0.9rem;
    width: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.service-link:hover::before {
    left: 0;
}

.service-link span,
.service-link i {
    position: relative;
    z-index: 2;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
}

.services-cta .cta-content {
    position: relative;
    z-index: 2;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white !important;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9) !important;
}

.services-cta .btn {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.services-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.services-cta .btn i {
    font-size: 1.2rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .services .section-title {
        font-size: 2.2rem;
    }
    
    .services .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .service-content {
        padding: 0 30px 30px;
    }
    
    .services-cta {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .services-cta h3 {
        font-size: 1.6rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 0 20px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 30px auto 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}
/* Enhanced Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.testimonials .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonials .section-icon i {
    font-size: 2rem;
    color: #ff6b6b;
}

.testimonials .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonials .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card.featured {
    transform: scale(1.05);
    border: 2px solid #ff6b6b;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 3;
}

.featured-badge i {
    font-size: 0.9rem;
}

.testimonial-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.client-avatar i {
    font-size: 1.5rem;
    color: white;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-position {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-body {
    padding: 0 30px 30px;
}

.testimonial-text {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-tag i {
    font-size: 0.9rem;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

.verified-badge i {
    font-size: 0.9rem;
}

/* Testimonials Stats */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffc107;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stat-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.stat-icon {
    display: flex;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ff6b6b;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        margin: 0 10px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-header {
        padding: 25px 25px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-body {
        padding: 0 25px 25px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-header {
        padding: 20px 20px 10px;
    }
    
    .testimonial-body {
        padding: 0 20px 20px;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .client-avatar i {
        font-size: 1.2rem;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}
/* Enhanced Contact Preview Section Styles */
.contact-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="0.8" fill="rgba(255,255,255,0.05)"/><circle cx="35" cy="5" r="0.8" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
}

.contact-preview .container {
    position: relative;
    z-index: 2;
}

.contact-preview-content {
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-preview .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.contact-preview .section-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-preview h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-preview p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.contact-method:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0 16px 0 20px;
}

/* Removed hover effects for method icons */

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.method-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b6b;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.availability {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-item i {
    color: #64748b;
    font-size: 1.2rem;
    width: 20px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(100, 116, 139, 0.1);
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-cta .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: 2px solid transparent;
}

.contact-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.contact-cta .btn i {
    font-size: 1.2rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: #ffc107;
    font-size: 1.1rem;
}

/* Responsive Design for Contact Preview */
@media (max-width: 768px) {
    .contact-preview {
        padding: 80px 0;
    }
    
    .contact-preview h2 {
        font-size: 2.2rem;
    }
    
    .contact-preview p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .contact-method {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .contact-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
        margin: 0 10px 40px;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-preview h2 {
        font-size: 1.8rem;
    }
    
    .contact-preview p {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .method-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }
    
    .feature-item {
        justify-content: center;
        text-align: center;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
    }
}
/* Simple Text Visibility Rules */

/* Default: Dark text on light backgrounds */
body {
    color: #2c3e50;
    background: white;
}

/* Light backgrounds = Dark text */
.services,
.solution-features,
.why-choose-us,
.service-card,
.feature-card,
.testimonial-card {
    color: #2c3e50;
}

.services h1, .services h2, .services h3, .services h4, .services h5, .services h6,
.solution-features h1, .solution-features h2, .solution-features h3, .solution-features h4, .solution-features h5, .solution-features h6,
.why-choose-us h1, .why-choose-us h2, .why-choose-us h3, .why-choose-us h4, .why-choose-us h5, .why-choose-us h6,
.service-card h1, .service-card h2, .service-card h3, .service-card h4, .service-card h5, .service-card h6,
.feature-card h1, .feature-card h2, .feature-card h3, .feature-card h4, .feature-card h5, .feature-card h6,
.testimonial-card h1, .testimonial-card h2, .testimonial-card h3, .testimonial-card h4, .testimonial-card h5, .testimonial-card h6 {
    color: #2c3e50;
}

.services p, .solution-features p, .why-choose-us p,
.service-card p, .feature-card p, .testimonial-card p {
    color: #6c757d;
}

/* Dark backgrounds = Light text */
.testimonials,
.contact-preview,
.solution-cta,
.solution-hero,
.footer {
    color: white;
}

.testimonials h1, .testimonials h2, .testimonials h3, .testimonials h4, .testimonials h5, .testimonials h6,
.contact-preview h1, .contact-preview h2, .contact-preview h3, .contact-preview h4, .contact-preview h5, .contact-preview h6,
.solution-cta h1, .solution-cta h2, .solution-cta h3, .solution-cta h4, .solution-cta h5, .solution-cta h6,
.solution-hero h1, .solution-hero h2, .solution-hero h3, .solution-hero h4, .solution-hero h5, .solution-hero h6,
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
    color: white;
}

.testimonials p, .contact-preview p, .solution-cta p, .solution-hero p, .footer p {
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation - Dark text on light header */
.nav-link {
    color: #2c3e50;
}

.nav-link:hover {
    color: #ff6b6b;
}

/* Buttons */
.btn {
    color: white;
}

.btn-secondary {
    color: #2c3e50;
    background: white;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    color: white;
    background: #2c3e50;
}

/* Links */
a {
    color: #ff6b6b;
}

a:hover {
    color: #ee5a24;
}
/* Fix specific text visibility issues */

/* Testimonials section - Dark background needs white text */
.testimonials {
    color: white !important;
}

.testimonials .section-title {
    color: white !important;
    margin-bottom: 20px;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

.testimonials h1, .testimonials h2, .testimonials h3, .testimonials h4, .testimonials h5, .testimonials h6 {
    color: white !important;
}

.testimonials p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Contact Preview section - Dark background needs white text */
.contact-preview {
    color: white !important;
}

.contact-preview h2 {
    color: white !important;
    margin-bottom: 20px;
}

.contact-preview p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-preview h1, .contact-preview h2, .contact-preview h3, .contact-preview h4, .contact-preview h5, .contact-preview h6 {
    color: white !important;
}

/* Ensure all text in these sections is visible */
.testimonials *, .contact-preview * {
    color: inherit;
}

/* Override any conflicting styles */
.testimonials .section-header, .contact-preview .section-header {
    color: white !important;
}

.testimonials .section-header h2, .contact-preview .section-header h2 {
    color: white !important;
}

.testimonials .section-header p, .contact-preview .section-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}
/* Fix testimonial card text - white cards need dark text */
.testimonial-card {
    background: white !important;
    color: #2c3e50 !important;
}

.testimonial-card h1, .testimonial-card h2, .testimonial-card h3, .testimonial-card h4, .testimonial-card h5, .testimonial-card h6 {
    color: #2c3e50 !important;
}

.testimonial-card p {
    color: #495057 !important;
}

.client-name {
    color: #2c3e50 !important;
}

.client-position {
    color: #6c757d !important;
}

.testimonial-text {
    color: #495057 !important;
}

/* Keep the section header white (on dark background) but make card content dark */
.testimonials .testimonial-card * {
    color: inherit;
}

.testimonials .testimonial-card {
    color: #2c3e50 !important;
}
/* Fix contact features text visibility - make text dark for light background */
.contact-features {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2c3e50 !important;
}

.contact-features .feature-item {
    color: #2c3e50 !important;
}

.contact-features .feature-item span {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

.contact-features .feature-item i {
    color: #64748b !important;
}

/* Course Detail Page Styles */
.course-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.course-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.course-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.course-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.course-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.course-stats {
    display: flex;
    gap: 2rem;
}

.course-stats .stat {
    text-align: center;
}

.course-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.course-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.video-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.05);
}

.video-placeholder i {
    font-size: 4rem;
    color: #fbbf24;
}

.video-placeholder span {
    font-size: 1.125rem;
    font-weight: 600;
}

.course-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.overview-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1.5rem;
}

.overview-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.curriculum-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.curriculum-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
}

.curriculum-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.curriculum-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.curriculum-item p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

.course-details-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.course-details-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: #2563eb;
    width: 20px;
    text-align: center;
}

.detail-item span {
    font-weight: 500;
    color: #4b5563;
}

.pricing-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
}

.pricing-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pricing-section .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.payment-options {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.payment-methods {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.course-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.course-actions .btn {
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-actions .btn-primary {
    background: #2563eb;
    color: white;
}

.course-actions .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.course-actions .btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.course-actions .btn-outline:hover {
    background: #2563eb;
    color: white;
}

.prerequisites {
    padding: 80px 0;
    background: #f8fafc;
}

.prerequisites h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prerequisite-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.prerequisite-item i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.prerequisite-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.prerequisite-item p {
    color: #6b7280;
    line-height: 1.6;
}

.career-outcomes {
    padding: 80px 0;
    background: white;
}

.career-outcomes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.outcome-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.outcome-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.outcome-item p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.outcome-item .salary {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Responsive Design for Course Pages */
@media (max-width: 768px) {
    .course-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-title {
        font-size: 2rem;
    }
    
    .course-stats {
        justify-content: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-details-card {
        position: static;
    }
    
    .prerequisites-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Training Program Cards */
.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.program-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-pricing {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.price-display {
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.payment-options {
    color: #64748b;
    font-size: 0.9rem;
}

.program-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.program-actions .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
}

.btn-secondary {
    background: #64748b;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Course Details Modal */
.course-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

/* Course Tabs */
.course-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: #1e40af;
    background: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.tab-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

/* Tab Content */
.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.course-intro h3,
.curriculum-content h3,
.video-content h3,
.pricing-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.course-intro p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.course-highlights h4 {
    color: #374151;
    margin-bottom: 1rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-highlights li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

/* Curriculum Styles */
.curriculum-content {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* Video Placeholder */
.video-placeholder {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.video-placeholder i {
    font-size: 4rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Pricing Details */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.price-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-header h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
}

.price-features {
    list-style: none;
    padding: 0;
}

.price-features li {
    padding: 0.75rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Modal Actions */
.modal-actions {
    padding: 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .course-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 50%;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
    
    .program-actions {
        flex-direction: column;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
/* Additional Curriculum Styling */
.curriculum-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-items li {
    padding: 0.75rem 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.curriculum-items li:last-child {
    border-bottom: none;
}

.curriculum-items i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Enhanced Button Styles */
.course-details-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.course-details-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Modal Animation Improvements */
.course-modal.show {
    display: block;
}

.modal-content.show {
    animation: modalSlideIn 0.3s ease forwards;
}

/* Responsive Improvements */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
    
    .pricing-details {
        gap: 1rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}
/* Enhanced Pricing Section for Course Pages */
.pricing-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.pricing-section:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.pricing-section h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-section .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
}

/* Course Actions Enhancement */
.course-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.course-actions .btn {
    flex: 1;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.course-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
}

.course-actions .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.course-actions .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.course-actions .btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Responsive Design for Course Actions */
@media (max-width: 768px) {
    .course-actions {
        flex-direction: column;
    }
    
    .pricing-section .price {
        font-size: 2rem;
    }
    
    .pricing-section {
        padding: 1.5rem;
    }
}
/* YouTube Video Embed Styles */
.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Video Placeholder Styles */
.video-embed .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-embed .video-placeholder:hover {
    background: linear-gradient(135deg, #334155, #475569);
}

.video-embed .video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.video-embed .video-placeholder:hover i {
    transform: scale(1.1);
    color: #60a5fa;
}

.video-embed .video-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Course Video Container */
.course-video {
    flex: 1;
    max-width: 500px;
}

.video-container {
    width: 100%;
    position: relative;
}

/* Hide placeholder when iframe is present */
.video-embed:has(iframe) .video-placeholder {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .course-video {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .video-embed .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-embed .video-placeholder span {
        font-size: 1rem;
    }
}

/* Course Hero Section Enhancement */
.course-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 500px;
}

.course-info {
    flex: 1;
}

/* Additional Video Styling for Better Integration */
.video-embed {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
/* Enhanced Curriculum Styles for Detailed Modules */
.curriculum-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.curriculum-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.curriculum-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.curriculum-item div {
    flex: 1;
}

.curriculum-item h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.curriculum-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Curriculum */
@media (max-width: 768px) {
    .curriculum-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .curriculum-item i {
        font-size: 1.25rem;
    }
    
    .curriculum-item h4 {
        font-size: 1rem;
    }
    
    .curriculum-item p {
        font-size: 0.9rem;
    }
}

/* Course Overview Section Enhancement */
.course-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.overview-content > p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.overview-content h3 {
    color: #374151;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .overview-content h3 {
        font-size: 1.5rem;
    }
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.header-badge i {
    font-size: 1.1rem;
}

.blog-header .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-header .page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.25rem;
    color: white;
}

.stat-content {
    text-align: left;
    flex: 1;
}

.blog-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.blog-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.header-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.header-actions .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
}

.header-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.header-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Decorative Elements */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon i {
    font-size: 1.5rem;
    color: rgba(251, 191, 36, 0.6);
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1.5s; }
.floating-icon:nth-child(3) { animation-delay: 3s; }
.floating-icon:nth-child(4) { animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Featured Article */
.featured-article {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.featured-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.featured-meta i {
    color: #fbbf24;
}

.featured-excerpt {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.featured-excerpt p {
    margin-bottom: 1.5rem;
}

/* Blog Articles Grid */
.blog-articles {
    padding: 5rem 0;
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 0 1.5rem;
}

.blog-date {
    text-align: center;
    background: linear-gradient(135deg, #334155, #475569);
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    min-width: 75px;
}

.blog-date .date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .date-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.blog-date .date-year {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.blog-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.blog-category.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.blog-category.research {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.blog-category.partnership {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.blog-category.event {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.blog-category.certification {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.blog-category.award {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.blog-category.expansion {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.blog-category.product {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.blog-category.training {
    background: linear-gradient(135deg, #059669, #047857);
}

.blog-category.community {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.blog-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-meta > span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-meta i {
    color: #fbbf24;
}

.blog-excerpt {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-excerpt p {
    margin-bottom: 0.75rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.subscription-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subscription-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.subscription-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscription-form input:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
}

.subscription-form .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header {
        padding: 4rem 0 3rem 0;
        min-height: 60vh;
    }
    
    .blog-header .page-title {
        font-size: 2.5rem;
    }
    
    .blog-header .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .blog-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .blog-stats .stat-item {
        padding: 1.25rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .blog-stats .stat-number {
        font-size: 1.75rem;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .header-actions .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon i {
        font-size: 1.25rem;
    }
    
    .featured-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .featured-meta {
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .subscription-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 3rem 0 2rem 0;
        min-height: 50vh;
    }
    
    .blog-header .page-title {
        font-size: 2rem;
    }
    
    .blog-header .page-subtitle {
        font-size: 1rem;
    }
    
    .header-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .blog-stats {
        margin: 1.5rem 0;
    }
    
    .blog-stats .stat-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .blog-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .blog-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .blog-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .blog-header {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
}
/* Responsive Design for Service Cards */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .service-detail-card {
        padding: 2rem;
        min-height: 420px;
    }
    
    .category-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .service-detail-card {
        padding: 2rem;
        margin: 0;
        min-height: auto;
    }
    
    .service-detail-card .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-card .service-icon img {
        width: 42px;
        height: 42px;
    }
    
    .service-detail-card h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-card .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-detail-card .service-features li {
        padding: 0.625rem 0;
        font-size: 0.95rem;
    }
    
    .service-pricing {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-header {
        margin-bottom: 2.5rem;
        padding: 1.5rem 0;
    }
    
    .service-category {
        margin-bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .service-detail-card .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .service-detail-card .service-icon img {
        width: 36px;
        height: 36px;
    }
    
    .service-detail-card h3 {
        font-size: 1.25rem;
    }
    
    .service-detail-card p {
        font-size: 0.95rem;
    }
    
    .service-detail-card .service-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .service-detail-card .service-features li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
        margin-right: 0.75rem;
    }
    
    .service-pricing {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .category-description {
        font-size: 0.95rem;
    }
}
/* Homepage Service Cards - Matching Design */
.service-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease-in-out !important;
    position: relative !important;
    overflow: visible !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #fbbf24 !important;
}

.service-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%) !important;
    border-radius: 20px 20px 0 0 !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.service-card:hover::before {
    transform: scaleX(1) !important;
}

.service-card .service-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
    border: 2px solid #fed7aa !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    overflow: visible !important;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    border-color: #f59e0b !important;
    transform: scale(1.05) !important;
}

.service-card .service-icon i {
    font-size: 2.5rem !important;
    color: #92400e !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon i {
    color: white !important;
    transform: scale(1.1) !important;
}

.service-card .service-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0.5rem 0 !important;
}

.service-card .service-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4 !important;
    flex-shrink: 0 !important;
}

.service-card .service-description {
    color: #6b7280 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.75rem !important;
    flex-grow: 1 !important;
}

.service-card .service-features {
    list-style: none !important;
    padding: 1rem 0 !important;
    margin: 0 0 2rem 0 !important;
    flex-shrink: 0 !important;
    background: rgba(248, 250, 252, 0.5) !important;
    border-radius: 8px !important;
    padding: 1.25rem !important;
}

.service-card .service-features li {
    display: flex !important;
    align-items: center !important;
    padding: 0.6rem 0 !important;
    color: #374151 !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid #f3f4f6 !important;
    transition: all 0.3s ease !important;
}

.service-card .service-features li:last-child {
    border-bottom: none !important;
}

.service-card .service-features li::before {
    content: '✓' !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    background: #10b981 !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: bold !important;
    margin-right: 1rem !important;
    flex-shrink: 0 !important;
}

.service-card .service-features li:hover {
    color: #111827 !important;
    padding-left: 0.5rem !important;
}

.service-card .service-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%) !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 15px !important;
    padding: 1rem 1.5rem !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    color: #374151 !important;
    margin-top: 1.5rem !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.service-card .service-link:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border-color: #fbbf24 !important;
    color: #92400e !important;
    transform: scale(1.02) !important;
}

.service-card .service-link i {
    transition: transform 0.3s ease !important;
}

.service-card .service-link:hover i {
    transform: translateX(4px) !important;
}
/* Enhanced Service Sub-Page Card Styling */

/* Feature Items (Service Features Section) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
}

.feature-item .feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: #92400e;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Technology Categories */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

.tech-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-items span {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-items span:hover {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-color: #fbbf24;
    transform: translateY(-2px);
}

/* Overview Stats */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.overview-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.overview-stats .stat-item:hover {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #fbbf24;
    transform: translateY(-4px);
}

.overview-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.overview-stats .stat-item p {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Service Hero Enhancement */
.service-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-breadcrumb a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: #f59e0b;
}



.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.cta-buttons .btn-secondary:hover {
    background: #f8fafc;
    border-color: #fbbf24;
    color: #fbbf24;
    transform: translateY(-2px);
}

/* Responsive Design for Service Sub-Pages */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item,
    .tech-category {
        padding: 1.5rem;
    }
    
    .feature-item .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.75rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
    
    .service-hero h1 {
        font-size: 2.25rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .overview-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .overview-stats .stat-item {
        padding: 1rem;
    }
    
    .overview-stats .stat-item h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .feature-item,
    .tech-category {
        padding: 1.25rem;
    }
    
    .feature-item .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.125rem;
    }
    
    .service-hero {
        padding: 4rem 0 3rem 0;
    }
    
    .service-hero h1 {
        font-size: 1.875rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .tech-items {
        gap: 0.5rem;
    }
    
    .tech-items span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
/* CRITICAL FIX: Icon Visibility for All Service Cards */

/* Force icon visibility for all service card types */
.service-detail-card .service-icon img,
.service-card .service-icon img,
.feature-item .feature-icon img,
.service-icon img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin: 0 auto !important;
    max-width: 48px !important;
    max-height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
}

/* Ensure icon containers are properly sized and visible */
.service-detail-card .service-icon,
.service-card .service-icon,
.feature-item .feature-icon,
.service-icon {
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    position: relative !important;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
    border-radius: 20px !important;
    border: 2px solid #fed7aa !important;
    margin-bottom: 1.5rem !important;
    flex-shrink: 0 !important;
}

/* Remove any conflicting pseudo-elements that might hide icons */
.service-detail-card .service-icon::before,
.service-card .service-icon::before,
.feature-item .feature-icon::before {
    display: none !important;
}

/* Ensure FontAwesome icons are also visible */
.service-detail-card .service-icon i,
.service-card .service-icon i,
.feature-item .feature-icon i,
.service-icon i {
    font-size: 2.5rem !important;
    color: #92400e !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1 !important;
    text-align: center !important;
    width: auto !important;
    height: auto !important;
}

/* Hover states for icons */
.service-detail-card:hover .service-icon,
.service-card:hover .service-icon,
.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    border-color: #f59e0b !important;
    transform: scale(1.05) !important;
}

.service-detail-card:hover .service-icon img,
.service-card:hover .service-icon img,
.feature-item:hover .feature-icon img {
    filter: brightness(1.2) !important;
    transform: scale(1.1) !important;
}

.service-detail-card:hover .service-icon i,
.service-card:hover .service-icon i,
.feature-item:hover .feature-icon i {
    color: white !important;
    transform: scale(1.1) !important;
}

/* Fix for any z-index issues */
.service-detail-card .service-icon,
.service-card .service-icon,
.feature-item .feature-icon {
    z-index: 10 !important;
}

.service-detail-card .service-icon img,
.service-card .service-icon img,
.feature-item .feature-icon img,
.service-detail-card .service-icon i,
.service-card .service-icon i,
.feature-item .feature-icon i {
    z-index: 11 !important;
    position: relative !important;
}

/* Remove any transforms that might affect visibility */
.service-detail-card .service-icon img,
.service-card .service-icon img,
.feature-item .feature-icon img {
    transform: none !important;
    transition: all 0.3s ease !important;
}

/* Ensure proper spacing and alignment */
.service-detail-card .service-icon,
.service-card .service-icon,
.feature-item .feature-icon {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Mobile responsive icon fixes */
@media (max-width: 768px) {
    .service-detail-card .service-icon,
    .service-card .service-icon,
    .feature-item .feature-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .service-detail-card .service-icon img,
    .service-card .service-icon img,
    .feature-item .feature-icon img {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }
    
    .service-detail-card .service-icon i,
    .service-card .service-icon i,
    .feature-item .feature-icon i {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 480px) {
    .service-detail-card .service-icon,
    .service-card .service-icon,
    .feature-item .feature-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .service-detail-card .service-icon img,
    .service-card .service-icon img,
    .feature-item .feature-icon img {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }
    
    .service-detail-card .service-icon i,
    .service-card .service-icon i,
    .feature-item .feature-icon i {
        font-size: 2rem !important;
    }
}

/* Additional fix for any conflicting styles */
.service-detail-card .service-icon *,
.service-card .service-icon *,
.feature-item .feature-icon * {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure no overflow hidden on parent containers */
.service-detail-card,
.service-card,
.feature-item {
    overflow: visible !important;
}

/* Fix for SVG icons specifically */
.service-detail-card .service-icon svg,
.service-card .service-icon svg,
.feature-item .feature-icon svg {
    width: 48px !important;
    height: 48px !important;
    fill: currentColor !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* CRITICAL FIX: Text Overflow and Card Content Containment */

/* Ensure all service cards contain their content properly */
.service-detail-card,
.service-card,
.feature-item,
.tech-category {
    overflow: hidden !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    box-sizing: border-box !important;
}

/* Fix text overflow for all card text elements */
.service-detail-card h3,
.service-card h3,
.feature-item h3,
.tech-category h3,
.service-detail-card .service-title,
.service-card .service-title,
.feature-item .service-title {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

/* Fix paragraph text overflow */
.service-detail-card p,
.service-card p,
.feature-item p,
.tech-category p,
.service-detail-card .service-description,
.service-card .service-description,
.feature-item .service-description {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Fix feature list text overflow */
.service-detail-card .service-features li,
.service-card .service-features li,
.feature-item .service-features li {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    padding-right: 0.5rem !important;
    box-sizing: border-box !important;
}

/* Fix pricing text overflow */
.service-pricing {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Fix technology items text overflow */
.tech-items span {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

/* Ensure proper container sizing */
.services-grid,
.features-grid,
.tech-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix card content containers */
.service-detail-card .service-content,
.service-card .service-content,
.feature-item .service-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Ensure links don't overflow */
.service-detail-card a,
.service-card a,
.feature-item a,
.tech-category a {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

/* Fix service link buttons */
.service-card .service-link {
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Responsive text sizing to prevent overflow */
@media (max-width: 1200px) {
    .service-detail-card h3,
    .service-card h3,
    .feature-item h3 {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .service-detail-card p,
    .service-card p,
    .feature-item p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    .service-detail-card h3,
    .service-card h3,
    .feature-item h3 {
        font-size: 1.125rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.875rem !important;
    }
    
    .service-detail-card p,
    .service-card p,
    .feature-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.25rem !important;
    }
    
    .service-detail-card .service-features li,
    .service-card .service-features li {
        font-size: 0.85rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .service-pricing {
        font-size: 0.9rem !important;
        padding: 0.875rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .service-detail-card h3,
    .service-card h3,
    .feature-item h3 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .service-detail-card p,
    .service-card p,
    .feature-item p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    .service-detail-card .service-features li,
    .service-card .service-features li {
        font-size: 0.8rem !important;
        padding: 0.4rem 0 !important;
    }
    
    .service-pricing {
        font-size: 0.85rem !important;
        padding: 0.75rem 0.875rem !important;
    }
    
    .tech-items span {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
    }
}

/* Additional fixes for very long text */
.service-detail-card *,
.service-card *,
.feature-item *,
.tech-category * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure proper grid item sizing */
.services-grid > *,
.features-grid > *,
.tech-grid > * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix for extremely long words */
.service-detail-card,
.service-card,
.feature-item,
.tech-category {
    -webkit-hyphens: auto !important;
    -moz-hyphens: auto !important;
    -ms-hyphens: auto !important;
    hyphens: auto !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}
/* COMPLETE SERVICE CARDS REDESIGN - CLEAN & PROFESSIONAL */

/* Reset and override all previous card styles */
.service-detail-card,
.service-card,
.feature-item,
.tech-category {
    all: unset !important;
    display: flex !important;
    flex-direction: column !important;
}

/* New Clean Service Card Design */
.service-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

/* Clean Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Icon Container - Simple & Clean */
.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    border: 2px solid #fed7aa;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #f59e0b;
    transform: scale(1.05);
}

/* Icon Styling - FontAwesome */
.service-detail-card .service-icon i {
    font-size: 1.75rem;
    color: #92400e;
    transition: color 0.3s ease;
}

.service-detail-card:hover .service-icon i {
    color: white;
}

/* Typography - Clean & Readable */
.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-detail-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-card h3 a:hover {
    color: #fbbf24;
}

.service-detail-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Feature List - Clean Design */
.service-detail-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-detail-card .service-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #374151;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-detail-card .service-features li::before {
    content: "✓";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 16px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Pricing - Simple & Clean */
.service-pricing {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-pricing {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

/* Homepage Service Cards - Matching Design */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    border: 2px solid #fed7aa;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #f59e0b;
    transform: scale(1.05);
}

.service-card .service-icon i {
    font-size: 1.75rem;
    color: #92400e;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card .service-description {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-card .service-features li {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: #374151;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



.service-card .service-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    background: #fef3c7;
    border-color: #fbbf24;
    color: #92400e;
}

/* Feature Items for Service Sub-Pages */
.feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    flex-shrink: 0;
    border: 2px solid #fed7aa;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #f59e0b;
    transform: scale(1.05);
}

.feature-item .feature-icon i {
    font-size: 1.75rem;
    color: #92400e;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Technology Categories */
.tech-category {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.tech-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #fbbf24;
}

.tech-category h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-items span {
    background: #f8fafc;
    color: #64748b;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tech-items span:hover {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-detail-card,
    .service-card,
    .feature-item,
    .tech-category {
        padding: 1.25rem;
        min-height: auto;
    }
    
    .service-detail-card .service-icon,
    .service-card .service-icon,
    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-detail-card .service-icon i,
    .service-card .service-icon i,
    .feature-item .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-detail-card h3,
    .service-card .service-title,
    .feature-item h3 {
        font-size: 1.125rem;
    }
    
    .service-detail-card p,
    .service-card .service-description,
    .feature-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-detail-card,
    .service-card,
    .feature-item,
    .tech-category {
        padding: 1rem;
    }
    
    .service-detail-card h3,
    .service-card .service-title,
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .service-detail-card p,
    .service-card .service-description,
    .feature-item p {
        font-size: 0.8rem;
    }
}

/* Responsive Design for Clean Service Cards */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.5rem;
    }
    
    .service-detail-card {
        padding: 1.75rem;
        min-height: 400px;
    }
    
    .service-detail-card .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-detail-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-detail-card .service-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
        min-height: 380px;
    }
    
    .service-detail-card .service-icon {
        width: 52px;
        height: 52px;
    }
    
    .service-detail-card .service-icon i {
        font-size: 1.4rem;
    }
    
    .service-detail-card .service-icon img {
        width: 26px;
        height: 26px;
    }
    
    .service-detail-card h3 {
        font-size: 1.15rem;
    }
    
    .service-detail-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-detail-card {
        padding: 1.25rem;
        min-height: 360px;
    }
    
    .service-detail-card .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }
    
    .service-detail-card .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-detail-card .service-icon img {
        width: 24px;
        height: 24px;
    }
    
    .service-detail-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-detail-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .service-detail-card .service-features li {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }
    
    .service-detail-card .service-features li::before {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
        margin-right: 0.5rem;
    }
    
    .service-detail-card .service-pricing {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
}
/* Clean Feature Items for Service Sub-Pages */
.feature-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.feature-item .feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1px solid #93c5fd;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #1d4ed8;
    transform: scale(1.05);
}

.feature-item .feature-icon i {
    font-size: 1.75rem;
    color: #1e40af;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-item:hover .feature-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.feature-item .feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0.7) saturate(1.2);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-item:hover .feature-icon img {
    filter: brightness(2) saturate(0);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Responsive Design for Feature Items */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.75rem;
    }
    
    .feature-item .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item .feature-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-item .feature-icon {
        width: 52px;
        height: 52px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.4rem;
    }
    
    .feature-item .feature-icon img {
        width: 26px;
        height: 26px;
    }
    
    .feature-item h3 {
        font-size: 1.15rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-item .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.25rem;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-item .feature-icon img {
        width: 24px;
        height: 24px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}
/* Responsive Design for Service CTA */
@media (max-width: 768px) {
    .service-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .service-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .service-cta .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-cta {
        padding: 3rem 0;
    }
    
    .service-cta .cta-content {
        padding: 0 1rem;
    }
    
    .service-cta .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .service-cta .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-cta .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}
/* Responsive Design for Main CTA Section */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}
/* Improved Service Card Responsive Padding */
@media (max-width: 1200px) {
    .service-card {
        padding: 2.25rem;
        margin-bottom: 1.75rem;
    }
    
    .service-card .service-features {
        padding: 1.125rem !important;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card .service-content {
        padding: 0.25rem 0 !important;
    }
    
    .service-card .service-features {
        padding: 1rem !important;
    }
    
    .service-card .service-features li {
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card .service-features {
        padding: 0.875rem !important;
    }
    
    .service-card .service-features li {
        padding: 0.4rem 0 !important;
        font-size: 0.9rem !important;
    }
}

/* Slow Typewriter Effect for Hero Title */
.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3b82f6;
    animation: 
        typewriter 4s steps(23, end) 1s both,
        cursor-blink 1s infinite 1s,
        cursor-fade 0.5s ease-in-out 5s both;
}

@keyframes typewriter {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes cursor-blink {
    0%, 50% {
        border-right-color: #3b82f6;
    }
    51%, 100% {
        border-right-color: transparent;
    }
}

@keyframes cursor-fade {
    0% {
        border-right-color: #3b82f6;
    }
    100% {
        border-right-color: transparent;
    }
}

/* Responsive typewriter for mobile - slower speeds */
@media (max-width: 768px) {
    .typewriter-text {
        animation: 
            typewriter 4.5s steps(23, end) 1s both,
            cursor-blink 1s infinite 1s,
            cursor-fade 0.5s ease-in-out 5.5s both;
    }
}

@media (max-width: 480px) {
    .typewriter-text {
        animation: 
            typewriter 5s steps(23, end) 1s both,
            cursor-blink 1s infinite 1s,
            cursor-fade 0.5s ease-in-out 6s both;
        font-size: inherit;
    }
}

/* Office Location Section */
.office-location {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.office-info {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.office-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.office-address {
    margin-bottom: 2rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-item i {
    font-size: 1.25rem;
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.address-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.address-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.office-features {
    margin-bottom: 2rem;
}

.office-features h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
}

.office-directions {
    text-align: center;
}

.office-directions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.office-map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 10;
}

.location-marker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.location-marker i {
    color: #ef4444;
    font-size: 1.1rem;
}

/* Responsive Design for Office Location */
@media (max-width: 1024px) {
    .office-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .office-info {
        padding: 2rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .office-location {
        padding: 3rem 0;
    }
    
    .office-content {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .office-info {
        padding: 1.5rem;
    }
    
    .office-details h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .address-item {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .office-info {
        padding: 1.25rem;
    }
    
    .address-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }
    
    .address-item i {
        margin-top: 0;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .map-container iframe {
        height: 250px;
    }
}
/* White CTA Text for Main Pages Only */
/* Target main pages (not in services/ or solutions/ subdirectories) */
body:not([data-page-type="service"]):not([data-page-type="solution"]) .cta-content h2,
body:not([data-page-type="service"]):not([data-page-type="solution"]) .cta-content p {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: white !important;
}

/* Ensure CTA sections on main pages have dark background for white text visibility */
body:not([data-page-type="service"]):not([data-page-type="solution"]) .cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
}

/* Keep service-cta sections with their existing styling on main pages */
body:not([data-page-type="service"]):not([data-page-type="solution"]) .service-cta .cta-content h2,
body:not([data-page-type="service"]):not([data-page-type="solution"]) .service-cta .cta-content p {
    background: linear-gradient(135deg, #1f2937 0%, #8b4513 50%, #654321 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
}

/* Alternative approach using page-specific classes */
.main-page .cta-content h2,
.main-page .cta-content p {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: white !important;
}

.main-page .cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
}

/* Keep service-cta sections with existing styling */
.main-page .service-cta .cta-content h2,
.main-page .service-cta .cta-content p {
    background: linear-gradient(135deg, #1f2937 0%, #8b4513 50%, #654321 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
}
/* Simple Active Navigation Styling */
.nav-link.active {
    color: #1e40af !important;
    background: rgba(30, 64, 175, 0.15) !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #1e40af !important;
    position: relative;
}

/* Active state for dropdown links */
.dropdown-link.active {
    background: rgba(30, 64, 175, 0.15) !important;
    color: #1e40af !important;
    font-weight: 600;
    border-left: 3px solid #1e40af;
    padding-left: 1.25rem;
}

/* Mobile active navigation */
@media (max-width: 768px) {
    .nav-link.active {
        background: rgba(30, 64, 175, 0.2) !important;
        color: #1e40af !important;
        border-radius: 6px;
        margin: 0.25rem 0;
        border-bottom: none !important;
        border-left: 3px solid #1e40af !important;
    }
}
/* Policy Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0.25rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h3 {
    color: #1e40af;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #4b5563;
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-body ul {
    color: #4b5563;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-body a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.modal-body a:hover {
    text-decoration: underline;
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 65vh;
    }
    
    .close-modal {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
}

/* Footer link styling */
.footer-link {
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #1e40af;
    text-decoration: underline;
}
/* Redesigned Become a Partner Section */
.become-partner-redesigned {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.become-partner-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.partner-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-badge i {
    font-size: 1.1rem;
}

.partner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 500;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.partnership-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
}

.technology-partner::before {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.hiring-partner::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.educational-partner::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.technology-partner .card-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.technology-partner .card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hiring-partner .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.hiring-partner .card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.educational-partner .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.educational-partner .card-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefits-list i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
}

.btn-technology {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hiring {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-educational {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-technology:hover,
.btn-hiring:hover,
.btn-educational:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partnership-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .become-partner-redesigned {
        padding: 4rem 0;
    }
    
    .partner-title {
        font-size: 2.5rem;
    }
    
    .partner-subtitle {
        font-size: 1.1rem;
    }
    
    .partner-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .partnership-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-card {
        padding: 2rem;
    }
    
    .partnership-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* About Page - Hero Image Landscape & Secondary Image */
.overview-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Landscape aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-landscape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-landscape-img {
    transform: scale(1.05);
}

.secondary-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3; /* Secondary image aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.secondary-image-container:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-placeholder-overlay {
    text-align: center;
    color: #64748b;
    padding: 2rem;
}

.image-placeholder-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

/* Stats Aligned Image Styling */
.stats-aligned-image {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stats-aligned-image:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stats-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.stats-aligned-image:hover .stats-image-placeholder {
    transform: scale(1.05);
}

/* Placeholder styling when no image is loaded */
.stats-aligned-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f03e';
    font-size: 3rem;
    color: #94a3b8;
    z-index: 1;
}

.stats-aligned-image::after {
    content: 'Add Company Image';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

/* Hide placeholder content when image is loaded */
.stats-aligned-image.has-image::before,
.stats-aligned-image.has-image::after {
    display: none;
}

.stats-aligned-image.has-image {
    background: transparent;
    border: none;
}

.image-placeholder-overlay p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #475569;
}

.secondary-image-container:hover .image-placeholder-overlay i {
    color: #64748b;
}

.secondary-image-container:hover .image-placeholder-overlay p {
    color: #334155;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overview-image {
        gap: 1rem;
    }
    
    .hero-image-container {
        aspect-ratio: 16/10; /* Slightly taller on mobile */
    }
    
    .secondary-image-container {
        aspect-ratio: 3/2; /* Adjusted for mobile */
    }
    
    .image-placeholder-overlay {
        padding: 1.5rem;
    }
    
    .image-placeholder-overlay i {
        font-size: 2.5rem;
    }
    
    .image-placeholder-overlay p {
        font-size: 1rem;
    }
    
    /* Mobile responsive for stats-aligned-image */
    .stats-aligned-image {
        margin-top: 1.5rem;
        aspect-ratio: 3/2; /* Better for mobile */
    }
    
    .stats-aligned-image::before {
        font-size: 2.5rem;
    }
    
    .stats-aligned-image::after {
        font-size: 0.9rem;
        top: 65%;
    }
}