:root {
    --primary-dark: #0a1628;
    --primary-blue: #1e40af;
    --primary-light: #3b82f6;
    --accent-gold: #f59e0b;
    --accent-orange: #ea580c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ============================================
   FLOATING BACKGROUND SHAPES
   ============================================ */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    top: 20%;
    left: 10%;
    animation-delay: 7s;
}

.shape-5 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #30cfd0, #330867);
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 40px) scale(1.05);
    }
}

/* ============================================
   MODERN NAVIGATION
   ============================================ */
/* ============================================
   NAVIGATION OVERRIDES & MERGED STYLES
   ============================================ */

/* Override conflicting styles and merge navigation */
.modern-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Remove duplicate .nav-blur from previous CSS */
.nav-blur {
    display: none;
}

/* Update logo orb to match theme */
.logo-orb {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}



.orb-inner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.orb-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
    animation: pulse 3s infinite;
}

/* Update navigation titles */
.nav-main-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.nav-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0.3rem 0 0 0;
    font-weight: 400;
}

/* Update CTA button */
.modern-cta-btn {
    position: relative;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.4s ease;
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.modern-cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover .btn-icon {
    transform: translateX(-5px);
}

.btn-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Update hamburger menu colors */
.hamburger span {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Mobile menu background */
.nav-cta-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .modern-nav {
        background: rgba(15, 23, 42, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta-section {
        background: rgba(15, 23, 42, 0.95);
    }

    .nav-subtitle {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .modern-nav {
        background: rgba(15, 23, 42, 0.95);
        border-bottom: 2px solid #667eea;
    }

    .modern-cta-btn {
        border: 2px solid white;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .logo-orb,
    .modern-cta-btn,
    .hamburger,
    .nav-cta-section,
    .orb-glow,
    .btn-glow {
        transition: none;
        animation: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-logo-section {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-title-section {
        order: 3;
        flex: 0 0 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .nav-cta-section {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-cta-section.active {
        right: 0;
    }

    .nav-cta-section .modern-cta-btn {
        margin: 1rem 0;
        width: 80%;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-orb {
        width: 60px;
        height: 60px;
    }

    .orb-inner {
        width: 52px;
        height: 52px;
    }

    .nav-logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-main-title {
        font-size: 1.4rem;
    }

    .nav-subtitle {
        font-size: 0.85rem;
    }
}

/* Fix container alignment */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Ensure proper stacking context */
.modern-nav {
    z-index: 1000;
}

.nav-logo-section {
    z-index: 1001;
}

/* Remove duplicate animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Update navigation content layout for desktop */
@media (min-width: 769px) {
    .nav-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 2rem;
    }

    .nav-title-section {
        text-align: center;
        order: unset;
        flex: unset;
        margin-top: 0;
    }

    .hamburger {
        display: none;
    }

    .nav-cta-section {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        box-shadow: none;
    }

    .nav-cta-section .modern-cta-btn {
        margin: 0;
        width: auto;
    }
}

/* ============================================
   HAMBURGER MENU STYLES
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: linear-gradient(90deg, #667eea, #764ba2);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Hamburger hover effects */
.hamburger:hover span {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.hamburger.active:hover span {
    background: linear-gradient(90deg, #f59e0b, #ea580c);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile menu content */
.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -5px 0 40px rgba(0, 0, 0, 0.15);
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-content.active {
    right: 0;
}

/* Mobile menu header */
.mobile-menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-menu-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.mobile-menu-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.mobile-menu-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.mobile-menu-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Mobile menu navigation */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-5px);
    border-color: rgba(102, 126, 234, 0.2);
}

.mobile-nav-link i {
    color: #667eea;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

/* Mobile menu CTA */
.mobile-menu-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.mobile-cta-btn i {
    transition: transform 0.3s ease;
}

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

/* Mobile menu contact info */
.mobile-contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
}

.mobile-contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-contact-title i {
    color: #667eea;
}

.mobile-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.mobile-contact-detail i {
    color: #667eea;
    width: 16px;
}

/* Close button */
.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    color: #667eea;
    font-size: 1.2rem;
}

/* Dark mode support for mobile menu */
@media (prefers-color-scheme: dark) {
    .mobile-menu-content {
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
    }

    .mobile-nav-link {
        background: rgba(102, 126, 234, 0.1);
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-nav-link:hover {
        background: rgba(102, 126, 234, 0.2);
    }

    .mobile-nav-link.active {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    }

    .mobile-contact-info {
        background: rgba(102, 126, 234, 0.1);
    }

    .mobile-contact-title {
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-contact-detail {
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-menu-close {
        background: rgba(102, 126, 234, 0.2);
    }

    .mobile-menu-close i {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .hamburger,
    .mobile-menu-content,
    .mobile-nav-link,
    .mobile-cta-btn,
    .mobile-menu-close {
        transition: none;
    }

    .hamburger:hover span,
    .mobile-nav-link:hover,
    .mobile-cta-btn:hover,
    .mobile-menu-close:hover {
        transform: none;
    }
}

/* Responsive hamburger display */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hide desktop CTA button on mobile */
    .nav-cta-section .modern-cta-btn {
        display: none;
    }
    .nav-title-section{
        display: none;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-menu-content {
        width: 380px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        padding: 4rem 1.5rem 2rem;
    }

    .hamburger {
        width: 28px;
        height: 20px;
    }

    .hamburger span {
        height: 2.5px;
    }

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

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

/* Landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .mobile-menu-content {
        padding-top: 4rem;
    }

    .mobile-menu-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .mobile-nav-links {
        margin-bottom: 1.5rem;
    }

    .mobile-nav-link {
        padding: 0.8rem 1.5rem;
    }

    .mobile-menu-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* Animation for menu items */
.mobile-nav-link {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.4s ease forwards;
}

.mobile-nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav-link:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav-link:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav-link:nth-child(5) {
    animation-delay: 0.3s;
}

.mobile-nav-link:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Remove duplicate mobile menu styles from previous CSS */
.nav-cta-section {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-cta-section {
        display: none;
    }
}

/* Ensure proper stacking */
.modern-nav {
    z-index: 1000;
}

.hamburger {
    z-index: 1002;
}

.mobile-menu-overlay {
    z-index: 999;
}

.mobile-menu-content {
    z-index: 1000;
}

.mobile-menu-close {
    z-index: 1001;
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge-shine {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

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

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-light), transparent);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotate 30s linear infinite;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: rotate 25s linear infinite reverse;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.floating-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.year-badge {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.year {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.about-mini-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.modern-section-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.modern-section-title.light-title {
    color: white;
}

.highlight-text {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    margin-bottom: 2rem;
}

.desc-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.3rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.mini-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

/* ============================================
   VISION & MISSION SECTION
   ============================================ */
.vision-mission-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.vm-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

.vm-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-shimmer {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.vm-icon-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.vision-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.mission-bg {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.vm-icon {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.vm-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.vm-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.vm-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out calc(var(--delay)) backwards;
}

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

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-modern:hover .service-hover-effect {
    opacity: 1;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.4s ease;
}

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

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

.service-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-desc-modern {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    z-index: 0;
}

.why-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.features-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInScale 0.6s ease-out calc(0.1s * var(--order)) backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

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

.feature-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-modern {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.quote-mark {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
}

.stars-modern {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.stars-modern i {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-left: 3px;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.client-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.client-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.client-position {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-button {
    padding: 1.2rem 3rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(-5px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
    padding: 4rem 0 2rem;
    color: white;
}

.footer-wave {
    position: absolute;
    top: -2px;
    right: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='%23f8fafc' d='M0,0 C300,100 900,100 1200,0 L1200,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.footer-logo i {
    font-size: 2rem;
    color: white;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
    position: relative;
    padding: 2rem 0 4rem;
}

.contact-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.contact-nav {
    margin-bottom: 3rem;
}

.back-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-side {
   
    top: 2rem;
}

.contact-info-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    color: white;
}

.contact-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.3rem;
    color: white;
}

.detail-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.detail-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.working-hours {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.hours-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.form-container-modern {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.modern-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.modern-label i {
    color: #667eea;
    font-size: 1rem;
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.submit-btn-modern {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.submit-btn-modern .btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn-modern:hover .btn-icon {
    transform: translateX(-5px);
}

.success-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleUp 0.6s ease-out 0.2s backwards;
}

@keyframes scaleUp {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

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

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.success-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .nav-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .logo-orb {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .vm-wrapper,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-nav {
        padding: 1rem 0;
    }
    
    .nav-main-title {
        font-size: 1.4rem;
    }
    
    .nav-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modern-section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .floating-card {
        padding: 2rem;
    }
    
    .year {
        font-size: 2rem;
    }
    
    .service-card-modern {
        padding: 2rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .form-container-modern {
        padding: 2rem;
    }
    
    .contact-info-content {
        padding: 2rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
}


