﻿/* =================================================================
   SORTED CSS STYLESHEET - COMPATIBLE WITH HTML STRUCTURE
   Design and Development by Ra2D.com
   ================================================================= */

/* -----------------------------------------------------------------
   1. FONTS & IMPORTS - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap');

/* -----------------------------------------------------------------
   2. CSS VARIABLES - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --primary-gradient: linear-gradient(135deg, #d41b27 0%, #b71c1c 100%);
    --secondary-gradient: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
    --tertiary-gradient: linear-gradient(135deg, #d41b27 0%, #a0150f 100%);
    --neon-red: #d41b27;
    --neon-dark-red: #b71c1c;
    --neon-orange: #ef5350;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    
    /* Dark Mode Theme (Default) */
    --background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --surface: rgba(26, 26, 26, 0.9);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-bg: rgba(0, 0, 0, 0.4);
    --header-bg: rgba(0, 0, 0, 0.8);
}

[data-theme="light"] {
    /* Light Mode Theme (ptional) */
    --background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --surface: rgba(255, 255, 255, 0.9);
    --text-primary: #1a1a1a;
    --text-secondary: rgba(26, 26, 26, 0.7);
    --text-muted: rgba(26, 26, 26, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-bg: rgba(255, 255, 255, 0.8);
    --header-bg: rgba(255, 255, 255, 0.95);
}

/* -----------------------------------------------------------------
   3. GLOBAL RESET & BASE - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--background);
    transition: all 0.3s ease;
}

a {
    color: #C0C0C0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* -----------------------------------------------------------------
   4. LOADING SCREEN - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--glass-border);
    border-radius: 50%;
    border-top: 4px solid var(--neon-red);
    animation: spin 1s linear infinite;
}

/* -----------------------------------------------------------------
   5. THEME TOGGLE BUTTON - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.theme-toggle {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.theme-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    border-color: var(--neon-red);
    box-shadow: 0 12px 35px rgba(212, 27, 39, 0.3);
}

.theme-toggle i {
    transition: all 0.3s ease;
}

/* -----------------------------------------------------------------
   6. CUSTOM CURSOR - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-red), gray);
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    mix-blend-mode: luminosity;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* -----------------------------------------------------------------
   7. ANIMATED BACKGROUND - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

[data-theme="light"] .bg-shape {
    opacity: 0.05;
}

.bg-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.bg-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 50%;
    animation-delay: 4s;
}

/* -----------------------------------------------------------------
   8. BACK TO TOP BUTTON - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 27, 39, 0.3);
}

/* -----------------------------------------------------------------
   9. HEADER & NAVIGATION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px 0;
    background: var(--header-bg) url("abaad-dark.jpg") repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] header {
    background: var(--header-bg) url("abaad-light.jpg") repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] header.scrolled {
    background: rgba(255, 255, 255, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - Design and Development by Ra2D.com */
.logo {
    width: 140px;
    height: 84px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(212, 27, 39, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    filter: brightness(1);
}

.logo:hover {
    transform: translateY(0px) scale(1.00);
    box-shadow: 0 15px 40px rgba(212, 27, 39, 0.35);
    filter: brightness(1.3);
}

/* Navigation Links - Design and Development by Ra2D.com */
.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 22px;
    left: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--neon-red);
    background: var(--glass-bg);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

/* Mobile Menu Toggle - Design and Development by Ra2D.com */
.mobile-menu-toggle {
    display: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
    color: white;
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* -----------------------------------------------------------------
   10. VIDEO SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.video-intro {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.video-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.video-overlay h2 {
    margin-bottom: 20px;
    color: #ff5252;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    max-width: 800px;
    margin-bottom: 30px;
}

.video-overlay h2.section-title {
    background: linear-gradient(45deg, #ff6b6b, #ff2e2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.experience-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------------------------------------------
   11. STATS SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-red);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.stat-number,
.stat-numberr {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    direction: ltr;
    unicode-bidi: embed;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* -----------------------------------------------------------------
   12. GALLERY SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.gallery {
    padding: 120px 0;
    background: radial-gradient(circle at 60% 40%, rgba(212, 27, 39, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .gallery {
    background: radial-gradient(circle at 60% 40%, rgba(212, 27, 39, 0.08) 0%, transparent 50%);
}

.gallery-cen {
    max-width: 1400px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gallery Filter Buttons - Design and Development by Ra2D.com */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.filter-btn {
    padding: 15px 35px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--neon-red);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    color: white;
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(212, 27, 39, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-primary), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--neon-red);
    box-shadow: 0 25px 60px rgba(212, 27, 39, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* -----------------------------------------------------------------
   13. VALUES SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.values {
    padding: 120px 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 27, 39, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .values {
    background: radial-gradient(circle at 30% 30%, rgba(212, 27, 39, 0.05) 0%, transparent 50%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-red);
    box-shadow: 0 25px 60px var(--shadow-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 27, 39, 0.3);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* -----------------------------------------------------------------
   14. PROCESS SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.process {
    padding: 120px 0;
    background: radial-gradient(circle at 70% 70%, rgba(212, 27, 39, 0.08) 0%, transparent 50%);
    position: relative;
}

[data-theme="light"] .process {
    background: radial-gradient(circle at 70% 70%, rgba(212, 27, 39, 0.05) 0%, transparent 50%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-red), var(--neon-orange), var(--neon-dark-red));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    position: absolute;
    top: 30%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    border: 4px solid var(--surface);
    box-shadow: 0 0 25px rgba(212, 27, 39, 0.4);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 25px;
    margin: 0 40px;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: scale(1.03);
    border-color: var(--neon-red);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* -----------------------------------------------------------------
   15. PARTNERS SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.partners {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 27, 39, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .partners {
    background: radial-gradient(circle at 50% 50%, rgba(212, 27, 39, 0.05) 0%, transparent 50%);
}

.partners-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.partner-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-red);
    box-shadow: 0 25px 60px rgba(212, 27, 39, 0.3);
}

.partner-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
    padding: 35px 25px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-overlay {
    background: linear-gradient(to top, rgba(212, 27, 39, 0.95), rgba(0, 0, 0, 0.7), transparent);
}

.partner-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.partner-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.partner-card:hover .partner-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.partner-card::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: left 0.6s ease;
    z-index: 1;
}

.partner-card:hover::before {
    left: 100%;
}

/* -----------------------------------------------------------------
   16. SERVICES SECTION - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.services {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(3deg) rotateY(-3deg);
    border-color: var(--neon-red);
    box-shadow: 0 25px 60px var(--shadow-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(212, 27, 39, 0.3);
    position: relative;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* -----------------------------------------------------------------
   17. EXPERIENCE CTA BUTTON - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.experience-cta {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(212, 27, 39, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.experience-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(212, 27, 39, 0.4);
}

.experience-cta i {
    font-size: 1.2rem;
}

/* -----------------------------------------------------------------
   18. FOOTER - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
footer {
    background: var(--card-bg) url("abaad-dark.jpg") repeat;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

[data-theme="light"] footer {
    background: var(--card-bg) url("abaad-light.jpg") repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 27, 39, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-weight: 300;
    position: relative;
    z-index: 2;
}
.Ra2D {
	font-size: small;
}

/* -----------------------------------------------------------------
   19. ANIMATIONS & KEYFRAMES - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------------------------
   20. RESPONSIVE DESIGN - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header {
        padding: 8px 0;
        background: rgba(0, 0, 0, 0.3);
    }
    
    [data-theme="light"] header {
        background: rgba(255, 255, 255, 0.35);
    }
    
    header.scrolled {
        padding: 6px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        right: 0;
        width: 100%;
        background: var(--surface);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 30px;
        border-top: 1px solid var(--glass-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-radius: 12px;
        margin: 5px 0;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .theme-toggle {
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        margin-right: 80px;
        margin-left: 0;
    }
    
    .timeline-number {
        right: 30px;
        transform: translateX(50%) translateY(-50%);
    }
    
    .partners-grid-main {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .value-card,
    .service-card {
        padding: 25px;
    }
    
    .partner-card {
        height: 350px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .experience-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Mobile social links inside menu */
.mobile-social-links {
    display: none;
}

@media (max-width: 768px) {
    .mobile-social-links {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .mobile-social-links .social-links {
        justify-content: center;
    }

    .mobile-social-links .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 6px;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    .mobile-social-links .social-links a:hover {
        background: var(--neon-red);
        border-color: var(--neon-red);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(212, 27, 39, 0.3);
    }
}

/* -----------------------------------------------------------------
   21. UTILITY CLASSES - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.fade-in {
    animation: fadeInUp 0.8s ease both;
}

/* -----------------------------------------------------------------
   22. SCROLLBAR STYLING - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-orange));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--neon-dark-red), var(--neon-red));
}

/* -----------------------------------------------------------------
   23. ACCESSIBILITY - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--neon-red);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --text-secondary: var(--text-primary);
        --text-muted: var(--text-primary);
        --glass-border: var(--text-primary);
    }
}

/* -----------------------------------------------------------------
   24. PRINT STYLES - Design and Development by Ra2D.com
   ----------------------------------------------------------------- */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .theme-toggle,
    .mobile-menu-toggle,
    .back-to-top,
    .cursor,
    .cursor-follower,
    .loading-screen {
        display: none !important;
    }
}

/* =================================================================
   END OF STYLESHEET - Design and Development by Ra2D.com
   ================================================================= */