:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-green: #39ff14;
    --neon-orange: #ff5500;
    --neon-purple: #bc13fe;
    --dark-bg: #0f0f1b;
    --darker-bg: #080811;
    --text-light: #f0f0f0;
    --light-bg: #f8f9fa;
    --lighter-bg: #ffffff;
    --text-dark: #222222;
    --light-card-bg: #ffffff;
    --light-border: #e0e0e0;
    --light-shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 20%);
}

body.light-theme {
    background-color: var(--light-bg);
    color: var(--text-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 20%);
}

/* Header Styles */
header {
    background-color: rgba(15, 15, 27, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
}

body.light-theme header {
    background-color: rgba(248, 249, 250, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    font-size: 2rem;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

body.light-theme .logo-icon {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    letter-spacing: 1px;
}

body.light-theme .logo-text {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue), #ff00aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

body.light-theme nav a {
    color: var(--text-dark);
}

nav a:hover {
    color: var(--neon-green);
}

body.light-theme nav a:hover {
    color: var(--neon-purple);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

body.light-theme nav a::after {
    background: var(--neon-purple);
}

nav a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(188, 19, 254, 0.8);
}

.btn-secondary {
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

body.light-theme .btn-secondary {
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
}

body.light-theme .btn-secondary:hover {
    background-color: rgba(188, 19, 254, 0.05);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

body.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--darker-bg) 100%);
    z-index: -1;
}

body.light-theme .hero::before {
    background: radial-gradient(circle at center, transparent 30%, var(--lighter-bg) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    line-height: 1.1;
}

body.light-theme .hero h1 {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #d0d0e7;
    line-height: 1.6;
}

body.light-theme .hero p {
    color: #555555;
}

.hero-button {
    display: inline-block;
    margin-top: 20px;
}

/* Party Types Section */
.party-types {
    padding: 100px 20px;
    background-color: var(--darker-bg);
    position: relative;
}

body.light-theme .party-types {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
}

body.light-theme .section-title::after {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-orange));
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0a0c0;
    max-width: 700px;
    margin: 0 auto;
}

body.light-theme .section-subtitle {
    color: #777777;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.party-card {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 0, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-theme .party-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 5px 15px var(--light-shadow);
}

.party-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
}

body.light-theme .party-card:hover {
    border-color: rgba(188, 19, 254, 0.3);
    box-shadow: 0 10px 25px rgba(188, 19, 254, 0.2);
}

.party-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    z-index: 1;
}

body.light-theme .party-card::before {
    background: linear-gradient(45deg, rgba(188, 19, 254, 0.05), rgba(0, 255, 255, 0.05));
}

.party-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.party-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.party-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.party-title i {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
}

body.light-theme .party-title i {
    color: var(--neon-purple);
    text-shadow: 0 0 8px rgba(188, 19, 254, 0.5);
}

.party-description {
    color: #c0c0d8;
    line-height: 1.6;
}

body.light-theme .party-description {
    color: #666666;
}

.gallery {
    padding: 100px 20px;
    background-color: var(--dark-bg);
    display: none;
}

.contact {
    padding: 100px 20px;
    background-color: var(--darker-bg);
}

body.light-theme .contact {
    background-color: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-theme .contact-card {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 5px 15px var(--light-shadow);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.light-theme .contact-title {
    color: var(--neon-purple);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    font-size: 1.2rem;
    color: var(--neon-pink);
    margin-top: 3px;
}

body.light-theme .contact-detail i {
    color: var(--neon-purple);
}

.contact-form {
    background: rgba(30, 30, 46, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

body.light-theme .contact-form {
    background: var(--light-card-bg);
    border: 1px solid var(--light-border);
    box-shadow: 0 5px 15px var(--light-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(20, 20, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.light-theme .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

body.light-theme .form-control:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

footer {
    background-color: #070711;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
}

body.light-theme footer {
    background-color: #f0f0f5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--neon-green);
    position: relative;
    display: inline-block;
}

body.light-theme .footer-col h3 {
    color: var(--neon-purple);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
}

body.light-theme .footer-col h3::after {
    background: var(--neon-purple);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0a0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

body.light-theme .footer-links a {
    color: #666666;
}

.footer-links a:hover {
    color: var(--neon-pink);
    transform: translateX(5px);
}

body.light-theme .footer-links a:hover {
    color: var(--neon-purple);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

body.light-theme .social-links a {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.social-links a:hover {
    background: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

body.light-theme .social-links a:hover {
    background: var(--neon-purple);
    box-shadow: 0 5px 15px rgba(188, 19, 254, 0.3);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #8080a0;
    font-size: 0.9rem;
}

body.light-theme .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #888888;
}

.neon-text {
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-blue),
        0 0 40px var(--neon-blue),
        0 0 80px var(--neon-blue);
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px var(--neon-blue),
            0 0 40px var(--neon-blue),
            0 0 80px var(--neon-blue);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.neon-border {
    box-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 80px var(--neon-pink);
    animation: borderFlicker 2s infinite alternate;
}

@keyframes borderFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        box-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px var(--neon-pink),
            0 0 40px var(--neon-pink),
            0 0 80px var(--neon-pink);
    }
    20%, 24%, 55% {
        box-shadow: none;
    }
}

body.light-theme .neon-text {
    text-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 15px var(--neon-blue),
        0 0 30px var(--neon-blue);
}

body.light-theme .neon-border {
    box-shadow: 
        0 0 2px #fff,
        0 0 5px #fff,
        0 0 15px var(--neon-purple),
        0 0 30px var(--neon-purple);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.alert-success {
    background-color: rgba(57, 255, 20, 0.15);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.alert-error {
    background-color: rgba(255, 0, 0, 0.15);
    border: 1px solid #ff5550;
    color: #ff5550;
    box-shadow: 0 0 10px rgba(255, 85, 80, 0.3);
}

body.light-theme .alert-success {
    background-color: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    color: #006400;
}

body.light-theme .alert-error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff5550;
    color: #8b0000;
}

/* ========= INTENSE LIGHT EFFECTS ========= */
.light-pulse {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 900;
    animation: pulse 3s infinite alternate;
    filter: blur(20px);
    opacity: 0.7;
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.8);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.2);
        opacity: 0.4;
    }
}

.light-beam {
    position: fixed;
    pointer-events: none;
    z-index: 899;
    height: 100vh;
    width: 2px;
    background: rgba(255, 0, 255, 0.5);
    box-shadow: 0 0 20px 5px var(--neon-pink);
    top: 0;
    animation: beam-sweep 8s infinite linear;
}

@keyframes beam-sweep {
    0% {
        left: 0;
        transform: rotate(0deg);
        transform-origin: top left;
    }
    100% {
        left: 100%;
        transform: rotate(360deg);
        transform-origin: top left;
    }
}

.neon-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 898;
    overflow: hidden;
}

.neon-drop {
    position: absolute;
    top: -20px;
    width: 2px;
    height: 20px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    animation: neon-fall linear infinite;
}

@keyframes neon-fall {
    to {
        transform: translateY(100vh);
    }
}

/* ======== SUBTLE CONTROLS ======== */
.effect-controls {
    position: fixed;
    top: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.control-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.control-btn.active {
    background: rgba(188, 19, 254, 0.3);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

.control-btn.rain i {
    color: var(--neon-blue);
}

.control-btn.active.rain {
    background: rgba(0, 255, 255, 0.3);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Mobile Responsiveness */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

body.light-theme .mobile-menu-btn {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 1;
        margin-right: 10px;
    }
    
    .nav-buttons {
        order: 3;
        position: static;
        margin-left: 10px;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 27, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding-top: 80px;
    }
    
    body.light-theme nav {
        background: rgba(248, 249, 250, 0.98);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 20px;
    }
    
    nav a {
        font-size: 1.4rem;
        padding: 8px 0;
    }
    
    .hero {
        padding-top: 80px;
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 3.2rem;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .party-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .party-types {
        padding: 70px 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact {
        padding: 70px 15px;
    }
    
    .contact-card, .contact-form {
        padding: 25px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
     .effect-controls {
        top: 85px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .party-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    /* Additional spacing for very small screens */
  .effect-controls {
        right: 10px;
    }
}

footer {
    padding: 40px 15px 20px;
}

.copyright {
    padding-top: 30px;
    margin-top: 30px;
}

.decoration {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
    opacity: 0.7;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--neon-blue);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.square {
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green);
    opacity: 0.6;
}

.hero-logo {
    height: 300px;
    width: auto;
    margin-top: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px var(--neon-pink));
    animation: logo-pulse 2s infinite alternate;
}

@keyframes logo-pulse {
    0% { filter: drop-shadow(0 0 5px var(--neon-pink)); }
    100% { filter: drop-shadow(0 0 20px var(--neon-blue)); }
}

.company-logo {
    height: 50px; /* Adjust as needed */
    width: auto;
    transition: transform 0.3s ease;
     filter: drop-shadow(0 0 10px var(--neon-pink));
    animation: logo-pulse 2s infinite alternate;
}
@keyframes logo-pulse {
    0% { filter: drop-shadow(0 0 5px var(--neon-pink)); }
    100% { filter: drop-shadow(0 0 20px var(--neon-blue)); }
}
.company-logo:hover {
    transform: scale(1.05);
}

/* Remove the gradient text effect from logo-text if keeping both */
.logo:hover .logo-text {
    text-shadow: none;
}