/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Background container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    animation: fade 15s infinite;
}

/* Container class for centering content */
.container {
    margin: auto;
    padding: 20px;
}

/* Header styling */
header {
    background: #ffffff;
    color: #000000;
    padding: 10px 0;
    width: 100%;
    height: 25vh; /* Adjust height as needed */
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align items to the top */
}

.header-content {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    gap: 15px; /* Space between logo and text */
}

header img {
    width: 50px; /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
}

header h1 {
    display: flex; /* Use flexbox */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    margin: 0; /* Remove default margin */
    color: #000000;
    font-size: 2rem; /* Increase font size */
    text-align: left; /* Align text to the left */
    padding-top: 5px; /* Add padding to position the text */
}

header nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #000000;
    text-decoration: none;
}

/* Section styling */
section {
    margin: 20px 0;
    width: 100%;
}

section h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
}

section p {
    text-align: center;
}

/* Services section styling */
.services {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 20px;
    color: #000000;
}

.service {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 40%;
    transition: transform 0.5s ease-in-out, box-shadow 0.6s ease-in-out;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service h3 {
    text-align: center;
    margin-bottom: 10px;
}

/* Contact container styling */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    color: #000000;
}

/* Form styling */
form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Form input and textarea styling */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form textarea {
    height: 200px;
    resize: none;
}

/* Form button styling */
form button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

/* Map container styling */
.map {
    flex: 1;
    width: 45%; /* Default width for larger screens */
    height: 40%; /* Set the height of the map */
    border: 0; /* Remove default border */
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
}

/* Footer styling */
footer {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

/* Message section styling */
#return {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.return {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 600px;
    text-align: center;
}

.return img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.return h3 {
    margin-bottom: 10px;
}

/* Slider styling */
.slider {
    position: relative;
    width: 100vw;
    height: 90vh; /* Set a specific height for the slider */
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.5s ease-in-out; /* Smooth transition for zoom effect */
}

.slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transition: transform 2s ease; /* Smooth zoom effect */
    border-radius: 0;
}

/* Navigation buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* "About Us" overlay on top of the image */
.about-overlay {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0);
    text-align: center;
}

.about-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-overlay p {
    font-size: 1.2rem;
}

/* Additional styling for the zoom effect */
.slide.zoom {
    transform: scale(1.4); /* Scale up effect for zoom */
}

/* Down arrow styling */
.down-arrow {
    position: absolute;
    bottom: 10vh; /* Adjust distance from the bottom as needed */
    left: 50%;
    transform: translateX(-50%); /* Center the arrow horizontally */
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Arrow shape */
    border-right: 10px solid transparent; /* Arrow shape */
    border-top: 10px solid #333; /* Arrowhead color */
    cursor: pointer; /* Change cursor to pointer */
    transition: transform 0.3s; /* Add some transition for hover effect */
}

.down-arrow:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center; /* Center the items */
    }
    form {
        width: 100%; /* Ensure form takes full width */
        margin-bottom: 20px; /* Add space below the form */
    }
    .map {
        width: 100%; /* Ensure map takes full width */
    }
    .services {
        flex-direction: column; /* Stack services vertically */
        align-items: center; /* Center the items */
        gap: 20px; /* Reduce gap */
    }
    .service {
        width: 80%; /* Ensure services take full width */
    }
    header h1 {
        font-size: 1.5rem; /* Decrease font size for smaller screens */
    }
    
}

@media (max-width: 650px) {
    header {
        height: 40vh; /* Reduce height on smaller screens */
        
    }

    #logo {
        width: 60px; /* Smaller logo on medium screens */
    }

    header h1 {
        font-size: 1.5rem; /* Decrease font size */
    }
}

@media (max-width: 480px) {
    header {
        height: 40vh; /* Further reduce header height */
    }

    #logo {
        width: 50px; /* Even smaller logo */
    }

    header h1 {
        font-size: 1.2rem; /* Further decrease font size */
    }
}

@media (max-width: 480px) {
    header {
        height: 40vh; /* Further reduce header height */
    }
    header h1 {
        font-size: 1.2rem; /* Further decrease font size */
    }
}

.listservices {
    display: flex;
    flex-direction: column; /* Stack services vertically by default */
    align-items: center; /* Center the items */
    gap: 40px;
    margin-top: 20px;
    color: #000000;
}
.listservices h3 {
    
    align-items: center; /* Center the items */
    text-align: left;
}
.listservices p {
    
    align-items: center; /* Center the items */
    text-align: left;
}

.listservice {
    display: flex; /* Use flexbox for individual service items */
    width: 80%; /* Ensure services take full width */
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.listservice img {
    width: 200px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    border-radius: 10px;
    margin-right: 10px; /* Add space between image and text */
}

.text-content {
    display: flex;
    flex-direction: column; /* Stack text content vertically */
    justify-content: center; /* Center align text vertically */
}

/* Media query for mobile screens */
@media (max-width: 1000px) {
    .listservice {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center; /* Center items on mobile */
    }

    .listservice img {
        margin-right: 0; /* Remove right margin on mobile */
        margin-bottom: 10px; /* Add bottom margin to separate text */
    }
}
.listservice img {
    width: 200px;
    height: 250px; /* Set the desired height for these images */
    object-fit: cover; /* Crop and resize to fill the container */
}


/* Slider styling */
.slider {
    position: relative;
    width: 100vw;
    height: 90vh; /* Set a specific height for the slider */
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.5s ease-in-out; /* Smooth transition for zoom effect */
    position: relative; /* Make position relative to place overlay */
}

.slide img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transition: transform 2s ease; /* Smooth zoom effect */
    border-radius: 0;
}

/* Overlay styling */
.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5); /* Grey overlay with some transparency */
    z-index: 1; /* Ensure overlay is on top of the image */
}

/* Additional styling for the zoom effect */
.slide.zoom img {
    transform: scale(1.2); /* Scale up effect for zoom */
}

/* Animation for zoom effect */
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1); /* Zoom to 1.2 times */
    }
}

/* Apply the zoom animation on load */
.slide img {
    animation: zoom 15s ease-in-out infinite alternate; /* Slow zoom in and out */
}
body {
    font-family: Arial, sans-serif;
}

.new-carousel { /* Updated class name */
    position: relative;
    max-width: 200px; /* Set max width */
    margin: auto;
    overflow: hidden;
}

.new-slides { /* Updated class name */
    display: flex;
    transition: transform 0.5s ease;
}

.new-slide { /* Updated class name */
    min-width: 100%; /* Each slide takes full width */
    height: 250px; /* Set slide height */
}

.new-slide img { /* Updated class name */
    max-width: 100%; /* Scale image */
    display: block;
    border-radius: 15px; /* Round edges */
}

.new-dots { /* Updated class name */
    text-align: center;
    margin-top: 10px;
}

.new-dot { /* Updated class name */
    height: 8px; /* Smaller dot size */
    width: 8px; /* Smaller dot size */
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.new-dot.active { /* Updated class name */
    background-color: #717171;
}
.thumbnail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumbnail {
    width: calc(12.5% - 10px); /* 8 thumbnails per row with some margin */
    margin: 5px;
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Optional: add some border radius */
}
/* Slider container */
.slider {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slide container */
.slides {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Individual slides */
.slide {
    position: relative;
    flex: 0 0 20%; /* Each side image takes up 20% of the width */
    opacity: 0.5;
    transition: opacity 0.5s, transform 0.5s;
}

.current-slide {
    flex: 0 0 60%; /* Current slide takes up 60% */
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
}



.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.listservice {
    display: flex;
    
    gap: 20px; /* Adds a gap between image and text */
}

.new-carousel {
    margin-bottom: 0px; /* Adds space between the carousel and the text */
}header h1 {
    position: relative;
    display: inline-block;
    color: #000; /* Initial text color */
    transition: color 0.3s ease;
}



/* Glow effect for the nav links */
nav ul li a {
    color: #000; /* Default color for links */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav ul li a:hover {
    color: #1E90FF; /* Lighter blue color for hover */
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.6),  /* Lighter blue glow */
                 0 0 20px rgba(30, 144, 255, 0.4),
                 0 0 30px rgba(30, 144, 255, 0.2);
}

/* Expand and add shadow on hover */
.service:hover {
    transform: scale(1.05); /* Scale up */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow */
}

.services .service a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Keeps the text color the same as parent element */
}

/* Optional: Add hover effect if you want */
.services .service a:hover {
    
    color: #333; /* Change this to the desired hover color */
}

/* Make logo bigger and inline with the header */
#logo {
    width: 80px; /* Adjust the width of the logo as needed */
    height: auto; /* Maintain the aspect ratio */
    vertical-align: middle; /* Align it vertically with the text */
    margin-right: 10px; /* Adds space between logo and text */
}

header h1 {
    display: inline-block; /* Makes the h1 element align inline with the logo */
    vertical-align: middle; /* Aligns the text vertically with the logo */
    font-size: 2em; /* Adjust the font size of the heading as needed */
}

header .container {
    display: flex; /* Flexbox to align logo and text horizontally */
    align-items: center; /* Ensures everything stays aligned vertically */
}
/* Style the logo and header title inline */
#logo {
    width: 60px; /* Adjust the size of the logo as needed */
    height: auto; /* Maintain the aspect ratio */
    margin-right: 10px; /* Adds space between logo and text */
    vertical-align: middle; /* Align it vertically with the text */
}

header h1 {
    display: inline-block;
    vertical-align: middle;
    font-size: 2em; /* Adjust the size as needed */
}

/* Stack the header logo/title and nav links vertically */
header .container {
    text-align: center; /* Centers the logo/title and the navigation links */
    display: block; /* Ensures stacking of the elements */
}

nav {
    margin-top: 10px; /* Adds space between the header title and nav */
}

nav ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
    display: inline-block; /* Makes the nav links appear in one line */
}

nav ul li {
    display: inline; /* Ensures that the links appear inline */
    margin-right: 15px; /* Adds spacing between the links */
}

nav ul li a {
    text-decoration: none; /* Removes underline from links */
    color: #000; /* Adjusts the link color */
    font-size: 1.2em; /* Adjust the size of the links */
}

/* Optional: Change link color on hover */
nav ul li a:hover {
    color: #007bff; /* Changes link color when hovered */
}





/* Down arrow styling */
.down-arrow {
    position: absolute;
    bottom: 10vh; /* Adjust distance from the bottom as needed */
    left: 50%;
    transform: translateX(-50%); /* Center the arrow horizontally */
    width: 0;
    height: 0;
    border-left: 10px solid transparent; /* Arrow shape */
    border-right: 10px solid transparent; /* Arrow shape */
    border-top: 10px solid #333; /* Arrowhead color */
    cursor: pointer; /* Change cursor to pointer */
    transition: transform 0.3s; /* Smooth transition for hover */
}

.down-arrow:hover {
    animation: jump 0.6s ease-in-out; /* Trigger jump animation on hover */
}

/* Keyframes for the jumping effect */
@keyframes jump {
    0% {
        transform: translateX(-50%) translateY(0); /* Initial position */
    }
    50% {
        transform: translateX(-50%) translateY(-5px); /* Move up by 20px */
    }
    100% {
        transform: translateX(-50%) translateY(0); /* Return to original position */
    }
}





/* Slider styling */
.image-slider {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; /* Remove any background tint */
}

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

.image-slide {
    display: block; /* Ensure slides are displayed */
    flex: 0 0 100%; /* Each slide takes up full width */
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumbnail {
    width: calc(12.5% - 10px); /* Adjust width as needed */
    margin: 5px;
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Optional: add some border radius */
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
