/* ===== SERVICES PAGE SPECIFIC STYLES ===== */
.neon-service-grid {
    background: #0a192f;
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(100, 255, 218, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.3;
}

.service-core {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-pulse-title {
    font-size: 4rem;
    color: #64ffda;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    position: relative;
    display: inline-block;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 10px rgba(100, 255, 218, 0.5); }
    100% { text-shadow: 0 0 20px rgba(100, 255, 218, 0.8), 0 0 30px rgba(100, 255, 218, 0.3); }
}

.service-pulse-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    bottom: -15px;
    left: 0;
    box-shadow: 0 0 20px #64ffda;
}

.service-subtext {
    color: #ccd6f6;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Tiers */
.tier-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.cyber-tier {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cyber-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(100, 255, 218, 0.05) 0%,
        transparent 50%,
        rgba(100, 255, 218, 0.05) 100%
    );
    z-index: -1;
}

.cyber-tier:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.tier-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.tier-icon {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cyber-tier:hover .tier-icon {
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.7);
}

.tier-name {
    color: #64ffda;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.tier-name::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #64ffda;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.cyber-tier:hover .tier-name::after {
    width: 100%;
}

.tier-price {
    color: #e6f1ff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.tier-price span {
    font-size: 1rem;
    color: #a8b2d1;
}

.tier-features {
    list-style: none;
    margin-bottom: 30px;
}

.tier-feature {
    color: #ccd6f6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.tier-feature::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #64ffda;
    font-size: 0.8rem;
}

.tier-cta {
    background: linear-gradient(45deg, #64ffda, #2dd4bf);
    color: #0a192f;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
}

.tier-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.tier-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.4);
}

.tier-cta:hover::after {
    left: 100%;
}

/* Service Process */
.hack-process {
    background: rgba(13, 27, 42, 0.8);
    border-radius: 15px;
    padding: 60px;
    margin-bottom: 80px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
}

.hack-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(100,255,218,0.05)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.process-title {
    text-align: center;
    color: #64ffda;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.process-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    color: rgba(100, 255, 218, 0.1);
    font-weight: bold;
    line-height: 1;
}

.process-icon {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 20px;
}

.process-name {
    color: #64ffda;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-desc {
    color: #a8b2d1;
    line-height: 1.7;
}

/* Tech Stack */
.tech-matrix {
    margin-bottom: 80px;
}

.tech-title {
    text-align: center;
    color: #64ffda;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.tech-item {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
    border-color: rgba(100, 255, 218, 0.5);
}

.tech-icon {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: rotate(15deg);
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.tech-name {
    color: #e6f1ff;
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials */

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.cyber-testimonials {
    background: linear-gradient(135deg, #112240, #0a192f);
    border-radius: 15px;
    padding: 60px 40px;
    margin-bottom: 80px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-title {
    text-align: center;
    color: #64ffda;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.testimonial-slider {
    display: flex;
    gap: 40px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
    animation: scroll-left 8s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    min-width: 350px;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.testimonial-text {
    color: #a8b2d1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    color: #64ffda;
    font-size: 2rem;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-text::before {
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-text::after {
    position: absolute;
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #64ffda;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #64ffda;
    font-weight: bold;
}

.author-role {
    color: #a8b2d1;
    font-size: 0.8rem;
}

/* Floating Tech Elements */
.floating-tech {
    position: absolute;
    color: rgba(100, 255, 218, 0.1);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
    animation: floatTech 25s linear infinite;
}

@keyframes floatTech {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .service-pulse-title {
        font-size: 3rem;
    }
    
    .hack-process {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .tier-matrix {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 60px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-pulse-title {
        font-size: 2.5rem;
    }
    
    .service-subtext {
        font-size: 1.1rem;
    }
    
    .cyber-tier {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .service-pulse-title {
        font-size: 2rem;
    }
    
    .neon-service-grid {
        padding: 100px 0 60px;
    }
    
    .service-header {
        margin-bottom: 50px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* Common Projects Section */
.project-showcase {
    background: rgba(13, 27, 42, 0.8);
    border-radius: 15px;
    padding: 60px;
    margin-bottom: 80px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
}

.project-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(100,255,218,0.05)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.showcase-title {
    text-align: center;
    color: #64ffda;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.5);
}

.project-icon {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

.project-name {
    color: #64ffda;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.project-name::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #64ffda;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.project-card:hover .project-name::after {
    width: 80px;
}

.project-desc {
    color: #a8b2d1;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Styles for Projects Section */
@media (max-width: 768px) {
    .project-showcase {
        padding: 40px 30px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .project-showcase {
        padding: 30px 20px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
}


/* Floating Code Elements */
.floating-code {
    position: absolute;
    color: rgba(100, 255, 218, 0.6);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre;
    pointer-events: none;
    z-index: 1;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.4);
    animation: floatCode 25s linear infinite;
    user-select: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.floating-code:nth-child(odd) {
    color: rgba(168, 255, 120, 0.6);
    text-shadow: 0 0 8px rgba(168, 255, 120, 0.4);
}

.floating-code:nth-child(3n) {
    color: rgba(255, 100, 218, 0.6);
    text-shadow: 0 0 8px rgba(255, 100, 218, 0.4);
}

@keyframes floatCode {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh);
    }
}

/* Make the code elements visible after a short delay */
.floating-code {
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-code {
        font-size: 0.7rem;
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {
    .floating-code {
        display: none; /* Hide on very small screens */
    }
}



    /* Modal Styles */
    .cyber-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .cyber-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .cyber-modal-content {
        background: rgba(17, 34, 64, 0.95);
        border: 1px solid rgba(100, 255, 218, 0.3);
        border-radius: 15px;
        width: 90%;
        max-width: 800px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }
    
    .cyber-modal.active .cyber-modal-content {
        transform: translateY(0);
    }
    
    .cyber-modal-header {
        padding: 25px;
        border-bottom: 1px solid rgba(100, 255, 218, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cyber-modal-title {
        color: #64ffda;
        font-size: 1.8rem;
        margin: 0;
    }
    
    .cyber-modal-title span {
        color: #ccd6f6;
        text-transform: uppercase;
    }
    
    .cyber-modal-close {
        background: transparent;
        border: none;
        color: #64ffda;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
        transition: all 0.3s ease;
    }
    
    .cyber-modal-close:hover {
        transform: rotate(90deg);
        color: #2dd4bf;
    }
    
    .cyber-modal-body {
        padding: 25px;
        color: #ccd6f6;
    }
    
    .cyber-modal-footer {
        padding: 20px 25px;
        border-top: 1px solid rgba(100, 255, 218, 0.2);
        display: flex;
        justify-content: flex-end;
        gap: 15px;
    }
    
    /* Benefit Grid */
    .modal-benefits h3,
    .modal-contact h3 {
        color: #64ffda;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        background: rgba(13, 27, 42, 0.5);
        border-radius: 10px;
        padding: 20px;
        border: 1px solid rgba(100, 255, 218, 0.2);
        transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        border-color: rgba(100, 255, 218, 0.5);
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        color: #64ffda;
        margin-bottom: 15px;
    }
    
    .benefit-card h4 {
        color: #e6f1ff;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #a8b2d1;
    }
    
    /* Contact Section */
    .modal-contact p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .contact-method {
        color: #ccd6f6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }
    
    .contact-method:hover {
        color: #64ffda;
        text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    }
    
    .contact-method i {
        width: 20px;
        text-align: center;
    }
    
    .note {
        font-size: 0.85rem;
        color: #a8b2d1;
        font-style: italic;
    }
    
    /* Modal Buttons */
    .cyber-modal-btn {
        padding: 12px 20px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: none;
    }
    
    .cyber-modal-btn.primary {
        background: linear-gradient(45deg, #64ffda, #2dd4bf);
        color: #0a192f;
    }
    
    .cyber-modal-btn.secondary {
        background: transparent;
        border: 1px solid #64ffda;
        color: #64ffda;
    }
    
    .cyber-modal-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .cyber-modal-title {
            font-size: 1.5rem;
        }
        
        .cyber-modal-content {
            width: 95%;
        }
        
        .benefit-grid {
            grid-template-columns: 1fr;
        }
        

    }





    /* Modal Styles */
    .cyber-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .cyber-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .cyber-modal-content {
        background: rgba(17, 34, 64, 0.95);
        border: 1px solid rgba(100, 255, 218, 0.3);
        border-radius: 15px;
        width: 90%;
        max-width: 800px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }
    
    .cyber-modal.active .cyber-modal-content {
        transform: translateY(0);
    }
    
    .cyber-modal-header {
        padding: 25px;
        border-bottom: 1px solid rgba(100, 255, 218, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cyber-modal-title {
        color: #64ffda;
        font-size: 1.8rem;
        margin: 0;
    }
    
    .cyber-modal-title span {
        color: #ccd6f6;
        text-transform: uppercase;
    }
    
    .cyber-modal-close {
        background: transparent;
        border: none;
        color: #64ffda;
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
        transition: all 0.3s ease;
    }
    
    .cyber-modal-close:hover {
        transform: rotate(90deg);
        color: #2dd4bf;
    }
    
    .cyber-modal-body {
        padding: 25px;
        color: #ccd6f6;
    }
    
    .cyber-modal-footer {
        padding: 20px 25px;
        border-top: 1px solid rgba(100, 255, 218, 0.2);
        display: flex;
        justify-content: flex-end;
        gap: 15px;
    }
    
    /* Benefit Grid */
    .modal-benefits h3,
    .modal-contact h3 {
        color: #64ffda;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 0;
        margin-bottom: 25px;
    }
    
    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        background: rgba(13, 27, 42, 0.5);
        border-radius: 10px;
        padding: 20px;
        border: 1px solid rgba(100, 255, 218, 0.2);
        transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
        border-color: rgba(100, 255, 218, 0.5);
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        color: #64ffda;
        margin-bottom: 15px;
    }
    
    .benefit-card h4 {
        color: #e6f1ff;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #a8b2d1;
    }
    
    /* Contact Section */
    .modal-contact p {
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .contact-method {
        color: #ccd6f6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }
    
    .contact-method:hover {
        color: #64ffda;
        text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    }
    
    .contact-method i {
        width: 20px;
        text-align: center;
    }
    
    .note {
        font-size: 0.85rem;
        color: #a8b2d1;
        font-style: italic;
    }
    
    /* Modal Buttons */
    .cyber-modal-btn {
        padding: 12px 20px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: none;
    }
    
    .cyber-modal-btn.primary {
        background: linear-gradient(45deg, #64ffda, #2dd4bf);
        color: #0a192f;
    }
    
    .cyber-modal-btn.secondary {
        background: transparent;
        border: 1px solid #64ffda;
        color: #64ffda;
    }
    
    .cyber-modal-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .cyber-modal-title {
            font-size: 1.5rem;
        }
        
        .cyber-modal-content {
            width: 95%;
        }
        
        .benefit-grid {
            grid-template-columns: 1fr;
        }
        

    }