html {
    overflow-x: hidden;
    /* Prevent horizontal overflow */
    width: 100%;

}

body {
    /* padding-top: 80px; */
    background: radial-gradient(circle, #222222, #444141);
    /* Circular gradient */
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    margin: 0;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color: #EAEAEA;
    overflow-x: hidden;
    /* Prevent horizontal overflow */
    width: 100%;

}

.container-fluid {
    padding: 0;
    margin: 0;

}

#top_container{
    padding-top: 80px;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    /* Poppins font */
    text-transform: capitalize;
    color: #EAEAEA;
    /* Light text for contrast */
    font-weight: 1000;
    /* Adjust the font weight to make it bolder */
}


.separator {
    font-size: 2rem;
    /* Large font size */
    font-weight: bold;
    /* Bold text */
    text-transform: uppercase;
    /* Capitalize all letters */
    color: #EAEAEA;
    ;
    /* Vibrant orange for visibility */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    /* Subtle shadow effect */
    position: relative;
    /* For the decorative underline */
    margin-bottom: 1rem;
    /* Space below the heading */
    padding-top: 1rem;
}

.separator::after {
    content: '';
    display: block;
    width: 100px;
    /* Underline width */
    height: 4px;
    /* Underline thickness */
    background: linear-gradient(to right, #EAEAEA, #3d3d3d);
    /* Gradient underline */
    margin: 10px auto 0;
    /* Centered and spaced below the text */
    border-radius: 2px;
    /* Rounded corners */
}

#logo {
    max-height: 80px;

}

.txt {
    font-size: 1.1rem;
    /* Larger font size for readability */
    line-height: 2;
    /* Increased line spacing for better readability */
    text-align: justify;
    /* Align text for a clean block look */
    margin-top: 1rem;
    /* Add spacing above the paragraph */
    color: white;
    /* Light text color to match your theme */
    font-weight: 500;
    /* Light font weight for a professional feel */
}

strong {
    font-size: 1rem;
    color: white;
    /* Highlighted text in orange */
    font-weight: 1000;
    /* Slightly bolder weight for emphasis */
}

.qualifications {
    list-style-type: disc;
    /* Traditional bullet points */
    padding-left: 1.5rem;
    /* Indent for the bullets */
    margin-top: 1rem;
    /* Add spacing above the list */
    text-align: left;
    /* Align list items to the left */
    font-size: 1.25rem;
    /* Larger font size */
    line-height: 1.8;
    /* Improve line spacing */
    color: #EAEAEA;
    /* Match text color */
}

.qualifications li {
    margin-bottom: 0.75rem;
    /* Add more spacing between each bullet */
    position: relative;
}

.qualifications li::marker {
    color: #EAEAEA;
    /* Change bullet color for better contrast */
    font-size: 1.5rem;
    /* Increase bullet size slightly */
}

#headshot {
    border-radius: 15px;
    /* Rounds the edges of the image */
    overflow: hidden;
    /* Ensures content stays within rounded edges */

}

#banner-container {
    overflow-x: hidden;
    /* Prevent horizontal overflow */
    position: relative;
    width: 100%;
    /* Ensure it spans the full width */
    height: 100vh;
    /* Make it fill the entire viewport height */
    background-image: url('/img/1Z8A6667-shrink.jpg');
    /* Set the background image */
    background-size: cover;
    /* Ensure the image covers the div without stretching */
    background-position: center;
    /* Center the image */
    position: relative;
    /* Ensure the overlay and gradient work with positioning */
}

#banner-container::before {

    content: '';
    /* Create the gradient overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark shadow effect */
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.7) 100%); */
    /* Fade from dark at the top and bottom edges */
    z-index: 0;
    /* Place the gradient below the overlay content */
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.0); /* Dark background for contrast */
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.banner-text {
    font-size: 1.6rem; /* Slightly smaller default text */
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}


/* Gold Highlight */
.highlight {
    color:  #fff;   
    font-weight: 700;
}

.title {
    font-size: 2rem;
    font-weight: 900;
    color: #d1d1d1; /* Metallic silver */
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.2), 
                 -2px -2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translate(-50%, -55%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}


footer {
    background-color: #181818;
    /* Dark footer */
    /* Light text */
}
.instagram-link {
    color: white; /* Makes the link white */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.instagram-link:hover {
    color: #E1306C; /* Instagram's pink color for hover effect */
}


#mainNavbar {
    background: rgba(24, 24, 24, 0.7); /* Initially transparent */
    z-index: 2;
    color: #EAEAEA;
    padding: 0px;
    width: 100%;
    min-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    transition: background 0.3s ease-in-out;
}




.myImg {
    margin: 10px; /* Add spacing around each image */
    border: 2px solid  #777575; /* Light border around the image */
    border-radius: 8px; /* Rounded corners for a smoother look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.myImg:hover {
    transform: scale(1.05); /* Slight zoom-in effect on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow effect on hover */
}

.servicePics{

    box-sizing: border-box; /* Include padding, border, and margin in the total width */
    margin: 0; /* Add spacing around each image */
    border: 2px solid  #777575; /* Light border around the image */
    border-radius: 8px; /* Rounded corners for a smoother look */
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 99;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.navbar-brand {
    margin-left: 15px;
    margin-right: 0px;
}

.nav-item h3 {
    font-size: 1rem; /* Adjust the size as needed */
}

.navbar-toggler {
    background-color: #333;
    /* Dark grey color */
    padding: 2px;
    margin-left: 5px;
    margin-right: 5px;
    /* Avoid extra space on the right */
    position: relative;
    /* Ensure it stays within the navbar */
}

.navbar-collapse {
    width: 100%;
    /* Ensure it takes up full space */
    overflow: hidden;
    /* Prevent it from causing overflow issues */
}

.navbar-nav {
    padding-left: 5px;

}

.btn-js {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff; /* White text */
    border: none;
    border-radius: 50px; /* Makes it round */
    text-transform:capitalize;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}

.btn-js:hover {
    background: #d1d1d1; /* Light grey on hover */
    color: #333; /* Darker text for contrast */
}


.button-group button {
    background-color: #1a1a1a;
    /* Default dark background */
    color: #cccccc;
    /* Light silver/gray text */
    border: 2px solid #4d4d4d;
    /* Subtle gray border */
    border-radius: 5px;
    /* Rounded corners */
    padding: 10px 15px;
    /* Comfortable button size */
    font-size: 1rem;
    /* Button text size */
    cursor: pointer;
    /* Pointer cursor */
    transition: all 0.3s ease;
    /* Smooth hover and active transition */
    margin: 0 5px;
    /* Space between buttons */
}

.button-group button.active {
    background-color: #4d4d4d;
    /* Silver-gray background for active state */
    color: #ffffff;
    /* White text for contrast */
    border-color: #cccccc;
    /* Bright silver border */
    font-weight: bold;
    /* Slightly bolder text for emphasis */
}

.button-group button:hover {
    background-color: #333333;
    /* Lighter gray for hover effect */
    color: #ffffff;
    /* White text for hover */
    transform: scale(1.1);
    /* Subtle zoom effect */
    border-color: #666666;
    /* Highlight border on hover */
}


.watermark {
    position: fixed;
    /* Ensures the watermark stays in the same position even when scrolling */
    top: 10%;
    /* Adjust the distance from the top */
    right: 10%;
    /* Adjust the distance from the right */
    font-size: 24px;
    /* Adjust the font size */
    color: white;
    /* Adjust the color with some transparency */
    font-weight: bold;
    /* Make the text bold */
    z-index: 9999;
    /* Ensure it's on top of other elements */
    pointer-events: none;
    /* Prevent the watermark from interfering with other elements */
}

/* Default: Show mobile button, hide desktop button */
#chineseButtonMobile {
    display: inline-block;
    margin-right: 10px;
    font-size: 0.8rem;
    padding: 5px 10px;
    border: 2px solid #f8f9fa;
    color: #f8f9fa;
    background-color: #212529;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#chineseButtonDesktop {
    display: none;
    /* Hide desktop button by default */
}

/* Hide mobile button and show desktop button for screens 769px and larger */
@media (min-width: 769px) {
    #chineseButtonMobile {
        display: none;
        /* Hide the mobile button */
    }

    #chineseButtonDesktop {
        display: inline-block;
        /* Show the desktop button */
        margin-left: auto;
        /* Push to the far right */
        font-size: 1rem;
        padding: 10px 20px;
        border: 2px solid #f8f9fa;
        color: #f8f9fa;
        background-color: #212529;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}