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

:root {
    --primary-gold: #C4A962;
    --dark-gray: #3A3A3A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(58, 58, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--primary-gold);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.88) 0%, rgba(42, 42, 42, 0.92) 100%),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(196, 169, 98, 0.05) 50%, transparent 70%),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(196, 169, 98, 0.03) 50px, rgba(196, 169, 98, 0.03) 100px);
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-main {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-sub {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-gray);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 169, 98, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(-45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(196, 169, 98, 0.1);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.section-title-en {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 3px;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.8;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Vision Section */
.vision {
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.90) 0%, rgba(42, 42, 42, 0.92) 100%),
                url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(196, 169, 98, 0.05), transparent);
    pointer-events: none;
}

.vision .section-title,
.mission .section-title {
    color: var(--white);
}

.vision .section-number,
.mission .section-number {
    color: rgba(196, 169, 98, 0.1);
}

.vision-content,
.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-text-box,
.mission-text-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(196, 169, 98, 0.2);
    transition: all 0.3s;
}

.vision-text-box:hover,
.mission-text-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.vision-text-ar,
.mission-text-ar {
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.vision-text-en,
.mission-text-en {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    font-style: italic;
    border-top: 1px solid rgba(196, 169, 98, 0.2);
    padding-top: 2rem;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, rgba(196, 169, 98, 0.92) 0%, rgba(179, 153, 82, 0.94) 100%),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 169, 98, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 169, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.mission .section-title {
    color: var(--dark-gray);
}

.mission .section-title-en {
    color: rgba(58, 58, 58, 0.7);
}

.mission-text-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(58, 58, 58, 0.1);
}

.mission-text-box:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--dark-gray);
}

.mission-text-ar {
    color: var(--dark-gray);
}

.mission-text-en {
    color: var(--text-light);
    border-top: 1px solid rgba(58, 58, 58, 0.1);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(245, 245, 245, 0.95) 100%),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(196, 169, 98, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(196, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-intro-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 169, 98, 0.1), transparent);
    transition: left 0.5s;
}

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

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(196, 169, 98, 0.4);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-icon-img {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.service-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-img img {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.96) 100%),
                url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.products::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 169, 98, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.products-category {
    margin-bottom: 4rem;
}

.products-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 0.5rem;
}

.category-title-en {
    font-size: 1rem;
    color: var(--primary-gold);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(196, 169, 98, 0.3);
    background: var(--white);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-icon-img {
    width: 100%;
    height: 150px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-icon-img img {
    transform: scale(1.15);
}

.product-card h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.software-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.software-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 169, 98, 0.2);
}

.software-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    display: flex;
    justify-content: center;
}

.software-icon svg {
    color: var(--primary-gold);
}

.software-card h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

.software-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.software-en {
    font-style: italic;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.92) 0%, rgba(30, 30, 30, 0.94) 100%),
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(196, 169, 98, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-partners 10s ease-in-out infinite;
}

@keyframes pulse-partners {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.partners .section-title {
    color: var(--white);
}

.partners .section-number {
    color: rgba(196, 169, 98, 0.1);
}

.partners-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partners-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(196, 169, 98, 0.2);
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(196, 169, 98, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.partner-card:hover::after {
    width: 300px;
    height: 300px;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 169, 98, 0.4);
}

.partner-logo {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.partner-logo img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(28%) saturate(646%) hue-rotate(359deg) brightness(92%) contrast(86%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-name {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-name {
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Goals Section */
.goals {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.96) 50%, rgba(255, 255, 255, 0.96) 100%),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.goals::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 169, 98, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-diagonal 25s ease-in-out infinite;
}

@keyframes float-diagonal {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, 100px); }
}

.goals-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-item {
    display: flex;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(196, 169, 98, 0.1), transparent);
    transition: width 0.4s;
}

.goal-item:hover::before {
    width: 100%;
}

.goal-item:hover {
    border-left-color: var(--primary-gold);
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(196, 169, 98, 0.3);
    background: var(--white);
}

.goal-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    flex-shrink: 0;
    line-height: 1;
}

.goal-text {
    flex: 1;
}

.goal-item h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.goal-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 169, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-gold);
    transform: translateX(-3px);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-address-section {
    display: flex;
    flex-direction: column;
}

.footer-address-section h4 {
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-address-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-links h4,
.footer-address-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-gray);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.3rem;
    }

    .about-content,
    .goals-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .vision-text-box,
    .mission-text-box {
        padding: 2rem;
    }

    .vision-text-ar,
    .mission-text-ar,
    .vision-text-en,
    .mission-text-en {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-intro-text {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .goal-item {
        flex-direction: column;
        text-align: center;
    }

    .goal-number {
        font-size: 2.5rem;
    }

    .goal-item h4 {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-name {
        font-size: 1.5rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
