@charset "utf-8";
/*

TemplateMo 592 glossy touch

https://templatemo.com/tm-592-glossy-touch

*/
  /* Custom styles for DIDIT */
        :root {
            --primary-color: #740c00;
            --primary-dark: #521c16;
        }
         /* إضافة أنماط للتأثيرات */
        .typing-text {
            border-right: 2px solid #860d00; /* مؤشر الكتابة */
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
        }
        
        .hero-content h1 {
            min-height: 84px; /* ارتفاع مناسب للنص متعدد الأسطر */
        }
        
        .hero-content p {
            min-height: 120px; /* ارتفاع مناسب للنص الطويل */
        }
        .logo {
            color: var(--primary-color);
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }
        
        .cta-button {
            background: var(--primary-color);
            border-color: var(--primary-dark);
        }
        
        .cta-button:hover {
            background: var(--primary-dark);
        }
        
        .feature-icon, 
        .service-icon,
        .team-avatar,
        .contact-item-icon {
            background: rgba(231, 76, 60, 0.2);
        }
        
        .stat-number {
            color: var(--primary-color);
        }
        
        .service-features li:before {
            color: var(--primary-color);
        }
        
        button[type="submit"] {
            background: var(--primary-color);
            border: none;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        button[type="submit"]:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        #0c0c0c 0%,
        #1a1a2e 15%,
        #16213e 35%,
        #0f3460 50%,
        #533a7d 70%,
        #8b5a8c 85%,
        #a0616a 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
}
/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Page system */
.page {
    display: none;
    min-height: 100vh;
    padding: 40px 20px 20px;
}
.page.active {
    display: block;
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: white;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}
.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    .footer-links a {
        display: block;
        text-align: center;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    border-radius: 20px;
}

.slide.active {
    opacity: 1;
}

.company-overview {
    padding: 60px 40px;
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
}

.overview-header {
    text-align: center;
    margin-bottom: 50px;
}

.overview-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.overview-header h2 span {
    color: #ff1900
;
}
.highlight-box {
    background: linear-gradient(135deg, 
                rgba(0,0,0,0.9) 0%, 
                rgba(70,0,0,0.8) 50%, 
                rgba(0,0,0,0.9) 100%);
    border-left: 4px solid #8B0000; /* أحمر غامق */
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
                transparent, 
                #e74c3c, 
                transparent);
    animation: lightEffect 3s infinite;
}

.highlight-box p {
    position: relative;
    z-index: 1;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@keyframes lightEffect {
    0% { opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { opacity: 0.3; }
}

/* تأثير عند التحويم */
.highlight-box:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.tech-lines {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tech-lines .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff1900
, transparent);
}

.tech-lines .line:nth-child(2) {
    background: linear-gradient(90deg, #fff, transparent);
}

.tech-lines .line:nth-child(3) {
    background: linear-gradient(90deg, #333, transparent);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.overview-text .lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.highlight-box {
    background: rgba(231, 76, 60, 0.15);
    border-left: 4px solid #ff1900
;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 10px 10px 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.mv-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mv-card h3 {
    color: #ff1900
;
    margin-bottom: 15px;
}

.services-highlights {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
}

.services-highlights h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.tech-services {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tech-services li {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.tech-services li:hover {
    background: rgba(231, 76, 60, 0.2);
    transform: translateX(5px);
}

.service-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ff1900
;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .tech-services {
        grid-template-columns: 1fr;
    }
}
/* تصميم النص المضيء */
.portfolio-intro {
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.glowing-text-container {
    background: rgba(15, 20, 40, 0.7);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glowing-text-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(231, 76, 60, 0.8), 
        rgba(52, 152, 219, 0.8), 
        rgba(46, 204, 113, 0.8));
    background-size: 400%;
    z-index: -1;
    border-radius: 15px;
    animation: glowing-border 8s linear infinite;
}

.glowing-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
    margin: 0;
}

.glowing-text::first-letter {
    font-size: 2rem;
    color: #ff1900
;
    font-weight: bold;
}

@keyframes glowing-border {
    0% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
}
/* تصميم عنوان البورتفوليو */
.portfolio-header {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-glow-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tech-glow-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(231, 76, 60, 0.3) 0%, 
        rgba(52, 152, 219, 0.2) 50%, 
        transparent 70%);
    z-index: -1;
    border-radius: 16px;
    animation: pulse 8s infinite alternate;
}

.tech-glow-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-glow-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff1900
, #3498db);
    border-radius: 3px;
}

.tech-glow-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 600px;
    position: relative;
}

.tech-glow-text::before,
.tech-glow-text::after {
    content: '"';
    font-size: 2rem;
    color: #ff1900
;
    position: absolute;
    opacity: 0.7;
}

.tech-glow-text::before {
    top: -15px;
    left: -25px;
}

.tech-glow-text::after {
    bottom: -25px;
    right: -25px;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        background-size: 100% 100%;
    }
    100% {
        opacity: 0.8;
        background-size: 150% 150%;
    }
}

/* تأثيرات الحركة */
.tech-glow-title {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 
                     0 0 30px rgba(52, 152, 219, 0.5);
    }
}

@media (max-width: 768px) {
    .tech-glow-container {
        padding: 30px 20px;
    }
    
    .tech-glow-title {
        font-size: 1.8rem;
    }
    
    .tech-glow-text {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .glowing-text {
        font-size: 1rem;
    }
    
    .glowing-text-container {
        padding: 20px;
    }
}
/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 span {
    color: #530800;
}

.tech-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 500px;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.7), transparent);
    flex-grow: 1;
}

.divider-icon {
    margin: 0 20px;
    font-size: 1.5rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.departments-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.dept-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dept-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-left: 3px solid #ff1900
;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dept-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #f41800;
    flex-shrink: 0;
}

.dept-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dept-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.team-values {
    text-align: center;
    margin-top: 60px;
}

.team-values h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.team-values h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff1900;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(30deg, #000 50%, #ff1900 50%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(30deg, #ff1900 50%, #000 50%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: rgba(231, 76, 60, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
    background: rgba(231, 76, 60, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff1900
;
}

.value-item h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dept-card {
        flex-direction: column;
    }
    
    .dept-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .departments-container {
        grid-template-columns: 1fr;
    }
}

/* Projects & Services Styles */
.projects-services {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.services-showcase {
    max-width: 1200px;
    margin: 50px auto 0;
}

.service-category {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-category:hover {
    background: rgba(255, 255, 255, 0.08);
}

.category-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.category-header:hover {
    background: rgba(231, 76, 60, 0.2);
}

.category-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #ff1900
;
    transition: transform 0.3s ease;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.category-content.active {
    max-height: 1000px;
    padding: 20px 30px;
}

.service-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #ff1900
;
    flex-shrink: 0;
}

.service-details h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.service-details p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .category-header {
        padding: 15px 20px;
    }
    
    .category-content.active {
        padding: 15px 20px;
    }
}

.logo-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon img {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}