:root {
    --primary-color: #1a2a6c;
    --secondary-color: #fdbb2d;
    --accent-color: #b21f1f;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #fff;
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 25px;
    transition: var(--transition);
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-light);
}
.logo-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(253, 187, 45, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.call-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.4);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/img10.jpg'); 
    background-size: cover;
    background-position: center;
    animation: zoomAnimation 20s infinite alternate;
    filter: blur(3px);
}

@keyframes zoomAnimation {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.4));
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: scale(1.05);
}
.floating-shape {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s infinite ease-in-out;
}

.shape-1 { width: 100px; height: 100px; top: 20%; left: 10%; }
.shape-2 { width: 150px; height: 150px; bottom: 15%; right: 10%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@media (max-width: 992px) {
    .nav-links, .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}
.mobile-menu-overlay {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(26, 42, 108, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    z-index: 2000;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mobile-menu-overlay.active {
    top: 90px;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}
.about-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
}

.main-img-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: var(--transition);
}

.main-img-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-img-card img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(26, 42, 108, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.sub-img-card {
    position: absolute;
    top: -30px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 250px;
}

.sub-img-card i {
    font-size: 2rem;
    color: #27ae60;
}
.about-text .sub-title {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.about-text .main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text .description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(253, 187, 45, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 700;
    color: var(--text-dark);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.1rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 20px;
    color: var(--accent-color);
}
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-visual {
        margin-bottom: 50px;
    }
    .experience-badge {
        right: 20px;
    }
    .features-grid {
        justify-items: start;
        text-align: right;
    }
    .main-title {
        font-size: 2rem;
    }
}
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2a6c, #121d4a);
    position: relative;
    overflow: hidden;
    color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header .main-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-desc {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before {
    opacity: 0.1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transform: rotate(-10deg);
    transition: 0.5s;
}

.service-card:hover .icon-wrapper {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 0 20px var(--secondary-color);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-list li i {
    color: var(--secondary-color);
}
.services-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    animation: move 20s infinite alternate;
}

.blob:nth-child(2) {
    background: var(--accent-color);
    bottom: 0;
    right: 0;
    animation-delay: -5s;
}

@keyframes move {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}
@media (max-width: 768px) {
    .section-header .main-title {
        font-size: 2.2rem;
    }
    .services-grid {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
}
}
.cyber-areas {
    padding: 100px 0;
    background: rgba(10, 17, 44, 0.95);
    position: relative;
    overflow: hidden;
}

.ultra-title {
    font-size: 3.5rem;
    color: white;
    text-align: center;
    font-weight: 900;
    margin-bottom: 50px;
}

.gradient-text {
    background: linear-gradient(90deg, #00d2ff, #9d50bb, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s infinite linear;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.modern-area-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-header {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 5px solid var(--clr, #fdbb2d);
    padding-right: 15px;
}

.neighborhoods-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.n-item {
    position: relative;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: floating 3s ease-in-out infinite alternate;
}

@keyframes floating {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}
.n-item:hover {
    background: var(--clr);
    color: #000;
    box-shadow: 0 0 30px var(--clr);
    transform: scale(1.1) rotate(2deg);
    z-index: 10;
}

.n-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: 0.5s;
}

.n-item:hover::before {
    transform: scale(1);
}
@media (max-width: 768px) {
    .ultra-title { font-size: 2.2rem; }
    .n-item { padding: 10px 20px; font-size: 0.9rem; }
}
.power-section {
    padding: 100px 0;
    background: #050a1f; 
    position: relative;
    overflow: hidden;
}
.power-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.power-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 210, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.power-card:hover .card-glow {
    opacity: 1;
}

.power-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00d2ff;
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.power-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d2ff, #9d50bb);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.power-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.power-card p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.power-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(157, 80, 187, 0.1);
    color: #9d50bb;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
.trust-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 30px;
    margin-top: 80px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.trust-item {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.trust-item span {
    display: block;
    font-size: 2.5rem;
    color: #fdbb2d;
    font-weight: 900;
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .power-grid {
    grid-template-columns: repeat(1, minmax(280px, 1fr));
}
}
.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #050a1f;
}
.liquid-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: url('images/img4.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(15px); 
    opacity: 0.5;
    animation: imageSlowZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}
@keyframes imageSlowZoom {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(2deg); }
}
.contact-wrapper {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}
.glass-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.glass-card-link {
    text-decoration: none;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}
.phone-card .card-icon { background: var(--secondary-color); color: var(--primary-color); }
.whatsapp-card .card-icon { background: #25d366; }
.card-info span { color: #cbd5e0; display: block; font-size: 0.9rem; }
.card-info strong { color: white; font-size: 1.6rem; font-weight: 900; }
.arrow-icon { color: rgba(255, 255, 255, 0.2); margin-right: auto; font-size: 1.5rem; transition: 0.4s; }
.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-15px) scale(1.02);
    border-color: var(--secondary-color);
}
.glass-card:hover .arrow-icon { transform: translateX(-10px); color: var(--secondary-color); }
.address-glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.address-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}
.address-content i { font-size: 2.5rem; color: var(--secondary-color); }
.address-content h3 { margin-bottom: 5px; }
.main-footer {
    background: #030712;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 900; color: var(--secondary-color); margin-bottom: 20px; }
.about-col p { color: #94a3b8; line-height: 1.8; margin-bottom: 25px; }
.footer-col h4 { font-size: 1.3rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--secondary-color); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--secondary-color); padding-right: 10px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #94a3b8; }
.contact-list li i { color: var(--secondary-color); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; text-align: center; }
.footer-bottom p { color: #64748b; font-size: 0.9rem; margin-bottom: 10px; }
.developer-credit { font-size: 1.1rem; color: white; font-weight: 700; }
.developer-credit a { color: #00d2ff; text-decoration: none; border-bottom: 1px solid; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .glass-card { padding: 20px; }
    .card-info strong { font-size: 1.2rem; }
}
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float {
    background: #25d366;
    animation: pulse-green 2s infinite;
}

.phone-float {
    background: var(--secondary-color);
    color: var(--primary-color);
    animation: pulse-gold 2s infinite;
}
.btn-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    white-space: nowrap;
}
.floating-btn:hover .btn-text {
    opacity: 1;
    right: 75px;
}
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(253, 187, 45, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(253, 187, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 187, 45, 0); }
}
@media (max-width: 768px) {
    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.7rem !important; 
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .hero-description {
        font-size: 0.95rem !important; 
        line-height: 1.6;
        padding: 0 10px; 
        margin-bottom: 25px;
    }
    .hero-btns {
        flex-direction: column; 
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    .btn {
        width: 80%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}