@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700;900&display=swap');
:root {
    --primary: #2a5298;
    --secondary: #1e3c72;
    --accent: #00d2ff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-main: #2d3436;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #f0f2f5;
    color: var(--text-main);
    overflow-x: hidden;
}
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--secondary);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 400;
}

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

.nav-item {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    transition: var(--transition);
}
.nav-item.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

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

.btn-call:hover {
    transform: scale(1.05);
    background: #219150;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 10%;
    color: white;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

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

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

.btn-primary { background: var(--accent); color: var(--secondary); }
.btn-secondary { background: rgba(255,255,255,0.2); color: white; border: 1px solid white; backdrop-filter: blur(5px); }
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,210,255,0.4); }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.mobile-overlay {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(1, 4, 43);
    z-index: 999;
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay.active { top: 0; }

.mobile-menu {
    width: 85%;
    max-width: 400px;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero-content h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; }
    .navbar { padding: 10px 20px; }
}
.logo-icon svg {
    width: 32px; 
    height: 32px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo-icon svg {
    animation: dropFloat 3s ease-in-out infinite;
}

@keyframes dropFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.about-section {
    padding: 100px 5%;
    position: relative;
    background: #a6bfed;
    overflow: hidden;
}
.abstract-blobs .blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1), rgba(0, 210, 255, 0.1));
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}
.blob:nth-child(1) { top: -100px; left: -100px; }
.blob:nth-child(2) { bottom: -100px; right: -100px; animation: move 10s infinite alternate; }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    line-height: 2;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.highlight-p {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    border-right: 5px solid var(--accent);
    padding-right: 20px;
}
.about-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ccc;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-weight: 700;
    color: #777;
    font-size: 1rem;
}
.fade-right { transform: translateX(50px); opacity: 0; transition: 1s ease; }
.fade-left { transform: translateX(-50px); opacity: 0; transition: 1s ease; }

.about-section.active .fade-right,
.about-section.active .fade-left {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .about-text-grid { grid-template-columns: 1fr; }
    .glass-panel { padding: 30px; }
    .section-title { font-size: 2rem; }
}
.services-advanced {
    padding: 120px 5%;
    background: #0a192f;
    position: relative;
    overflow: hidden;
}
.glow-elements div {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.3;
}
.glow-1 { width: 500px; height: 500px; background: #00d2ff; top: -10%; right: -10%; }
.glow-2 { width: 400px; height: 400px; background: #27ae60; bottom: -10%; left: -10%; }
.section-intro { text-align: center; margin-bottom: 70px; position: relative; z-index: 1; }
.title-main { font-size: 3.5rem; color: #fff; font-weight: 900; }
.text-gradient { background: linear-gradient(90deg, #00d2ff, #27ae60); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.desc-main { color: #8892b0; max-width: 700px; margin: 20px auto; font-size: 1.1rem; line-height: 1.7; }
.glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    overflow: hidden;
    display: flex;
    flex-direction: column; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%; 
}

.glass-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.card-image {
    width: 100%;
    height: 220px; 
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.glass-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
}

.card-content {
    padding: 30px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d2ff, #2a5298);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    margin-top: -60px; 
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.glass-card h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.card-content p {
    color: #a8b2d1;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
    margin-bottom: 25px;
    flex-grow: 1; 
}

.btn-glass {
    padding: 12px 25px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: 0.3s;
}

.btn-glass:hover {
    background: #00d2ff;
    color: #0a192f;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}
@media (max-width: 992px) {
    .glass-grid { grid-template-columns: 1fr; }
    .title-main { font-size: 2.3rem; }
    .card-image { height: 180px; }
}
.floating-contact {
    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;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(5px);
}
.whatsapp-btn {
    background: rgba(37, 211, 102, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-whatsapp 2s infinite;
}
.call-btn {
    background: rgba(0, 210, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-call 2s infinite 1s; 
}
@keyframes pulse-whatsapp {
    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-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}
.floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.floating-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(-20px);
}
.tooltip-text {
    position: absolute;
    right: 70px;
    background: rgba(10, 25, 47, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border: 1px solid var(--accent);
    pointer-events: none;
}
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
.card-image {
    width: 100%;
    height: 350px; 
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    .card-image {
        height: 280px; 
    }
}
.testimonials-section {
    padding: 100px 5%;
    background: #f8fafc; 
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testi-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    transform: translateY(-10px) rotate(1deg); 
    background: rgba(255, 255, 255, 0.9);
    border-color: #00d2ff;
    box-shadow: 0 25px 50px rgba(42, 82, 152, 0.1);
}

.quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 2.2rem;
    color: rgba(42, 82, 152, 0.1); 
    transition: 0.3s;
}

.testi-card:hover .quote-icon {
    color: #00d2ff;
    transform: scale(1.1);
}

.rating {
    margin-bottom: 15px;
    color: #ffc107; 
    font-size: 0.9rem;
}

.testi-text {
    color: #475569; 
    line-height: 1.8;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 25px;
    text-align: justify;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; 
}

.user-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2a5298, #00d2ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

.user-details h4 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 800;
}

.user-details span {
    color: #64748b;
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testi-card {
        padding: 30px 20px; 
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testi-text {
        font-size: 1rem;
    }
}
.title-main {
    font-size: 3.2rem;
    color: #1e293b; 
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(90deg, #2a5298, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}
.text-gradient::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 210, 255, 0.2);
    z-index: -1;
    border-radius: 10px;
}
.desc-main {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .title-main {
        font-size: 2.3rem; 
    }
}
.why-us-section {
    padding: 120px 5%;
    background: #0a192f;
    position: relative;
    overflow: hidden;
}
.glow-bg .glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
}
.gc1 { width: 500px; height: 500px; background: #00d2ff; top: -10%; left: -10%; }
.gc2 { width: 400px; height: 400px; background: #2a5298; bottom: -5%; right: -5%; }

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.text-white { color: #ffffff !important; }
.text-gray { color: #a8b2d1 !important; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 60px;
}

.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-box:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-12px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2a5298, #00d2ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 210, 255, 0.2);
}

.glass-box h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.glass-box p {
    color: #8892b0;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}
.glass-box p strong {
    color: #00d2ff; 
    font-weight: 700;
}
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .title-main { font-size: 2.2rem; }
    .glass-box { padding: 25px; }
}
.contact-section {
    padding: 120px 5%;
    position: relative;
    background-color: #5195fa;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(29, 59, 104, 0.85); 
    backdrop-filter: blur(10px); 
    z-index: 0;
}

.contact-section .container { position: relative; z-index: 1; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 40px;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.call-icon { background: linear-gradient(135deg, #00d2ff, #2a5298); color: white; animation: pulse-blue 2s infinite; }
.wa-icon { background: linear-gradient(135deg, #25d366, #128c7e); color: white; animation: pulse-green 2s infinite; }

.contact-card h3 { color: white; font-size: 1.8rem; margin-bottom: 15px; }
.contact-card p { color: #8892b0; margin-bottom: 30px; line-height: 1.6; }

.contact-link {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d2ff;
    text-decoration: none;
    direction: ltr;
    display: block;
}

.wa-text { color: #25d366; }
.main-footer {
    background: #050c16;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-col h4 {
    color: white;
    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: 2px;
    background: var(--accent);
}
.logo-name { font-size: 2rem; font-weight: 900; background: linear-gradient(90deg, #fff, #00d2ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-col p { color: #8892b0; margin-top: 15px; line-height: 1.8; font-size: 0.95rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #8892b0; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); padding-right: 10px; }
.footer-info { list-style: none; }
.footer-info li { color: #8892b0; margin-bottom: 15px; display: flex; gap: 10px; align-items: center; }
.footer-info i { color: var(--accent); font-size: 1.1rem; }
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #444;
}
.gmt-credit { margin-top: 10px; font-size: 0.9rem; }
.gmt-credit a { color: #8892b0; text-decoration: none; font-weight: 700; transition: 0.3s; }
.gmt-credit a:hover { color: #00d2ff; }
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .contact-link { font-size: 1.5rem; }
}
@keyframes pulse-blue { 0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(0, 210, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); } }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
.contact-section {
    z-index: 1;
}
.contact-section .container {
    position: relative;
    z-index: 10;
}
.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 1 !important;
    visibility: visible !important;
}
.contact-card {
    opacity: 1 !important;
    transform: none !important; 
    visibility: visible !important;
    display: block !important;
}
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}