/* Base Styles & Utilities */
:root {
    --gradient-start: #2b2d42;
    --gradient-end: #4dc4d9;
    --accent-orange: #e67e22;
    --accent-orange-dark: #d35400;
    --text-light: #e6e6e6;
    --text-dark: #333;
    --bg-light: #ecf0f1;
    --bg-white: #fff;
    --header-height: 70px; /* Define header height */
    /* Universal Footer Variables */
    --primary-color: #00d4ff;
    --secondary-color: #1a1a3d;
    --accent-color: #ff007a;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: var(--text-dark);
    background-color: var(--bg-white); /* Base background */
}

* {
    box-sizing: border-box;
}

/* Visible focus indicators for keyboard navigation */
*:focus-visible {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* --- Entrance Cinematic --- */
#entrance-cinematic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #1c2833, #283747 );
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1.2s ease-out;
}

body.intro-active {
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.logo-animation {
    text-align: center;
    color: var(--text-light);
    animation: fadeInLogo 1s ease-out forwards;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(77, 196, 217, 0.3);
}

.logo-animation img {
    max-width: 140px;
    animation: pulse 2.5s ease-in-out infinite alternate;
    display: block;
    margin: 0 auto 15px auto;
}

.logo-animation h1 {
    margin: 0;
    font-size: 1.8rem;
    opacity: 0;
    animation: fadeInText 1.5s 0.5s forwards;
    color: #fff;
    font-weight: 500;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: scale(0.8) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    from { transform: scale(1); filter: brightness(100%); }
    to { transform: scale(1.05); filter: brightness(110%); }
}


/* --- Header (Consistent with modern structure) --- */
header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
    border-bottom: 2px solid var(--gradient-end);
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .header-center {
        position: static;
        transform: none;
        margin: 0 15px;
    }
    
    header {
        justify-content: space-between;
    }
}

.header-right {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

.logo img {
    max-height: calc(var(--header-height) - 20px);
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.4em;
    color: white;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

.logo .tagline {
    display: block;
    font-size: 0.45em;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(0, 212, 255, 0.8);
    text-transform: lowercase;
    margin-top: -2px;
}

/* --- Hamburger Button (Consistent) --- */
.hamburger {
    display: block;
    position: relative;
    z-index: 1002;
    width: 30px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Navigation (Hamburger Only - Consistent with modern structure) --- */
nav#main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transition: right 0.35s ease-in-out;
    padding-top: var(--header-height);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}

nav#main-nav.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

nav#main-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 12px;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    overflow-y: auto;
    height: auto;
}

nav#main-nav ul li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Staggered entrance when menu opens */
nav#main-nav.active ul li {
    opacity: 1;
    transform: translateX(0);
}
nav#main-nav.active ul li:nth-child(1) { transition-delay: 0.05s; }
nav#main-nav.active ul li:nth-child(2) { transition-delay: 0.1s; }
nav#main-nav.active ul li:nth-child(3) { transition-delay: 0.15s; }
nav#main-nav.active ul li:nth-child(4) { transition-delay: 0.2s; }
nav#main-nav.active ul li:nth-child(5) { transition-delay: 0.25s; }
nav#main-nav.active ul li:nth-child(6) { transition-delay: 0.3s; }
nav#main-nav.active ul li:nth-child(7) { transition-delay: 0.35s; }
nav#main-nav.active ul li:nth-child(8) { transition-delay: 0.4s; }

/* Fun floating animations — each button has its own personality */
@keyframes menuBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.8deg); }
    75% { transform: translateY(4px) rotate(-0.5deg); }
}
@keyframes menuSway {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    20% { transform: translateX(6px) rotate(0.6deg); }
    50% { transform: translateX(-4px) rotate(-0.4deg); }
    80% { transform: translateX(3px) rotate(0.3deg); }
}
@keyframes menuBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-10px) scale(1.03); }
    60% { transform: translateY(-3px) scale(1.01); }
}
@keyframes menuRock {
    0%, 100% { transform: rotate(0deg) translateX(0); }
    15% { transform: rotate(1.2deg) translateX(3px); }
    45% { transform: rotate(-1deg) translateX(-4px); }
    70% { transform: rotate(0.8deg) translateX(2px); }
}
@keyframes menuPop {
    0%, 100% { transform: scale(1) translateY(0); }
    30% { transform: scale(1.04) translateY(-5px); }
    50% { transform: scale(0.97) translateY(2px); }
    70% { transform: scale(1.02) translateY(-2px); }
}
@keyframes menuDrift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -6px) rotate(0.5deg); }
    50% { transform: translate(-3px, -2px) rotate(-0.7deg); }
    75% { transform: translate(4px, 3px) rotate(0.3deg); }
}

nav#main-nav.active ul li:nth-child(1) a { animation: menuBob 2.4s ease-in-out 0.5s infinite; }
nav#main-nav.active ul li:nth-child(2) a { animation: menuSway 2.8s ease-in-out 0.6s infinite; }
nav#main-nav.active ul li:nth-child(3) a { animation: menuBounce 2.2s ease-in-out 0.7s infinite; }
nav#main-nav.active ul li:nth-child(4) a { animation: menuRock 2.6s ease-in-out 0.4s infinite; }
nav#main-nav.active ul li:nth-child(5) a { animation: menuDrift 3s ease-in-out 0.8s infinite; }
nav#main-nav.active ul li:nth-child(6) a { animation: menuPop 2.3s ease-in-out 0.5s infinite; }
nav#main-nav.active ul li:nth-child(7) a { animation: menuBob 2.7s ease-in-out 0.6s infinite; }
nav#main-nav.active ul li:nth-child(8) a { animation: menuSway 2.5s ease-in-out 0.3s infinite; }

nav#main-nav ul li a {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    white-space: normal;
    height: auto;
    margin-bottom: 3px;
    font-size: 0.85em;
}

nav#main-nav ul li a:hover {
    background-color: rgba(77, 196, 217, 0.3);
    transform: translateX(5px);
    border-color: var(--gradient-end);
    animation: none !important; /* Stop floating on hover for clean hover effect */
}

nav#main-nav ul li a img {
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

/* The Space Age button — black/white starry */
nav#main-nav ul li a.nav-spaceage {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
nav#main-nav ul li a.nav-spaceage::before {
    content: '✦ ✧ ✦';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6em;
    opacity: 0.5;
    letter-spacing: 4px;
    animation: twinkle 2s ease-in-out infinite alternate;
}
nav#main-nav ul li a.nav-spaceage:hover {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 50%, #1a1a2e 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Games button — fun arcade style */
nav#main-nav ul li a.nav-games {
    background: linear-gradient(135deg, #7b2d8e 0%, #e91e9c 50%, #ff6b35 100%);
    border: 1px solid rgba(233, 30, 156, 0.4);
    color: #ffffff;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    animation: games-glow 2s ease-in-out infinite alternate;
}
nav#main-nav ul li a.nav-games::after {
    content: '🕹️';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}
nav#main-nav ul li a.nav-games:hover {
    background: linear-gradient(135deg, #9b3dae 0%, #ff2eb8 50%, #ff8b55 100%);
    border-color: rgba(233, 30, 156, 0.7);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(233, 30, 156, 0.4), 0 0 40px rgba(255, 107, 53, 0.2);
    letter-spacing: 3px;
}
@keyframes games-glow {
    0% { box-shadow: 0 0 5px rgba(233, 30, 156, 0.2); }
    100% { box-shadow: 0 0 15px rgba(233, 30, 156, 0.4), 0 0 30px rgba(255, 107, 53, 0.15); }
}

/* AI Tools button — tech cyan style */
nav#main-nav ul li a.nav-aitools {
    background: linear-gradient(135deg, #0a2a3f 0%, #00d4ff 50%, #0a2a3f 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #ffffff;
    position: relative;
}
nav#main-nav ul li a.nav-aitools::after {
    content: '🔮';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
    opacity: 0.7;
}
nav#main-nav ul li a.nav-aitools:hover {
    background: linear-gradient(135deg, #0d3a55 0%, #00e8ff 50%, #0d3a55 100%);
    border-color: rgba(0, 212, 255, 0.7);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* TEDucation button — red education style */
nav#main-nav ul li a.nav-teducation {
    background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 50%, #8b1a1a 100%);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #ffffff;
}
nav#main-nav ul li a.nav-teducation::after {
    content: '🎓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
    opacity: 0.7;
}
nav#main-nav ul li a.nav-teducation {
    position: relative;
}
nav#main-nav ul li a.nav-teducation:hover {
    background: linear-gradient(135deg, #a52323 0%, #e74c3c 50%, #a52323 100%);
    border-color: rgba(231, 76, 60, 0.7);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.2);
}

/* LifeOS button — neon green lightning */
nav#main-nav ul li a.nav-lifeos {
    background: linear-gradient(135deg, #0a2540 0%, #0d3b2e 50%, #0a2540 100%);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39FF14;
}
nav#main-nav ul li a.nav-lifeos:hover {
    background: linear-gradient(135deg, #0d3b2e 0%, #145a3e 50%, #0d3b2e 100%);
    border-color: rgba(57, 255, 20, 0.6);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.15);
}
nav#main-nav ul li a.nav-lifeos svg {
    margin-right: 8px;
    vertical-align: middle;
}

/* Technology button — cyan circuit/gear style */
nav#main-nav ul li a.nav-technology {
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1628 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    position: relative;
    overflow: hidden;
}
nav#main-nav ul li a.nav-technology::before {
    content: '⚡';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85em;
    opacity: 0.6;
    animation: pulse-tech 1.5s ease-in-out infinite alternate;
}
nav#main-nav ul li a.nav-technology:hover {
    background: linear-gradient(135deg, #0d2847 0%, #164670 50%, #0d2847 100%);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
}
@keyframes pulse-tech {
    0% { opacity: 0.4; transform: translateY(-50%) scale(0.9); }
    100% { opacity: 0.8; transform: translateY(-50%) scale(1.1); }
}

.free-quote {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white !important;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    margin-top: 15px;
}

.free-quote:hover {
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--accent-orange));
    transform: translateX(0) scale(1.05);
}

/* --- Hero Section --- */
.hero-slider {
    height: 55vh;
    width: 100%;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.55);
    padding: 30px 40px;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.hero-content h1 { font-size: 2.8rem; margin-bottom: 15px; font-weight: 700; }
.hero-content p { font-size: 1.4rem; margin-bottom: 25px; }

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.swiper-button-next, .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}
 .swiper-button-next:hover, .swiper-button-prev:hover {
    color: white;
 }
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: white;
     opacity: 1;
}

/* --- General Section Styling --- */
section {
     padding: 60px 20px;
}
.main-heading, .secondary-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gradient-start);
    text-align: center;
    margin-bottom: 1.5rem;
     padding-top: 10px;
}
 .secondary-heading {
     font-size: 2.2rem;
     margin-bottom: 2rem;
 }

/* --- Services Section --- */
#services {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}
#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(77, 196, 217, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(43, 45, 66, 0.03) 0%, transparent 40%);
    z-index: 1;
}
#services > * {
    position: relative;
    z-index: 2;
}
#services p:first-of-type {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 2.5rem auto;
     font-size: 1.1rem;
     color: #555;
}

.service-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 260px;
    max-width: 320px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.35s ease-out, box-shadow 0.35s ease-out, border-color 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(77, 196, 217, 0.2), 0 8px 8px rgba(77, 196, 217, 0.15);
    border-color: rgba(77, 196, 217, 0.7);
}

.service-box img:not(.service-icon),
.service-box video {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 6px;
    border-radius: 6px;
    display: inline-block;
}

.service-box h3 {
    margin: 0 0 10px 0;
    color: var(--gradient-start);
    font-size: 1.3rem;
}
.service-box p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
     flex-grow: 1;
     margin-bottom: 0;
}

/* --- Testimonials Section --- */
section.testimonials {
    padding: 60px 0;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--text-light);
    position: relative;
}
section.testimonials::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 100%);
    filter: blur(10px);
}
.testimonials h2.main-heading {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}
.testimonial-slider-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
}

.testimonial-slider {
    position: relative;
    padding-bottom: 60px;
}

.testimonial-slide {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

 .testimonial-client-info {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
     margin-bottom: 20px;
     margin-top: auto;
 }
 .testimonial-client-logo {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     overflow: hidden;
     background-color: rgba(255, 255, 255, 0.2);
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.8em;
     color: #ccc;
 }
  .testimonial-client-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

 .testimonial-author {
     font-weight: bold;
     font-size: 1.1rem;
     color: #fff;
     text-align: left;
 }

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: auto;
    font-style: italic;
    color: #e0e0e0;
    flex-grow: 1;
    padding-bottom: 15px;
}

.testimonial-button-prev,
.testimonial-button-next {
    position: absolute;
    bottom: 10px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
 .testimonial-button-prev::after,
 .testimonial-button-next::after {
     font-family: swiper-icons;
     font-size: 20px;
     font-weight: bold;
 }
 .testimonial-button-prev::after { content: 'prev'; }
 .testimonial-button-next::after { content: 'next'; }

.testimonial-button-prev { left: calc(50% - 55px); }
.testimonial-button-next { right: calc(50% - 55px); }

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.divider {
    border-top: 2px solid #dce0e2;
    margin: 4rem auto;
    width: 70%;
}

.back-button {
    display: block;
    margin: 2.5rem auto 0 auto;
    padding: 0.8rem 1.8rem;
    background-color: #555;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    width: fit-content;
    font-weight: 500;
}
.back-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

 /* Mission Section Styles */
 :root {
     --primary-blue: #0A2540;
     --electric-cyan: #00FFFF;
     --neon-green: #39FF14;
     --metallic-silver: #C0C0C0;
 }

 #mission {
     position: relative;
     padding: 35px 20px 30px;
     background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-cyan) 100%);
     overflow: hidden;
 }
 #mission::after {
     content: '';
     position: absolute;
     bottom: -20px;
     left: 0;
     width: 100%;
     height: 40px;
     background: linear-gradient(to top, rgba(43, 45, 66, 0.3) 0%, transparent 100%);
     filter: blur(15px);
 }

 .mission-container {
     position: relative;
     max-width: 1200px;
     margin: 0 auto;
     z-index: 3;
 }

 .mission-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
 }

 #particleCanvas {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 }

 .circuit-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
     opacity: 0.3;
 }

 .mission-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     padding: 25px 30px;
     background: rgba(0, 0, 0, 0.2);
     border-radius: 20px;
     -webkit-backdrop-filter: blur(10px);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .mission-headline {
     font-family: 'Orbitron', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 12px;
     background: linear-gradient(45deg, #FFFFFF, var(--electric-cyan), var(--neon-green));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
     animation: glow 2s ease-in-out infinite alternate;
 }

 @keyframes glow {
     from { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
     to { filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.8)); }
 }

 .mission-subheadline {
     font-family: 'Poppins', sans-serif;
     font-size: 1.05rem;
     font-weight: 500;
     margin-bottom: 12px;
     line-height: 1.5;
 }

 .tech-keyword {
     color: var(--neon-green);
     font-weight: 600;
     cursor: pointer;
     position: relative;
     transition: all 0.3s ease;
 }

 .tech-keyword:hover {
     text-shadow: 0 0 10px var(--neon-green);
     transform: scale(1.05);
 }

 .tooltip {
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(0, 0, 0, 0.9);
     color: white;
     padding: 10px 15px;
     border-radius: 8px;
     font-size: 0.9rem;
     white-space: nowrap;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
     z-index: 10;
     border: 1px solid var(--neon-green);
 }

 .tech-keyword:hover .tooltip {
     opacity: 1;
 }

 .mission-body {
     font-family: 'Poppins', sans-serif;
     font-size: 0.95rem;
     margin-bottom: 15px;
     line-height: 1.5;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .mission-benefits {
     list-style: none;
     padding: 0;
     margin: 12px 0;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 10px;
 }

 .benefit-item {
     background: rgba(255, 255, 255, 0.1);
     padding: 14px;
     border-radius: 12px;
     border: 1px solid rgba(57, 255, 20, 0.3);
     transition: all 0.3s ease;
     -webkit-backdrop-filter: blur(5px);
     backdrop-filter: blur(5px);
 }

 .benefit-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
     border-color: var(--neon-green);
 }

 .benefit-icon {
     font-size: 2rem;
     margin-right: 10px;
 }

 .mission-cta {
     display: inline-block;
     font-family: 'Orbitron', sans-serif;
     font-size: 0.95rem;
     font-weight: 600;
     padding: 10px 28px;
     background: linear-gradient(45deg, var(--neon-green), var(--electric-cyan));
     color: var(--primary-blue);
     text-decoration: none;
     border-radius: 50px;
     transition: all 0.3s ease;
     box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
     margin-top: 15px;
 }

 .mission-cta:hover {
     transform: translateY(-3px) scale(1.05);
     box-shadow: 0 10px 30px rgba(0, 255, 255, 0.7);
     color: var(--primary-blue);
 }

 .floating-cube {
     position: absolute;
     top: 20%;
     right: 10%;
     width: 80px;
     height: 80px;
     background: linear-gradient(45deg, rgba(57, 255, 20, 0.3), rgba(0, 255, 255, 0.3));
     border: 2px solid var(--neon-green);
     transform-style: preserve-3d;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {
     0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
     50% { transform: translateY(-20px) rotateX(180deg) rotateY(180deg); }
 }

 #gofundme { 
     background: linear-gradient(135deg, var(--bg-light) 0%, #f0f4f8 50%, var(--bg-light) 100%);
     position: relative;
     overflow: hidden;
     padding: 30px 20px;
 }
 #gofundme::before {
     content: '';
     position: absolute;
     top: 0;
     right: -30%;
     width: 150%;
     height: 100%;
     background: radial-gradient(ellipse at 70% 50%, rgba(77, 196, 217, 0.08) 0%, transparent 50%);
     z-index: 1;
 }
 #gofundme > * {
     position: relative;
     z-index: 2;
 }
 #gofundme .secondary-heading {
     margin-bottom: 15px;
 }
 #gofundme .gfm-embed {
     max-width: 600px;
     margin: 0 auto;
     background: white;
     padding: 12px;
     border-radius: 12px;
     box-shadow: 0 2px 12px rgba(0,0,0,0.08);
     border: 1px solid rgba(0,0,0,0.06);
     overflow: hidden;
 }

footer {
    background-color: var(--gradient-start);
    color: #ccc;
    padding: 30px 20px;
    text-align: center;
    margin-top: 0;
     font-size: 0.9rem;
}
.hero-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide video.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 30px 0;
}
.popup-content {
    position: relative;
    background-color: var(--bg-white);
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.close-popup {
    position: absolute;
    right: 18px; top: 18px;
    font-size: 35px; font-weight: 300; line-height: 1;
    cursor: pointer; color: #aaa; transition: color 0.3s, transform 0.2s;
}
.close-popup:hover { color: #333; transform: rotate(90deg); }

.booking-form h2, .booking-form h3 {
    color: var(--gradient-start); text-align: center; margin-bottom: 30px; font-weight: 600;
}
 .booking-form h3 { font-size: 1.4rem; margin-bottom: 20px;}

.booking-form { margin-top: 10px; }
.form-step { border-top: 1px solid #eee; padding-top: 25px; margin-top: 25px; }
.form-step:first-child { border-top: none; padding-top: 0; margin-top: 0;}

.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #444; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s; background-color: #f9f9f9;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gradient-end); box-shadow: 0 0 0 3px rgba(77, 196, 217, 0.15);
    outline: none; background-color: var(--bg-white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
     clear: both;
}
.next-btn, .prev-btn, .submit-btn {
    background-color: var(--accent-orange); color: white;
    padding: 12px 30px; border: none; border-radius: 5px; cursor: pointer;
    font-size: 16px; font-weight: 500; transition: all 0.3s;
}
.prev-btn { background-color: #888; }
.next-btn:hover, .submit-btn:hover { background-color: var(--accent-orange-dark); transform: translateY(-2px); }
.prev-btn:hover { background-color: #666; transform: translateY(-2px); }

#step1 .form-buttons { justify-content: flex-end; }
#step2 .form-buttons { /* Both Prev and Submit */ }

#form-status { margin-top: 20px; }
.success-message, .error-message {
    text-align: center; padding: 20px; border-radius: 8px; margin: 15px 0; font-size: 1.05rem;
}
.success-message { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.error-message { background-color: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.success-message h3, .error-message h3 { margin-bottom: 10px; font-size: 1.3rem;}
.success-message img { width: 40px; vertical-align: middle; margin-right: 10px; }

/* Newsletter Alert Styles */
.newsletter-alert {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}
.newsletter-alert.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.newsletter-alert.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.newsletter-form input.invalid {
    border-color: #c62828 !important;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.15) !important;
}
#newsletterEmail {
    color: #333 !important;
    background-color: #fff !important;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    :root { 
        --header-height: 60px;
    }
    
    section { 
        padding: 40px 15px;
    }
    
    .main-heading { 
        font-size: 2rem;
    }
    
    .secondary-heading { 
        font-size: 1.8rem;
    }

    header { 
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .header-center {
        position: static;
        transform: none;
        margin: 0 10px;
    }
    
    .logo img { 
        max-height: calc(var(--header-height) - 20px);
    }
    
    .logo h1 { 
        font-size: 1.2em;
        white-space: nowrap;
    }

    .hero-slider { 
        height: 50vh;
    }
    
    .hero-content { 
        padding: 20px;
    }
    
    .hero-content h1 { 
        font-size: 2rem;
    }
    
    .hero-content p { 
        font-size: 1.1rem;
    }

    .service-boxes { 
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-box { 
        width: 90%;
        max-width: 350px;
        flex-basis: auto;
    }

    .testimonial-slider { 
        padding-bottom: 70px;
    }
    
    .testimonial-slide { 
        min-height: 250px;
        padding: 25px;
    }
    
    .testimonial-client-info { 
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-author { 
        text-align: center;
    }
    
    .testimonial-button-prev { 
        left: calc(50% - 70px);
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
    
    .testimonial-button-next { 
        right: calc(50% - 70px);
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
    
    .testimonial-button-prev::after, .testimonial-button-next::after { 
        font-size: 16px;
    }

    .popup-content { 
        width: 95%;
        padding: 25px 20px;
        margin: 10px auto;
    }
    
    .booking-form h2 { 
        font-size: 1.8rem;
    }
    
    .booking-form h3 { 
        font-size: 1.2rem;
    }
    
    .form-buttons { 
        flex-direction: column-reverse;
        gap: 10px;
        align-items: stretch;
    }
    
    .prev-btn, .next-btn, .submit-btn { 
        width: 100%;
    }

    /* Mission section — tighter on mobile */
    #mission {
        padding: 40px 15px;
        min-height: auto;
    }
    .mission-content {
        padding: 20px 15px;
    }
    .mission-headline {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .mission-subheadline {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .mission-body {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .mission-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0;
    }
    .benefit-item {
        padding: 12px 15px;
    }
    .mission-cta {
        font-size: 0.95rem;
        padding: 12px 30px;
        margin-top: 15px;
    }
    .floating-cube {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo h1 { 
        font-size: 1.05em;
    }
    
    nav#main-nav { 
        max-width: 260px;
    }
    
    nav ul li a { 
        font-size: 1em;
        padding: 12px 15px;
    }

    .hero-slider { 
        height: 45vh;
    }
    
    .hero-content h1 { 
        font-size: 1.8rem;
    }
    
    .hero-content p { 
        font-size: 1rem;
    }

    .main-heading { 
        font-size: 1.8rem;
    }
    
    .secondary-heading { 
        font-size: 1.6rem;
    }

    .popup-content { 
        padding: 20px 15px;
    }
    
    .form-group input, .form-group select, .form-group textarea { 
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .next-btn, .prev-btn, .submit-btn { 
        padding: 12px 20px;
        font-size: 15px;
    }

    .testimonial-slide { 
        padding: 20px;
    }
}

/* ═══ MENU PARTY MODE ═══ 
   When hamburger is open, EVERYTHING goes crazy */

/* Header logo — excited wobble */
body.menu-party .logo {
    animation: partyRock 1.8s ease-in-out infinite;
}
@keyframes partyRock {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15% { transform: rotate(2deg) scale(1.05); }
    30% { transform: rotate(-1.5deg) scale(0.98); }
    50% { transform: rotate(1deg) scale(1.03); }
    70% { transform: rotate(-2deg) scale(1); }
    85% { transform: rotate(0.5deg) scale(1.02); }
}

/* Store button — bouncy */
body.menu-party .store-btn {
    animation: partyBounce 1.4s ease-in-out infinite;
}
@keyframes partyBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-8px) rotate(3deg); }
    40% { transform: translateY(2px) rotate(-1deg); }
    60% { transform: translateY(-5px) rotate(2deg); }
    80% { transform: translateY(1px) rotate(-0.5deg); }
}

/* Sound button — spinning pulse */
body.menu-party .sound-toggle-btn {
    animation: partySpin 2s ease-in-out infinite;
}
@keyframes partySpin {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.15) rotate(15deg); }
    50% { transform: scale(0.95) rotate(-10deg); }
    75% { transform: scale(1.1) rotate(8deg); }
}

/* Hero slider — gentle rocking */
body.menu-party .hero-slider {
    animation: partySlider 3s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes partySlider {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.008) rotate(0.3deg); }
    50% { transform: scale(0.995) rotate(-0.2deg); }
    75% { transform: scale(1.005) rotate(0.15deg); }
}

/* CTA button in hero — jelly wobble */
body.menu-party .cta-button {
    animation: partyJelly 1.5s ease-in-out infinite;
}
@keyframes partyJelly {
    0%, 100% { transform: scale(1) skewX(0deg); }
    20% { transform: scale(1.05) skewX(2deg); }
    40% { transform: scale(0.97) skewX(-1.5deg); }
    60% { transform: scale(1.03) skewX(1deg); }
    80% { transform: scale(0.99) skewX(-0.5deg); }
}

/* Service boxes — each one different */
body.menu-party .service-box:nth-child(1) {
    animation: partyBox1 2.2s ease-in-out infinite;
}
body.menu-party .service-box:nth-child(2) {
    animation: partyBox2 2.5s ease-in-out 0.2s infinite;
}
body.menu-party .service-box:nth-child(3) {
    animation: partyBox3 2s ease-in-out 0.4s infinite;
}
body.menu-party .service-box:nth-child(4) {
    animation: partyBox4 2.3s ease-in-out 0.1s infinite;
}
@keyframes partyBox1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1.5deg); }
    50% { transform: translateY(4px) rotate(-1deg); }
    75% { transform: translateY(-6px) rotate(0.8deg); }
}
@keyframes partyBox2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(8px, -10px) rotate(-1.2deg); }
    50% { transform: translate(-5px, 3px) rotate(0.8deg); }
    80% { transform: translate(3px, -4px) rotate(-0.5deg); }
}
@keyframes partyBox3 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.04) rotate(1deg); }
    60% { transform: scale(0.97) rotate(-1.5deg); }
    80% { transform: scale(1.02) rotate(0.5deg); }
}
@keyframes partyBox4 {
    0%, 100% { transform: translateY(0) skewX(0deg); }
    25% { transform: translateY(-10px) skewX(1deg); }
    50% { transform: translateY(5px) skewX(-0.8deg); }
    75% { transform: translateY(-3px) skewX(0.5deg); }
}

/* Section headings — wave */
body.menu-party .main-heading,
body.menu-party .secondary-heading {
    animation: partyWave 2s ease-in-out infinite;
}
@keyframes partyWave {
    0%, 100% { transform: translateX(0) skewX(0deg); }
    25% { transform: translateX(5px) skewX(0.5deg); }
    50% { transform: translateX(-4px) skewX(-0.3deg); }
    75% { transform: translateX(3px) skewX(0.2deg); }
}

/* Swiper navigation arrows — going nuts */
body.menu-party .swiper-button-next,
body.menu-party .swiper-button-prev {
    animation: partyArrow 1s ease-in-out infinite;
}
@keyframes partyArrow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(10deg); }
}

/* Swiper pagination dots — bouncy */
body.menu-party .swiper-pagination-bullet {
    animation: partyDot 0.8s ease-in-out infinite alternate;
}
body.menu-party .swiper-pagination-bullet:nth-child(2) { animation-delay: 0.1s; }
body.menu-party .swiper-pagination-bullet:nth-child(3) { animation-delay: 0.2s; }
body.menu-party .swiper-pagination-bullet:nth-child(4) { animation-delay: 0.3s; }
@keyframes partyDot {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.4) translateY(-4px); }
}

/* Even the hero content boxes dance */
body.menu-party .hero-content {
    animation: partyHero 2.5s ease-in-out infinite;
}
@keyframes partyHero {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(4px, -6px) rotate(0.4deg); }
    50% { transform: translate(-3px, 3px) rotate(-0.3deg); }
    75% { transform: translate(2px, -2px) rotate(0.2deg); }
}

/* Testimonials section if visible */
body.menu-party .testimonial-slide {
    animation: partyBox2 2.8s ease-in-out infinite;
}

/* Footer gets in on it too */
body.menu-party footer {
    animation: partyWave 3s ease-in-out infinite;
}

/* Sound toggle button */
.sound-toggle-btn {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sound-toggle-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    transform: scale(1.1);
}
.sound-toggle-btn.muted {
    opacity: 0.5;
    background: rgba(100, 100, 100, 0.2);
    border-color: rgba(100, 100, 100, 0.4);
}

/* === Social Links & Client Portal Styles === */
    .social-links {
position: fixed;
bottom: 20px;
left: 20px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 1000;
    }
    
    .social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
background: #39ff14;
border-radius: 50%;
color: #000;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(57, 255, 20, 0.3);
    }
    
    .social-links a:hover {
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(57, 255, 20, 0.5);
    }
    
    @media (max-width: 768px) {
.social-links {
    bottom: 15px;
    left: 15px;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
}

.social-links svg {
    width: 18px;
    height: 18px;
}
    }
    
    .store-btn {
background: #39ff14;
color: #000;
padding: 8px 16px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
margin-right: 15px;
    }
    
    .store-btn:hover {
background: #2ecc11;
transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
.store-btn {
    padding: 4px 10px;
    font-size: 11px;
    margin-right: 6px;
}
    }
    @media (max-width: 768px) {
.sound-toggle-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-left: 4px;
}
.header-center {
    margin: 0 6px;
    gap: 4px;
}
    }
    .client-portal-btn {        background: linear-gradient(135deg, #00D4FF, #0099CC);        color: #fff;        padding: 8px 16px;        border-radius: 25px;        text-decoration: none;        font-weight: 600;        font-size: 14px;        transition: all 0.3s ease;        margin-right: 10px;        white-space: nowrap;    }    .client-portal-btn:hover {        background: linear-gradient(135deg, #00B8E6, #0088BB);        transform: translateY(-2px);        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);    }    @media (max-width: 768px) {        .client-portal-btn {            padding: 4px 10px;            font-size: 11px;            margin-right: 6px;        }    }    .nav-client-portal {        background: linear-gradient(135deg, #00D4FF, #0099CC) !important;        color: #fff !important;        font-weight: bold;        text-align: center;        justify-content: center;        margin-top: 4px;        border-radius: 8px;        padding: 10px 14px !important;        text-shadow: 0 1px 2px rgba(0,0,0,0.2);    }    .nav-client-portal:hover {        background: linear-gradient(135deg, #00B8E6, #0088BB) !important;        transform: translateX(0) scale(1.05);        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);    }
