/* Reset body and html margins */
html, body {
    height: 100vh;
    background: black;
    color: white;

    height: 100%; 
    margin: 0;    
    padding: 0;   
    scroll-behavior: smooth;
}

:root {
    --font-inter: "Inter", sans-serif;
    --font-hankenGrotesk: "Hanken Grotesk", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);

    --primary: #04aa5c;
    --primary-hover: #00cc70;
    --secondary: #06ce71;
    --secondary-hover: #04aa5c;
    --primary-color2: #00a359;

    --primary-color1: #00a359;;

    --sec-font-family: "Funnel Display", serif;
    --sec-font-family2: "Atkinson Hyperlegible Next", serif;
}

/* Hover effect */
.nav_links .link:hover {
    color: var(--primary-hover) !important; /* Change text color on hover */
}

.nav_links .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; /* Position the underline at the bottom */
    width: 0; /* Initially set width to 0 */
    height: 1px; /* Thickness of the underline */
    background-color: var(--primary-color2) !important; /* Underline color */
    transition: width 0.4s ease; /* Smooth expand effect */
}

.nav_links .link:hover::after {
    width: 100%; /* Expand underline to full width on hover */
}

.nav_links a {
    margin-top: 0.25rem;
}

.dropdown-menu li a:hover {
    color: var(--primary-hover);
}

/* Custom width for button */
.btn-custom-width {
    width: 10rem; 
    display: inline-block;
}

.dropdown {
    margin-bottom: 0.15rem !important;
}

.dropdown-menu li a {
    color: rgb(181, 181, 181);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}

.dropdown-menu li {
    padding: 3px 12px;
}

/* first section */
/* Contact Section */

.talk-to-lvelup-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 2rem;
    padding-top: 3rem;
    background: black;
    position: relative;
    z-index: 2;
    color: white;
    overflow: hidden; 
}

.talk-to-lvelup-container h2 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1.2;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family2);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

#transition-text {
    display: inline-block;
    position: relative;
    width: 9.45ch;
}

.talk-to-lvelup-container h3 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1.2;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family2);
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Contact Section */
.talk-to-lvelup-container {
    position: relative;
    overflow: hidden; /* Prevents overflow */
}

/* Rectangles container */
.rectangles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual rectangles */
.hover-rectangle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0); /* Initially invisible */
    transition: background 0.5s ease-in-out, opacity 0.8s ease-in-out;
    pointer-events: auto; /* Allows hover */
}

/* Hover Effect */
.hover-rectangle:hover {
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    opacity: 0.3;
}


.talk-to-lvelup-container span {
    font-weight: 400;

    line-height: 1;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family);

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline;
}

.talk-to-lvelup-container p {
    color: #d7d7d7;

    margin-top: 1.5rem;
    font-size: 1.2rem;
    max-width: 820px;
    opacity: 0.8;
    line-height: 1.5;
    font-family: var(--sec-font-family2);
}

/* auto button */
.demo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 3.8rem;

    text-decoration: none;

    padding: 1.8rem 0.2rem;
    font-size: 1rem;
    font-family: var(--font-inter);
    font-weight: 700;
    border-radius: 2rem;
    z-index: 1;

    animation: moveUpDown 2s ease-in-out infinite; /* Apply animation to button */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}


/* Arrow Icon Styling */
.arrow-icon {
    width: 2rem;
    height: auto;
    transition: transform 0.3s ease, fill 0.3s ease; /* Include fill in the transition */
}

.arrow-icon path {
    fill: var(--white-color); /* Initial color */
}

.arrow-icon:hover path {
    fill: var(--primary-color1); /* Change color on hover */
}

/* Animation to move the button up and down */
@keyframes moveUpDown {
    0% {
        transform: translateY(0); /* Start at normal position */
    }
    50% {
        transform: translateY(-20px); /* Move the button up */
    }
    100% {
        transform: translateY(0); /* Return to normal position */
    }
}



@media (max-width: 768px) {
    .talk-to-lvelup-container {
        height: auto;
        padding: 6.5rem 1.5rem;
    }
    .talk-to-lvelup-container h2 {
        font-size: 2rem;
    }
    .talk-to-lvelup-container h3 {
        font-size: 2rem;
    }
    .talk-to-lvelup-container p {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .talk-to-lvelup-container {
        margin-top: 4rem;
    }
    .talk-to-lvelup-container h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .talk-to-lvelup-container {
        margin-top: 4rem;
    }
    .talk-to-lvelup-container h2 {
        font-size: 1.7rem;
    }
    .talk-to-lvelup-container h3 {
        font-size: 1.5rem;
    }
}


/* Contact section styling */
.contact-container {
    display: flex;
    align-items: center;
    height: 110vh;
    border-radius: 0rem;
    margin: 0;
    background: transparent;

    margin: 0rem;
    color: rgb(75, 75, 75);
}
.form-container {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 2rem 5rem;
    padding-bottom: 1rem;
    background-image: linear-gradient(#e6e6e6 30%, transparent);
    border-radius: 20px !important;
}

.form-container h2 {
    color: rgb(39, 39, 46);
    margin-bottom: 0px;
    font-size: 1.4rem;
    
    font-family: var(--sec-font-family2);
}

.form-container h2 span {
    color: blue;
}

.form-container p {
    color: #6a6b6c;
    font-size: 0.8rem;
    font-weight: 500;
    padding-bottom: 1rem;
    padding-left: 0.4rem;

    white-space: nowrap;
}

.form-container a {
    color: #007bff;
    text-decoration: none;
}

/* 00- */

.wrapper {
    width: 120px; /* Keep wrapper width fixed */
    position: relative; /* Ensure it does not affect nearby elements */
    height: fit-content;
    align-items: end;
}

.wrapper .btn {
    margin-top: 0.2rem;
    height: 43px;
    padding: 0 15px;
    background: #eaf0f7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
    min-width: 100%;
}

.wrapper .btn span {
    display: flex;
    align-items: center;
    gap: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 50px; /* Keep it compact */
}

.wrapper.active .btn span {
    max-width: 100%; /* Allow full width when expanded */
}

.wrapper .content {
    display: none;  /* Fully hidden by default */
    background-color: #eaf0f7; /* Light blue background */
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: 5px;
    border-radius: 7px;
    width: 200px; /* Initial width */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    transition: width 0.3s ease-in-out;
    
}

.wrapper.active .content {
    display: block;  /* Show only when active */
    height: fit-content; 
    width: 250px; /* Expand width without affecting layout */
}

.wrapper .content .search {
    position: relative;
    width: 100%;
    margin-bottom: 0.5rem;
}

.content .search input {
    height: 30px;
    width: 100%;
    font-size: 14px;
    padding: 0 1rem;
    
    outline: none;
    border: 1px solid #b3b3b3;
    color: black;
    border-radius: 10px;
    background-color: #eaf0f7;

    font-family: var(--sec-font-family2);
}

.content ul {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;

    color: black;
    font-weight: 400;

    padding-bottom: 1rem;
    font-family: var(--sec-font-family2);
}

ul li {
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    transition: 0.3s ease-in-out;
}

ul li:hover {
    height: fit-content;
}
#country-list li {
    padding: 0.5rem;
}

#country-list li:hover {
    background-color: #e8e8e8;
}

ul li.hide {
    display: none;
}

.wrapper .btn span .iconify {
    width: 24px !important; /* Ensure fixed width */
    height: 24px !important; /* Ensure fixed height */
    font-size: 20px !important; /* Ensure fixed size */
    flex-shrink: 0; /* Prevent shrinking */
}

.wrapper .btn span {
    font-size: 12px;
    font-weight: 500; /* Medium weight */
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* Prevent wrapping */
}

.wrapper .btn span,
.wrapper.active .btn span {
    max-width: none; /* Ensure it does not change when clicked */
}


/* 01 */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 0.7rem;
}

/* Icon positioning */
.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    right: 10px; /* Align the icon to the right */
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6a6b6c;

}

.input-wrapper #msg-icon {
    top: 10px; /* Align the icon to the top */
    transform: translateY(0); /* Remove vertical centering */
}

/* Input styling */
.input-wrapper input, .input-wrapper textarea {
    padding-left: 30px; /* Space for the icon */
    width: 100%;
    padding: 10px;
    border: 1px solid transparent; /* Initially transparent border */
    border-radius: 14px;
    font-size: 14px;
    background-color: #eaf0f7; /* Light blue background */
    color: #333; /* Dark text color for better contrast */
    box-sizing: border-box; 
}

/* Show border only on hover */
.input-wrapper input:hover, .input-wrapper textarea:hover {
    border-color: #007bff; /* Blue border on hover */
    outline: none; /* Remove any default outline */
}

/* Focus state to show the border */
.input-wrapper input:focus, .input-wrapper textarea:focus {
    border-color: #007bff; /* Blue border when focused */
    background-color: #eaf0f7; 
    outline: none;
}

input {
    height: 3rem;
    font-family: var(--sec-font-family2);
    font-size: 1rem;
    font-weight: 500;
}

/* input fields */
#name-input, #company-input {
    width: 14rem;
}

#email-input {
    width: 30rem;
}

/* Textarea styling */
textarea {
    resize: none;
    overflow: auto;
    scrollbar-width: none;
}

textarea::-webkit-scrollbar {
    display: none;
}

/* Attachment styling */
.attachment-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

textarea { 
    font-family: var(--sec-font-family2);
    font-size: 1rem;
    font-weight: 450;
}

#msg-container {
    width: 30rem;
}

/* 01 */
/* Submit button styling */
.button-row {
    padding: 12px 20px;
    background-image: radial-gradient(circle at 0 0, #25a6f9, #244cf8);
    border: 1px solid #fafdff;
    font-size: 0.8rem;
    font-weight: 500;

    color: white;
    border: none;
    border-radius: 19px;
    cursor: pointer;

    width: 11rem;
    height: auto;
    margin-top: 1.3rem;

    transition: all 0.5s ease-in-out;
}

.button-row:hover {
    background-image: radial-gradient(circle at 0 0, #25a6f9, #6985ff);
}


/* Characters count in the message field */
#char-count {
    display: flex;
    align-items: flex-start; 
    justify-content: flex-start;
    font-size: 0.75rem;
    color: #acacac;
    line-height: 1.2; 
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0.2rem;

    font-family: var(--sec-font-family2);
}

#char-remaining {
    margin-top: 0rem;
    padding-left: 0.3rem;
    font-size: 0.75rem;
    
    font-family: var(--sec-font-family2);
}


/* footer section */
.footer-column span {
    font-size: 0.9rem;
    color: rgb(255, 255, 255, 1);
    font-family: var(--font-hankenGrotesk);
    font-weight: 500;
    text-decoration: none;
    position: relative;

    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-column .social-icons {
    gap: 1.2rem;
}

.footer-column i {
    font-size: 1.1rem;
    color: rgb(255, 255, 255, 1);
}

.footer-column .social-icons a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column .social-icons a:hover span,
.footer-column .social-icons a:hover i {
    color: var(--primary-hover);
}


/* Default styles for form validation icons */
.validation-icon {
    position: absolute;
    right: 36px;
    top: 45%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
}


/* Success and error styles */
.success {
    border: 1px solid #007bff !important;
}

.error {
    border: 1px solid #fb6161 !important;
}

/* Remove validation icons for the message field */
textarea[name="message"] + .validation-icon {
    display: none;
}

@media (max-width: 400px) {
    .validation-icon {
        position: absolute;
        right: 91px;
        top: 45%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
    }
}


/* location section */
.visit-lvelup {
    height: 100vh;
    margin-top: 2rem;
    padding: 80px 0;
    background: url("/static/images/map_bg.avif");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative; /* Needed for overlay */
    display: flex;
    justify-content: flex-start;
    align-items: start;
    margin-left: 0rem !important;
}

/* Overlay with black top/bottom and spotlight on middle-right */
.visit-lvelup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(to bottom, 
        black 0%, 
        black 0%, 
        rgba(19, 19, 19, 0.8) 30%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.8) 60%, 
        black 75%, 
        black 90%
    ), 
    radial-gradient(circle at 80% 50%, 
        rgba(255, 255, 255, 0.2) 45%, 
        rgba(0, 0, 0, 0.9) 70%
    );
    
    z-index: 1;
}

/* Ensure content appears above the overlay */
.visit-container {
    position: relative;
    z-index: 2;
}

.visit-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 2rem !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.col {
    flex: 1;
    padding: 20px;
}

.left {
    max-width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.left h2 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family2);
    text-wrap: nowrap;

    padding-top: 2.5rem;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
}

.left p {
    color: #d7d7d7;

    margin-top: 3rem;
    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    line-height: 1.5;
    font-family: var(--sec-font-family2);
}

.left a {
    color: #d7d7d7;

    margin-top: 1.5rem;
    font-size: 1rem;
    max-width: 700px;
    opacity: 0.8;
    line-height: 1.5;
    font-family: var(--sec-font-family2);
}


.right {
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    font-family: var(--sec-font-family2);

}

.location-box {
    background-color: transparent;
    color: #fff;
    padding: 20px;
    border: 0.5px solid #fff;
    border-radius: 10px;
    text-align: start;
    max-width: 300px;

    margin-left: 6rem;
    margin-bottom: -4rem;
}

.location-box h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.location-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.location-actions span {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #525252;
}

.map-button {
    background-image: linear-gradient(158deg, #00e5d1 3%, #2577f9 99%);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;

    font-family: var(--sec-font-family2);
}

.map-button:hover {
    background-image: linear-gradient(158deg, #5fcec5 3%, #5989d6 99%);
}

/* anime */
/* Initial state: hidden and slightly moved down */
.left h2, .left p, .left a, .right h3, .right span, .right a {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 1s ease-out;
}

/* Animation class: fades in and moves up */
.left .visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* FAQ Section */
.faq-section-contact {
    background-color: transparent;
    padding: 40px 30px;
    text-align: center;
    display: flex;
}

/* Centered FAQ Container */
.faq-container-contact {
    max-width: 800px;  /* Increased width */
    margin: 0 auto;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.faq-divider {
    width: 70%;      /* Makes the line 70% of the width */
    margin: 0 auto;  /* Centers the line */
    border: none;    
    border-top: 1px solid rgba(204, 204, 204, 0.5); /* Light gray line */
    margin-bottom: 100px; /* Adds spacing below */
}


/* Title & Subtitle */
.faq-section-contact h2 {
    font-size: 3.8rem;
    font-weight: 450;
    line-height: 1;
    letter-spacing: 0.03rem;
    font-family: var(--sec-font-family2);

    padding-bottom: 2rem;

    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
}

.faq-subtitle {
    color: #d7d7d7;

    font-size: 1rem;
    opacity: 0.6;
    max-width: 700px;
    line-height: 1.5;
    font-family: var(--sec-font-family2);

    margin-bottom: 3rem;
    margin-left: 1.6rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FAQ Items */
.faq-item {
    background: transparent;
    border: 1px solid #525252;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    margin-bottom: 20px;
    text-align: left;
    overflow: hidden;
}

/* FAQ Items - Initially hidden below */
.faq-item {
    opacity: 0;
    transform: translateY(30px); /* Move items below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When FAQ item enters the viewport */
.faq-item.visible {
    opacity: 1;
    transform: translateY(0); /* Moves up smoothly */
}


/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 20px 10px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;

    color: #d7d7d7;

    font-size: 1rem;
    opacity: 0.6;
    line-height: 1;
    font-family: var(--sec-font-family2);
}

.faq-question:hover {
    color: rgb(255, 255, 255);
    opacity: 0.8;
}

/* Expand/Collapse Icon */
.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* FAQ Answer (Fixing Expansion) */
.faq-answer {
    padding: 0px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: transparent;

    color: #f1f1f1;

    font-size: 1rem;
    opacity: 0.8;
    max-width: 700px;
    line-height: 1.5;
    font-family: var(--sec-font-family2);
}

/* Expanded Answer */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust height based on content */
    padding: 15px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container-contact {
        max-width: 95%;
    }
    .faq-section-contact h2 {
        font-size: 1.8rem;
    }
    .faq-question {
        padding: 17px 8px;
        font-size: 0.84rem;
        line-height: 1;
    }
     .faq-answer {
        padding: 0px 8px;
        font-size: 0.84rem;
        line-height: 1.2;
    }
}



/* Container for flash messages */
.flash-messages-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    z-index: 9999;
}

/* Style for individual flash messages */
.flash {
    display: inline-block;
    padding: 0.5rem 2.5rem;
    margin: 5px;
    margin-top: 4rem;
    border-radius: 30px;
    font-size: 16px;
    position: relative;
    animation: none;  /* Disable fade-out animation */
}

/* Close button with SVG icon */
.close-btn {
    position: absolute;
    top: 0px;
    right: 4px;
    cursor: pointer;
    z-index: 100003;
    font-size: 1.3rem !important;
    color: #f80101 !important;
    margin-top: 1rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    animation: blink 1s infinite; /* Apply the blinking animation */
}

/* Blinking animation */
@keyframes blink {
    0% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 0.1; /* Hidden */
    }
    100% {
        opacity: 1; /* Fully visible again */
    }
}

/* Optional: Hover effect to make the close button more interactive */
.close-btn:hover {
    opacity: 0.7; /* Slight opacity change on hover */
}


/* Success message style */ 
.flash.success {
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-hankenGrotesk);
    background-color: #69aff5;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#fff 30%, #a0a0a0 84%);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 100002 !important;
}

/* Error message style */
.flash.error {
    font-weight: 500;
    font-size: 1rem;
    font-family: var(--font-hankenGrotesk);
    background-color: #f67784;
    color: white;
    z-index: 100002 !important;
}


/* RWD */
@media (max-width: 1200px) {
    .navbar {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .header {
        width: calc(100% - 2rem); 
        max-width: 100%; 
        padding: 1rem 0.5rem; 
    }
    .footer-column .social-icons {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
}

/* Responsive Design */
@media screen and (max-width: 950px) {
    .contact-container {
        height: auto;
    }

    .form-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .visit-lvelup {
        background: transparent; 
    }

    .social-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .form-row {
        display: flex;
       
    }

    .dropdown-menu li a {
        display: none;
        background: none;
        text-wrap: nowrap;
    }

    .dropdown .dropdown-icon {
        display: none;
        
    }
    .dropdown-menu { 
        background: none;
    }
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}

@media (max-width: 950px) {
    .visit-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center content */
        text-align: center;
        justify-content: center;
    }

    .row {
        display: flex;
        flex-direction: column;
    }

    .left, .right {
        max-width: 100%; /* Both take full width */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .left {
        order: 1; /* Ensure left stays on top */
    }

    .right {
        order: 2; /* Moves right container below left */
        margin-top: 2rem; /* Add space between sections */
    }

    .left h2 {
        font-size: 3rem; /* Adjust for smaller screens */
        text-wrap: balance;
    }

    .left p {
        max-width: 90%;
        margin: 1.5rem auto;
    }

    .left a {
        margin: 1rem auto;
        display: block;
    }

    .location-box {
        margin-left: 0;
        margin-bottom: 0;
    }
}


@media (max-width: 700px) {
    .form-container {
        width: 90%; /* Ensure it fits within the screen */
        padding: 2rem; /* Adjust padding to prevent overflow */
    }

    .form-row {
        flex-direction: column; /* Stack inputs vertically */
        gap: 10px; /* Reduce gap for better spacing */
    }

    .input-wrapper input, 
    .input-wrapper textarea {
        width: 60%; /* Ensure inputs take full width of container */
        max-width: 100%; /* Prevent any unintended overflow */
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .input-wrapper i {
        display: none;
    }

    #email-input {
        width: 17rem;
    }

    #name-input, #company-input {
        width: 17rem;
    }

    .wrapper {
        margin-left: 6.1rem;
    }
    #char-count {
        margin-left: 6rem !important;
    }
}

@media (max-width: 400px) {
    .form-container{
        display: flex;
        flex-direction: column;
        width: 325px;
    }

    .input-wrapper input, 
    .input-wrapper textarea {
        width: 65%; /* Ensure inputs take full width of container */
        max-width: 80%; /* Prevent any unintended overflow */
        box-sizing: border-box; /* Ensure padding is included in width */
        display: inline-block;
    }

    #email-input {
        width: 15.5rem;
    }

    #name-input, #company-input {
        width: 15.5rem;
    }

    .wrapper {
        margin-left: 6.1rem;
    }
    #char-count {
        margin-left: 3.7rem !important;
        font-size: 0.7rem;
    }
    
    #msg-container {
        width: 25rem;
    }

}



/* disable bot */
.chat-icon {
    display: none;
}

.chat-container-fluid {
    display: none;
}

/* auto scroll top */
#go-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background: rgb(86, 86, 86, 0.5);
    opacity: 0.5;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000; 
    transition: all 0.3s linear;
}
