/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    /* Colors - Light & Gold Theme */
    --primary-black: #ffffff;
    --secondary-black: #f8f9fa;
    --dark-gray: #ffffff;
    --light-gray: #e9ecef;
    --white: #000000;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --border-color: #e0e0e0;
    --gold: #D5A707;
    --gold-dark: #B8860B;
    --gold-light: #FFED4E;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D5A707 0%, #B8860B 100%);
    --gradient-dark: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    
    /* Typography */
    --font-primary: 'Cairo', 'Inter', sans-serif;
    --font-tech: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-black);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Fix for mobile viewport */
@media (max-width: 768px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Fix language switcher for very small screens */
    .language-switcher {
        top: 10px;
        right: 60px; /* Move further away from nav toggle */
        z-index: 1002;
        gap: 5px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
    }
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-text {
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

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

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

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        z-index: 1002;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        z-index: 1002;
        gap: 5px;
    }
}

.lang-btn {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--dark-gray);
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 35px;
    }
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    height: 80px; /* Explicit navbar height */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px; /* Explicit container height */
}
.nav-logo .logo {
    height: 50px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Products Dropdown */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1001;
}

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

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 4px 0;
}

.nav-dropdown a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 25px;
}

.nav-link.has-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem; /* Explicit font size */
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--primary-black) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: var(--primary-black) !important;
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

/* تحسينات خاصة للهاتف */
@media (max-width: 768px) {
    .hero-video video {
        object-fit: cover;
        object-position: center center;
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
    }
    
    .hero-overlay {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.6) 0%, 
            rgba(213, 167, 7, 0.3) 30%, 
            rgba(0, 0, 0, 0.65) 70%, 
            rgba(213, 167, 7, 0.25) 100%);
    }
    
    /* تحسين وضوح النص على الهاتف - نص أبيض */
    .hero-title {
        color: #ffffff !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
        font-weight: 900 !important;
    }
    
    .hero-subtitle {
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 3px 15px rgba(0, 0, 0, 0.6);
        font-weight: 600 !important;
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #D5A707 0%, #FFD700 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: none !important;
        filter: drop-shadow(0 2px 8px rgba(213, 167, 7, 0.5));
    }
    
    .tech-text {
        color: #ffffff !important;
    }
}

@media (max-width: 480px) {
    .hero-video video {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-overlay {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.65) 0%, 
            rgba(213, 167, 7, 0.35) 30%, 
            rgba(0, 0, 0, 0.7) 70%, 
            rgba(213, 167, 7, 0.3) 100%);
    }
    
    /* تحسين وضوح النص على الهواتف الصغيرة - نص أبيض */
    .hero-title {
        color: #ffffff !important;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 5px 25px rgba(0, 0, 0, 0.7);
        font-weight: 900 !important;
    }
    
    .hero-subtitle {
        color: #ffffff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.7);
        font-weight: 600 !important;
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #D5A707 0%, #FFD700 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: none !important;
        filter: drop-shadow(0 2px 10px rgba(213, 167, 7, 0.6));
    }
    
    .tech-text {
        color: #ffffff !important;
    }
    
    /* تأثير blur إضافي للهواتف القديمة */
    @supports not (backdrop-filter: blur(3px)) {
        .hero-overlay {
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.7) 0%, 
                rgba(213, 167, 7, 0.4) 30%, 
                rgba(0, 0, 0, 0.75) 70%, 
                rgba(213, 167, 7, 0.35) 100%);
        }
        
        .hero-overlay::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, 
                rgba(213, 167, 7, 0.2) 0%, 
                transparent 60%);
            animation: shimmer 3s ease-in-out infinite alternate;
        }
        
        @keyframes shimmer {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 215, 0, 0.15) 30%, 
        rgba(255, 255, 255, 0.2) 70%, 
        rgba(255, 215, 0, 0.1) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: -1;
}

/* Fallback للمتصفحات التي لا تدعم backdrop-filter */
@supports not (backdrop-filter: blur(2px)) {
    .hero-overlay {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 215, 0, 0.2) 30%, 
            rgba(255, 255, 255, 0.25) 70%, 
            rgba(255, 215, 0, 0.15) 100%);
    }
    
    .hero-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, 
            rgba(255, 215, 0, 0.1) 0%, 
            transparent 60%);
        opacity: 0.5;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--gold);
    font-size: 32px;
}

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

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.5rem;
    order: -1;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.feature-item span {
    flex: 1;
}

@media (max-width: 768px) {
    .feature-item {
        gap: 12px;
        margin-bottom: 12px;
        font-size: 1rem;
    }
    
    .feature-item i {
        font-size: 1.1rem;
        width: 18px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        width: 16px;
    }
}

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

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

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

.tech-item {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

@media (max-width: 768px) {
    .tech-item {
        padding: 20px;
        border-radius: 12px;
    }
    
    .tech-item i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .tech-item h4 {
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .tech-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .tech-item i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .tech-item h4 {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.3;
    }
}

.tech-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.tech-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.tech-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--section-padding);
    background: var(--primary-black);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Services Preview - تصميم Timeline مثل Our Approach */
@media (max-width: 768px) {
    .services-preview {
        padding: 60px 0;
    }
    
    .services-preview .section-header {
        margin-bottom: 50px;
    }
    
    .services-preview .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .services-preview .section-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* تصميم Timeline مثل Our Approach */
    .services-grid {
        position: relative;
        max-width: 600px;
        margin: 0 auto 50px;
        padding: 0;
    }
    
    /* الخط الرئيسي في المنتصف */
    .services-grid::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--gold);
    }
    
    @media (max-width: 768px) {
    .service-card {
        position: relative;
        margin-bottom: 60px;
        display: block;
        padding-left: 0;
        background: none;
        border: none;
        text-align: left;
        min-height: auto;
        width: 103%;
        margin-right: -22px;
        margin-left: 30px;
        font-size: 4px;
        background: none !important;
        padding: 0px !important;
        border-radius: 0px !important;
        text-align: left !important;
        transition: none !important;
        border: 0px !important;
        position: relative !important;
        overflow: visible !important;
        left: -7px;
    }


    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    /* الأيقونات على الخط */
    .service-icon {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 80px;
        background: var(--gradient-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        flex-shrink: 0;
        border: none;
        box-shadow: none;
        transition: var(--transition);
    }
    
    .service-card:hover .service-icon {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    }
    
    .service-icon i {
        font-size: 1.8rem;
        color: var(--primary-black);
        transition: var(--transition);
    }
    
    .service-card:hover .service-icon i {
        transform: rotate(10deg);
    }
    
    /* محتوى الخدمة */
    .service-content {
        width: 88%;
        margin-left: 44px;
        background: var(--dark-gray);
        padding: 30px;
        border-radius: 15px;
        border: 1px solid transparent;
        transition: var(--transition);
    }
    
    .service-content:hover {
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--gold);
    }
    
    .service-card p {
        opacity: 0.9;
        line-height: 1.6;
        margin: 0;
        font-size: 1rem;
    }
    
    /* إزالة التأثيرات القديمة */
    .service-card::before,
    .service-card::after {
        display: none;
    }
}
}

@media (max-width: 480px) {
    .services-preview {
        padding: 50px 0;
    }
    
    .services-preview .section-header {
        margin-bottom: 40px;
    }
    
    .services-preview .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .services-preview .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* تصميم Timeline مصغر للشاشات الصغيرة */
    .services-grid {
        max-width: 320px;
        margin-bottom: 40px;
    }
    
    .services-grid::before {
        left: 25px;
        top: 25px;
        bottom: 25px;
        width: 2px;
    }
    
    .service-card {
        padding: 20px 20px 20px 70px;
        margin-bottom: 25px;
        border-radius: 12px;
        min-height: 100px;
    }
    
    .service-card:last-child {
        margin-bottom: 0;
    }
    
    .service-icon {
        left: -40px;
        top: 20px;
        width: 50px;
        height: 50px;
        border: 3px solid var(--primary-black);
        box-shadow: 0 0 0 1px var(--gold);
    }
    
    .service-card::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        right: 12px;
        top: 12px;
    }
    
    .service-card:not(:last-child)::after {
        left: 12px;
        bottom: -12px;
        width: 25px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .services-cta {
        margin-top: 30px;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
    }
    
    /* تقليل تأثير النبضة على الشاشات الصغيرة */
    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
        }
        50% {
            box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
        }
    }
}

.service-card {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-section {
    padding: var(--section-padding);
    background: var(--secondary-black);
}

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

.outcome-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-gray);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.outcome-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.outcome-item:hover::before {
    transform: scaleX(1);
}

.outcome-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.outcome-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-tech);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.outcome-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.outcome-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .outcome-item {
        padding: 30px 20px;
    }
    
    .outcome-number {
        font-size: 2.8rem;
    }
    
    .outcome-label {
        font-size: 1.1rem;
    }
    
    .outcome-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .outcomes-grid {
        gap: 20px;
    }
    
    .outcome-item {
        padding: 25px 15px;
    }
    
    .outcome-number {
        font-size: 2.5rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding);
    background: var(--dark-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-black);
    padding: 60px 0 20px;
    border-top: 1px solid var(--dark-gray);
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    opacity: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--gold);
    margin-top: 5px;
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    opacity: 0.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Fix language switcher positioning to avoid nav toggle overlap */
    .language-switcher {
        top: 15px;
        right: 70px; /* Move away from nav toggle */
        z-index: 1002;
        gap: 6px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px; /* Reduce height on mobile */
    }
    
    .navbar {
        height: 70px; /* Reduce height on mobile */
    }
    
    .nav-logo .logo {
        height: 40px; /* Smaller logo on mobile */
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Match navbar height */
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
        backdrop-filter: blur(10px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 5px;
        background: #ffffff;
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .nav-item:hover .nav-dropdown,
    .nav-item.active .nav-dropdown {
        max-height: 200px;
        padding: 8px 0;
    }
    
    .nav-dropdown a {
        padding: 10px 20px;
        border-left: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        color: var(--text-primary);
        margin: 0;
    }
    
    .nav-dropdown a:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown a:hover {
        padding-left: 25px;
        background: rgba(255, 215, 0, 0.1);
        color: var(--gold);
    }
    
    .nav-link.has-dropdown::after {
        display: inline-block;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Hero text colors for mobile */
    .hero-title {
        color: #000000;
    }
    
    .hero-title .gradient-text {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-title .tech-text {
        color: #000000;
    }
    
    .hero-subtitle {
        color: #000000;
        opacity: 1;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* تغيير ترتيب العناصر على الهاتف */
    .about-visual {
        order: -1; /* يظهر أولاً */
        margin-bottom: 20px;
    }
    
    .about-text {
        order: 1; /* يظهر ثانياً */
        text-align: center;
    }
    
    .about-text h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-text p {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .features-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* تحسين الفيديو على الهاتف */
    .hero-video video {
        display: block;
        object-fit: cover;
        object-position: center;
    }
    
    .hero {
        min-height: 100vh;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .hero-video {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 15px;
        --section-padding: 60px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        color: #000000;
    }
    
    .hero-title .gradient-text {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-title .tech-text {
        color: #000000;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        color: #000000;
        opacity: 1;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* تحسين عرض الخدمات الأساسية */
    .services-preview {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* تحسين الأيقونات */
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    /* منع التمرير الأفقي */
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* تحسين ترتيب العناصر على الشاشات الصغيرة */
    .about-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-text {
        order: 1;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .features-list {
        text-align: left;
        max-width: 320px;
        margin: 0 auto 25px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* ===== تقليل الانيميشن على الهاتف ===== */
@media (max-width: 768px) {
    /* تقليل مدة الانتقالات */
    * {
        transition-duration: 0.2s !important;
    }
    
    /* إزالة انيميشن النبضة من الأيقونات */
    .service-card:first-child .service-icon {
        animation: none !important;
    }
    
    /* تقليل انيميشن الظهور التدريجي */
    .service-card {
        animation: none !important;
    }
    
    /* تقليل تأثير الهوفر */
    .service-card:hover,
    .tech-item:hover,
    .outcome-item:hover {
        transform: translateY(-3px) !important;
    }
    
    /* إزالة انيميشن السهم */
    .scroll-indicator {
        animation: none !important;
    }
    
    /* تقليل تأثير الأزرار */
    .btn:hover {
        transform: translateY(-1px) !important;
    }
    
    /* إزالة التأثيرات المعقدة */
    .service-card::before,
    .outcome-item::before {
        display: none !important;
    }
    
    /* تقليل blur في الخلفية */
    .hero-overlay {
        backdrop-filter: blur(1px) !important;
        -webkit-backdrop-filter: blur(1px) !important;
    }
}

@media (max-width: 480px) {
    /* إزالة معظم الانيميشن على الشاشات الصغيرة */
    * {
        transition-duration: 0.1s !important;
        animation: none !important;
    }
    
    /* إزالة جميع تأثيرات الهوفر */
    .service-card:hover,
    .tech-item:hover,
    .outcome-item:hover,
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* إزالة التأثيرات البصرية المعقدة */
    .service-card::before,
    .outcome-item::before,
    .btn::before {
        display: none !important;
    }
    
    /* تبسيط الخلفية */
    .hero-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.2) 0%, 
            rgba(255, 255, 255, 0.3) 50%, 
            rgba(255, 255, 255, 0.2) 100%) !important;
    }
    
    /* إزالة الانيميشن من السهم */
    .scroll-indicator {
        display: none !important;
    }
    
    /* تبسيط الأيقونات */
    .service-icon,
    .tech-item i {
        transition: none !important;
    }
    
    .service-card:hover .service-icon,
    .service-card:hover .service-icon i {
        transform: none !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.lang-btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gold: #FFFF00;
        --primary-black: #000000;
        --white: #FFFFFF;
    }
}
/* ===== KEYFRAMES FOR SERVICES TIMELINE ===== */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تأثير النبضة للأيقونة الأولى */
.service-card:first-child .service-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* تأثير الظهور التدريجي للكروت */
.service-card {
    animation: slideInTimeline 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
/* Services Timeline - Responsive للشاشات الصغيرة */
@media (max-width: 480px) {
    .services-preview .section-header {
        margin-bottom: 40px;
    }
    
    .services-preview .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .services-preview .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* تصميم Timeline مصغر للشاشات الصغيرة */
    .services-grid {
        max-width: 100%;
        padding: 0 10px;
    }
    
    
    
    .service-card {
        padding-left: 0;
        margin-bottom: 50px;
        gap: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.4rem;
    }
    
    .service-content {
        width: 90%;
        margin-left: 2px;
        padding: 25px 20px;
        margin-top: 40px;
    }
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 auto;
        display: block;
    }
}

/* ===== NEW HOMEPAGE SECTIONS ===== */

/* About Us Main Section */
.about-us-main {
    padding: 100px 0;
    background: var(--secondary-black);
}

.about-main-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

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

.about-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-gray);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-feature-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-black);
    transition: var(--transition);
}

.about-feature-item:hover .feature-icon-large {
    transform: scale(1.1);
}

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

.about-feature-item p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

/* Solutions Main Section */
/* Solutions Main Section */
.solutions-main {
    padding: 100px 0;
    background: var(--primary-black);
    position: relative;
}

/* Scroll Controls */
.scroll-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.scroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

/* Solutions Scroll Wrapper */
.solutions-scroll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.solutions-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.solutions-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.solutions-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.solutions-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.solutions-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Solution Card */
.solution-card {
    min-width: 320px;
    max-width: 320px;
    background: var(--dark-gray);
    padding: 35px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: var(--transition-slow);
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Solution Icon Wrapper */
.solution-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.solution-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

/* Solution Card Content */
.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
    font-family: var(--font-tech);
}

.solution-card > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Solution List */
.solution-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
    padding: 8px 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.solution-list li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.solution-list li i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Solution Link */
.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    align-self: center;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    margin-top: auto;
}

.solution-link:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateX(5px);
}

.solution-link i {
    transition: var(--transition);
}

.solution-link:hover i {
    transform: translateX(5px);
}

/* Old styles - keep for compatibility */
.main-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.solution-item {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.solution-title-gold {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gold-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-tech);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.solution-subtitle {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: center;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    flex-shrink: 0;
    margin: 0 auto;
}

.solution-content > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
    text-align: left;
}

.solution-feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.solution-feature i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-feature span {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
}

/* Our Approach Section */
.our-approach {
    padding: 80px 0;
    background: var(--secondary-black);
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* Why Choose Home Section */
.why-choose-home {
    padding: 100px 0;
    background: var(--primary-black);
}

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

.why-item {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-black);
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-tech);
}

.why-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Solutions Scroll - Mobile */
    .scroll-controls {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .solution-card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px 20px;
    }
    
    .solution-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.2rem;
    }
    
    .solution-card > p {
        font-size: 0.9rem;
    }
    
    .solution-list li {
        font-size: 0.85rem;
        padding: 7px 10px;
    }
    
    .solution-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .featured-badge {
        top: 10px;
        right: 10px;
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .solution-content > p {
        grid-column: 1;
    }
    
    .solution-features {
        grid-column: 1;
    }
    
    .solution-feature i {
        font-size: 1.3rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Solutions Scroll - Small Mobile */
    .scroll-controls {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .solutions-scroll-container {
        gap: 20px;
        padding: 10px 5px 20px;
    }
    
    .solution-card {
        min-width: 260px;
        max-width: 260px;
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .solution-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
    
    .solution-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .solution-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .solution-card > p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .solution-list {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .solution-list li {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .solution-list li i {
        font-size: 0.7rem;
    }
    
    .solution-link {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .featured-badge {
        top: 8px;
        right: 8px;
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    
    .solution-title-gold {
        font-size: 2rem;
    }
    
    .solution-item {
        padding: 30px 20px;
    }
    
    .solution-feature {
        padding: 12px 15px;
    }
    
    .solution-feature i {
        font-size: 1.2rem;
    }
    
    .solution-feature span {
        font-size: 0.95rem;
    }
    
    .main-solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet responsive for solutions */
@media (max-width: 1024px) {
    .main-solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .solution-title-gold {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-solutions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== NEWS PAGE STYLES ===== */

.news-section {
    padding: 100px 0;
    background: var(--primary-black);
}

/* Featured News */
.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    background: var(--dark-gray);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-news:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-date {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.95rem;
}

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

.news-category {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--font-tech);
}

.news-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--dark-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.news-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-card-content {
    padding: 30px;
}

.news-card-meta {
    margin-bottom: 15px;
}

.news-card-meta span {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

.news-card-meta i {
    color: var(--gold);
    margin-right: 8px;
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--font-tech);
}

.news-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 20px;
}

.news-card-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.news-card-link:hover {
    gap: 12px;
}

.news-card-link i {
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gray);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-color: var(--gold);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.newsletter-content {
    background: var(--dark-gray);
    padding: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-tech);
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    background: var(--secondary-black);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: var(--white);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-news {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .news-content {
        padding: 40px 30px;
    }
    
    .news-content h2 {
        font-size: 1.8rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-content {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 30px 20px;
    }
    
    .news-content h2 {
        font-size: 1.5rem;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
}

/* ===== CAREERS PAGE STYLES ===== */
/* ===== CAREERS PAGE STYLES ===== */

.why-join-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

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

.benefit-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-black);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-tech);
    position: relative;
    z-index: 2;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Careers Section */
.careers-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.job-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 215, 0, 0.03) 100%);
    border-radius: 25px;
    padding: 45px;
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: all 0.6s ease;
}

.job-card:hover::before {
    left: 100%;
}

.job-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.job-title-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-tech);
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.job-meta span {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.job-meta span:hover {
    background: rgba(255, 215, 0, 0.2);
    opacity: 1;
}

.job-meta i {
    color: var(--gold);
    font-size: 1rem;
}

.job-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.job-description {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.job-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
}

.job-description h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin: 25px 0 15px;
    font-family: var(--font-tech);
}

.job-description ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.job-description ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding: 12px 20px 12px 45px;
    transition: var(--transition);
}

.job-description ul li:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.job-description ul li::before {
    content: '→';
    position: absolute;
    left: 15px;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.job-footer {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
}

/* Application Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background: var(--dark-gray);
    margin: 50px auto;
    padding: 50px;
    border-radius: 30px;
    max-width: 700px;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    font-family: var(--font-tech);
}

.modal-content h2 span {
    color: var(--gold);
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: var(--secondary-black);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white);
    opacity: 0.5;
}

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

.application-form button[type="submit"] {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .jobs-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .jobs-list {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .job-header {
        flex-direction: column;
    }
    
    .job-badge {
        align-self: flex-start;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-card {
        padding: 35px 25px;
    }
    
    .job-title-section h3 {
        font-size: 1.6rem;
    }
    
    .job-description h4 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
    }
    
    .job-card {
        padding: 25px 20px;
    }
    
    .job-title-section h3 {
        font-size: 1.4rem;
    }
    
    .job-description p {
        font-size: 1rem;
    }
    
    .job-description ul li {
        padding: 10px 15px 10px 40px;
        font-size: 0.95rem;
    }
    
    .job-meta span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    
    .job-title-section h3 {
        font-size: 1.3rem;
    }
    
    .job-description p {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
    }
}


/* News Link Styles */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: transparent;
    margin-top: 15px;
}

.news-link:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.news-link i {
    transition: var(--transition);
    font-size: 0.9rem;
}

.news-link:hover i {
    transform: translateX(5px);
}


/* ===== LIGHT THEME ADJUSTMENTS ===== */
/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

/* Hero Section */
.hero-overlay {
    background: rgba(255, 255, 255, 0.85);
}

.hero-title,
.hero-subtitle {
    color: var(--text-primary);
}

/* Sections */
.section-title,
.section-subtitle,
.page-title,
.page-subtitle {
    color: var(--text-primary);
}

.section-subtitle,
.page-subtitle {
    color: var(--text-secondary);
}

/* Cards */
.service-card,
.news-card,
.benefit-card,
.job-card,
.why-item,
.about-feature-item,
.solution-item,
.outcome-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.news-card:hover,
.benefit-card:hover,
.job-card:hover,
.why-item:hover,
.solution-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

/* Text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
    color: #000000;
}

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

.btn-secondary:hover {
    color: #000000;
}

.btn-outline {
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    color: #000000;
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
}

.footer-section h4 {
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
}

.footer-section a:hover {
    color: var(--gold-dark);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Icons */
.service-icon,
.feature-icon-large,
.why-icon {
    background: var(--gradient-gold);
}

.service-icon i,
.feature-icon-large i,
.why-icon i {
    color: #000000;
}

/* Forms */
input,
textarea,
select {
    background: #ffffff;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    background: #ffffff;
}

/* Newsletter */
.newsletter-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

/* Featured news */
.featured-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Stats and outcomes */
.stat-number,
.outcome-number {
    color: var(--gold-dark);
}

.stat-label,
.outcome-label {
    color: var(--text-primary);
}

/* Badges */
.service-badge,
.model-badge,
.news-badge,
.featured-badge {
    background: var(--gradient-gold);
    color: #000000;
}

/* Borders */
.service-card,
.news-card,
.job-card,
.benefit-card {
    border: 1px solid var(--border-color);
}

/* Scroll indicator */
.scroll-indicator {
    color: var(--text-primary);
}

/* Language switcher */
.lang-btn {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.lang-btn.active {
    background: var(--gradient-gold);
    color: #000000;
}

/* Tech items */
.tech-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

.tech-item i {
    color: var(--gold-dark);
}

/* Contact items */
.contact-item i {
    color: var(--gold-dark);
}

/* News meta */
.news-meta {
    color: var(--text-secondary);
}

/* Pagination */
.page-btn {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.page-btn.active,
.page-btn:hover {
    background: var(--gradient-gold);
    color: #000000;
}


/* SecPod Overview Section - Light Theme */
.secpod-overview-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.secpod-intro h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.secpod-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.overview-stats .stat-highlight {
    background: #ffffff;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* ===== SECPOD PAGE STYLES ===== */
/* Hero Section with Video Background */
.secpod-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Overview Section */
.secpod-overview {
    padding: 100px 0;
    background: #ffffff;
}

.platform-showcase {
    margin-top: 60px;
    text-align: center;
}

.showcase-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Feature Images Grid */
.feature-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.feature-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-img-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-img-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .feature-images-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .secpod-hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 220px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .secpod-overview {
        padding: 60px 0;
    }
}

.platform-benefits {
    padding: 100px 0;
    background: #ffffff;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #000000;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Partner Benefits */
.partner-benefits {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.partner-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.partner-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.partner-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Key Issues */
.key-issues {
    padding: 100px 0;
    background: #ffffff;
}

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

.issue-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.issue-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-tech);
}

.issue-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.issue-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid,
    .partner-grid,
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .partner-grid,
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .partner-card,
    .issue-card {
        padding: 30px 25px;
    }
    
    .issue-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
}


/* ===== HALCYON PAGE STYLES ===== */
.halcyon-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.halcyon-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

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

.halcyon-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.halcyon-hero .service-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--gold);
}

.halcyon-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.halcyon-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* What's Included */
.whats-included {
    padding: 100px 0;
    background: #ffffff;
}

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

.included-card {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.included-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.included-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.included-icon i {
    font-size: 2.5rem;
    color: #000000;
}

.included-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.included-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Key Capabilities */
.key-capabilities {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.capability-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.capability-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.capability-icon i {
    font-size: 2rem;
    color: #000000;
}

.capability-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.capability-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* End-to-End Protection */
.end-to-end-protection {
    padding: 100px 0;
    background: #ffffff;
}

.protection-showcase {
    margin: 50px 0;
    text-align: center;
}

.protection-showcase .showcase-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.protection-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.protection-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Attack Chain */
.attack-chain {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Platform Screenshots */
.platform-screenshots {
    margin: 60px 0;
}

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

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: #ffffff;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.attack-stages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stage-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.stage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.2;
    font-family: var(--font-tech);
}

.stage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.stage-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.tag {
    display: inline-block;
    padding: 6px 15px;
    background: var(--gradient-gold);
    color: #000000;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RDR Service */
.rdr-service {
    padding: 100px 0;
    background: #ffffff;
}

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

.rdr-text h2 {
    margin-bottom: 25px;
}

.rdr-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.rdr-benefits {
    list-style: none;
    padding: 0;
}

.rdr-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.rdr-benefits li i {
    color: var(--gold);
    font-size: 1.3rem;
}

.rdr-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rdr-icon-large {
    width: 250px;
    height: 250px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.rdr-icon-large i {
    font-size: 6rem;
    color: #000000;
}

/* Warranty Section */
.warranty-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.warranty-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.warranty-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.warranty-icon i {
    font-size: 3rem;
    color: #000000;
}

.warranty-subtitle {
    font-size: 1.8rem;
    color: var(--gold-dark);
    margin-bottom: 25px;
}

.warranty-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.integration-card {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.integration-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.integration-icon i {
    font-size: 2rem;
    color: #000000;
}

.integration-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.integration-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .included-grid,
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid,
    .attack-stages {
        grid-template-columns: 1fr;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .rdr-content {
        grid-template-columns: 1fr;
    }
    
    .rdr-icon-large {
        width: 200px;
        height: 200px;
    }
    
    .rdr-icon-large i {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .halcyon-hero {
        min-height: 80vh;
    }
    
    .halcyon-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .halcyon-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .halcyon-hero .hero-content {
        padding: 30px 15px;
    }
    
    .included-card,
    .integration-card {
        padding: 40px 30px;
    }
    
    .stage-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    .warranty-subtitle {
        font-size: 1.5rem;
    }
    
    .screenshot-label {
        font-size: 0.95rem;
        padding: 15px;
    }
}


/* ===== PHISHROD PAGE STYLES ===== */
.phishrod-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(3px);
}

.hero-background-image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

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

.phishrod-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.phishrod-hero .service-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--text-primary);
    border: 2px solid var(--gold);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.phishrod-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    line-height: 1.2;
}

.phishrod-hero .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 600;
}

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

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.methodology-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.methodology-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.methodology-icon i {
    font-size: 2rem;
    color: #000000;
}

.methodology-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 700;
}

.methodology-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Product Portfolio */
.product-portfolio {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.portfolio-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.portfolio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.portfolio-icon i {
    font-size: 2rem;
    color: #000000;
}

.portfolio-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.portfolio-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Core Capabilities */
.core-capabilities {
    padding: 100px 0;
    background: #ffffff;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.capability-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: #f8f9fa;
    padding: 35px 40px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    align-items: start;
}

.capability-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon i {
    font-size: 1.8rem;
    color: #000000;
}

.capability-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.capability-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .phishrod-hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-background-image img {
        filter: blur(2px);
    }
    
    .hero-background-image .hero-overlay {
        background: rgba(255, 255, 255, 0.94);
    }
    
    .phishrod-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .phishrod-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .phishrod-hero .hero-content {
        padding: 30px 15px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .methodology-card,
    .portfolio-card {
        padding: 35px 25px;
    }
    
    .capability-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 25px;
        text-align: center;
    }
    
    .capability-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-background-image img {
        filter: blur(1.5px);
    }
    
    .hero-background-image .hero-overlay {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .phishrod-hero .hero-title {
        font-size: 2rem;
    }
    
    .phishrod-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .methodology-card,
    .portfolio-card {
        padding: 30px 20px;
    }
    
    .methodology-icon,
    .portfolio-icon {
        width: 70px;
        height: 70px;
    }
    
    .methodology-icon i,
    .portfolio-icon i {
        font-size: 1.8rem;
    }
    
    .capability-item {
        padding: 25px 20px;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
    }
    
    .capability-icon i {
        font-size: 1.5rem;
    }
}


/* PhishRod Portfolio Images */
.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

/* Platform Screenshots Section */
.platform-screenshots-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.screenshot-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: #ffffff;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Human Risk Section */
.human-risk-section {
    padding: 100px 0;
    background: #ffffff;
}

.human-risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.risk-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: #f8f9fa;
}

.risk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.risk-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .human-risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platform-screenshots-section,
    .human-risk-section {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        gap: 25px;
    }
    
    .human-risk-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .screenshot-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    }
    
    .screenshot-overlay h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .portfolio-image {
        height: 150px;
    }
    
    .screenshot-overlay {
        padding: 20px 15px;
    }
    
    .screenshot-overlay h3 {
        font-size: 1rem;
    }
}


/* Mobile Experience Section */
.mobile-experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mobile-screens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-screen {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mobile-screen:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mobile-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* PhishRod News Section */
.phishrod-news-section {
    padding: 100px 0;
    background: #ffffff;
}

.news-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.news-banner-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background: #f8f9fa;
    cursor: pointer;
}

.news-banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .news-banners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mobile-experience-section,
    .phishrod-news-section {
        padding: 60px 0;
    }
    
    .mobile-screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mobile-screen {
        padding: 15px;
        border-radius: 20px;
    }
    
    .mobile-screen img {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .mobile-screens-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .news-banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mobile-screen {
        padding: 12px;
        border-radius: 15px;
    }
    
    .mobile-screen img {
        border-radius: 12px;
    }
}


/* Service CTA Buttons */
.service-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-large i {
    transition: var(--transition);
}

.btn-large:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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="%23FFD700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.header-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--secondary-black);
}

/* Main Services */
.main-services {
    padding: 100px 0;
    background: var(--primary-black);
}

.service-section {
    margin-bottom: 80px;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background: var(--secondary-black);
}

/* Why Choose */
.why-choose {
    padding: 100px 0;
    background: var(--primary-black);
}

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

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

@media (max-width: 768px) {
    .page-header {
        height: 50vh;
        margin-top: 80px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
