/* Hero Section Styles */
.hero-section {
    height: max-content;
    padding: 12rem 0 8rem;
    position: relative;
    background-color: var(--cyber-secondary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--cyber-secondary) 0%, var(--cyber-dark) 100%);
    z-index: 1;
}

@keyframes codeScan {
    0% {
        top: -20px;
    }
    100% {
        top: 100%;
    }
}

.hero-binary {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    overflow: hidden;
}

.hero-binary-text {
    position: absolute;
    font-family: monospace;
    color: rgba(0, 163, 255, 0.3);
    font-size: 1.2rem;
    user-select: none;
    white-space: nowrap;
    animation: var(--matrix-animation);
}

@keyframes matrixRain {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(1000%);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
    filter: drop-shadow(var(--cyber-glow));
}

.hero-logo img {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-logo::before, .hero-logo::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--cyber-primary);
    opacity: 0.1;
    z-index: 3;
    animation: ripple 3s infinite ease-out;
}

.hero-logo::before {
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    animation-delay: 0s;
}

.hero-logo::after {
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    animation-delay: 0.5s;
}

@keyframes ripple {
    0% {
        transform: scale(0.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--cyber-primary);
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--cyber-accent);
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 179, 0.3) 20%, 
        rgba(0, 255, 179, 0.6) 50%, 
        rgba(0, 255, 179, 0.3) 80%, 
        transparent 100%);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-button-primary {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--cyber-gradient);
    color: var(--cyber-dark);
    box-shadow: var(--cyber-glow);
}

.hero-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: all 0.5s ease;
}

.hero-button-primary:hover::before {
    left: 100%;
}

.hero-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 179, 0.5);
}

.hero-button-secondary {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: var(--cyber-primary);
    border: 2px solid var(--cyber-primary);
    box-shadow: inset 0 0 10px rgba(0, 163, 255, 0.2);
}

.hero-button-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 163, 255, 0.1);
    z-index: -1;
    transition: all 0.5s ease;
}

.hero-button-secondary:hover::before {
    left: 100%;
}

.hero-button-secondary:hover {
    color: var(--cyber-accent);
    border-color: var(--cyber-accent);
    box-shadow: inset 0 0 15px rgba(0, 255, 179, 0.3), 0 0 15px rgba(0, 255, 179, 0.2);
    transform: translateY(-3px);
}

@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
}

/* Intro Section Styles */
.intro-section {
    height: max-content;
    padding: 6rem 0;
    position: relative;
    background-color: var(--cyber-dark);
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.intro-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--cyber-primary);
    padding: 10px;
    background-color: var(--cyber-dark);
    box-shadow: var(--cyber-glow), inset var(--cyber-glow);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.intro-logo-container::before, .intro-logo-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(
        transparent 0deg,
        transparent 60deg,
        var(--cyber-primary) 61deg,
        var(--cyber-primary) 120deg,
        transparent 121deg,
        transparent 180deg,
        var(--cyber-accent) 181deg,
        var(--cyber-accent) 240deg,
        transparent 241deg,
        transparent 300deg,
        var(--cyber-primary) 301deg,
        var(--cyber-primary) 360deg
    );
    opacity: 0.2;
    animation: spin 10s linear infinite;
}

.intro-logo-container::before {
    width: 220px;
    height: 220px;
    top: calc(50% - 110px);
    left: calc(50% - 110px);
    z-index: 1;
}

.intro-logo-container::after {
    width: 260px;
    height: 260px;
    top: calc(50% - 130px);
    left: calc(50% - 130px);
    animation-direction: reverse;
    opacity: 0.1;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.intro-hello {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--cyber-primary);
    text-align: center;
    position: relative;
    display: inline-block;
}

.intro-hello::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--cyber-gradient);
    bottom: -10px;
    left: 20%;
}

.intro-text-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 27, 61, 0.3);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.intro-text-container:hover {
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.2);
    transform: translateY(-5px);
}

.intro-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 163, 255, 0.03) 0%, transparent 15%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 179, 0.03) 0%, transparent 15%);
    z-index: -1;
}

.intro-text-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: 
        linear-gradient(135deg, transparent 0%, transparent 50%, rgba(0, 163, 255, 0.05) 50%, rgba(0, 163, 255, 0.05) 100%);
    z-index: -1;
}

.intro-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--cyber-light);
    position: relative;
    z-index: 1;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-highlight {
    color: var(--cyber-accent);
    font-weight: 600;
}

.intro-glow-text {
    color: var(--cyber-primary);
    text-shadow: 0 0 5px rgba(0, 163, 255, 0.5);
}

/* Story Timeline Section Styles */
.story-section {
    height: max-content;
    padding: 8rem 0;
    position: relative;
    background-color: rgba(0, 27, 61, 0.2);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, transparent 0%, rgba(0, 13, 28, 0.6) 50%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, rgba(0, 13, 28, 0.6) 50%, transparent 100%);
    z-index: 1;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.story-title-container {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cyber-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
    position: relative;
    display: inline-block;
}

.story-title::before, .story-title::after {
    content: '';
    position: absolute;
    height: 3px;
    background: var(--cyber-gradient);
}

.story-title::before {
    width: 60px;
    bottom: -15px;
    left: calc(50% - 30px);
}

.story-title::after {
    width: 30px;
    bottom: -25px;
    left: calc(50% - 15px);
}

.story-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.story-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--cyber-primary) 0%, 
        var(--cyber-accent) 50%, 
        var(--cyber-primary) 100%);
    z-index: 1;
    box-shadow: var(--cyber-glow);
}

.story-node {
    display: flex;
    position: relative;
    margin-bottom: 6rem;
    z-index: 2;
}

.story-node:last-child {
    margin-bottom: 0;
}

.story-node-even {
    justify-content: flex-start;
}

.story-node-odd {
    justify-content: flex-end;
}

.story-node-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--cyber-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.5), inset 0 0 5px rgba(0, 255, 179, 0.5);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.story-node-marker:hover {
    background-color: var(--cyber-accent);
    box-shadow: 0 0 20px rgba(0, 255, 179, 0.6), inset 0 0 8px rgba(0, 163, 255, 0.6);
    transform: translateX(-50%) scale(1.2);
}

.story-node-icon {
    color: var(--cyber-dark);
    font-size: 1rem;
}

.story-node-phase {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cyber-primary);
    color: var(--cyber-dark);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.4);
}

.story-content {
    width: 41%;
    background-color: rgba(0, 27, 61, 0.6);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 10px;
    padding: 2rem;
    padding-top: 3rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.story-content:hover {
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.2);
    transform: translateY(-5px);
}

.story-node-even .story-content::after,
.story-node-odd .story-content::after {
    content: '';
    position: absolute;
    top: 15px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.story-node-even .story-content::after {
    right: -24px;
    border-left-color: rgba(0, 163, 255, 0.2);
}

.story-node-odd .story-content::after {
    left: -24px;
    border-right-color: rgba(0, 163, 255, 0.2);
}

.story-content-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyber-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 255, 179, 0.3);
    position: relative;
    display: inline-block;
}

.story-content-title::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: var(--cyber-gradient);
    bottom: -8px;
    left: 0;
}

.story-content-text {
    line-height: 1.8;
    margin-bottom: 0;
    color: var(--cyber-light);
}

.story-content-icon {
    position: absolute;
    top: -20px;
    font-size: 2.5rem;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--cyber-dark);
    color: var(--cyber-primary);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.story-node-even .story-content-icon {
    left: 20px;
}

.story-node-odd .story-content-icon {
    right: 20px;
}

.story-content:hover .story-content-icon {
    color: var(--cyber-accent);
    box-shadow: 0 0 20px rgba(0, 255, 179, 0.4);
    transform: scale(1.1) rotate(10deg);
}

.story-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 163, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(0, 255, 179, 0.03) 0%, transparent 30%);
    border-radius: 10px;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .story-node {
        justify-content: center;
    }
    .story-node-even .story-content::after,
    .story-node-odd .story-content::after {
        display: none;
    }
    .story-content {
        width: 85%;
        padding-top: 5rem;
        background-color: rgba(0, 27, 61, 1);
    }
}

@media screen and (max-width: 480px) {
    .intro-container {
        padding: 0;
    }
    .intro-text-container {
        width: 100%;
        padding: 0.5rem;
    }
}



/* Our Mission Section Styles */
.mission-section {
    height: max-content;
    padding: 5rem 0;
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 163, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(0, 255, 179, 0.05) 0%, transparent 30%);
    z-index: 1;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cyber-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--cyber-gradient);
}

.mission-description {
    max-width: 800px;
    margin: 2rem auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cyber-light);
}

.mission-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background-color: rgba(0, 27, 61, 0.4);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--cyber-gradient);
    opacity: 0.7;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 163, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.2);
}

.mission-icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--cyber-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cyber-primary);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-container {
    background: var(--cyber-gradient);
    transform: rotate(10deg);
    box-shadow: 0 0 20px rgba(0, 255, 179, 0.4);
}

.mission-icon {
    font-size: 1.8rem;
    color: var(--cyber-primary);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    color: var(--cyber-dark);
    transform: scale(1.2);
}

.mission-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyber-primary);
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-card-title {
    color: var(--cyber-accent);
}

.mission-card-text {
    color: var(--cyber-light);
    line-height: 1.7;
    text-align: center;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: var(--cyber-primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--cyber-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.learn-more-btn i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--cyber-primary);
    color: var(--cyber-dark);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.4);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .mission-card {
        min-width: 100%;
        margin-bottom: 1.5rem;
    }
}




/* Services Section Styles */
.services-section {
    height: max-content;
    padding: 7rem 0 6rem;
    background-color: var(--cyber-secondary);
    position: relative;
    overflow: hidden;
}

.cyber-pulse-beam {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--cyber-primary) 20%, 
        var(--cyber-accent) 50%, 
        var(--cyber-primary) 80%, 
        transparent 100%);
    opacity: 0.3;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.5);
    animation: pulseBeam 6s infinite linear;
}

@keyframes pulseBeam {
    0%, 100% {
        opacity: 0.2;
        height: 2px;
    }
    50% {
        opacity: 0.5;
        height: 4px;
    }
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cyber-accent);
    text-shadow: 0 0 15px rgba(0, 255, 179, 0.4);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.shield-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
}

.shield-divider::before, .shield-divider::after {
    content: '';
    height: 2px;
    width: 60px;
    background: var(--cyber-gradient);
    position: relative;
}

.shield-divider::before {
    right: 10px;
}

.shield-divider::after {
    left: 10px;
}

.shield-icon {
    width: 40px;
    height: 40px;
    background-color: var(--cyber-secondary);
    color: var(--cyber-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
    position: relative;
}

.shield-icon::after {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    border: 1px solid var(--cyber-primary);
    border-radius: 50%;
    animation: pulseRing 3s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.services-showcase {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-card {
    width: 280px;
    height: 240px;
    background-color: rgba(0, 13, 28, 0.6);
    border: 1px solid var(--cyber-primary);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card.featured {
    border: 2px solid var(--cyber-accent);
    transform: translateY(-10px);
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 163, 255, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-glow {
    opacity: 0.2;
    animation: rotateGlow 10s infinite linear;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.2);
}

.service-card.featured:hover {
    transform: translateY(-16px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 179, 0.3);
}

.service-tag {
    position: absolute;
    top: 12px;
    right: -24px;
    background: var(--cyber-gradient);
    color: var(--cyber-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 1.5rem;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 27, 61, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 255, 0.3);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--cyber-primary);
    transform: rotate(-15deg);
}

.service-card.featured .service-icon-wrapper {
    background-color: rgba(0, 255, 179, 0.2);
    border-color: rgba(0, 255, 179, 0.5);
}

.service-card.featured:hover .service-icon-wrapper {
    background-color: var(--cyber-accent);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--cyber-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--cyber-dark);
    transform: scale(1.2);
}

.service-card.featured .service-icon {
    color: var(--cyber-accent);
}

.service-card.featured:hover .service-icon {
    color: var(--cyber-dark);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cyber-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--cyber-primary);
}

.service-card.featured:hover .service-title {
    color: var(--cyber-accent);
}

.service-link-container {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--cyber-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-card.featured .service-link {
    color: var(--cyber-accent);
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.services-cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--cyber-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--cyber-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0.1;
    transition: all 0.4s ease;
    z-index: -1;
}

.services-cta-link:hover {
    color: var(--cyber-accent);
    border-color: var(--cyber-accent);
}

.services-cta-link:hover::before {
    left: 0;
}

.services-cta-link i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.services-cta-link:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .services-showcase {
        gap: 2rem;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .service-card.featured {
        transform: translateY(0);
        order: -1;
    }
}






/* Resources Intro Section Styles */
.resources-intro-section {
    height: max-content;
    padding: 5rem 0;
    background-color: var(--cyber-secondary);
    position: relative;
    overflow: hidden;
}

.cyber-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        transparent 0%,
        transparent 49%,
        rgba(0, 163, 255, 0.05) 50%,
        transparent 51%,
        transparent 100%
    );
    background-size: 100% 4px;
    z-index: 1;
    pointer-events: none;
}

.resources-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--cyber-secondary) 0%, var(--cyber-dark) 100%);
    z-index: 0;
}

.resources-intro-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.intro-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.intro-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--cyber-accent);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.intro-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: var(--cyber-gradient);
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cyber-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.resource-access-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background-color: rgba(0, 255, 179, 0.15);
    border: 1px solid var(--cyber-accent);
    border-radius: 4px;
    color: var(--cyber-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0.2;
    transition: all 0.4s ease;
    z-index: 0;
}

.resource-access-btn:hover {
    background-color: rgba(0, 255, 179, 0.25);
    box-shadow: 0 0 15px rgba(0, 255, 179, 0.3);
    transform: translateY(-3px);
}

.resource-access-btn:hover::before {
    left: 100%;
}

.btn-text {
    margin-right: 0.8rem;
    position: relative;
    z-index: 1;
}

.resource-access-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.resource-access-btn:hover i {
    transform: rotate(15deg);
}

.resource-preview {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-types {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.resource-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--cyber-light);
    transition: all 0.3s ease;
}

.resource-type i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--cyber-primary);
    transition: all 0.3s ease;
}

.resource-type span {
    font-size: 0.9rem;
    font-weight: 500;
}

.resource-type:hover {
    transform: translateY(-5px);
}

.resource-type:hover i {
    color: var(--cyber-accent);
}

.resource-graphic {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resource-icon-large {
    font-size: 3.5rem;
    color: var(--cyber-primary);
    z-index: 2;
    animation: floatIcon 3s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pulse-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.ring1 {
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyber-primary);
    animation: pulseRing 2s infinite;
}

.ring2 {
    width: 120%;
    height: 120%;
    border: 1px solid var(--cyber-accent);
    animation: pulseRing 2s infinite 0.3s;
}

.ring3 {
    width: 140%;
    height: 140%;
    border: 1px dashed var(--cyber-primary);
    animation: pulseRing 2s infinite 0.6s, rotateRing 10s infinite linear;
}

@keyframes pulseRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@keyframes rotateRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media screen and (max-width: 992px) {
    .resources-intro-container {
        flex-direction: column;
        align-items: center;
    }

    .intro-content {
        text-align: center;
        max-width: 100%;
    }

    .intro-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .intro-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 576px) {
    .resources-intro-container {
        padding: 0;
    }
    
    .intro-title {
        font-size: 2.2rem;
    }

    .resource-types {
        gap: 1rem;
    }
}




/* Articles Introduction Section Styles */
.articles-intro-section {
    height: max-content;
    padding: 5rem 0;
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
}

.cyber-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 163, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.articles-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(0, 27, 61, 0.8) 0%,
        var(--cyber-dark) 70%
    );
    z-index: 0;
}

.articles-intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.articles-intro-content {
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--cyber-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--cyber-gradient);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cyber-light);
    margin: 2rem auto;
    max-width: 700px;
}

.topics-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.topic-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background-color: rgba(0, 27, 61, 0.5);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 20px;
    color: var(--cyber-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.topic-tag i {
    margin-right: 0.5rem;
    color: var(--cyber-primary);
    transition: all 0.3s ease;
}

.topic-tag:hover {
    border-color: var(--cyber-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.topic-tag:hover i {
    color: var(--cyber-accent);
}

.explore-articles-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    background-color: transparent;
    border: 2px solid var(--cyber-primary);
    border-radius: 6px;
    color: var(--cyber-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-articles-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-gradient);
    opacity: 0.1;
    z-index: -1;
    transition: all 0.4s ease;
}

.explore-articles-btn:hover {
    background-color: var(--cyber-primary);
    color: var(--cyber-dark);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.3);
}

.explore-articles-btn:hover::before {
    left: 100%;
}

.explore-articles-btn span {
    margin-right: 0.8rem;
}

.explore-articles-btn i {
    transition: transform 0.3s ease;
}

.explore-articles-btn:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2.2rem;
    }

    .intro-text {
        font-size: 1rem;
    }
}



/* Contact Section Introduction Styles */
.contact-intro-section {
    height: max-content;
    padding: 7rem 0;
    background-color: var(--cyber-dark);
    position: relative;
    overflow: hidden;
}

/* Base Layout and Background Elements */
.cyber-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 163, 255, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 163, 255, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.contact-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(0, 27, 61, 0.8) 0%,
        var(--cyber-dark) 70%
    );
    z-index: 0;
}

.contact-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(
        to top,
        var(--cyber-dark) 0%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Main Container Styles */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Title Styles with Advanced Effects */
.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyber-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.contact-title::before {
    content: 'GET IN TOUCH';
    position: absolute;
    width: 100%;
    white-space: nowrap;
    top: -5px;
    left: -5px;
    color: var(--cyber-accent);
    opacity: 0.3;
    z-index: -1;
    filter: blur(3px);
    animation: titleGlitch 5s infinite linear alternate;
}

@keyframes titleGlitch {
    0%, 100% {
        top: -5px;
        left: -5px;
        filter: blur(3px);
    }
    25% {
        top: -3px;
        left: -7px;
        filter: blur(2px);
        opacity: 0.4;
    }
    75% {
        top: -7px;
        left: -3px;
        filter: blur(4px);
        opacity: 0.2;
    }
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--cyber-gradient);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
}

/* Subtitle Container with Advanced Line Decoration */
.contact-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 4rem;
    position: relative;
}

.contact-subtitle-line {
    height: 1px;
    width: 100px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--cyber-primary) 50%,
        transparent 100%
    );
    position: relative;
}

.contact-subtitle-line::before {
    content: '';
    position: absolute;
    top: -3px;
    width: 7px;
    height: 7px;
    background-color: var(--cyber-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 163, 255, 0.6);
}

.contact-subtitle-line:first-child::before {
    right: 0;
}

.contact-subtitle-line:last-child::before {
    left: 0;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--cyber-accent);
    margin: 0 1.5rem;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.5px;
}

.contact-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--cyber-accent);
    opacity: 0.4;
    border-radius: 1px;
}

/* Contact Preview Section */
.contact-preview {
    margin: 3.5rem 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 163, 255, 0.1) 10%,
        rgba(0, 163, 255, 0.1) 90%,
        transparent 100%
    );
    z-index: -1;
}

.contact-info-preview {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding: 2rem 0;
}

/* Individual Contact Method Item Styles */
.contact-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.5rem;
}

.contact-method-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 12px;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0;
}

.contact-method-item:hover::before {
    border-color: rgba(0, 163, 255, 0.2);
    background-color: rgba(0, 27, 61, 0.3);
    opacity: 1;
}

.contact-method-item:hover {
    transform: translateY(-12px);
}

/* Contact Icon Container with Advanced Effects */
.contact-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background-color: rgba(0, 27, 61, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--cyber-primary);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.2), inset 0 0 10px rgba(0, 13, 28, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.contact-icon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 163, 255, 0.15) 0%, 
        transparent 80%
    );
    z-index: 1;
}

.contact-icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 179, 0.1) 50%,
        transparent 100%
    );
    z-index: 2;
    transition: all 0.6s ease;
}

.contact-method-item:hover .contact-icon-container::after {
    left: 100%;
}

.contact-method-item:hover .contact-icon-container {
    background: linear-gradient(135deg, 
        var(--cyber-primary) 0%, 
        rgba(0, 27, 61, 0.9) 100%
    );
    border-color: var(--cyber-accent);
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.4), inset 0 0 15px rgba(0, 255, 179, 0.1);
    transform: rotate(-5deg);
}

/* Icon Pulse Effect Overlay */
.contact-icon-container .pulse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 0;
}

.contact-method-item:hover .contact-icon-container .pulse-overlay {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 163, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 163, 255, 0);
    }
}

/* Icon Styles */
.contact-icon-container i {
    font-size: 2rem;
    color: var(--cyber-primary);
    position: relative;
    z-index: 3;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-method-item:hover .contact-icon-container i {
    color: var(--cyber-light);
    transform: rotate(360deg);
    text-shadow: 0 0 10px rgba(230, 246, 255, 0.5);
}

/* Corner Accents for Icon Container */
.contact-icon-container .corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: var(--cyber-accent);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
}

.corner.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.corner.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid;
    border-right: 2px solid;
}

.corner.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.corner.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.contact-method-item:hover .contact-icon-container .corner {
    opacity: 1;
}

/* Method Text Styles */
.contact-method-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cyber-light);
    transition: all 0.3s ease;
    position: relative;
}

.contact-method-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cyber-gradient);
    transition: all 0.3s ease;
    opacity: 0;
}

.contact-method-item:hover .contact-method-text {
    color: var(--cyber-accent);
}

.contact-method-item:hover .contact-method-text::after {
    width: 80%;
    opacity: 1;
}

/* Specialized Method Item Styles */
.contact-method-item:nth-child(1) .contact-icon-container {
    border-color: var(--cyber-primary);
}

.contact-method-item:nth-child(2) .contact-icon-container {
    border-color: rgba(0, 190, 255, 0.7);
}

.contact-method-item:nth-child(3) .contact-icon-container {
    border-color: rgba(0, 220, 255, 0.7);
}

.contact-method-item:nth-child(1):hover .contact-icon-container {
    border-color: var(--cyber-accent);
}

.contact-method-item:nth-child(2):hover .contact-icon-container {
    border-color: rgba(0, 255, 195, 0.7);
}

.contact-method-item:nth-child(3):hover .contact-icon-container {
    border-color: rgba(0, 255, 230, 0.7);
}

/* Staggered Animation Delays */
.contact-method-item:nth-child(1) {
    animation-delay: 0s;
}

.contact-method-item:nth-child(2) {
    animation-delay: 0.15s;
}

.contact-method-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* CTA Button with Advanced Effects */
.contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--cyber-gradient);
    border-radius: 8px;
    color: var(--cyber-dark);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    border: none;
}

.contact-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: all 0.5s ease;
}

.contact-cta-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: 10px;
    border: 2px solid transparent;
    z-index: -2;
    transition: all 0.3s ease;
}

.contact-cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 163, 255, 0.4);
}

.contact-cta-button:hover::before {
    left: 100%;
}

.contact-cta-button:hover::after {
    border-color: rgba(0, 255, 179, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 179, 0.3);
}

.contact-cta-button span {
    margin-right: 1rem;
    position: relative;
    z-index: 2;
}

.contact-cta-button i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.contact-cta-button:hover i {
    transform: translateX(5px);
}

/* Button Focus State */
.contact-cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.5);
}

/* Button Active State */
.contact-cta-button:active {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 163, 255, 0.3);
}

/* Button Icon Scale Effect */
.contact-cta-button i {
    transform-origin: center;
    transition: all 0.3s ease;
}

.contact-cta-button:hover i {
    animation: buttonIconPulse 1s infinite alternate;
}

@keyframes buttonIconPulse {
    0% {
        transform: translateX(0) scale(1);
    }
    100% {
        transform: translateX(5px) scale(1.2);
    }
}

.contact-decoration {
    position: absolute;
    background-color: var(--cyber-primary);
    opacity: 0.1;
    pointer-events: none;
}

/* Contact Method Details Tooltip */
.contact-method-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 27, 61, 0.9);
    border: 1px solid var(--cyber-primary);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    width: 180px;
    text-align: center;
    color: var(--cyber-light);
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.contact-method-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: rgba(0, 27, 61, 0.9);
    border-top: 1px solid var(--cyber-primary);
    border-left: 1px solid var(--cyber-primary);
}

.contact-method-item:hover .contact-method-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 15px);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .contact-info-preview {
        gap: 3rem;
    }

    .contact-title {
        font-size: 2.7rem;
    }

    .contact-subtitle-line {
        width: 70px;
    }
}

@media screen and (max-width: 768px) {
    .contact-info-preview {
        gap: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle-line {
        width: 50px;
    }

    .contact-icon-container {
        width: 70px;
        height: 70px;
    }

    .contact-icon-container i {
        font-size: 1.8rem;
    }

    .contact-cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-container {
        padding: 0;
    }
    
    .contact-intro-section {
        padding: 5rem 0;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-subtitle-line {
        width: 30px;
    }

    .contact-info-preview {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-method-item {
        flex-direction: row;
        text-align: left;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        margin-right: 1rem;
        border-radius: 12px;
    }

    .contact-icon-container i {
        font-size: 1.5rem;
    }

    .contact-method-text {
        font-size: 1rem;
    }

    .contact-method-text::after {
        left: 0;
        transform: none;
    }

    .contact-method-item:hover .contact-method-text::after {
        width: 100%;
    }

    .contact-cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation Keyframes */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 163, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 163, 255, 0.6);
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(0, 163, 255, 0.3);
    }
    50% {
        border-color: rgba(0, 255, 179, 0.6);
    }
}

.contact-icon-container .data-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 163, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 179, 0.1) 0%, transparent 20%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.contact-method-item:hover .contact-icon-container .data-circuit {
    opacity: 1;
}