@charset "UTF-8";
/* Home Section */
#home {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto; /* Change from 100vh to auto */
    padding: 80px 0; /* Adjust the padding */
    background-color: #f8f8f8;
    background-image: url("../images/Logo/slider-image.webp");
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
    position: relative;
    margin: 12px 12px 0 12px;
}

.home-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 20px 0; /* Optional: Add some top/bottom padding */
    background: rgba(250, 250, 250, 0.8);
}

/* Arrow button styles */
.arrow-btn {
    display: inline-block;
    margin-top: 30px;
    font-size: 1.2em;
    text-decoration: none;
    color: #333;
}

.arrow-btn i {
    background: #C0C0C0; /* Light silver */
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 32px;
    transition: 0.5s;
}

.arrow-btn i:hover {
    background: #A9A9A9; /* Dark silver */
}

#home img {
    max-width: 100%;
    height: auto; /* Ensure the image is responsive */
}

#home h3 {
    font-size: 1.8em;
    margin: 10px 0;
}

/* About Section */
#about {
    margin-top: 30px; /* Add space to separate from Home section */
    margin-bottom: 30px; /* Adjust as needed for spacing */
}

/* Ensure the images are equal in size with spacing and border */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between images */
    align-items: center; /* Center the images */
}

.about-images img {
    width: 100%; /* Ensure it fills the frame width */
    height: 250px; /* Set the height to match the frame */
    object-fit: cover; /* Ensures the image covers the entire frame */
    border: 2px solid #ccc; /* Border around the image */
    border-radius: 2px; /* Optional: rounds the corners of the border */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

/* Zoom effect on hover */
.about-images img:hover {
    transform: scale(1.1); /* Zoom in effect */
}

/* Frame for the text */
.about-thumb {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    border: 2px solid #ccc; /* Frame around the text */
    border-radius: 5px; /* Optional: rounds the corners of the border */
    padding: 15px; /* Add some padding */
    background: rgba(250, 250, 250, 0.8); /* Light background for readability */
}

/* Paragraph styling */
.paragraph {
    margin-bottom: 5px; /* Adjust spacing as needed */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-images {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-thumb {
        padding-left: 0;
    }

    .home-wrapper {
        max-width: 90%;
    }
}
/* Footer */
footer {
    background-color: #f0f0f0;
    color: #000;
    padding: 5px 0;
    text-align: center;
    font-size: 0.8em;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Header */
.header {
    margin-top: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

/* Logo */
.logo {
    margin-right: auto;
}

.logo img {
    max-height: 50px;
    height: auto;
    width: auto;
}

/* Image Grid */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.work-thumb {
    width: calc(33.33% - 10px);
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
    vertical-align: top;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-thumb img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.image-frame-fixed {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.work-thumb img:hover {
    transform: scale(1.3);
    transition: transform 0.3s ease;
}

/* Button Group */
.button-group {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the buttons */
    margin-top: 10px; /* Space above the button group */
}

.button-group .button {
    display: inline-block; /* Inline-block for proper spacing */
    padding: 5px 12px; /* More padding for better appearance */
    margin: 0 10px; /* Space between buttons */
    background-color: #C0C0C0; /* Light silver */
    color: black; /* Text color */
    text-decoration: none; /* Remove underline */
    border-radius: 3px; /* Rounded corners */
    font-size: 14px; /* Font size */
    transition: background-color 0.3s; /* Smooth transition */
}

.button-group .button:hover {
    background-color: #A9A9A9; /* Dark silver on hover */
}


/* Text Styling */
.work-thumb h4,
.work-thumb p {
    margin: 10px 0;
    padding: 0 10px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.work-thumb .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0 10px;
    width: calc(100% - 20px);
    text-align: center;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
}

/* Text Container */
.text-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Text */
.top-text {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 0;
    padding: 10px 15px;
    box-sizing: border-box;
    text-align: center;
}

/* Introduction Text */
.introduction-text {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 15px;
    box-sizing: border-box;
    text-align: center;
}

/* Intro Image Container */
.intro-image-container {
    width: 50%;
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
}

.intro-image-container img {
    width: 100%;
    height: auto;
    display: inline-block;
}

/* Section */
.section {
    padding: 50px 0;
}

/* Section Title */
.section-title {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.section-title h3 {
    font-size: 1.0em;
    margin-bottom: 1px;
}

.section-title p {
    font-size: 0.9em;
    margin: 0;
    line-height: 1.2;
    text-align: justify;
    text-justify: inter-word;
}

.section-title {
    margin-bottom: 20px;
}

.section-title div {
    text-align: justify;
}
/* Contact Section */
#contact {
    padding: 40px 15px;
    text-align: center;
    background-color: #f4f4f4; /* Light background for contrast */
}

#contact .section-title h2,
#contact h3 {
    margin: 0;
    padding-bottom: 20px;
    color: #333;
    font-weight: bold;
}

#contact .social-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#contact .social-icon li {
    margin: 0;
}

/* Contact Form */
#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    max-width: 600px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Soft shadow for form */
}

#contact-form .form-control {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#contact-form .form-control:focus {
    border-color: #5A5757;
    box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
    outline: none;
}

#contact-form .form-group {
    width: 100%;
}
#contact-form button {
    background-color: #5A5757;
    color: white;
    border: none;
    padding: 10px 20px; /* Adjusted padding */
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    line-height: 1.5; /* Adjust line height for vertical centering */
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #363333;
}

/* Footer */
#contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-color: #f8f9fa;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-footer h6 {
    font-size: 14px;
    color: #666;
    margin: 0;
    padding-bottom: 10px;
    max-width: 800px;
}

#contact-footer a {
    color: #333;
    text-decoration: none;
    font-size: larger;
    display: block;
    margin-top: 10px;
}

#contact-footer a:hover {
    color: #f39c12;
}

/* Optional - Additional Styling for Better Spacing */
#contact {
    margin-top: 50px;
}

#contact h2 {
    margin-bottom: 30px;
    color: #444;
}

#contact h3 {
    font-weight: normal;
}
.social-icon {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center the icons */
    gap: 15px; /* Space between icons */
    list-style: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: flex; /* Flexbox for each list item */
    align-items: center; /* Center the icons vertically */
}

.social-icon a {
    display: flex; /* Flexbox for anchor elements */
    align-items: center; /* Center the icons vertically */
    justify-content: center; /* Center horizontally */
    font-size: 24px; /* Adjust icon size */
    color: #000; /* Change color if needed */
}


.social-icon li {
    margin: 0; /* Remove margin from list items */
}

.social-icon a {
    display: flex; /* Flexbox for anchor elements */
    align-items: center; /* Center the icons vertically */
    justify-content: center; /* Center horizontally */
    font-size: 24px; /* Adjust icon size */
    color: #7d7d7d; /* Light grey for normal state */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.social-icon a:hover {
    color: #2C2A2A; /* Dark grey for hover effect */
}
.sidebar {
position : fixed;
top : 0;
right : -250px;
width : 250px;
height : 100vh;
background-color : #f8f9fa;
transition : right 0.3s ease-in-out;
z-index : 99;
}
.sidebar.show {
right : 0;
}
.toggle-menu-icon {
display : block;
position : fixed;
top : 10px;
right : 10px;
width : 40px;
height : 40px;
cursor : pointer;
background-color : #0A0A0A;
border-radius : 50%;
z-index : 9999;
}
.toggle-menu-icon span {
display : block;
position : absolute;
width : 100%;
height : 3px;
background-color : #fff;
transition : transform 0.3s, opacity 0.3s;
}
.toggle-menu-icon span:nth-child(1) {
top : 13px;
}
.toggle-menu-icon span:nth-child(2) {
top : 24px;
}
.toggle-menu-icon span:nth-child(3) {
top : 35px;
}
.toggle-menu-icon.show span:nth-child(1), .toggle-menu-icon.show span:nth-child(3) {
opacity : 0;
}
.toggle-menu-icon.show span:nth-child(2) {
transform : rotate(45deg);
}
.navbar-collapse ul {
list-style : none;
padding : 0;
margin : 0;
display : flex;
flex-direction : column;
align-items : center;
}
.navbar-collapse ul li {
margin-bottom : 0.3em;
}
.navbar-collapse ul li a {
color : #1D1C1C;
text-decoration : none;
padding : 0.2em 0;
font-size : 12px;
text-transform : uppercase;
}
.navbar-collapse ul li a:hover {
color : #A28140;
}
.submenu {
display : none;
list-style : none;
padding : 0;
margin : 0;
}
.submenu li {
margin : 0;
}
.submenu li a {
display : block;
padding : 10px;
color : #333;
text-decoration : none;
}
.submenu-toggle.active + .submenu {
display : block;
}
@media (max-width: 768px) {
    .sidebar {
        right: -250px; /* Keep it off-screen by default */
    }
    .sidebar.show {
        right: 0; /* Slide in when the show class is added */
    }
    .navbar-collapse ul {
        flex-direction: column;
    }
    .navbar-collapse ul li {
        display: block;
        width: 100%;
        text-align: center;
    }
}

#whatsapp-button {
position : fixed;
bottom : 20px;
right : 20px;
background-color : transparent;
color : white;
border-radius : 50%;
padding : 10px;
box-shadow : 0 2px 10px rgb(0, 0, 0, 0.2);
text-align : center;
cursor : pointer;
z-index : 1000;
}
#whatsapp-button img {
width : 40px;
height : 40px;
}
.text-container {
max-width : 900px;
margin : 0 auto;
padding : 0 15px;
}