* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #ffffff;
    padding-top: 70px;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.3);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #1f2937;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: #00ffcc;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid #1f2937;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    padding: 0 10px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #00ffcc;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d121a;
    min-width: 260px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    border: 1px solid #1f2937;
    border-radius: 4px;
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown-content li a {
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

.dropdown-content li a:hover {
    background-color: #1f2937;
    color: #00ffcc;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-content {
    display: block !important;
}

.hero-section {
    position: relative;
    height: calc(100vh - 70px);
    width: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/1/18/Matrix_digital_rain_animated.gif') no-repeat center center/cover; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(0, 20, 15, 0.85));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px #00ffcc;
}

.content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    color: #00ffcc; 
    font-weight: 500;
}

.cyber-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #00ffcc;
    background: transparent;
    border: 2px solid #00ffcc;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 2px;
}

.cyber-btn:hover {
    color: #000;
    background-color: #00ffcc;
    box-shadow: 0 0 15px #00ffcc, 0 0 35px #00ffcc, 0 0 65px #00ffcc;
    transform: translateY(-4px); 
}

.services-section {
    padding: 100px 5%;
    background-color: #080c10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px; 
    margin: 0 auto;
    align-items: start; 
}

.service-card {
    background: #0d121a;
    border: 1px solid #1f2937;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #00ffcc;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.15);
}

.icon-box {
    font-size: 2.5rem;
    color: #00ffcc;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-price {
    color: #00ffcc; 
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.25);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; 
    border-top: 1px solid #1f2937;
    padding-top: 25px;
    
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px 20px;
}

.service-features li {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0; 
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #00ffcc; 
    font-size: 0.95rem;
    flex-shrink: 0; 
}

.booking-section {
    padding: 100px 5%;
    background-color: #050505;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #0d121a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #1f2937;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ffcc;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #050505;
    border: 1px solid #1f2937;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #00ffcc;
}

.form-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
}

.main-footer {
    text-align: center;
    padding: 30px;
    background-color: #050505;
    border-top: 1px solid #1f2937;
    color: #6b7280;
    font-size: 0.9rem;
}

.details-container {
    max-width: 1000px;
    margin: 40px auto 80px auto;
    padding: 0 5%;
}

.features-grid-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .features-grid-layout {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    text-shadow: 0 0 8px #00ffcc;
    transform: translateX(-5px);
}

.feature-detail-card {
    background: #0d121a;
    border: 1px solid #1f2937;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.1);
}

.feature-detail-card h3 {
    color: #00ffcc;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-detail-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
        padding: 0 20px;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        display: none;
        background: rgba(5, 5, 5, 0.98);
        border: 1px solid #1f2937;
        border-radius: 8px;
        padding: 12px;
        z-index: 1002;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li,
    .nav-links > a {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 12px;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 6px 0 0 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .form-container {
        padding: 25px;
    }

    .details-container {
        margin-top: 100px;
        padding: 0 20px;
    }

    .feature-detail-card {
        padding: 20px;
    }

    .back-btn {
        font-size: 0.95rem;
    }

    .about-text,
    .feature-detail-card p,
    .service-features li,
    .contact-card p,
    .contact-card p a {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    .service-features {
        grid-template-columns: 1fr; 
    }

    .content {
        padding: 20px 15px;
    }

    .cyber-btn {
        width: 100%;
        text-align: center;
    }
}


.contact-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.contact-card {
    background: #0d121a;
    border: 1px solid #1f2937;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.contact-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.15);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 2rem;
    color: #00ffcc;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.contact-card p, 
.contact-card p a {
    color: #d1d5db;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
}

.contact-card p a:hover {
    color: #00ffcc;
}

@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
        margin-bottom: 40px;
    }
}

.about-section {
    padding: 100px 0;
    background-color: #030712;
    color: #f3f4f6;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2.5rem;
    color: #00f2fe;
    margin-bottom: 10px;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    margin-bottom: 30px;
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 10px 25px rgba(0, 0, 0, 0.6));
}

.image-glow-effect {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    color: #030712;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

.btn-secondary {
    border: 2px solid #4facfe;
    color: #4facfe;
    padding: 10px 26px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(79, 172, 254, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .title-underline {
        margin: 0 auto 30px auto;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .about-img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .about-img {
        max-width: 240px;
    }

    .image-glow-effect {
        width: 260px;
        height: 260px;
    }
}

.about-container {
    position: relative;
    z-index: 3;
}

.about-section {
    position: relative !important;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.20;
    
    background-image: 
        radial-gradient(circle at 20% 50%, #00f2fe 3px, transparent 4px),
        radial-gradient(circle at 40% 30%, #00f2fe 3px, transparent 4px),
        radial-gradient(circle at 60% 70%, #00f2fe 3px, transparent 4px),
        radial-gradient(circle at 80% 50%, #00f2fe 3px, transparent 4px);
    background-size: 200px 100%;
    background-repeat: repeat-x;
    
    animation: dnaWaveOne 8s linear infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    
    background-image: 
        radial-gradient(circle at 20% 50%, #4facfe 3px, transparent 4px),
        radial-gradient(circle at 40% 70%, #4facfe 3px, transparent 4px),
        radial-gradient(circle at 60% 30%, #4facfe 3px, transparent 4px),
        radial-gradient(circle at 80% 50%, #4facfe 3px, transparent 4px);
    background-size: 200px 100%;
    background-repeat: repeat-x;
    
    animation: dnaWaveTwo 8s linear infinite;
}

@keyframes dnaWaveOne {
    0% {
        background-position-x: 0px;
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.1);
    }
    100% {
        background-position-x: 200px;
        transform: scaleY(1);
    }
}

@keyframes dnaWaveTwo {
    0% {
        background-position-x: 200px;
        transform: scaleY(1.1);
    }
    50% {
        transform: scaleY(0.9);
    }
    100% {
        background-position-x: 0px;
        transform: scaleY(1.1);
    }
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999 !important;
    overflow: visible !important;
}

.nav-container,
.nav-links {
    overflow: visible !important;
}

.dropdown {
    position: relative;
    display: inline-block;
    overflow: visible !important;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0d121a !important;
    min-width: 280px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(102, 255, 179, 0.15);
    z-index: 999999 !important;
    border: 1px solid rgba(102, 255, 179, 0.25) !important;
    border-radius: 8px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    color: #cbd5e1 !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: rgba(102, 255, 179, 0.1) !important;
    color: #66ffb3 !important;
    padding-left: 25px !important;
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

#services .section-title,
.services .section-title {
    color: #66ffb3 !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 
        0 1px 0 #33cc80,
        0 2px 0 #2baf6d,
        0 3px 0 #24925a,
        0 4px 0 #1c7547,
        0 5px 0 #155935,
        0 6px 1px rgba(0,0,0,0.1),
        0 0 10px rgba(102, 255, 179, 0.25),
        0 10px 20px rgba(0,0,0,0.7) !important;
}


.service-card, .services .card, .services .box {
    background: linear-gradient(145deg, #0e141f, #0a0d14) !important;
    border: 1px solid rgba(102, 255, 179, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        4px 4px 0px rgba(51, 204, 128, 0.2) !important;
}

.service-card:hover, .services .card:hover, .services .box:hover {
    border-color: rgba(102, 255, 179, 0.5) !important;
    transform: translate(-4px, -4px) !important;
    box-shadow: 
        8px 8px 0px rgba(102, 255, 179, 0.3),
        0 20px 30px rgba(0, 0, 0, 0.6), 
        0 0 15px rgba(102, 255, 179, 0.1) !important;
}

.service-card h3, .services .card h3, .services .box h3 {
    color: #66ffb3 !important;
    font-weight: 700 !important;
    text-shadow: 
        0 1px 0 #2baf6d,
        0 2px 2px rgba(0, 0, 0, 0.6),
        0 0 4px rgba(102, 255, 179, 0.2) !important;
}

.service-card i, .services .card i, .services .box i {
    color: #66ffb3 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
}

.service-card p, .services .card p, .services .box p {
    color: #cbd5e1 !important;
}

.service-card .btn, .services .card .btn, .services .box .btn {
    background: transparent !important;
    border: 1px solid #66ffb3 !important;
    color: #66ffb3 !important;
    transition: all 0.3s ease !important;
}

.service-card .btn:hover, .services .card .btn:hover, .services .box .btn:hover {
    background: #66ffb3 !important;
    color: #030712 !important;
    box-shadow: 0 0 15px #66ffb3 !important;
}
.footer-social-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-3d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, #0e141f, #0a0d14);
    border: 1px solid rgba(102, 255, 179, 0.2);
    border-radius: 14px;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 6px 10px rgba(0, 0, 0, 0.4),
        4px 4px 0px rgba(51, 204, 128, 0.2);
}

.social-3d-btn.linkedin-btn { color: #0077b5 !important; }
.social-3d-btn.fiverr-btn { color: #1dbf73 !important; }

.social-3d-btn:hover {
    border-color: rgba(102, 255, 179, 0.6);
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0px rgba(102, 255, 179, 0.4), 
        0 12px 24px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(102, 255, 179, 0.2);
}


.social-3d-btn:hover i {
    filter: brightness(1.2);
}
.social-3d-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.social-3d-btn svg {
    display: block !important;
    margin: auto !important;
}
.fiverr-text-svg {
    width: 82% !important;
    height: auto !important;
    display: block !important;
    fill: #1dbf73 !important;
    transition: filter 0.3s ease;
}

.social-3d-btn:hover .fiverr-text-svg {
    filter: brightness(1.2);
}
.fiverr-3d-img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    display: block !important;
    transition: filter 0.3s ease;
}

.social-3d-btn:hover .fiverr-3d-img {
    filter: brightness(1.2);
}
@media (max-width: 768px) {
    .footer-button { 
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .main-container {
        flex-direction: column;
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

    .logo, header h1, header h2 { 
        font-size: 20px !important;
        margin-bottom: 8px;
    }

    header nav, .nav-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }

    .nav-links a {
        font-size: 13px;
    }
}
.hamburger-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        padding: 10px 15px;
    }

    .logo {
        font-size: 20px;
        z-index: 101;
    }

    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .hamburger-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #00ffcc;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 15, 26, 0.98);
        border-top: 1px solid rgba(0, 255, 204, 0.2);
        padding: 15px 0;
        margin: 0;
        list-style: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
        z-index: 100;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    }

    .nav-links.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }


    .dropdown-content {
        position: static;
        width: 100%;
        background-color: rgba(20, 30, 50, 0.95) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding-left: 15px;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block !important;
        max-height: 500px;
    }
}