/* =========================
   FUTURISTIC RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", "Segoe UI", sans-serif;
}

/* =========================
   BACKGROUND (CYBER SPACE)
   ========================= */
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #00f5ff22, transparent 40%),
        radial-gradient(circle at bottom, #7f00ff22, transparent 40%),
        linear-gradient(135deg, #050b14, #020409);
    color: #e6f1ff;
    overflow-x: hidden;
}

/* =========================
   HEADER (HOLOGRAM BAR)
   ========================= */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 20, 35, 0.6);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,255,255,0.15);
    padding: 18px 8%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 22px;
    letter-spacing: 3px;
    color: #00f5ff;
    text-shadow: 0 0 12px #00f5ff88;
}

/* =========================
   NAV LINKS (NEON TRACE)
   ========================= */
nav a {
    color: #e6f1ff;
    margin-left: 24px;
    text-decoration: none;
    position: relative;
    font-size: 14px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #7f00ff);
    transition: 0.4s;
}

nav a:hover::after {
    width: 100%;
}

/* =========================
   SECTIONS
   ========================= */
section {
    padding: 120px 8%;
}

/* =========================
   HERO (AI CORE)
   ========================= */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h2 {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(90deg, #00f5ff, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 3s infinite alternate;
}

.hero p {
    margin: 25px 0;
    font-size: 18px;
    color: #b6c6e3;
}

/* =========================
   FUTURISTIC BUTTON
   ========================= */
.pro-btn {
    padding: 16px 42px;
    border-radius: 50px;
    border: 1px solid #00f5ff66;
    background: rgba(0,245,255,0.08);
    color: #00f5ff;
    font-size: 15px;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    box-shadow:
        0 0 20px #00f5ff44,
        inset 0 0 20px #00f5ff22;
    transition: 0.4s;
}

.pro-btn:hover {
    color: #fff;
    box-shadow:
        0 0 40px #7f00ff88,
        inset 0 0 25px #7f00ff55;
}

/* =========================
   ENERGY SCAN EFFECT
   ========================= */
.pro-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: translateX(-120%);
}

.pro-btn:hover::after {
    animation: scan 1.2s linear;
}

/* =========================
   GLASS BOX (HOLOGRAM)
   ========================= */
.box {
    width: 320px;
    height: 320px;
    border-radius: 26px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0,245,255,0.2);
    box-shadow:
        0 0 60px rgba(0,245,255,0.25),
        inset 0 0 40px rgba(0,245,255,0.15);
}

/* =========================
   CARDS (DATA MODULES)
   ========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.card {
    position: relative;
    padding: 35px;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,245,255,0.18);
    backdrop-filter: blur(14px);
    transition: 0.4s;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(120deg, transparent, #00f5ff55, transparent);
    opacity: 0;
    transition: 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 60px #7f00ff55;
}

/* =========================
   EDITOR PANEL (CONTROL CORE)
   ========================= */
#editorPanel {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(5,10,20,0.85);
    border: 1px solid rgba(0,245,255,0.3);
    backdrop-filter: blur(18px);
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 0 50px #00f5ff44;
    z-index: 9999;
}

 

/* =========================
   FOOTER
   ========================= */
footer {
    text-align: center;
    padding: 25px;
    font-size: 13px;
    background: rgba(10,20,35,0.6);
    border-top: 1px solid rgba(0,245,255,0.15);
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes glowText {
    from { text-shadow: 0 0 10px #00f5ff55; }
    to   { text-shadow: 0 0 25px #7f00ff88; }
}

@keyframes scan {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* =========================
   Switch Mode Button
   ========================= */
/* =========================
   Switch Mode Button
   ========================= */
#switchBtn {
    position: relative;
    padding: 14px 34px;
    border-radius: 50px;
    border: 1px solid rgba(0, 245, 255, 0.6);
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.15),
        rgba(127, 0, 255, 0.15)
    );
    color: #00f5ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(0, 245, 255, 0.45),
        inset 0 0 20px rgba(0, 245, 255, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
    text-transform: uppercase;
}

/* Hover */
#switchBtn:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 0 55px rgba(127, 0, 255, 0.9),
        inset 0 0 35px rgba(127, 0, 255, 0.6);
}

/* Click */
#switchBtn:active {
    transform: scale(0.94);
}

/* Neon Glow */
#switchBtn::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #7f00ff,
        #00f5ff
    );
    opacity: 0.35;
    filter: blur(18px);
    z-index: -1;
    animation: glowPulse 2.5s infinite alternate;
}

/* Light Sweep */
#switchBtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transform: translateX(-120%);
}

#switchBtn:hover::after {
    animation: sweep 1.2s linear;
}

/* Animations */
@keyframes sweep {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}

@keyframes glowPulse {
    from { opacity: 0.3; }
    to   { opacity: 0.6; }
}

/* =========================
   Contact Section (Futuristic)
   ========================= */
.contact-section {
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Title */
.contact-title {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #00f5ff, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.contact-sub {
    font-size: 15px;
    color: #b6c6e3;
    margin-bottom: 40px;
    max-width: 420px;
}

/* =========================
   Contact Form Box
   ========================= */
.contact-form {
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0,245,255,0.25);
    border-radius: 26px;
    padding: 35px;
    box-shadow:
        0 0 60px rgba(0,245,255,0.25),
        inset 0 0 35px rgba(0,245,255,0.15);
}

/* =========================
   Inputs & Textarea
   ========================= */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,245,255,0.25);
    border-radius: 14px;
    color: #e6f1ff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9fb3c8;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7f00ff;
    box-shadow: 0 0 18px rgba(127,0,255,0.6);
    background: rgba(255,255,255,0.08);
}

/* Textarea */
.contact-form textarea {
    min-height: 130px;
    resize: none;
}

/* =========================
   Send Button
   ========================= */
.send-btn {
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    border: 1px solid rgba(0,245,255,0.6);
    background: linear-gradient(
        135deg,
        rgba(0,245,255,0.2),
        rgba(127,0,255,0.2)
    );
    color: #00f5ff;
    font-size: 15px;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 30px rgba(0,245,255,0.6),
        inset 0 0 25px rgba(0,245,255,0.3);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* Hover */
.send-btn:hover {
    color: #fff;
    box-shadow:
        0 0 50px rgba(127,0,255,0.9),
        inset 0 0 35px rgba(127,0,255,0.6);
    transform: translateY(-2px);
}

/* Click */
.send-btn:active {
    transform: scale(0.96);
}

/* Energy Scan */
.send-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: translateX(-120%);
}

.send-btn:hover::after {
    animation: sendScan 1.2s linear;
}

@keyframes sendScan {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}
/* =========================
   Dashboard Button (FUTURISTIC)
   ========================= */
#dashboardBtn {
    position: relative;
    padding: 18px 48px;
    border-radius: 60px;
    border: 1px solid rgba(0,245,255,0.65);
    background: linear-gradient(
        135deg,
        rgba(0,245,255,0.18),
        rgba(127,0,255,0.18)
    );
    color: #00f5ff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 35px rgba(0,245,255,0.55),
        inset 0 0 30px rgba(0,245,255,0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    text-transform: uppercase;
}

/* Hover */
#dashboardBtn:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 0 65px rgba(127,0,255,0.9),
        inset 0 0 45px rgba(127,0,255,0.6);
}

/* Click */
#dashboardBtn:active {
    transform: scale(0.95);
}

/* Glow Pulse */
#dashboardBtn::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 60px;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #7f00ff,
        #00f5ff
    );
    opacity: 0.35;
    filter: blur(20px);
    z-index: -1;
    animation: dashboardPulse 2.5s infinite alternate;
}

/* Energy Scan */
#dashboardBtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: translateX(-120%);
}

#dashboardBtn:hover::after {
    animation: dashboardScan 1.2s linear;
}

/* Animations */
@keyframes dashboardScan {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}

@keyframes dashboardPulse {
    from { opacity: 0.3; }
    to   { opacity: 0.6; }
}
/* =========================
   Messages Panel
   ========================= */
.messages-panel {
    margin-top: 60px;
}

.panel-title {
    font-size: 22px;
    letter-spacing: 2px;
    color: #00f5ff;
    margin-bottom: 25px;
}

/* =========================
   Message Card
   ========================= */
.message-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,245,255,0.25);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 0 35px rgba(0,245,255,0.18);
    transition: 0.3s;
}

/* Hover */
.message-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 55px rgba(127,0,255,0.45);
}

/* Unread */
.message-card.unread {
    border-left: 4px solid #00f5ff;
}

/* =========================
   Header
   ========================= */
.msg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.msg-name {
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

.msg-time {
    font-size: 12px;
    color: #9fb3c8;
}

/* =========================
   Content
   ========================= */
.msg-email {
    font-size: 13px;
    color: #7f00ff;
    margin-bottom: 10px;
}

.msg-text {
    line-height: 1.6;
    color: #dce7f2;
    margin-bottom: 18px;
}

/* =========================
   Actions
   ========================= */
.msg-actions {
    display: flex;
    gap: 12px;
}

.msg-btn {
    padding: 8px 18px;
    border-radius: 22px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* View */
.msg-btn.view {
    background: linear-gradient(135deg, #00f5ff, #006064);
    color: #000;
    box-shadow: 0 0 18px rgba(0,245,255,0.5);
}

.msg-btn.view:hover {
    box-shadow: 0 0 30px rgba(0,245,255,0.8);
}

/* Delete */
.msg-btn.delete {
    background: rgba(255,80,80,0.15);
    color: #ff4f4f;
    border: 1px solid rgba(255,80,80,0.5);
}

.msg-btn.delete:hover {
    background: rgba(255,80,80,0.35);
    box-shadow: 0 0 25px rgba(255,80,80,0.6);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0b1320;
    color: #fff;
}

.dash-header {
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f2027;
    border-bottom: 1px solid #00f5ff55;
}

.dash-header h1 {
    letter-spacing: 3px;
    color: #00f5ff;
}

#logoutBtn {
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    background: #ff4f4f;
    color: #fff;
    cursor: pointer;
}

.dashboard {
    padding: 60px 8%;
}

.panel-title {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: #00f5ff;
}

/* Message Card */
.message-card {
    background: #121c2b;
    padding: 22px;
    border-radius: 16px;
    margin-bottom: 20px;
    border-left: 4px solid transparent;
}

.message-card.unread {
    border-left-color: #00f5ff;
}

.msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.msg-name {
    font-weight: bold;
}

.msg-time {
    font-size: 12px;
    color: #aaa;
}

.msg-email {
    font-size: 13px;
    color: #7f9cff;
    margin-bottom: 10px;
}

.msg-text {
    margin-bottom: 18px;
    line-height: 1.6;
}

.msg-actions button {
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    font-size: 13px;
}

.msg-actions .read {
    background: #00f5ff;
    color: #000;
}

.msg-actions .delete {
    background: #ff4f4f;
    color: #fff;
}
/* =========================
   Home Hero Image - Futuristic
   ========================= */

.hero-image {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 24px;
    padding: 10px;
    background: linear-gradient(
        135deg,
        rgba(0,245,255,0.6),
        rgba(127,0,255,0.6)
    );
    box-shadow:
        0 0 40px rgba(0,245,255,0.6),
        0 0 80px rgba(127,0,255,0.4);
    animation: float 5s ease-in-out infinite;
}

/* الصورة نفسها */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #0f2027;
    box-shadow:
        inset 0 0 30px rgba(0,0,0,0.5);
    z-index: 2;
    position: relative;
}

/* Neon Glow Ring */
.hero-image::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 30px;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #7f00ff,
        #00f5ff
    );
    filter: blur(25px);
    opacity: 0.7;
    z-index: 0;
    animation: glowRotate 6s linear infinite;
}

/* Grid overlay */
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 3;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

/* Glow rotation */
@keyframes glowRotate {
    from {
        filter: blur(25px) hue-rotate(0deg);
    }
    to {
        filter: blur(25px) hue-rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image {
        width: 280px;
        height: 280px;
        margin: auto;
    }
}
/* =========================
   Professional Logo Design
   ========================= */

.logo-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        rgba(0,245,255,0.15),
        rgba(127,0,255,0.15)
    );
    border: 1px solid rgba(0,245,255,0.4);
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 25px rgba(0,245,255,0.4),
        inset 0 0 20px rgba(127,0,255,0.25);
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Logo Image */
.logo-pro img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 8px rgba(0,245,255,0.8));
    transition: transform 0.4s ease;
}

/* Logo Text */
.logo-pro span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00f5ff;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #7f00ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover Effect */
.logo-pro:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 45px rgba(127,0,255,0.9),
        inset 0 0 35px rgba(0,245,255,0.4);
}

/* Rotate Logo on Hover */
.logo-pro:hover img {
    transform: rotate(-6deg) scale(1.1);
}

/* Glow Animation */
.logo-pro::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #7f00ff,
        #00f5ff
    );
    filter: blur(18px);
    opacity: 0.45;
    z-index: -1;
    animation: logoGlow 4s linear infinite;
}

/* Light Sweep */
.logo-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: translateX(-130%);
}

.logo-pro:hover::after {
    animation: logoSweep 1.2s ease;
}

/* Animations */
@keyframes logoGlow {
    from { filter: blur(18px) hue-rotate(0deg); }
    to   { filter: blur(18px) hue-rotate(360deg); }
}

@keyframes logoSweep {
    from { transform: translateX(-130%); }
    to   { transform: translateX(130%); }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-pro span {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .logo-pro img {
        width: 36px;
        height: 36px;
    }
}
/* =========================
   Services Page - Premium UI
   ========================= */

body {
    background: radial-gradient(circle at top, #0f2027, #000);
}

/* Section */
section {
    padding: 100px 8%;
}

/* Title */
section h2 {
    text-align: center;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 80px;
    background: linear-gradient(90deg, #00f5ff, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

/* Service Card */
.card {
    position: relative;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,245,255,0.25);

    box-shadow:
        0 0 30px rgba(0,245,255,0.15),
        inset 0 0 20px rgba(127,0,255,0.15);

    transition: all 0.45s ease;
    overflow: hidden;
    cursor: pointer;
}

/* Glow Border */
.card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    background: linear-gradient(
        120deg,
        #00f5ff,
        #7f00ff,
        #00f5ff
    );
    opacity: 0;
    filter: blur(22px);
    transition: opacity 0.45s ease;
    z-index: -1;
}

/* Shine Effect */
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: translateX(-120%);
}

/* Hover Effects */
.card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow:
        0 0 70px rgba(127,0,255,0.8),
        inset 0 0 30px rgba(0,245,255,0.5);
}

.card:hover::before {
    opacity: 0.8;
}

.card:hover::after {
    animation: shine 1.2s ease;
}

/* Glow Pulse Animation */
.card {
    animation: pulseGlow 4s infinite alternate;
}

/* Animations */
@keyframes shine {
    from { transform: translateX(-120%); }
    to   { transform: translateX(120%); }
}

@keyframes pulseGlow {
    from {
        box-shadow:
            0 0 20px rgba(0,245,255,0.25),
            inset 0 0 15px rgba(127,0,255,0.15);
    }
    to {
        box-shadow:
            0 0 45px rgba(127,0,255,0.45),
            inset 0 0 25px rgba(0,245,255,0.35);
    }
}

/* Footer fix */
footer {
    margin-top: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    section h2 {
        font-size: 36px;
    }

    .card {
        padding: 30px 22px;
        font-size: 16px;
    }
}
/* =========================
   About Page - Professional
   ========================= */

.about-page {
    padding: 110px 10%;
    background:
        radial-gradient(circle at top, #0f2027, #000);
    color: #eaeaea;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-header h2 {
    font-size: 50px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00f5ff, #7f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header p {
    margin-top: 18px;
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Content */
.about-content {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    background: rgba(255,255,255,0.04);
    padding: 50px 45px;
    border-radius: 26px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,245,255,0.25);
    box-shadow:
        0 0 40px rgba(0,245,255,0.15),
        inset 0 0 25px rgba(127,0,255,0.15);
}

/* Paragraphs */
.about-content p {
    margin-bottom: 28px;
    color: #ddd;
}

/* Highlight paragraph */
.about-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #00f5ff;
    border-left: 4px solid #7f00ff;
    padding-left: 18px;
    background: linear-gradient(
        90deg,
        rgba(127,0,255,0.15),
        transparent
    );
}

/* Subtle glow animation */
.about-content {
    animation: aboutGlow 5s infinite alternate;
}

@keyframes aboutGlow {
    from {
        box-shadow:
            0 0 25px rgba(0,245,255,0.2),
            inset 0 0 20px rgba(127,0,255,0.15);
    }
    to {
        box-shadow:
            0 0 50px rgba(127,0,255,0.45),
            inset 0 0 30px rgba(0,245,255,0.35);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 80px 6%;
    }

    .about-header h2 {
        font-size: 36px;
    }

    .about-content {
        padding: 35px 25px;
        font-size: 16px;
    }
}
/* =========================
   CONTACT GLOW (NO BG CHANGE)
========================= */

/* Titles */
.contact-title {
    font-size: 40px;
    text-align: center;
    color: #0f2027;
    margin-bottom: 18px;
}

.contact-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: #1f2f38;
    line-height: 1.7;
}

/* =========================
   CONTACT INFO BOXES
========================= */

.contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.contact-box {
    background: #0f2027; /* لون داكن مش أبيض */
    padding: 32px;
    border-radius: 20px;
    color: #e0f7fa;
    position: relative;
    transition: 0.4s ease;
}

/* Glow */
.contact-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(
        120deg,
        transparent,
        #00e5ff,
        transparent
    );
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.contact-box:hover::after {
    opacity: 1;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 25px rgba(0,229,255,0.6),
        0 0 45px rgba(0,229,255,0.3);
}

.contact-box h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #00e5ff;
}

.contact-box p {
    font-size: 15.5px;
    color: #d0faff;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
    max-width: 520px;
    margin: auto;
    background: #0f2027; /* نفس لون البوكسات */
    padding: 45px;
    border-radius: 24px;
    position: relative;
    transition: 0.4s ease;
}

/* Form Glow */
.contact-form:hover {
    box-shadow:
        0 0 30px rgba(0,229,255,0.5),
        0 0 55px rgba(0,229,255,0.3);
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: none;
    background: #1c2e36;
    color: #e0f7fa;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7aa9b5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow:
        0 0 0 2px #00e5ff,
        0 0 18px rgba(0,229,255,0.6);
}

/* =========================
   SEND BUTTON
========================= */

#sendMsgBtn {
    width: 100%;
    padding: 15px;
    border-radius: 35px;
    border: none;
    background: linear-gradient(135deg, #00e5ff, #006064);
    color: #002b36;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.4s ease;
}

#sendMsgBtn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 35px rgba(0,229,255,0.8),
        0 0 65px rgba(0,229,255,0.4);
}
#backToStartBtn {
    margin-top: 18px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 1px solid rgba(0,245,255,0.5);
    background: linear-gradient(
        135deg,
        rgba(0,245,255,0.12),
        rgba(127,0,255,0.12)
    );
    color: #00f5ff;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 25px rgba(0,245,255,0.4),
        inset 0 0 18px rgba(0,245,255,0.25);
    transition: all 0.35s ease;
}

/* Hover */
#backToStartBtn:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 0 45px rgba(127,0,255,0.8),
        inset 0 0 30px rgba(127,0,255,0.6);
}

/* Click */
#backToStartBtn:active {
    transform: scale(0.95);
}
