@media (max-width: 991.98px) {
    /* Theme.css handles this */
}

/* Prevent horizontal scroll on mobile */
body {
    max-width: 100%;
    position: relative;
}

.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 1200px) {

    .container,
    .container-fluid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Shared typewriter cursor */

* {
    padding: 0;
    margin: 0;
}


/* Responsive navbar text margin */
.nav-text {
    margin-left: auto;
    display: flex;
}

@media (max-width: 991.98px) {
    .nav-text {
        margin-left: 0;
        justify-content: center;
    }
}

.logo {
    display: block;
    margin-left: 5%;
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
    }
}

.navbar-brand {
    margin-left: -10px;
}

header {
    background-color: rgb(6, 2, 27);
}

.toggle-btn {
    color: white;
}

.sticky {
    position: sticky;
    top: 0;
    gap: 20px;
    z-index: 1000;
}


h1 {

    margin-top: 10%;
    color: white;
    font-size: 25px;
    font-family: "myfont";
    word-wrap: break-word;
    overflow-wrap: break-word;

    background-image: url(assets/photo-1732535725600-f805d8b33c9c.avif);
    background-size: 200%;
    background-position: 0 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-background 6s infinite alternate linear;

}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@font-face {
    font-family: "myfont";
    src: url(Assets/LuckiestGuy-Regular.ttf);
}

h2 {
    color: white;
    font-size: 20px;
    font-weight: 400;
}


.sec-btn {
    margin-top: 10%;
    width: 100%;
    max-width: 250px;
    height: auto;
    background-color: rgb(131, 172, 70);
    border-radius: 10px 10px 10px 10px;
    white-space: normal;
}

.wave-text span {
    display: inline-block;
    color: white;
    font-size: 30px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}

.wave-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.wave-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.wave-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.wave-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.wave-text span:nth-child(8) {
    animation-delay: 0.7s;
}

.wave-text span:nth-child(9) {
    animation-delay: 0.8s;
}

.wave-text span:nth-child(10) {
    animation-delay: 0.9s;
}

.wave-text span:nth-child(11) {
    animation-delay: 1.0s;
}

.wave-text span:nth-child(12) {
    animation-delay: 1.1s;
}

.wave-text span:nth-child(13) {
    animation-delay: 1.2s;
}

.wave-text span:nth-child(14) {
    animation-delay: 1.3s;
}

.wave-text span:nth-child(15) {
    animation-delay: 1.4s;
}

.wave-text span:nth-child(16) {
    animation-delay: 1.5s;
}

.wave-text span:nth-child(17) {
    animation-delay: 1.6s;
}

.wave-text span:nth-child(18) {
    animation-delay: 1.7s;
}

.wave-text span:nth-child(19) {
    animation-delay: 1.8s;
}

.wave-text span:nth-child(20) {
    animation-delay: 1.9s;
}

.wave-text span:nth-child(21) {
    animation-delay: 2.0s;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .wave-text span {
        font-size: 20px;
        /* Significantly smaller for mobile */
    }

    /* Adjust animation amplitude for smaller text if needed */
    @keyframes wave {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }
}

.space {
    margin-right: 5px;
}

.paradise {
    white-space: nowrap;
}


.btn {
    position: relative;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    top: 10%;
}

.hologram {
    border: 2px solid rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.hologram span {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.hologram span::before,
.hologram span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    opacity: 0;
    filter: blur(1px);
    transition: all 0.3s ease;
}

.hologram span::before {
    top: -2px;
    color: #ff00ff;
    transform: translateX(0);
    animation: glitch 2s infinite;
}

.hologram span::after {
    bottom: -2px;
    color: #00ffff;
    transform: translateX(0);
    animation: glitch 2s infinite reverse;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 255, 255, 0.8),
            transparent);
    top: 0;
    animation: scan 2s linear infinite;
    filter: blur(1px);
}

@keyframes glitch {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.3;
    }

    20% {
        transform: translateX(-5px);
        opacity: 0.5;
    }

    40% {
        transform: translateX(5px);
        opacity: 0.7;
    }

    60% {
        transform: translateX(-3px);
        opacity: 0.5;
    }

    80% {
        transform: translateX(3px);
        opacity: 0.3;
    }
}

@keyframes scan {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

.sec-img {
    border: 1px solid white;
}

.zoom-out {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.zoom-out:hover {
    transform: scale(1);
}

footer {
    background-color: rgb(6, 2, 27);
}

.follow {
    font-size: 15px;
    color: gray;
}

.right {
    color: gray;
    font-size: 15px;
}

section {
    background-color: white;
}

@media (max-width: 768px) {
    h3 {
        font-size: 28px;
        padding: 0 10px;
        word-wrap: break-word;
    }
}

h4 {
    font-size: 30px;
    color: black;
    margin-left: 15%;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    h4 {
        margin-left: 0;
        font-size: 24px;
    }
}

h5 {
    font-size: 20px;
    text-decoration: none;
    color: black;
    margin-left: 15%;
    font-weight: 600;
}

@media (max-width: 768px) {
    h5 {
        margin-left: 0;
        font-size: 16px;
    }
}

main {
    background-color: white;
}

.about-us {
    font-size: 20px;
    color: black;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


.boxes {
    background-color: white;
    border: 2px solid black;
    padding: 32px;
    cursor: pointer;
    border-radius: 10px 10px 10px 10px;
    transform: 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 575.98px) {
    .boxes {
        padding: 16px;
    }
}

.boxes:hover {
    background: rgb(50, 72, 197);
    box-shadow: -4px 4px 6px black;
    transform: translateY(-3px);
}

article {
    background-color: white;
}


.art-img {
    border-radius: 10px 10px 10px 10px;
    width: 100% !important;
    max-width: 400px;
    height: auto !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.work {
    font-size: 30px;
    color: black;
    font-weight: 500;
}

.main-logo {
    max-width: 200px;
    height: auto;
}

#feedbackForm .btn-primary {
    background-color: #0d6efd !important;
    border: 1px solid #0d6efd !important;
    top: 0;
    /* Reset the top matching other buttons if needed, or keep it */
}

#feedbackForm .btn-primary:hover {
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}

/* Service Box Button */
.box-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.boxes:hover .box-btn {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    color: white;
}

/* Service Icons */
.boxes h4 i {
    font-size: 1.2em;
    vertical-align: middle;
    color: inherit;
    /* Inherit color from h4 */
}