/* ========================================
   Global Styles & Variables - 2026 Edition
   ======================================== */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3399ff;
    --secondary-color: #00cc99;
    --accent-color: #ff6600;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #00cc99 0%, #0066cc 100%);
    --gradient-accent: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(0, 102, 204, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-right: 30px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a i {
    width: 20px;
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   Hero Section with 4D Animation
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 204, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 30%);
    animation: pulse4D 8s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(0, 204, 153, 0.1) 60deg, 
            transparent 120deg,
            rgba(118, 75, 162, 0.15) 180deg,
            transparent 240deg,
            rgba(255, 255, 255, 0.1) 300deg,
            transparent 360deg);
    animation: rotate4D 25s linear infinite;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

/* 4D Water Drops Animation */
.water-drops-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.drop-4d {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(0,204,153,0.4));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: dropFall4D linear infinite;
    opacity: 0;
    filter: blur(0.5px);
    box-shadow: 0 0 15px rgba(0,204,153,0.6), inset 0 0 10px rgba(255,255,255,0.4);
}

.drop-4d:nth-child(1) { left: 5%; animation-duration: 9s; animation-delay: 0s; width: 18px; height: 18px; }
.drop-4d:nth-child(2) { left: 15%; animation-duration: 11s; animation-delay: 2s; width: 14px; height: 14px; }
.drop-4d:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 4s; width: 20px; height: 20px; }
.drop-4d:nth-child(4) { left: 35%; animation-duration: 10s; animation-delay: 1s; width: 16px; height: 16px; }
.drop-4d:nth-child(5) { left: 45%; animation-duration: 12s; animation-delay: 3s; width: 15px; height: 15px; }
.drop-4d:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 5s; width: 17px; height: 17px; }
.drop-4d:nth-child(7) { left: 65%; animation-duration: 11s; animation-delay: 2.5s; width: 13px; height: 13px; }
.drop-4d:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 4.5s; width: 19px; height: 19px; }
.drop-4d:nth-child(9) { left: 85%; animation-duration: 8s; animation-delay: 1.5s; width: 12px; height: 12px; }
.drop-4d:nth-child(10) { left: 95%; animation-duration: 13s; animation-delay: 3.5s; width: 14px; height: 14px; }

/* 3D Floating Particles */
.particles-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    perspective: 1000px;
}

.particle-4d {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float3D 12s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255,255,255,0.6), 0 0 50px rgba(0,204,153,0.3);
}

.particle-4d:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.particle-4d:nth-child(2) { top: 35%; left: 20%; animation-delay: 1.5s; width: 5px; height: 5px; }
.particle-4d:nth-child(3) { top: 55%; left: 35%; animation-delay: 3s; width: 10px; height: 10px; }
.particle-4d:nth-child(4) { top: 25%; left: 50%; animation-delay: 0.5s; width: 6px; height: 6px; }
.particle-4d:nth-child(5) { top: 65%; left: 65%; animation-delay: 2s; width: 7px; height: 7px; }
.particle-4d:nth-child(6) { top: 45%; left: 80%; animation-delay: 4s; width: 9px; height: 9px; }
.particle-4d:nth-child(7) { top: 20%; left: 70%; animation-delay: 2.5s; width: 5px; height: 5px; }
.particle-4d:nth-child(8) { top: 75%; left: 25%; animation-delay: 3.5s; width: 6px; height: 6px; }
.particle-4d:nth-child(9) { top: 85%; left: 55%; animation-delay: 1s; width: 8px; height: 8px; }
.particle-4d:nth-child(10) { top: 10%; left: 45%; animation-delay: 4.5s; width: 7px; height: 7px; }

/* Animated Wave Effect */
.wave-4d {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.wave-4d svg {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    animation: waveMove4D 8s linear infinite;
}

.wave-4d svg:nth-child(2) {
    animation-duration: 12s;
    animation-direction: reverse;
    opacity: 0.5;
    bottom: 10px;
}

.wave-4d svg:nth-child(3) {
    animation-duration: 16s;
    opacity: 0.3;
    bottom: 20px;
}

/* 4D Keyframes */
@keyframes pulse4D {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.05) rotate(-1deg);
        opacity: 0.9;
    }
    75% {
        transform: scale(1.15) rotate(1deg);
        opacity: 0.8;
    }
}

@keyframes rotate4D {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes dropFall4D {
    0% {
        transform: translateY(-100px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 0.9; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate3d(40px, -40px, 30px) rotateX(90deg) rotateY(45deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate3d(-30px, -80px, 50px) rotateX(180deg) rotateY(90deg) scale(0.8);
        opacity: 0.9;
    }
    75% {
        transform: translate3d(50px, -40px, 30px) rotateX(270deg) rotateY(135deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes waveMove4D {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Enhanced 4D Effects - Stars, Bubbles, Aurora
   ======================================== */

/* Twinkling Stars */
.stars-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.star-4d {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle4D 2s ease-in-out infinite;
    box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px rgba(255,255,255,0.5);
}

.star-4d:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.star-4d:nth-child(2) { top: 20%; left: 15%; animation-delay: 0.3s; width: 3px; height: 3px; }
.star-4d:nth-child(3) { top: 15%; left: 30%; animation-delay: 0.6s; width: 5px; height: 5px; }
.star-4d:nth-child(4) { top: 25%; left: 45%; animation-delay: 0.9s; }
.star-4d:nth-child(5) { top: 8%; left: 60%; animation-delay: 1.2s; width: 3px; height: 3px; }
.star-4d:nth-child(6) { top: 30%; left: 75%; animation-delay: 1.5s; width: 6px; height: 6px; }
.star-4d:nth-child(7) { top: 12%; left: 85%; animation-delay: 0.2s; }
.star-4d:nth-child(8) { top: 35%; left: 92%; animation-delay: 0.8s; width: 3px; height: 3px; }
.star-4d:nth-child(9) { top: 5%; left: 50%; animation-delay: 1.1s; width: 5px; height: 5px; }
.star-4d:nth-child(10) { top: 22%; left: 25%; animation-delay: 0.4s; }
.star-4d:nth-child(11) { top: 18%; left: 70%; animation-delay: 0.7s; width: 4px; height: 4px; }
.star-4d:nth-child(12) { top: 28%; left: 10%; animation-delay: 1.3s; }

@keyframes twinkle4D {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Floating Bubbles */
.bubbles-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble-4d {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,0.4) 20%, 
        rgba(0,204,153,0.2) 40%, 
        transparent 70%);
    border: 1px solid rgba(255,255,255,0.3);
    animation: bubbleRise4D linear infinite;
    box-shadow: 
        inset 0 -5px 20px rgba(0,204,153,0.2),
        inset 5px 0 20px rgba(255,255,255,0.3),
        0 0 20px rgba(255,255,255,0.2);
}

.bubble-4d:nth-child(1) { left: 5%; width: 40px; height: 40px; animation-duration: 12s; animation-delay: 0s; }
.bubble-4d:nth-child(2) { left: 15%; width: 25px; height: 25px; animation-duration: 10s; animation-delay: 2s; }
.bubble-4d:nth-child(3) { left: 25%; width: 50px; height: 50px; animation-duration: 14s; animation-delay: 4s; }
.bubble-4d:nth-child(4) { left: 35%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 1s; }
.bubble-4d:nth-child(5) { left: 45%; width: 35px; height: 35px; animation-duration: 13s; animation-delay: 3s; }
.bubble-4d:nth-child(6) { left: 55%; width: 45px; height: 45px; animation-duration: 15s; animation-delay: 5s; }
.bubble-4d:nth-child(7) { left: 65%; width: 28px; height: 28px; animation-duration: 10s; animation-delay: 2.5s; }
.bubble-4d:nth-child(8) { left: 75%; width: 55px; height: 55px; animation-duration: 16s; animation-delay: 4.5s; }
.bubble-4d:nth-child(9) { left: 85%; width: 22px; height: 22px; animation-duration: 9s; animation-delay: 1.5s; }
.bubble-4d:nth-child(10) { left: 95%; width: 38px; height: 38px; animation-duration: 12s; animation-delay: 3.5s; }

@keyframes bubbleRise4D {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50vh) translateX(30px) scale(1);
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh) translateX(-20px) scale(1.2);
        opacity: 0;
    }
}

/* Aurora Borealis Effect */
.aurora-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-4d::before,
.aurora-4d::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    animation: aurora4D 15s ease-in-out infinite;
}

.aurora-4d::before {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 200, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(100, 100, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 100, 200, 0.1) 0%, transparent 50%);
    animation-delay: 0s;
}

.aurora-4d::after {
    background: 
        radial-gradient(ellipse at 70% 60%, rgba(0, 200, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(150, 50, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(0, 255, 150, 0.1) 0%, transparent 50%);
    animation-delay: -7.5s;
}

@keyframes aurora4D {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(5%, -5%) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-3%, 3%) rotate(-3deg) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translate(3%, 5%) rotate(3deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Light Rays Effect */
.light-rays-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ray-4d {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255,255,255,0.1) 20%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 80%, 
        transparent 100%);
    animation: rayMove4D 8s ease-in-out infinite;
    transform-origin: top center;
}

.ray-4d:nth-child(1) { left: 10%; animation-delay: 0s; width: 3px; }
.ray-4d:nth-child(2) { left: 25%; animation-delay: 1s; width: 2px; opacity: 0.7; }
.ray-4d:nth-child(3) { left: 40%; animation-delay: 2s; width: 4px; }
.ray-4d:nth-child(4) { left: 55%; animation-delay: 3s; width: 2px; opacity: 0.6; }
.ray-4d:nth-child(5) { left: 70%; animation-delay: 4s; width: 3px; }
.ray-4d:nth-child(6) { left: 85%; animation-delay: 5s; width: 2px; opacity: 0.8; }

@keyframes rayMove4D {
    0%, 100% {
        transform: rotate(-15deg) scaleY(0.8);
        opacity: 0.3;
    }
    50% {
        transform: rotate(15deg) scaleY(1.2);
        opacity: 0.6;
    }
}

/* Glowing Orbs */
.orbs-4d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orb-4d {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat4D 20s ease-in-out infinite;
}

.orb-4d:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(0, 204, 153, 0.3);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-4d:nth-child(2) {
    width: 250px;
    height: 250px;
    background: rgba(102, 126, 234, 0.25);
    top: 50%;
    right: -5%;
    animation-delay: -5s;
}

.orb-4d:nth-child(3) {
    width: 200px;
    height: 200px;
    background: rgba(255, 100, 150, 0.2);
    bottom: 10%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4d:nth-child(4) {
    width: 180px;
    height: 180px;
    background: rgba(100, 200, 255, 0.25);
    top: 20%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes orbFloat4D {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* Glowing Title Effect */
.hero-title {
    text-shadow: 
        0 0 10px rgba(255,255,255,0.5),
        0 0 20px rgba(0,204,153,0.4),
        0 0 30px rgba(102,126,234,0.3),
        2px 2px 8px rgba(0,0,0,0.3);
    animation: glowTitle 4s ease-in-out infinite alternate;
}

@keyframes glowTitle {
    from {
        text-shadow: 
            0 0 10px rgba(255,255,255,0.5),
            0 0 20px rgba(0,204,153,0.4),
            0 0 30px rgba(102,126,234,0.3),
            2px 2px 8px rgba(0,0,0,0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255,255,255,0.8),
            0 0 40px rgba(0,204,153,0.6),
            0 0 60px rgba(102,126,234,0.5),
            2px 2px 8px rgba(0,0,0,0.3);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    color: var(--secondary-color);
    display: block;
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #00b386;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,204,153,0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-slow);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-features i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

/* ========================================
   Technology Section
   ======================================== */
.technology {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.tech-card:hover::before {
    opacity: 0.05;
}

.tech-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-10px);
}

.tech-card > * {
    position: relative;
    z-index: 1;
}

.tech-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-slow);
    box-shadow: 0 10px 30px rgba(0, 204, 153, 0.3);
}

.tech-card:hover .tech-image {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(0, 204, 153, 0.4);
}

.tech-image i {
    font-size: 3rem;
    color: white;
    transition: var(--transition);
}

.tech-card:hover .tech-image i {
    transform: scale(1.1);
}

.tech-card h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tech-details p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.tech-details strong {
    color: var(--text-dark);
}

.tech-details ul {
    list-style: none;
    margin-top: 10px;
}

.tech-details ul li {
    padding: 8px 0;
    padding-right: 20px;
    position: relative;
    color: var(--text-light);
}

.tech-details ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 204, 153, 0.25);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    background: var(--gradient-accent);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 204, 153, 0.3);
}

.pricing-header {
    background: var(--gradient-primary);
    padding: 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse4D 4s ease-in-out infinite;
}

.pricing-card.featured .pricing-header {
    background: var(--gradient-secondary);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.currency {
    font-size: 1.2rem;
}

.pricing-features {
    list-style: none;
    padding: 40px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.pricing-features i.fa-check {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.pricing-features i.fa-times {
    color: #cccccc;
    font-size: 1.2rem;
}

.pricing-note {
    padding: 0 40px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
}

.pricing-card .btn {
    margin: 0 40px 40px;
    width: calc(100% - 80px);
    justify-content: center;
}

.pricing-info {
    margin-top: 40px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-right: 5px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-us .section-title,
.why-us .section-subtitle {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: white;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.process-step:nth-child(even) .step-content:hover {
    transform: translateX(5px);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a,
.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .highlight {
        font-size: 3rem;
    }

    .services-grid,
    .tech-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .process-timeline::before {
        right: 35px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .section-title { font-size: 2rem; }
    
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-info {
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .navbar {
        padding: 6px 0;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .highlight {
        font-size: 2.2rem;
    }

    .service-card,
    .tech-card {
        padding: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   Floating Contact Buttons - أزرار التواصل الثابتة
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn.phone {
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
}

.floating-btn .btn-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 4px 25px rgba(0,0,0,0.5); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .floating-btn .btn-tooltip {
        display: none;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .header,
    .hero,
    .scroll-top,
    .floating-buttons {
        display: none;
    }
}
