.about-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    object-fit: cover;
    background: #222;
    border: none;
}

@media (max-width: 900px) {
    .about-image {
        max-width: 90vw;
        margin: 0 auto;
    }
}
:root {
    /* Core Backgrounds */
    --background: hsl(220, 25%, 5%);
    --foreground: hsl(210, 20%, 98%);
    
    /* Card System */
    --card: hsl(220, 20%, 8%);
    --card-foreground: hsl(210, 20%, 98%);
    
    /* Brand Colors - Electric Blue Theme */
    --primary: hsl(210, 100%, 56%);
    --primary-foreground: hsl(220, 25%, 5%);
    --primary-glow: hsl(210, 100%, 70%);
    
    /* Secondary - Metallic Tones */
    --secondary: hsl(220, 15%, 15%);
    --secondary-foreground: hsl(210, 20%, 90%);
    
    /* Muted Elements */
    --muted: hsl(220, 15%, 12%);
    --muted-foreground: hsl(220, 10%, 60%);
    
    /* Accent - Electric Cyan */
    --accent: hsl(185, 100%, 50%);
    --accent-foreground: hsl(220, 25%, 5%);
    --accent-glow: hsl(185, 100%, 60%);
    
    /* Status Colors */
    --success: hsl(150, 75%, 50%);
    --border: hsl(220, 20%, 20%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
    --gradient-hero: linear-gradient(135deg, hsl(220, 25%, 5%), hsl(220, 20%, 8%), hsl(210, 100%, 10%));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-glow));
    
    /* Shadows & Effects */
    --shadow-glow: 0 0 30px hsla(210, 100%, 56%, 0.3);
    --shadow-accent-glow: 0 0 20px hsla(185, 100%, 50%, 0.4);
    --shadow-card: 0 8px 32px hsla(220, 25%, 0%, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.hidden {
    display: none;
}

.text-gradient-primary {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-foreground {
    color: var(--foreground);
}

.gradient-primary {
    background: var(--gradient-primary);
}

.gradient-accent {
    background: var(--gradient-accent);
}

.gradient-hero {
    background: var(--gradient-hero);
}

.glass-card {
    background: hsla(220, 20%, 8%, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(220, 20%, 20%, 0.5);
    border-radius: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        hsla(220, 25%, 5%, 0.8) 0%,
        hsla(220, 25%, 5%, 0.6) 50%,
        hsla(220, 25%, 5%, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: var(--success);
}

/* Button Styles */
.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsla(210, 100%, 56%, 0.6);
}

.btn-outline-xl {
    background: transparent;
    color: var(--foreground);
    border: 2px solid hsla(210, 20%, 98%, 0.2);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline-xl:hover {
    background: hsla(210, 20%, 98%, 0.1);
    border-color: hsla(210, 20%, 98%, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--muted);
}

.btn-outline-icon {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline-icon:hover {
    background: var(--muted);
}

.btn-full {
    width: 100%;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-white {
    color: white;
}

/* Sections */
.about-section,
.why-section,
.gallery-section,
.contact-section {
    padding: 5rem 0;
    background: hsla(220, 25%, 5%, 0.5);
    backdrop-filter: blur(4px);
}

.services-section,
.testimonials-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

/* About Section */
.about-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    text-align: left;
}

.about-paragraph {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: hsla(220, 20%, 8%, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(220, 20%, 20%, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.electric-icon {
    padding: 2rem;
    border-radius: 1rem;
    animation: float 6s ease-in-out infinite;
}

.large-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: hsla(220, 20%, 8%, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(220, 20%, 20%, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        hsla(220, 25%, 5%, 0.8) 0%,
        transparent 50%,
        transparent 100%);
}

.service-icon-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-overlay {
    transform: scale(1.1);
}

.service-icon-top {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gradient-accent);
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-item {
    text-align: center;
}

.why-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.why-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin: 0 auto 1rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-description {
    color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    height: 100%;
}

.testimonial-content {
    padding: 1.5rem;
    border-radius: 0.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-content:hover {
    box-shadow: var(--shadow-card);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1rem;
    height: 1rem;
}

.star.filled {
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-text {
    color: hsla(210, 20%, 98%, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid hsla(220, 20%, 20%, 0.3);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-service {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    cursor: pointer;
}

.gallery-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        hsla(220, 25%, 5%, 0.8) 0%,
        transparent 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 96rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    padding: 2rem;
    border-radius: 1rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-items {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.contact-label {
    font-weight: 600;
}

.contact-value {
    color: var(--muted-foreground);
}

.contact-buttons {
    margin-bottom: 1.5rem;
}

.contact-buttons button {
    margin-bottom: 1rem;
}

.social-section {
    padding-top: 1.5rem;
    border-top: 1px solid hsla(220, 20%, 20%, 0.3);
}

.social-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.map-placeholder {
    aspect-ratio: 16/9;
    background: var(--muted);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.map-content {
    text-align: center;
}

.map-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.5rem;
    color: var(--primary);
}

.map-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.map-subtext {
    color: var(--muted-foreground);
}

.hours-info {
    margin-bottom: 1rem;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: hsla(220, 20%, 8%, 0.8);
    backdrop-filter: blur(4px);
    border-top: 1px solid hsla(220, 20%, 20%, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--muted-foreground);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-info {
    color: var(--muted-foreground);
}

.footer-info > div {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid hsla(220, 20%, 20%, 0.3);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--muted-foreground);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: hsla(220, 25%, 5%, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox-content {
    position: relative;
    max-width: 80rem;
    width: 100%;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    z-index: 10;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--muted);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: var(--muted);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        hsla(220, 25%, 5%, 0.9) 0%,
        transparent 100%);
    padding: 1.5rem;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.lightbox-caption {
    color: var(--muted-foreground);
}

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

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px hsla(210, 100%, 56%, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px hsla(210, 100%, 56%, 0.6);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .lightbox-nav {
        padding: 0.5rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
}

/* Fix for horizontal scrolling */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Fix for potential wide elements */
.container {
    max-width: 100%;
    overflow: hidden;
}

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid hsla(220, 20%, 20%, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: bold;
}

.logo-text {
    text-decoration: none;
    color: var(--foreground);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    color: var(--foreground);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 1rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid hsla(220, 20%, 20%, 0.8);
    border-radius: 0.5rem;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.language-toggle:hover {
    background-color: hsla(220, 20%, 20%, 0.5);
}

/* Bilingual text styles */


:root.en-only .hi {
    display: none !important;
}
:root.en-only .en {
    display: block !important;
}

.keep-english {
    display: inline-block !important;
}

/* Hero title special styling */


/* Add margin to the top of the hero section to compensate for fixed navbar */
.hero-section {
    padding-top: 4rem;
}

/* Location text styles */
.location-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--muted-foreground);
}

.location-icon {
    width: 1rem;
    height: 1rem;
}

/* Responsive navbar */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid hsla(220, 20%, 20%, 0.5);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid hsla(220, 20%, 20%, 0.3);
    }
    
    .language-toggle {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}