/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: 1.6;
    background-color: #F4F4F4;
}

body, input, textarea, button {
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Transparent Header */
.transparent-header {
    background-color: rgba(244, 244, 244, 0.5);
    color: #333333;
    padding: 10px 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
	border-bottom: none; /* No border by default */
}

.transparent-header.scrolled {
    background-color: rgba(244, 244, 244, 1); /* Full white background on scroll */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow at the bottom */
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.transparent-header .logo {
    flex: 0 0 auto;
}

.transparent-header .logo img {
    height: 100px;
    width: auto;
}

.transparent-header nav {
    flex: 1;
    text-align: right;
}

.transparent-header nav ul {
    list-style: none;
    margin: 0;
    padding: 30px;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.transparent-header nav ul li a {
    color: #333333;
    text-decoration: none;
    font-size: 18px;
	display: inline-block; /* Ensure a is treated as a block-level element */
    transition: transform 0.3s ease, color 0.3s ease;
}

.transparent-header nav ul li a:hover {
	color: #00bbf1;
    transform: scale(1.1); /* Scale up the text slightly when hovered */

	
}

.mobile-menu {
    display: none;
    font-size: 30px;
    color: #333333;
    cursor: pointer;
}

@media (max-width: 768px) {
    .transparent-header nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(51, 51, 51, 0.9);
        width: 100%;
        z-index: 1000;
    }

    .transparent-header nav ul.show {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .transparent-header nav ul li {
        margin: 10px 0;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    background-color: #F4F4F4; /* Set the background color to #00bbf1 */
    height: 100vh; /* Keep full height for the hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333; /* Text color white for better contrast */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333333; /* Ensure text color is white */
}

.hero-section p {
    font-size: 24px;
    color: #333333; /* Ensure text color is white */
    margin-bottom: 20px;
}

.services-section {
    background-color: #F4F4F4;
    padding: 120px 0;
    text-align: center;
}

.services-section h2 {
    color: #333333;
	font-size: 32px;
	font-weight: 400;
    margin-bottom: 20px;
}

/* Flexbox layout for services */
.service-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-item {
    flex: 1;
    margin: 0 15px;
    background-color: #fff; /* Set the initial background color to white */
    border-radius: 5px;
    height: 300px; /* Set a fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333; /* Text color when not hovered */
    position: relative;
    overflow: hidden; /* Ensure content doesn’t overflow the box */
    transition: background-color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease; /* Add transition for background color, shadow, and scaling */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add initial subtle drop shadow */
}

/* Button styling for a large block */
.accordion-button {
    width: 100%;
    height: 100%; /* Make button take the entire space */
    background-color: #fff; /* Initial background color to white */
    color: #333; /* Initial text color */
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Ensure it's above the content initially */
    transition: opacity 0.3s ease, transform 0.5s ease, background-color 0.5s ease; /* Add background color transition */
    opacity: 1; /* Ensure it's visible by default */
}

/* Hover effect: color change, scale, and shadow animation */
.service-item:hover {
    background-color: #00bbf1; /* Change background color to #00bbf1 when hovered */
    transform: scale(1.05); /* Slightly enlarge the entire box when hovered */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Intensify shadow on hover */
}

.service-item:hover .accordion-button {
    opacity: 0; /* Hide the button text */
    transition: transform 0.5s ease, opacity 0.3s ease; /* Smooth scale and opacity transition */
}

.service-item:hover .service-content {
    display: flex; /* Make the content visible */
    opacity: 1; /* Make content fully visible on hover */
}

/* Content that appears on hover */
.service-content {
    padding: 10px;
    background-color: #00bbf1; /* Match hover background color */
    display: none; /* Hidden by default */
    color: #fff; /* Text color when content is shown */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 95%;
    z-index: 2; /* Ensure it's above the button */
    display: flex;
	 flex-direction: column; /* Stack items vertically */
	 align-items: flex-start; /* Align items to the left */
	 padding: 15px;
    align-items: left;
    justify-content: left;
    text-align: left;
    opacity: 0; /* Ensure it's hidden initially */
    transition: opacity 0.3s ease;
}

.service-content h3 {
    color: #ffffff;
	font-size: 14px;
	font-weight: 600; /* Make the heading bold */
    margin-bottom: 5px;
	text-align: left;
}

.service-content p {
    color: #ffffff;
	font-size: 12px;
    margin-bottom: 20px;
	text-align: left;
}

.service-content ul {
    color: #ffffff;
	font-size: 12px;
    margin-bottom: 5px;
	text-align: left;
	line-height: 1.2; /* Adjust line height to reduce space within the list item */
}

.service-content li {
    color: #ffffff;
	font-size: 12px;
    margin-bottom: 5px;
	text-align: left;
	line-height: 1.2; /* Adjust line height to reduce space within the list item */
}

/* Drop shadow effect and scaling when hovered */
.service-item:hover .service-content {
    background-color: #00bbf1; /* Ensure the background matches */
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }

    .service-item {
        margin-bottom: 20px;
    }

    .accordion-button, .service-content {
        height: auto; /* Allow the button and content to resize for smaller screens */
    }
}



/* About Section */
.about-section {
     background-color: #F4F4F4;
    padding: 120px 0;
    text-align: center;
}

.about-section h2 {
    color: #333333;
	font-size: 32px;
	font-weight: 400;
    margin-bottom: 20px;
}

/* Footer Section */
.footer-section {
	background-color: rgba(244, 244, 244, 1);
    color: #333333;
    padding: 20px;
    text-align: center;
}

.footer-section p {
    margin: 0;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background-color: #F4F4F4;
    padding: 120px;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-section p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
	margin-top: 20px;
}

.contact-form {
    flex: 1 1 45%;
    margin: 10px;
}

.contact-form {
    max-width: 45%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #00bbf1;
}

.contact-item p {
    margin: 0;
}

.contact-form .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 94%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #FFFFFF;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #00bbf1;
    outline: none;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
    margin-bottom: 20px;
}

.contact-form .cta-button {
    display: block;
    width: 100%;
    background-color: #00bbf1;
    color: #333333;
    padding: 12px 20px;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form .cta-button:hover {
    background-color: #00bbf1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details, .contact-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-details {
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-form .form-group {
        flex-direction: column;
    }

    .contact-form input, .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-form .cta-button {
        padding: 15px;
        font-size: 16px;
    }
}

.map-container {
	flex: 1 1 45%; /* Adjusted width to make it a bit closer */
	margin: 10px; /* Remove margins */
	position: relative;
    margin-top: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.contact-info-overlay {
    position: absolute;
    top: 10px; /* Adjusts the position on top of the map */
    left: 10px; /* Aligns text towards the left */
    background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Ensures the overlay appears on top of the map */
}

.contact-info-overlay p {
    margin: 5px 0;
    font-size: 14px; /* Font size for the contact info */
    color: #333;
	 text-align: left;
}

.contact-info-overlay i {
    margin-right: 8px;
    color: #00bbf1; /* Icon color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form, .map-container {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}