
/* body {
    background: linear-gradient(190deg, #f3fbfb, #49d4e4);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
} */
 



body {
    background: radial-gradient(rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0.001) 100%), /* Semi-transparent white overlay */
                url('../images/FullLogo_2.jpg') no-repeat center center,
                url('../images/icononly_transparent_nobuffer.png') no-repeat 5% center,
                url('../images/icononly_transparent_nobuffer.png') no-repeat 95% center,
                radial-gradient(circle, #f3fbfb 35%, #49d4e4 100%) no-repeat center center;
    background-size: cover, 25%, 15%, 15%, cover; /* Set sizes: overlay, main logo, left icon, right icon, gradient */
    background-attachment: fixed; /* Keep background images fixed at center of screen while scrolling */
    font-family: Arial, sans-serif; /* Optional: Set a font */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensure the body takes up at least the full viewport height */
}

.btn-ihs {
    background-color: #1d6d80;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.text-footer {
    /* color: #1d6d80; */
    color: #bdc3c7;
}

.default-text-colour {
    color: #1d6d80;
}

.navbar {
    padding-left: 30px; /* Increase left padding */
    padding-right: 30px; /* Increase right padding */
    background-color: #1d6d80;
    border-bottom-left-radius: 15px; /* Round bottom-left corner */
    border-bottom-right-radius: 15px; /* Round bottom-right corner */
}

.dropdown-menu {
    background-color: #1d6d80; /* Match the navbar background */
    border-radius: 0 0 15px 15px; /* Round bottom corners of the dropdown */
}

.flex-container {
    display: flex; /* Use flexbox to align items side by side */
    gap: 20px; /* Add spacing between the two divs */
    justify-content: space-between; /* Optional: Adjust alignment */
    flex-wrap: wrap; /* Ensure the divs stack on smaller screens */
}

.half-page-div {
    width: 48%; /* Set each div to take up 50% of the container width */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

.fit-content-width {
    width: fit-content; /* Set width to fit content */
    max-width: 100%; /* Ensure it doesn't exceed the container */
    box-sizing: border-box; /* Include padding and border in the width */
}

.center-page {
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center horizontally */
    margin: 0; /* Remove default margin */
}

.light-blue-box {
    background-color: #e6f7ffcb; /* Light blue background */
    border: 1px solid #b3e5fc; /* Optional: Add a border */
    border-radius: 8px; /* Optional: Add rounded corners */
    padding: 20px; /* Add padding inside the box */
    margin: 20px 0; /* Add spacing above and below the box */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    width: 85%; /* Set a width for the box */
}

.vertical-divider {
    border-left: 1px solid #ffffff; /* White vertical line */
    height: 30px; /* Adjust height to match the navbar */
    margin: auto 10px; /* Center the divider and add spacing */
    opacity: 0.5; /* Optional: Make the divider slightly transparent */
}

.partners-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.partner-card {
    background: #f9f9f9a5;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
}
.partner-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.partner-details {
    padding: 15px;
}
.partner-details h2 {
    font-size: 1.5em;
    margin: 10px 0;
}
.partner-details p {
    font-size: 1em;
    color: #555;
    margin: 10px 0;
}
.partner-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.partner-link:hover {
    background-color: #0056b3;
}

/* Service Cards Styling */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    max-width: 1200px;
}

.service-card {
    background: #f9f9f9a5;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px 20px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-details {
    padding: 0 15px;
}

.service-details h3 {
    font-size: 1.4em;
    margin: 15px 0;
    color: #1d6d80;
    font-weight: bold;
}

.service-details p {
    font-size: 1em;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #1d6d80;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
}

.service-link:hover {
    background-color: #0f4c5c;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .service-card {
        width: 90%;
        margin: 0 auto;
    }
    
    .services-container {
        gap: 20px;
    }
}
