* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@font-face {
    font-family: playfair;
    src: url(Playfair-VariableFont_opsz\,wdth\,wght.ttf);
}

@font-face {
    font-family: title;
    src: url(TitilliumWeb-Black.ttf);
}

body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #fff;
    color: #000000;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

/* Contact Hero Section */
.contact-hero {
    width: 100vw;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-image: url(Background.png);
    background-size: cover;
}

.contact-hero h1 {
    color: #fff;
    font-family: 'playfair';
    font-size: 3.5vw;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 4px;
    background: #e9eef5;
    margin: 18px auto 18px auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    animation: expandDivider 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.contact-hero .subtitle {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    /* font-weight: 300; */
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 1.5px;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandDivider {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Contact Info Section */
.contact-info-section {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0px;
    background: none;
}

.contact-left {
    color: #1D3655;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 30px;
}

.contact-label {
    color: #1D3655;
    font-size: 1rem;
    margin-bottom: 10px;
}

.get-in-touch {
    font-family: 'playfair', serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #1D3655;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.contact-card {
    background: #e9eef5;
    color: #23364d;
    /* border-radius: 8px; */
    padding: 32px 28px 24px 28px;
    min-width: 240px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 24px 0 rgba(44, 70, 99, 0.08);
    position: relative;
    gap: 12px;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #23364d;
}

.contact-card p {
    font-size: 1rem;
    color: #23364d;
    margin: 0;
}

.icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.location-icon {
    background-image: url('Production icon.png');
    /* Replace with location icon if available */
}

.email-icon {
    background-image: url('Free Consultation Icon.png');
    /* Replace with email icon if available */
}

.phone-icon {
    background-image: url('solution icon.png');
    /* Replace with phone icon if available */
}

.contact-info-section .contact-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.contact-info-section .contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-section .contact-card:nth-child(2) {
    animation-delay: 0.3s;
}

.contact-info-section .contact-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: fixed;
    z-index: 10;
}

.logo {
    font-size: 28px;
    color: #102a43;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #102a43;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: #e5ebf4;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    color: #102a43;
    cursor: pointer;
    gap: 10px;
    text-decoration: none;
}

.order-btn i{
    font-size: 20px;
    text-decoration: none;
}

a{
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #102a43;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    z-index: 1000;
}

.mobile-menu a {
    margin: 20px 0;
    text-decoration: none;
    color: #102a43;
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 3rem;
    color: #102a43;
    cursor: pointer;
}

@media (max-width: 768px) {

    header {
        width: 100vw;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background: #fff;
        position: relative;
        z-index: 10;
    }

    .nav-links,
    .order-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.show {
        display: flex;
    }

    .logo {
        width: 100%;
        height: 100%;
    }

    .logo img {
        height: 30px;
    }
}



.button-wrapper {
    position: relative;
    display: inline-block;
}

.fancy-button {
    background: white;
    color: #020D3F;
    font-size: 1rem;
    font-weight: bold;
    padding: 20px 60px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.fancy-button:hover {
    background: linear-gradient(135deg, #23364d 0%, #2c4663 100%);
    color: #fff;
}

/* Corner lines */
.button-wrapper::before,
.button-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.button-wrapper::before {
    top: -10px;
    left: -10px;
    border-top: 1px solid white;
    border-left: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper::after {
    bottom: -10px;
    right: -10px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    width: 0;
    height: 0;
    opacity: 0;
}

.button-wrapper:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.button-wrapper:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}


/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #020D3F;
    margin: 2px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



@media (max-width: 768px) {

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none;
        /* overflow-x: hidden; */
    }

    .header {
        padding: 16px 20px;
        overflow-x: hidden;
    }

    .logo img {
        height: 30px;
        width: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 20px;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        color: #020D3F;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 2px;
        padding: 20px 0;
        position: relative;
        text-decoration: none;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .nav.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.1s;
    }

    .nav.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: #23364d;
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .nav a:hover {
        color: #2c4663;
        transform: scale(1.05);
    }

    .nav a:hover::after {
        width: 100%;
    }

    .order-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .contact-info-section {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-cards {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .contact-card {
        min-width: 220px;
        width: 100%;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {

    .contact-hero .subtitle {
        font-size: 1rem;
        color: #e9eef5;
        /* max-width: 600px; */
        margin: 0;
        line-height: 1.6;
    }

    /* Contact Info Section */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        /* align-items: flex-start; */
        justify-content: center;
        gap: 40px;
        padding: 40px 0px;
        background: none;
    }

    .contact-left {
        min-width: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 0px;
    }

    .contact-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-card {
        background: #e9eef5;
        color: #23364d;
        /* border-radius: 8px; */
        padding: 32px 28px 24px 28px;
        min-width: 240px;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 4px 24px 0 rgba(44, 70, 99, 0.08);
        position: relative;
        gap: 12px;
    }

    .contact-card h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #23364d;
    }

    .contact-card p {
        font-size: 0.9rem;
        color: #23364d;
        margin: 0;
    }

    .icon {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .location-icon {
        background-image: url('Production icon.png');
        /* Replace with location icon if available */
    }

    .email-icon {
        background-image: url('Free Consultation Icon.png');
        /* Replace with email icon if available */
    }

    .phone-icon {
        background-image: url('solution icon.png');
        /* Replace with phone icon if available */
    }

    /* Next Section Placeholder */
    .next-section {
        min-height: 200px;
        background: none;
        margin-top: 60px;
    }

    .divider {
        width: 120px;
        height: 2px;
        background: #e9eef5;
        margin: 10px auto 10px auto;
        border-radius: 2px;
    }

    .contact-hero {
        margin-top: 0px;
    }


    .contact-hero h1 {
        font-size: 2rem;
    }

    .get-in-touch {
        width: 100%;
        white-space: nowrap;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .contact-card {
        padding: 20px 14px 16px 14px;
        min-width: 0;
        width: 100%;
    }

    main {
        margin-top: 0px;
        padding: 0px 0px;
    }
}

/* CONTACT SECTION */
/* Contact Form Section with Timeline Animation */
.contact-form-section {
    max-width: 1200px;
    width: 100%;
    background: #e3ecf6;
    padding: 50px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.contact-form-container {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    /* Add padding/margin as needed */
}

.form-left,
.form-right {
    width: 50%;
}

.form-left {
    background: #1e3954;
    padding: 32px 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-left input,
.form-left textarea {
    background: #e3ecf6;
    border: none;
    border-radius: 2px;
    padding: 12px 14px;
    font-size: 15px;
    color: #1e3954;
    font-family: 'Montserrat', sans-serif;
    resize: none;
}

.form-left textarea {
    min-height: 90px;
    max-height: 180px;
}

.form-left button {
    background: #e3ecf6;
    color: #1e3954;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    padding: 12px 0;
    /* margin-top: 8px; */
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.form-left button:hover {
    background: #1e3954;
    color: #e3ecf6;
    border: 1px solid #e3ecf6;
}

.form-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 24px;
}

.form-query {
    color: #1e3954;
    font-size: 16px;
    margin-bottom: 12px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #1e3954;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.form-desc {
    color: #1e3954;
    font-size: 15px;
}

@media (max-width: 900px) {
    .contact-form-container {
        flex-direction: column;
        gap: 32px;
        padding: 32px 8px;
    }

    .form-right {
        padding-left: 0;
        align-items: flex-start;
    }
}


@keyframes timelineAppear {
    to {
        opacity: 0.3;
    }
}

/* Timeline dots */
.contact-form-section::after {
    display: none;
    content: '';
    position: absolute;
    left: 50%;
    top: 20%;
    width: 8px;
    height: 8px;
    background: #1d3750;
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: dotAppear 0.6s ease-out 1.2s forwards;
}

/* Animation class for when timeline is active */
.contact-form-section.animate-timeline .form-left input,
.contact-form-section.animate-timeline .form-left textarea,
.contact-form-section.animate-timeline .form-left button,
.contact-form-section.animate-timeline .form-right h2,
.contact-form-section.animate-timeline .form-right p {
    animation-play-state: running;
}

@keyframes dotAppear {
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Responsive animations */
@media (max-width:600px) {

    /* CONTACT SECTION */
    .contact-form-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        /* background: #2d4a6a; */
        padding: 30px 0;
        border-bottom: 0px solid #ABABAB;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out 0.5s forwards;
    }

    .contact-form-container {
        background: #e3edf7;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        /* border-radius: 4px; */
        padding: 0px;
        max-width: 1200px;
        width: 100%;
        gap: 30px;
        opacity: 0;
        transform: scale(0.95);
        animation: scaleIn 0.6s ease-out 0.8s forwards;
    }

    .form-left {
        background: #1d3750;
        padding: 20px 12px;
        border-radius: 2px;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        opacity: 1;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease-out 1.1s forwards;
    }

    .form-left form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .form-left input,
    .form-left textarea {
        background: #e3edf7;
        border: none;
        padding: 12px 10px;
        border-radius: 2px;
        font-size: 15px;
        color: #1d3750;
        resize: none;
        opacity: 1;
        transform: translateY(15px);
        animation: slideInUp 0.5s ease-out forwards;
        transition: all 0.3s ease;
    }

    .form-left input:nth-child(1) {
        animation-delay: 1.4s;
    }

    .form-left input:nth-child(2) {
        animation-delay: 1.6s;
    }

    .form-left input:nth-child(3) {
        animation-delay: 1.8s;
    }

    .form-left textarea {
        animation-delay: 2.0s;
        min-height: 80px;
    }

    .form-left button {
        background: #e3edf7;
        color: #1d3750;
        font-weight: bold;
        border: none;
        padding: 12px 0;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(15px);
        animation: slideInUp 0.5s ease-out 2.2s forwards;
    }

    .form-left button:hover {
        background: #c7d6e6;
        transform: translateY(-2px);
    }

    .form-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #1d3750;
        min-width: 100%;
        padding: 10px;
        opacity: 1;
        transform: translateY(20px);
        animation: slideInUp 0.6s ease-out 1.3s forwards;
    }

    .form-right h2 {
        font-size: 2.5rem;
        font-weight: 500;
        margin: 0 0 12px 0;
        font-family: 'Playfair', serif;
        letter-spacing: 2px;
        color: #1D3655;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease-out 1.5s forwards;
    }

    .form-right p {
        margin: 0 0 12px 0;
        font-size: 1rem;
        color: #1D3655;
        opacity: 0;
        transform: translateY(15px);
        animation: fadeInUp 0.5s ease-out 1.7s forwards;
    }

    .form-right p:last-child {
        animation-delay: 1.9s;
    }

    /* Hide timeline elements on mobile */
    .contact-form-section::before,
    .contact-form-section::after {
        display: none;
    }

}

/* Fade out animation */
@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

.contact-form-section.fade-out {
    animation: fadeOut 0.6s forwards;
}

/* Footer Styles */
.footer {
    width: 100vw;
    background-image: url(Background.png);
    background-size: cover;
    padding: 50px 20px;
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 2;
    min-width: 200px;
    margin-bottom: 24px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 16px;
}

.footer-desc {
    max-width: 500px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials a {
    display: inline-block;
    margin-right: 16px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #ffffff;
}

.footer-right {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.footer-right h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.footer-contacts {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    color: #ffffff;
    font-size: 15px;
}

.footer-contacts li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-size: 15px;
}

.footer-contacts i {
    margin-right: 10px;
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e076;
    margin-top: 24px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 4px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
    }

    .footer-left,
    .footer-right {
        min-width: 0;
        width: 100%;
    }

    .footer-right {
        margin-top: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 30px 10px;
        margin: 0;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-desc {
        font-size: 14px;
    }

    .footer-right h3 {
        font-size: 18px;
    }

    .footer-contacts {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 12px;
    }
}

/* Responsive styles for contact form section */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
        padding: 20px 10px;
        opacity: 1;
    }

    .form-left,
    .form-right {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-left {
        margin-bottom: 24px;
    }

    #contactForm input,
    #contactForm textarea {
        width: 100%;
        font-size: 1rem;
    }

    #contactForm button {
        width: 100%;
        font-size: 1rem;
    }
}

header.hide-navbar {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

header {
    transition: transform 0.3s ease;
}

/* /Users/vedantmodh/Downloads/public_html/style.css */
#mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    z-index: 10000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  #mobileMenu.show {
    transform: translateX(0);
  }
  
  #mobileMenu a {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 10px 0;
  }
  
  #mobileMenu.show a {
    opacity: 1;
    transform: translateX(0);
  }
  
  #mobileMenu.show a:nth-child(6) { transition-delay: 0.1s; }
  #mobileMenu.show a:nth-child(5) { transition-delay: 0.2s; }
  #mobileMenu.show a:nth-child(4) { transition-delay: 0.3s; }
  #mobileMenu.show a:nth-child(3) { transition-delay: 0.4s; }
  #mobileMenu.show a:nth-child(2) { transition-delay: 0.5s; }