/* Global Styles */
body {
    margin: 0;
    display: flex;
    height: 100vh;
    font-family: 'Georgia', serif;
    flex-direction: row; /* Horizontal layout */
    font-size: 16px; /* Base font size */
    overflow-x: hidden; /* Prevent horizontal overflow */
}


/* Sidebar Section */
.sidebar {
    width: 35%; /* Sidebar width for desktop */
    height: 100vh; /* Full height */
    background: linear-gradient(to top right, rgba(255, 153, 102, 0.6), rgba(255, 204, 51, 0.6));
    backdrop-filter: blur(15px); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 15px;
}

.sidebar-content {
    z-index: 50; /* Content above other elements */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.company-logo {
    width: 100%;
    max-width: 400px; /* Logo max size */
    margin-bottom: 15px;
    margin-left: 20px;
    height: auto; /* Maintain aspect ratio */
}

.menu-toggle {
    position: fixed; /* Stick to the top */
    top: 15px;
    left: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    z-index: 200; /* Above all elements */
    padding: 0;
    
}


.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1.0rem;
    z-index: 200;
}

/* Sidebar Menu Styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen */
    width: 75%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 99;
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    transition: left 0.3s ease; /* Smooth slide-in */
}

.sidebar-menu.active {
    left: 0; /* Slide into view */
}

.menu-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left; /* Align text to the left */
}

.menu-list ul li {
    margin: 15px 0;
}

.menu-list ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    display: block; /* Full width clickable */
    padding: 10px 20px;
}

.menu-list ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
}

/* Main Content Section */
.main-content {
    width: 65%; /* Increase width */
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto; /* Vertical scroll */
}

/* Header Menu Bar */
.header-menu {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0; /* Stick to the top */
    background-color: white;
    z-index: 101;
}

.header-menu-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    
}

.header-menu-list ul li {
    margin: 0 15px;
}

.header-menu-list ul li a {
    text-decoration: none;
    color: black;
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
}

.header-menu-list ul li a:hover {
    text-decoration: none;
}

/* Content Container */
.content-container {
    flex: 1; /* Fill remaining space */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
}



/* Gallery Styles general screen */
.photo-gallery {
    display: grid;
    width: 100%;
    max-width: 1002px;
    grid-gap: 20px; /* Adjust spacing */
    grid-template-columns: repeat(5, 1fr); /* Set exactly 5 columns */
    justify-content: center;
    margin-top: 50px;
}

.gallery-item {
    width: 100%;
    perspective: 900px;
}

.gallery-image {
    width: 100%;
    height: 300px;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: 1em 0.5em 2em #1234, 0 0 5em #1234 inset;
    transition: transform 0.6s ease-in-out;
    border-radius: 8px;
}

.gallery-item:hover .gallery-image {
    transform: rotateY(180deg);
}


/* Modal Styles */
.image-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
}



.download-button button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
}

.download-button button:hover {
    background-color: #45a049; /* Darker green on hover */
}

.download-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #45a049;
}


/* About Us Section */
#aboutSection {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team-photos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.team-member {
    margin: 0 15px;
}


.photo-circle {
    width: 170px; /* Adjust as needed */
    height: 170px; /* Adjust as needed */
    border-radius: 70%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}


.team-member p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}





/* WORK GALLERYSection Styles */

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    grid-template-rows: auto; /* Automatically adjust rows */
    gap: 16px; /* Space between images */
    justify-items: center; /* Center images horizontally */
}

.portfolio-gallery img {
    width: 100%; /* Full width of the container */
    max-width: 400px; /* Optional: set a max width */
    height: 250px; /* Set a fixed height for all images */
    object-fit: cover; /* Crop images to maintain the aspect ratio */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s; /* Smooth hover effect */
}

.portfolio-gallery img:hover {
    transform: scale(1.05); /* Scale up on hover */
}


/* WORKGALLERY Section Styles END */




/* Contact Section Styles */
.section {
    padding: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners */
    margin: 20px; /* Spacing around the section */
}

.contact-terms {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    font-size: 1.2rem; /* Increase font size */
}

.contact-terms li {
    margin: 10px 0; /* Space between list items */
    color: #333; /* Dark text color for readability */
}

.contact-terms li strong {
    color: #007BFF; /* Highlight the labels */
}

/*Contact Info style*/
.contact-info {
    background-color: #f8f9fa; /* Light background for contrast */
    border: 1px solid #dee2e6; /* Light border */
    padding: 10px; /* Add some space inside */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 400px; /* Limit the width of the container */
    font-family: 'Arial', sans-serif; /* Change font family */
    color: #343a40; /* Dark color for text */
    line-height: 1.2; /* Increase line spacing */
}

.contact-info strong {
    font-weight: 600; /* Make strong text bolder */
    color: #007bff; /* Highlighted color for strong text */
}

.contact-info a {
    color: #007bff; /* Link color */
    text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
    text-decoration: none; /* Underline on hover */
}

.no-underline {
    text-decoration: none; /* Removes the underline */
    color: blue; /* Ensures it takes the parent color, optional */
}

.phone-style {
    color: #333; /* You can adjust the color */
    font-weight: bold; /* Make it bold for emphasis, optional */
}
.Box {
    border: 2px black; /* Adds a border around the box */
    padding: 20px; /* Adds space inside the box */
    background-color: #f9f9f9; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    width: 100%; /* Adjust width to your layout */
    max-width: 600px; /* Set a maximum width if needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: adds shadow for a subtle 3D effect */
    font-family: Arial, sans-serif; /* Consistent font style */
    line-height: 1.6; /* Improves readability by spacing the lines */
}

/*Contact Info style END*/

 /*Button X when photo Open */
.close-modal {
    position: absolute;
    top: 10px;
    right: 80px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Contact Section Styles */
.contact-terms {
    text-align: left;
    margin: 30px 0;
    padding: 0 30px;
    list-style-type: disc;
}

.contact-terms li {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Minimal Scrollbar Styles */
.content-container::-webkit-scrollbar {
    width: 8px; /* Minimal width */
}

.content-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.content-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.content-container::-webkit-scrollbar-track {
    background: transparent;
}

/*Text Theme deskotop version */
h1, h2, h3, h4, h5, h6,  body {
    margin: 0;
    padding: 0;
    font-family: cursive;
    line-height: 1.6;
    text-align: center; /* Centers the text */
}

body {
    font-size: 14px; /* Base font size for body */
}

/* Font sizes for headings and paragraphs */
h1 { font-size: 1.5rem; } /* Default size for mobile */
h2 { font-size: 2rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.75rem; }
h6 { font-size: 1.5rem; }

p {
    font-size: 1.5rem; /* Slightly larger than body text */
    margin-bottom: 1em;
}




/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: white; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it stays on top of all other content */
}

/* Circular Loader */
.circular-loader {
    width: 10vw; /* Relative to viewport width to be responsive */
    height: 10vw; /* Maintain aspect ratio */
    min-width: 50px; /* Minimum size to avoid becoming too small */
    min-height: 50px; /* Minimum size */
    max-width: 150px; /* Maximum size to avoid becoming too large */
    max-height: 150px; /* Maximum size */
    border: 10px solid #ddd; /* Gray background for the circle */
    border-top: 10px solid #4caf50; /* Green color for the progress effect */
    border-radius: 50%; /* Make it circular */
    animation: spin 8s linear forwards; /* Spin for 8 seconds */
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden class to hide the loading screen after it’s done */
.hidden {
    display: none;
}


/* Loading Screen Styles End */




















/* Mobile Styles */
@media (max-width: 767px) {
	


    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
        gap: 12px; /* Adjust gap between images */
    }

    .portfolio-gallery img {
        max-width: 100%; /* Ensure images are responsive */
        height: auto; /* Automatically set the height */
        aspect-ratio: 1 / 1; /* Make the images square */
        object-fit: cover; /* Crop to maintain visual balance */
    }




/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: white; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it stays on top of all other content */
}

/* Circular Loader */
.circular-loader {
    width: 10vw; /* Relative to viewport width to be responsive */
    height: 10vw; /* Maintain aspect ratio */
    min-width: 50px; /* Minimum size to avoid becoming too small */
    min-height: 50px; /* Minimum size */
    max-width: 150px; /* Maximum size to avoid becoming too large */
    max-height: 150px; /* Maximum size */
    border: 10px solid #ddd; /* Gray background for the circle */
    border-top: 10px solid #4caf50; /* Green color for the progress effect */
    border-radius: 50%; /* Make it circular */
    animation: spin 8s linear forwards; /* Spin for 8 seconds */
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden class to hide the loading screen after it’s done */
.hidden {
    display: none;
}


/* Loading Screen Styles End */


/* Contact Section Styles */

   

    body {
        flex-direction: column;
        overflow-x: hidden;
        scroll-behavior: smooth; /* Enable smooth scrolling */
    }
    header-menu {
        width: 95%;
        border-bottom: 1px solid #ccc;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0; /* Stick to the top */
        background-color: red;
        z-index: 101;  
    } 

    .sidebar {
        width: 100%;
        height: auto;
        padding: 0;
        background: none;
    }

    .company-logo {
        display: none; /* Hide logo */
    }

    .sidebar-menu {
        width: 60% !important;
        height: 100vh;
        left: -100%;
        top: 0;
        transition: left 0.3s ease;
    }

    .sidebar-menu.active {
        left: 0; /* Slide into view */
    }

    .menu-list ul li a {
        font-size: 1.4rem; /* Adjust font size */
        padding: 10px 20px;
    }

    .menu-toggle {
        top: 15px;
        left: 15px;
        font-size: 2rem;
        color: black;
        border: none;
        background: none;
    }

    

    .main-content {
        width: 100%;
        margin-top: 50px;
    }

    .content-container {
        padding: 10px;
    }

    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-image {
        height: 150px; /* Smaller images */
    }

    .image-modal {
        width: 115%; /* Full width */
        height: 115%;
    }

    .modal-image {
        max-width: 90%;
        max-height: 90%;
    }



    /* Header Menu Bar Mobile Version */
    .header-menu {
        width: 105%;
        border-bottom: 1px solid #ccc;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0; /* Stick to the top */
        background-color: rgba(255, 153, 102, 0.6);
        z-index: 101;
    }
    
    .header-menu-list ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        
    }
    
    .header-menu-list ul li {
        margin: 0 3px;
    }
    
    .header-menu-list ul li a {
        text-decoration: none;
        color: whitesmoke;
        font-size: 0.9rem;
        font-family: 'Times New Roman', serif;
        font-weight: bold; /* This will make the text stronger */
    }
    
    .header-menu-list ul li a:hover {
        text-decoration: none;
        color: grey; /* Change text color to grey on hover */
    }

  /* Header Menu Bar Mobile Version  END*/




/* Gallery Styles Mobile View */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    
  
    
}

.gallery-item {
    width: 95%;
    perspective: 900px;
}

.gallery-image {
    width: 75%;
    height: 159px;
    background-color: white;
    background-size: cover;
    background-position:center;
    box-shadow: 1em 0.5em 2em #1234, 0 0 5em #1234 inset;
    transition: transform 0.6s ease-in-out;
    border-radius: 10px;
}

.gallery-item:hover .gallery-image {
    transform: rotateY(180deg);
}


/*Text Theme mobile/deskotop version */
h1, h2, h3, h4, h5, h6,  body {
    margin: 0;
    padding: 0;
    font-family: cursive;
    line-height: 1.6;
    text-align: center; /* Centers the text */
}

body {
    font-size: 14px; /* Base font size for body */
}

/* Font sizes for headings and paragraphs */
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1.5rem; /* Slightly larger than body text */
    margin-bottom: 1em;
}

	
	



	
	





/* Adjustments for larger screens */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1rem; }
}
* {
    box-sizing: border-box; /* Ensures padding and border are included in the total width and height */
}

html, body {
    width: 100%; /* Ensures no extra space is added */
    overflow-x: hidden; /* Prevents horizontal scrolling */
}
	

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: white; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it stays on top of all other content */
}

/* Circular Loader */
.circular-loader {
    width: 10vw; /* Relative to viewport width to be responsive */
    height: 10vw; /* Maintain aspect ratio */
    min-width: 50px; /* Minimum size to avoid becoming too small */
    min-height: 50px; /* Minimum size */
    max-width: 150px; /* Maximum size to avoid becoming too large */
    max-height: 150px; /* Maximum size */
    border: 10px solid #ddd; /* Gray background for the circle */
    border-top: 10px solid #4caf50; /* Green color for the progress effect */
    border-radius: 50%; /* Make it circular */
    animation: spin 8s linear forwards; /* Spin for 8 seconds */
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden class to hide the loading screen after it’s done */
.hidden {
    display: none;
}


/* Loading Screen Styles End */

	
	
.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 200;
}



   
}


@media (min-width: 1624px) {
/* Gallery Styles */
.photo-gallery {
    display: grid;
    width: 100%;
    max-width: 1402px;
    grid-gap: 110px; /* Adjust spacing */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    margin-top: 50px;
}
	
	

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* Full viewport width */
    height: 100vh; /* Full viewport height */
    background-color: white; /* White background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it stays on top of all other content */
}

/* Circular Loader */
.circular-loader {
    width: 10vw; /* Relative to viewport width to be responsive */
    height: 10vw; /* Maintain aspect ratio */
    min-width: 50px; /* Minimum size to avoid becoming too small */
    min-height: 50px; /* Minimum size */
    max-width: 150px; /* Maximum size to avoid becoming too large */
    max-height: 150px; /* Maximum size */
    border: 10px solid #ddd; /* Gray background for the circle */
    border-top: 10px solid #4caf50; /* Green color for the progress effect */
    border-radius: 50%; /* Make it circular */
    animation: spin 8s linear forwards; /* Spin for 8 seconds */
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden class to hide the loading screen after it’s done */
.hidden {
    display: none;
}


/* Loading Screen Styles End */


.gallery-item {
    width: 100%;
    perspective: 900px;
}

.gallery-image {
    width: 100%;
    height: 300px;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: 1em 0.5em 2em #1234, 0 0 5em #1234 inset;
    transition: transform 0.6s ease-in-out;
    border-radius: 8px;
}

.gallery-item:hover .gallery-image {
    transform: rotateY(180deg);
}

}
