﻿:root {
    /* Colors extracted/inspired by Logo */
    --color-bg: #0a0f14;
    --color-bg-light: #131b24;
    --color-primary: #00E5FF;
    /* Cyan Neon */
    --color-secondary: #FFD700;
    /* Electric Yellow */
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
    /* Ensure overflow hidden works reliably */
    cursor: none;
}

html {
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-light);
    border-radius: 5px;
    border: 1px solid var(--color-glass-border);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Selection Color */
::selection {
    background: var(--color-primary);
    color: #000;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00E5FF, #0099ff);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    border: 2px solid #FFD700;
    color: #FFD700;
    margin-left: 15px;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    display: inline-block;
    font-weight: 800;
}

.section-title span {
    color: #00E5FF;
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism */
.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    background: rgba(10, 15, 20, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    gap: 10px;
}


.logo img {
    height: 40px;
}

.logo span {
    background: linear-gradient(to right, #00E5FF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-fast);
}

.nav-link:not(.btn-primary):hover::after {
    width: 100%;
}

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

.mobile-toggle {
    display: none;
    margin-bottom: 0;
    max-width: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 150px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(10, 15, 20, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 50px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.85;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.text-outline {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    display: block;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(to right, #00E5FF, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 1.1em;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-main-photo {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    mask-image: none;
    -webkit-mask-image: none;
    animation: float 6s ease-in-out infinite;
    border: none;
    position: relative;
    z-index: 2;
}

.circle-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Section Styling */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--color-primary);
}

.about-card:hover .icon-box {
    background: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: rotateY(180deg);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.about-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    background: #0f1419;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.highlight {
    border: 1px solid #FFD700;
    background: rgba(255, 215, 0, 0.02);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00E5FF;
    font-weight: 700;
}

.service-card.highlight h3 {
    color: #FFD700;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 1rem;
}

.feature-list i {
    color: #00E5FF;
}

.service-card.highlight .feature-list i {
    color: #FFD700;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 60px;
    background: #0f1419;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glowing Corner Accents */
.contact-wrapper::before,
.contact-wrapper::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-wrapper::before {
    top: -50px;
    left: -50px;
}

.contact-wrapper::after {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.contact-header h2 {
    margin-bottom: 15px;
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    letter-spacing: -1px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 600px;
}

.social-links {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    border-color: var(--color-primary);
}

.social-links a:hover::before {
    opacity: 0.3;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(10, 20, 30, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(10, 20, 30, 0.9);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 10px rgba(0, 229, 255, 0.05);
}

/* Holographic Data Node - Info Item Styles (Horizontal Layout) */
.info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(10, 20, 30, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 4px solid var(--color-primary);
    border-radius: 4px 15px 15px 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(10, 20, 30, 0.8);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.info-item:hover::before {
    transform: translateX(100%);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-bottom: 0;
    margin-right: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.info-item:hover i {
    background: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.info-item p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    margin: 0;
}

/* Location Link Holographic Style */
.contact-info .location-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 2px 0;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary)) 0 100% / 0% 2px no-repeat;
    transition: background-size 0.3s ease;
}

.contact-info .location-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
    background-size: 100% 2px;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-glass-border);
    margin-top: 50px;
}

/* Animations */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 992px) {

    /* Hide custom cursor on mobile/tablet */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery Page Styles - Moved here for broader mobile support */
    .gallery-header {
        padding-top: 220px !important;
        margin-top: 0 !important;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 10px;
    }

    .mobile-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
    }

    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 20px;
        transition: 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        padding: 30px 20px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .service-card.highlight .feature-list i {
        color: #FFD700;
    }



    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 30px;
    }

    .gallery-info p {
        font-size: 0.95rem;
    }

    /* Contact Form Button */
    .contact-form .btn-primary {
        background: linear-gradient(135deg, var(--color-primary), #00b8cc);
        border: none;
        padding: 15px;
        font-size: 1rem;
        letter-spacing: 2px;
        margin-top: 10px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        width: 100%;
    }

    .contact-form .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #00b8cc, var(--color-primary));
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .contact-form .btn-primary:hover::before {
        opacity: 1;
    }

    .contact-form .btn-primary:hover {
        box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
        transform: translateY(-3px) scale(1.02);
        color: #fff;
    }

    /* Header Contact Button Override */
    .nav-list .btn-primary {
        background: transparent;
        border: 1px solid var(--color-primary);
        color: var(--color-primary);
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
        padding: 12px 40px;
        width: 100%;
        text-align: center;
    }

    .nav-list .btn-primary:hover {
        background: var(--color-primary);
        color: #000;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Optimize Contact Info for Mobile */
    .info-item {
        padding: 15px;
        gap: 15px;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }

    .info-item h4 {
        font-size: 0.8rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }
}

/* TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {

    /* Hide custom cursor on touch devices */
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Reset cursor to auto */
    * {
        cursor: auto !important;
    }

    /* Ensure buttons/links feel clickable */
    .btn:active,
    .nav-link:active {
        transform: scale(0.96);
    }
}

/* NAVIGATION & LAYOUT FIXES FOR MOBILE */
@media (max-width: 992px) {

    /* Ensure header doesn't trap fixed nav if backdrop-filter causes issues */
    .header {
        /* Remove potential containing block triggers if needed, though usually fine */
        margin-bottom: 0;
    }

    /* Ensure Nav is always on top of everything when active */
    .nav {
        z-index: 9999;
        /* Ensure it covers full screen effectively */
        height: 100dvh;
        /* Use dynamic viewport height for mobile browsers */
        padding-top: 80px;
        /* Space for close button/header */
        overflow-y: auto;
        /* Allow scrolling if menu is tall */
    }

    .nav-list {
        gap: 30px;
        padding-bottom: 50px;
    }

    .nav-link {
        font-size: 1.8rem;
        display: block;
        padding: 10px;
    }

    /* Make toggle button very visible */
    .mobile-toggle {
        z-index: 10001;
        /* Higher than nav to ensure clickable to close */
    }
}

@media (max-width: 768px) {

    /* Improve Section Paddings */
    .section {
        padding: 50px 0;
    }

    .hero {
        padding-top: 100px;
        /* More space for header */
    }

    /* Hero Content Stacking */
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    /* About Grid Stacking */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact Section Stacking */
    .contact-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .contact-wrapper::before,
    .contact-wrapper::after {
        opacity: 0.3;
        /* Reduce glow overlap on small screens */
    }

    /* Gallery Grid (if on gallery page) */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Glow Elements Constraint */
    .hero-bg-glow,
    .circle-glow,
    .contact-wrapper::before,
    .contact-wrapper::after {
        max-width: 100%;
        /* Prevent overflowing the viewport */
        width: 100%;
        overflow: hidden;
    }

    /* Ensure images never overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}