* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E2E2E;
    --secondary-color: #1a1a1a;
    --accent-color: #39C01A;
    --text-light: #ffffff;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #2E2E2E 0%, #1a1a1a 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(46, 46, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Language Switcher - Dropdown */
.language-switcher {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
}

.lang-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(57, 192, 26, 0.3);
    transform: translateY(-2px);
}

.lang-dropdown-btn.active {
    background: rgba(57, 192, 26, 0.2);
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(57, 192, 26, 0.4);
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.lang-dropdown-btn.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(46, 46, 46, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(57, 192, 26, 0.15);
    color: var(--accent-color);
    padding-right: 25px;
}

.lang-dropdown-item.active {
    background: rgba(57, 192, 26, 0.2);
    color: var(--accent-color);
    font-weight: 700;
}

.lang-dropdown-item.active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
}

.lang-flag {
    font-size: 1.3rem;
}

.lang-name {
    flex: 1;
    font-size: 1rem;
}

.lang-check {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-right: auto;
}

/* Close dropdown when clicking outside */
.lang-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
}

.lang-dropdown-overlay.show {
    display: block;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    min-width: 50px;
    min-height: 50px;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 192, 26, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
}

.lang-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg,
        rgba(57, 192, 26, 0.4) 0%,
        rgba(45, 138, 15, 0.4) 50%,
        rgba(57, 192, 26, 0.4) 100%);
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.lang-icon-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lang-icon {
    font-size: 2rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-3px) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translateY(-1px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-4px) rotate(-2deg) scale(1.05);
    }
}

.lang-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 192, 26, 0.6) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.lang-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.lang-btn:hover::before {
    width: 80px;
    height: 80px;
    opacity: 1;
}

.lang-btn:hover .lang-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(57, 192, 26, 0.6));
    animation: pulseIcon 0.6s ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1.2) rotate(10deg);
    }
    50% {
        transform: scale(1.3) rotate(15deg);
    }
}

.lang-btn:hover .lang-glow {
    width: 60px;
    height: 60px;
    opacity: 1;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2d8a0f 100%);
    box-shadow: 0 6px 25px rgba(57, 192, 26, 0.5),
                0 0 20px rgba(57, 192, 26, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.08);
}

.lang-btn.active::after {
    opacity: 1;
}

.lang-btn.active .lang-icon {
    transform: scale(1.25) rotate(5deg);
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.5));
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        transform: scale(1.25) rotate(5deg);
        filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.3) rotate(8deg);
        filter: drop-shadow(0 6px 15px rgba(255, 255, 255, 0.7));
    }
}

.lang-btn.active .lang-glow {
    width: 70px;
    height: 70px;
    opacity: 0.8;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        width: 70px;
        height: 70px;
        opacity: 0.8;
    }
    50% {
        width: 85px;
        height: 85px;
        opacity: 1;
    }
}

.lang-btn.active::before {
    width: 100px;
    height: 100px;
    opacity: 0.6;
}

/* Different animation delays for each language button */
.lang-btn:nth-child(1) .lang-icon {
    animation-delay: 0s;
}

.lang-btn:nth-child(2) .lang-icon {
    animation-delay: 0.3s;
}

.lang-btn:nth-child(3) .lang-icon {
    animation-delay: 0.6s;
}

/* Hero Carousel */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoom 20s infinite;
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
}

.slide-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(57, 192, 26, 0.4);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 192, 26, 0.6);
    background: #2E2E2E;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(57, 192, 26, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.header-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(57, 192, 26, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 20px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-box {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 192, 26, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.image-wrapper:hover .image-glow {
    opacity: 1;
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.about-content-box {
    position: relative;
}

.content-block h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(57, 192, 26, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 192, 26, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(57, 192, 26, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

/* Products Section */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(57, 192, 26, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(0.5);
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.2);
    filter: grayscale(0);
}

.product-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 192, 26, 0.3), rgba(46, 46, 46, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-item:hover .product-hover-effect {
    opacity: 1;
}

.product-details {
    padding: 35px;
}

.product-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.product-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.product-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-color), #2E2E2E);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(57, 192, 26, 0.4);
}

.product-btn:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 40px rgba(57, 192, 26, 0.6);
}

/* Portfolio Section */
.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.portfolio-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(57, 192, 26, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 4rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.service-btn:hover {
    background: #2d8a0f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 192, 26, 0.4);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.info-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.info-item p a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.info-item p a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateX(5px);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(57, 192, 26, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #2E2E2E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 192, 26, 0.6);
}

/* Footer */
.footer {
    background: rgba(46, 46, 46, 0.95);
    padding: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.footer-developer {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
    color: #2d8a0f;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(57, 192, 26, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 46, 46, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(46, 46, 46, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .slide-text {
        right: 5%;
        max-width: 90%;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .lang-dropdown-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .lang-dropdown-menu {
        min-width: 180px;
        right: 0;
    }

    .lang-dropdown-item {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Floating Social Media Icons */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(57, 192, 26, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation - Each icon floats at different speed */
.social-icon:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 2.5s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.3s;
    animation-duration: 3s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.6s;
    animation-duration: 2.8s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.9s;
    animation-duration: 3.2s;
}

.social-icon:nth-child(5) {
    animation-delay: 1.2s;
    animation-duration: 2.7s;
}

.social-icon:nth-child(6) {
    animation-delay: 1.5s;
    animation-duration: 3.1s;
}

/* Floating keyframes - up and down movement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Glow effect */
.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.social-icon:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.social-icon:hover::after {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-15px) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4),
                0 0 30px currentColor,
                0 0 50px rgba(57, 192, 26, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    animation-play-state: paused;
}

.social-icon:active {
    transform: translateY(-10px) scale(1.05);
}

.social-icon-content {
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    line-height: 1;
}

/* Font Awesome icon support */
.social-icon-content i {
    font-size: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover .social-icon-content {
    transform: scale(1.3) rotate(-5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Pulse effect on load */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(57, 192, 26, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(57, 192, 26, 0.4);
    }
}

.social-icon {
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

/* RTL Support for Social Icons */
body[dir="rtl"] .floating-social {
    left: auto;
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-social {
        left: 10px;
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon-content {
        font-size: 1.3rem;
    }

    .social-icon:hover {
        transform: translateY(-10px) scale(1.1);
    }

    body[dir="rtl"] .floating-social {
        right: 10px;
        left: auto;
    }
}

@media (max-width: 480px) {
    .floating-social {
        left: 5px;
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon-content {
        font-size: 1.2rem;
    }
}

