    /* General Styling */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #eaf6f6; /* Light blue-green */
    }

/* Navbar Styling */
header {
    background: linear-gradient(90deg, #2ca58d, #006d5b); /* Gradient background */
    position: fixed;
    top: 0;
    width: 97.5%; /* Full width */
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Padding for the navbar */
    box-sizing: border-box; /* Ensure padding doesn't push content out */
}

.logo {
    color: white; /* Set logo text color */
    font-size: 24px; /* Adjust font size for logo */
}

/* Ensure the nav items don’t get cut off */
nav {
    border: 2px solid #c9a335; /* Goldish border */
    border-radius: 10px; /* Rounded edges */
    padding: 5px; /* Padding around the nav */
    display: flex; /* Flexbox for horizontal layout */
    align-items: center; /* Center items vertically */
}

nav ul {
    list-style: none; 
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox for horizontal layout */
}

nav ul li {
    margin: 0 10px; /* Space between links */
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease; /* Smooth transitions */
    padding: 5px 10px; /* Padding for the links */
    border-radius: 5px; /* Rounded corners for each link */
}

/* Hover effects */
nav ul li a:hover {
    color: #ffdd57; /* Change text color on hover */
    background: rgba(255, 255, 255, 0.2); /* Light background color on hover */
    transform: scale(1.1); /* Bulge effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow effect */
}

/* Responsive Navbar */
.nav-toggle {
    display: none; /* Hide by default */
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Responsive layout */
@media (max-width: 768px) {
    .nav-toggle {
        display: block; /* Show toggle button on small screens */
    }

    nav {
        display: none; /* Hidden by default on mobile */
        position: absolute; /* Overlay on top */
        background: #2ca58d; /* Match navbar background */
        top: 60px; /* Position below the navbar */
        left: 0;
        right: 0;
        z-index: 999; /* Ensure it's above other content */
    }

    nav.active {
        display: block; /* Show when active */
    }

    nav ul {
        flex-direction: column; /* Stack links vertically */
        align-items: center; /* Center items */
        display: none; /* Hidden by default */
    }

    nav.active ul {
        display: flex; /* Show the menu when active */
    }

    nav ul li {
        margin: 10px 0; /* Vertical margin */
    }
}

/* Show nav on larger screens */
@media (min-width: 769px) {
    nav {
        display: flex; /* Show the nav on larger screens */
    }
}



    /* Add space between navbar and sections */
    body {
        padding-top: 30px;
    }


    /* Section Styling */
    section {
        margin-top: 0; /* Remove space between header and next section */
        padding-top: 0;
        padding: 60px 20px;
        text-align: center;
    }
    
/* Basic card styling */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Thick shadow */
    padding: 40px;
    margin: 20px auto; /* Center horizontally */
    width: 95%; /* Card width */
    box-sizing: border-box; /* Include padding in the width */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transform and shadow change */
}

/* Hover effect for bulging */
.card:hover {
    transform: scale(1.02); /* Bulging effect (slightly larger) */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Increase shadow on hover */ /* Increase shadow to make it look lifted */
}







    

    /* Ensuring text doesn't overflow the card */
    .card p {
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Responsive text size */
    .card h2 {
        font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive heading size */
        color: #004d40; /* Dark green */
    }

    .card p {
        font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive paragraph size */
        color: #333; /* Darker grey for text */
    }

/* Banner Section Styling */
.banner {
    background-image: url('banner2.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 500px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 92%; /* Adjust the width */
    margin: 20px auto; /* Center horizontally with equal spacing on both sides */
    position: relative;
    padding-bottom: 20px;
    overflow: hidden; /* Ensure the overlay stays within bounds */
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (0.5) for desired dimness */
    z-index: 1; /* Place the overlay behind the text */
}

.banner * {
    position: relative;
    z-index: 2; /* Ensure text appears above the overlay */
}


    .banner-content {
        color: white;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Shadow for readability */
    }

    .banner h1 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .banner-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    /* Button Styling */
    .btn-banner {
        background: transparent;
        border: 3px solid #2ca58d; /* Greenish border */
        color: #2ca58d;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 25px; /* Rounded edges */
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-banner:hover {
        background-color: rgba(44, 165, 141, 0.2); /* Transparent green on hover */
        border-color: #006d5b; /* Darker green on hover */
    }

    /* Section Heading */
    h2 {
        color: #004d40; /* Dark green */
        font-size: 28px;
        margin-bottom: 20px;
    }

    /* About Section Styling */
.about-section {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    padding: 20px; /* Add some padding */
}

.about-image {
    width: 40%; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Space between image and content */
    border-radius: 10px; /* Optional: round the image edges */
}

.about-content {
    width: 60%; /* Adjust width to fit content */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stack elements on smaller screens */
        text-align: center; /* Center text on smaller screens */
    }

    .about-image {
        width: 100%; /* Full width on small screens */
        margin: 0 0 20px 0; /* Margin for spacing below image */
    }

    .about-content {
        width: 100%; /* Full width for content */
    }
}


    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }




/* Services Section Styling */
.service_section {
    background: #f9f9f9; /* Light background for contrast */
    padding: 40px 0; /* Padding for top and bottom */
}

.heading_container {
    text-align: center; /* Center the heading */
    margin-bottom: 30px; /* Space below heading */
}

.services-wrapper {
    display: flex; /* Use Flexbox for horizontal layout */
    justify-content: space-around; /* Space out the cards evenly */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.service-card {
    background: linear-gradient(135deg, #2ca58d, #006d5b); /* Gradient background */
    border: none; /* Remove default card border */
    border-radius: 10px; /* Rounded edges */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Thick shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Transition for hover effect */
    margin: 20px; /* Space around each card */
    padding: 20px; /* Padding inside the card */
    width: 300px; /* Set a fixed width for the cards */
    text-align: center; /* Center text in cards */
}

.service-card:hover {
    transform: translateY(-5px); /* Slightly lift card on hover */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); /* Enhance shadow on hover */
}

.icon-box {
    color: #fff; /* Icon color */
    margin-bottom: 15px; /* Space below the icon */
}

.card-title {
    color: #fff; /* Title color */
    margin-bottom: 10px; /* Space below title */
}

.card-text {
    color: #ffffff; /* Text color */
}

/* Animated Text */
.animated-text {
    animation: fadeInUp 0.5s ease forwards; /* Fade-in animation */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service_section {
        padding: 20px 0; /* Reduce padding on smaller screens */
    }

    .services-wrapper {
        flex-direction: column; /* Stack cards on smaller screens */
        align-items: center; /* Center cards */
    }

    .service-card {
        width: 80%; /* Full width on small screens */
    }
}

.team_section {
    padding: 50px 20px; /* Padding around the section */
    background-color: #f9f9f9; /* Light background */
}

.heading_container {
    text-align: center;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* Responsive grid */
    gap: 10px; /* Space between boxes */
    justify-content: center; /* Center the grid */
}

.team-box {
    background-color: white;
    border-radius: 10px; /* Rounded edges */
    border: 1px solid #006d5b; /* Greenish border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
    text-align: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    margin: 0 10px; /* Margin for spacing */
}

.team-box:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.team-image {
    margin-top: 10px; /* Space between name and image */
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Rounded edges */
    transition: height 0.3s ease; /* Smooth transition for height */
}






/* Gallery styling 
.gallery-container {
    padding: 0px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 10px; 
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}


.gallery-img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
    border-radius: 10px 10px 0 0; 
}

.gallery-text {
    margin: 10px; 
    font-size: 14px; 
    color: white; 
    word-wrap: break-word; 
}

/* Lightbox styling */
.lightbox {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: red;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox p {
    margin-top: 10px;
    text-align: center;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive layout */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 images on smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 image on mobile */
    }

    .gallery-text {
        font-size: 12px; /* Smaller text on small screens */
    }
}
*/



/* Contact Section Styling */
.contact-section {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Thick shadow */
    background: #f1f1f1;
}

.contact-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2ca58d;
    transition: transform 0.3s ease-in-out;
}

.contact-icon:hover {
    transform: scale(1.1); /* Animate on hover */
}

.contact-icon i {
    margin-bottom: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
    .contact-icons {
        flex-direction: column;
    }
}

.footer {
    background: linear-gradient(90deg, #2ca58d, #006d5b);
    color: white; /* Text color */
    text-align: center; /* Center text */
    padding: 10px; /* Padding for space */
    position: relative; /* Positioning */
    bottom: 0; /* Stick to the bottom */
    width: 100%; /* Full width */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Responsive styling for footer */
@media (max-width: 768px) {
    .footer {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

/* Gradient background for the contact section */
#contact {
    background: linear-gradient(135deg, #2ca58d, #1c5d99);
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

/* Styling contact icons */
.contact-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-item {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, color 0.3s ease;
    position: relative;
}

.contact-item i {
    font-size: 36px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Hover effect on contact icons */
.contact-item:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffdd57;
    padding: 8px;
}

.contact-item:hover i {
    color: #ffdd57;
}

/* Tooltip styling */
.contact-item:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.contact-item:hover::before {
    opacity: 1;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styling */
@media (max-width: 768px) {
    .contact-icons {
        flex-direction: column;
    }

    .contact-item {
        margin: 10px 0;
    }
}

/* Trick 1: Fade in background color on load */
@keyframes fadeInBackground {
    0% {
        background-color: #1c5d99;
    }
    100% {
        background-color: #2ca58d;
    }
}

/* Trick 2: Animate icons bounce when they enter viewport */
.contact-item {
    animation: bounceIn 1.5s ease forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Trick 3: Apply box-shadow hover effect */
.contact-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Trick 4: Change border on hover */
.contact-item:hover {
    border: 2px solid #ffdd57;
    padding: 8px;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: transparent; /* Black background with opacity */
    padding-top: 60px; /* Padding at the top */
}

/* Modal Content */
.modal-content {
    background: linear-gradient(90deg, #2ca58d, #006d5b); /* Gradient background */
    margin: auto; /* Centered */
    padding: 40px; /* More padding for cleaner design */
    border: 1px solid #ffdd57;
    width: 70%; /* Width adjusted for larger screens */
    max-width: 250px; /* Limit max width for better layout */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    color: white;
    text-align: center; /* Center align all content */
    transition: all 0.3s ease-in-out;
}

/* Close Button */
.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #ddd;
    text-decoration: none;
    cursor: pointer;
}

/* Input fields */
.modal-content input[type="email"],
.modal-content input[type="password"] {
    width: 100%; /* Full-width inputs */
    padding: 10px;
    margin: 10px 0 20px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding is considered in total width */
    font-size: 16px;
    background-color: #f9f9f9;
}

/* Label styles */
.modal-content label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Submit Button */
.bulge-button {
    color: white;
    background-color: #2ca58d; /* Contrast button */
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ffdd57; 
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: 100%; /* Full width for consistency */
    margin-top: 20px;
}

.bulge-button:hover {
    transform: scale(1.05); /* Slight bulge */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    background-color: #006d5b; 
}

/* Focused Input Styling */
.modal-content input:focus {
    outline: none;
    border: 2px solid #ffdd57; /* Highlighted border on focus */
}

/* Responsive Design */
@media (max-width: 600px) {
    .modal-content {
        width: 90%; /* Adjust width for smaller screens */
        padding: 30px;
    }
}
/* Basic styling for the image */
.about-image {
    width: 100%;
    max-width: 600px; /* Set max width for responsiveness */
    height: auto; /* Make image height auto for responsiveness */
    display: block;
    margin: 0 auto; /* Center the image */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

/* Hover effects */
.about-image:hover {
    animation: rotateBulgeFade 3s infinite ease-in-out;
}

/* Keyframes for the Kamui-like rotating, bulging, and fading */
@keyframes rotateBulgeFade {
    0% {
        transform: scale(1) rotate(0deg) skew(0deg);
        opacity: 1;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }
    25% {
        transform: scale(1.1) rotate(15deg) skew(5deg);
        opacity: 0.9;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.2) rotate(30deg) skew(-5deg);
        opacity: 0.7;
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
    }
    75% {
        transform: scale(1.3) rotate(45deg) skew(10deg);
        opacity: 0.5;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
    }
    100% {
        transform: scale(1) rotate(0deg) skew(0deg);
        opacity: 1;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }
}


