:root {
    --primary-blue: #0B8FAC;
    --primary-green: #00C853;
    --navy-depth: #0F172A;
    --bg-dark: #e0f7fa;
    /* Fallback light blue */
    --bg-gradient: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
    --text-main: #000000;
    --text-muted: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

body {
    background-color: var(--bg-dark);
    background-image: var(--bg-gradient);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 3D Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.glow-text {
    text-shadow: none;
}

.text-center {
    text-align: center;
}

.accent-text {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    box-shadow: 0 4px 15px rgba(11, 143, 172, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 143, 172, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.1);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
    margin-bottom: 30px;
}

.accent-line.center {
    margin: 0 auto 30px auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(11, 143, 172, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-logo-container {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-logo-glow {
    animation: logo-glow-anim 3s ease-in-out infinite alternate;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    /* Dual shadow: Blue on left, Red on right to match logo colors */
    filter: drop-shadow(-10px 0 15px rgba(0, 50, 255, 0.5)) drop-shadow(10px 0 15px rgba(255, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.hero-logo-container h2 {
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@keyframes logo-glow-anim {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-10px) scale(1.08);
    }
}

.ocean-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Holographic Compass & Ocean Reflections */
.parallax-layer {
    will-change: transform;
}

.holographic-compass {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    font-size: 25rem;
    color: var(--primary-blue);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--primary-blue));
    animation: compass-spin 120s linear infinite;
}

@keyframes compass-spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.ocean-light-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 143, 172, 0.05) 0%, transparent 50%, rgba(11, 143, 172, 0.05) 100%);
    background-size: 400% 400%;
    animation: wave-gradient 15s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes wave-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ocean-reflections {
    position: absolute;
    top: -50vh;
    left: 0;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle at 50% 100%, rgba(11, 143, 172, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(0, 200, 83, 0.1) 0%, transparent 40%);
    opacity: 0.8;
    mix-blend-mode: screen;
    animation: caustic-flow 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes caustic-flow {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.05) translateY(10px);
        opacity: 0.5;
    }
}

.ship-silhouette {
    position: absolute;
    bottom: 20vh;
    left: 8%;
    font-size: 15rem;
    color: rgba(11, 143, 172, 0.15);
    opacity: 0.8;
    animation: floating-ship 15s ease-in-out infinite;
}

@keyframes floating-ship {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to top, rgba(11, 143, 172, 0.15) 0%, transparent 100%);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.doctor-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(11, 143, 172, 0.2);
    background: linear-gradient(90deg, var(--text-main), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Home Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(11, 143, 172, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.section-container {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-text {
    flex: 1;
}

.section-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-features {
    list-style: none;
    margin-top: 25px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--primary-green);
    background: rgba(0, 200, 83, 0.1);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-card {
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.mission-card:hover .card-glow {
    opacity: 1;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(11, 143, 172, 0.5));
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    perspective: 1000px;
    position: relative;
    z-index: 2;
}

.services-grid-expanded {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-icon {
    position: absolute;
    font-size: 10rem;
    color: rgba(11, 143, 172, 0.03);
    z-index: 0;
}

.anchor-anim {
    top: 10%;
    left: 5%;
    animation: drift 20s ease-in-out infinite alternate;
}

.compass-anim {
    top: 60%;
    right: 5%;
    animation: drift-rotate 25s linear infinite;
}

.ring-anim {
    bottom: 10%;
    left: 45%;
    animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, -30px) rotate(10deg);
    }
}

@keyframes drift-rotate {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    100% {
        transform: rotate(360deg) translate(20px, 20px);
    }
}

.service-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(11, 143, 172, 0.2), rgba(0, 200, 83, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 15px;
}

/* Redesigned Services Carousel (Boxed Style) */
.static-gallery-wrapper {
    max-width: 850px;
    margin: 40px auto 80px auto;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05); /* Very subtle background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.static-gallery {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    background: #000; /* Backdrop for images */
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-track.no-transition {
    transition: none !important;
}

.carousel-slide {
    flex: 0 0 100%; /* Show 1 slide for a "boxed" look */
    padding: 0;
    box-sizing: border-box;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    justify-content: center;
}

.carousel-slide.active-slide {
    z-index: 2;
}

.slide-inner {
    width: 100%;
    height: 380px; /* Smaller, focused height */
    overflow: hidden;
    position: relative;
    background: #000;
}

.slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 25px;
    border-radius: 18px;
    color: white;
    text-align: left;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-slide.active-slide .slide-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery Buttons Styling */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(11, 143, 172, 0.2); /* Use primary blue tint */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 143, 172, 0.3);
    color: var(--primary-blue);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding-bottom: 5px; /* Visual centering for arrows */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 0 20px rgba(11, 143, 172, 0.5);
    border-color: transparent;
}

.gallery-prev {
    left: -20px;
}

.gallery-next {
    right: -20px;
}

.carousel-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 30px;
    height: 6px;
    border-radius: 3px;
    background: rgba(11, 143, 172, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-blue);
    width: 50px;
    box-shadow: 0 0 15px rgba(11, 143, 172, 0.5);
}

@media (max-width: 992px) {
    .static-gallery-wrapper {
        max-width: 90%;
    }
    .slide-inner {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }
    .slide-inner {
        height: 280px;
    }
}

/* Contact */
.contact {
    position: relative;
    overflow: hidden;
}

.contact-bg-ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(11, 143, 172, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Glowing Form Border */
.form-glow-border {
    position: relative;
}

.form-glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green), transparent, transparent);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    animation: border-flow 6s linear infinite;
    background-size: 200% 200%;
}

@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select.custom-select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form select.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B8FAC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-form select.custom-select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select.custom-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(11, 143, 172, 0.2);
}

.mb-20 {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 3px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
}

.info-item p {
    color: var(--text-muted);
}

.glow-map {
    position: relative;
    border-radius: 12px;
}

.glow-map::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 20px rgba(11, 143, 172, 0.2);
    border-radius: 12px;
    pointer-events: none;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0B8FAC;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(11, 143, 172, 0.4);
    z-index: 99;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Basic Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-1-5 {
    transition-delay: 0.3s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Hide Number Input Spin-Buttons (Arrows) for Captcha */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: none;
}