cbody {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
}

.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0044cc; /* Blue background */
    padding: 0.05rem;
    border-radius: 10px;
    margin: 10px; /* Adds the hovering gap */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    padding-right: 20px;
}

.menu-bar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0044cc; /* Blue background */
    padding: 0.05rem;
    border-radius: 10px;
    margin: 10px; /* Adds the hovering gap */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0 1rem;
    position: relative;
}

.menu a {
    text-decoration: none;
    color: white; /* White text for contrast */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #a6c8ff; /* Light blue on hover */
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-list .dropdown-content a {
    color: #333; /* Black text for dropdown items */
}

.nav-list .dropdown-content a:hover {
    color: black; /* Blue hover effect for dropdown items */
    background-color: #a6c8ff; /* Light blue background on hover */
}

/* Dropdown icon */
.chevron-down {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Space between items */
}

/* Common styles for contact links */
.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* Hover effect for contact links */
.contact-link:hover {
    color: #a6c8ff; /* Light blue on hover */
}

/* Style for icons */
.icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem; /* Space between icon and text */
}

.contact-text {
    font-size: 1rem;
    margin-left: -10px;
}

.icon-image {
    width: auto;
    height: 50px;
    margin-left: -10px;
}

.icon-phone-image {
    width: auto;
    height: 45px;
    margin-left: -5px;
}

.logo {
    font-size:1.7rem;
    font-weight: bold;
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin: 0 0.5rem;
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: invert(0); /* Adjust for visibility against white */
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

main {
    padding: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0044cc; /* Blue headings */
}

section p {
    font-size: 1rem;
    line-height: 1.6;
    color: black;
}

.email-text {
    font-size: 1rem;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo-image {
    height: 60px;
    width: auto;
}

.image-section {
    position: relative;
    width: 80%;
    max-height: 400px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f0f0f0; /* Light gray fallback */
    border-radius: 10px;
}

.section-image {
    width: 100%;
    height: auto;
    display: block;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 68, 204, 0.8); /* Semi-transparent blue */
    padding: 0 10px;
    border-radius: 5px;
}

.services-section {
    position: relative;
    text-align: center;
    background-color: #e6f2ff; /* Light blue background */
    border-radius: 20px;
    padding: 20px 20px;
    margin: 30px auto;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0044cc;
    margin-bottom: 20px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.services-list a {
    text-decoration: none;
    color: #0044cc; /* Blue text */
    background-color: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #0044cc; /* Blue border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-list a:hover {
    background-color: #0044cc; /* Blue background on hover */
    color: white; /* White text on hover */
    transform: translateY(-3px);
}

.services-section img {
    margin-bottom: 20px;
}

.intro-section {
    background-color: #e6f2ff;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 30px auto;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-heading {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    color: #0044cc;
    margin-bottom: 20px;
}

.intro-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    max-width: 800px;
    margin: 0 auto;
}


.package-section {
    background-color: #d6e4ff; /* Light blue background for the section */
    padding: 40px 20px; /* Padding for spacing */
    border-radius: 20px;
    margin: 20px auto; /* Center the section */
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.package-container {
    display: flex;
    align-items: center; /* Align items to the center */
    gap: 20px; /* Space between the image and the text */
}

.package-image {
    flex: 1; /* Make the image take up 50% of the container */
    max-width: 50%; /* Ensure the image is no larger than 50% */
}

.package-image img {
    width: 100%; /* Make the image fill the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners for the image */
}

.package-details {
    flex: 1; /* Take up the remaining 50% of the container */
    text-align: left; /* Align text to the left */
}

.package-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff; /* Blue for the package name */
    margin-bottom: 10px;
}

.package-price {
    font-size: 1.4rem;
    color: #ff4500; /* Orange-red for the price */
    margin-bottom: 20px;
}

.package-description {
    font-size: 1.1rem;
    color: #1a1a1a; /* Dark text for readability */
    line-height: 1.6;
    margin-bottom: 20px;
}

.book-now-btn {
    padding: 12px 25px;
    background-color: #007bff; /* Blue background for the button */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}



.logo-container-about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Spacing between the logo and text */
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo-image-about {
    height: 300px; /* Adjust logo size */
    width: auto; /* Keep aspect ratio */
}

.introduction-text {
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
    overflow-y: auto;
}

.directors-section {
    background-color: #d6e4ff; /* Light blue background */
    padding: 20px 20px; /* Padding for spacing */
    border-radius: 20px; /* Rounded corners */
    margin: 20px auto; /* Center the section */
    max-width: 90%; /* Max-width to prevent it from being too wide */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center the content */
}

.directors-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a; /* Dark text for readability */
    margin-bottom: 20px; /* Space below the heading */
}

.directors-list {
    list-style-type: disc; /* Enables bullet points */
    padding-left: 20px; /* Adds padding to the left to create space for bullet points */
    margin: 0;
    display: inline-block; /* Make the list inline-block to keep it centered */
    text-align: left; /* Align the text of the list items to the left */
}

.directors-list li {
    font-size: 1.2rem; /* Size for the director's name */
    color: #1a1a1a; /* Dark text for readability */
    margin-bottom: 10px; /* Space between the items */
}

.regulatory-section {
    background-color: #d6e4ff; /* Light blue background */
    padding: 20px 20px; /* Padding for spacing */
    border-radius: 20px; /* Rounded corners */
    margin: 20px auto; /* Center the section */
    max-width: 90%; /* Max-width to prevent it from being too wide */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center the content */
    margin-bottom: 100px;
}

.regulatory-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a; /* Dark text for readability */
    margin-bottom: 20px; /* Space below the heading */
}

.regulatory-table {
    width: 100%;
    border-collapse: collapse; /* Ensures no space between table cells */
    margin-top: 20px; /* Adds space between heading and table */
}

.regulatory-table th, .regulatory-table td {
    padding: 12px 15px; /* Padding inside table cells */
    border: 1px solid #ccc; /* Light gray border for table cells */
    color: #1a1a1a; /* Dark text color */
    text-align: center; /* Center-align the content of the cells */
}

.regulatory-table th {
    background-color: #b3d4fc; /* Slightly darker blue for headers */
    font-weight: bold; /* Make header text bold */
}

.regulatory-table td {
    background-color: #eaf4ff; /* Very light blue for table cells */
}

.regulatory-table tr:nth-child(even) td {
    background-color: #d6e4ff; /* Alternate row color */
}

.regulatory-table tr:hover td {
    background-color: #b3d4fc; /* Hover effect for rows */
}


body {
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Section Styles */
/* Global Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
}

.service-section {
    background-color: #3a3a3a;
    color: white;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.service-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.service-item {
    background-color: white;
    color: black;
    width: 250px;
    height: 320px; /* Set fixed height for uniformity */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-info {
    padding: 15px;
    background-color: #f5f5f5;
    height: 120px;
    transition: height 0.3s ease;
}

.service-item:hover .service-info {
    height: 180px; /* Adjust height on hover for aesthetic purpose */
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 50px; /* Added some space between title and button */

}

.book-now-btn-services {
    background-color: #e60000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.3s ease;
}

.book-now-btn-services:hover {
    background-color: #b30000;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 90%;
    }
}

.booking-section {
    background-color: #d6e4ff; /* Dark grey background */
    color: white;
    padding: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;


}

.booking-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.booking-section p {
    font-size: 1rem;
    color: black; /* Lighter text for description */
    margin-bottom: 40px;
}

.booking-options {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap; /* For responsiveness */
}

.form-option, .call-option {
    background-color: #ffffff; /* White background for form boxes */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 45%;
    min-width: 300px; /* Ensure responsive layout */
    margin: 10px 0;
}

.form-option h3, .call-option h3 {
    font-size: 1.5rem;
    color: #3a3a3a; /* Dark grey text for headings */
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555; /* Darker grey for labels */
    text-align: left;
}

.booking-form input, .booking-form select {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc; /* Lighter border color */
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.service-btn {
    background-color: #ffffff;
    color: #3a3a3a;
    padding: 10px 20px;
    border: 2px solid #3a3a3a;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-btn:hover {
    background-color: #0056b3;
    color: white;
}

.service-btn.selected {
    background-color: #0056b3;
    color: white;
}

.booking-form button.submit-btn {
    background-color: #007bff; 
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking-form button.submit-btn:hover {
    background-color: #0056b3; 
}

.call-option p {
    font-size: 1.2rem;
    color: #0056b3; /* Orange color for call number */
    margin-top: 10px;
}

.call-option a {
    color: #0056b3; 
    text-decoration: none;
    font-weight: bold;
}

.call-option a:hover {
    text-decoration: underline;
}

.contact-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: #d6e4ff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h2, .remarks-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0056b3;
}

.contact-details p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-details a {
    color: black;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Remarks form styles */
.remarks-section {
    margin-top: 40px;
}

.remarks-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.remarks-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.remarks-form input, .remarks-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.remarks-form textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.book-now-section {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 100px;
}

.book-now-box {
    background-color: #d6e4ff; /* Light blue background for the box */
    color: #1a1a1a; /* Dark text for readability */
    width: 100%;
    max-width: 800px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: center;
}

.book-now-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff; /* Blue title */
}

.book-now-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.book-now-btn-index {
    background-color: #007bff; /* Blue background for the button */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.book-now-btn-index:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

footer {
    background-color: #d6e4ff; /* Light blue background for the footer */
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #1a1a1a; /* Dark text for readability */
    border-radius: 10px 10px 0 0;
}

footer p {
    margin: 0;
    color: #007bff; /* Blue text for links or emphasis */
}


/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center; /* Centers the content */
    background-color: #000; /* Fallback color in case the image doesn't load */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* Slides */
.slide {
    display: none;
    position: relative;
    text-align: center; /* Centers the text overlay */
}

/* Images */
.slideshow-image {
    width: 100%;
    height: 400px; /* Adjust to match the desired size */
    object-fit: cover; /* Ensures the image scales properly without distortion */
    display: inline-block; /* Centers the image */
    border-radius: 10px;
}
/* Text Overlay */

/* Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    cursor: pointer;
    padding: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    border-radius: 50%;
    user-select: none;
}

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


.nav-bar {
    font-family: 'Montserrat', sans-serif;
    background-color: #0044cc;
    padding: 8px 16px;
    width: 100%;
}
.nav-list {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}
.nav-list li {
    font-family: "Montserrat", sans-serif;
    position: relative;
}
.nav-list a, .nav-list button {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: white; /* White for main menu items */
    font-size: 1rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hover color for main menu items */
.nav-list a:hover, .nav-list button:hover {
    font-family: 'Montserrat', sans-serif;
    color: #a6c8ff; /* Light blue hover effect */
}

.book-now-btn-overlay {
    position: absolute;
    bottom: 10%; /* Adjust for vertical positioning */
    right: 5%; /* Adjust for horizontal positioning */
    background-color: #007bff; /* Blue background for the button */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10; /* Ensures the button appears above the slideshow content */
}

.book-now-btn-overlay:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

.hamburger-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
}

/* Mobile Navigation */
.mobile-nav {
    position: relative;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.mobile-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu.active {
    display: block;
    background-color: white;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.mobile-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-menu li a {
    text-decoration: none;
    color: #000;
    display: block;
    font-family: "Montserrat", sans-serif;
}

/* Mobile Dropdown Button */
.mobile-dropdown .mobile-dropdown-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.mobile-dropdown .mobile-dropdown-btn .mobile-arrow {
    font-size: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Rotate Arrow When Expanded */
.mobile-dropdown .mobile-dropdown-btn.active .mobile-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
    background-color: #f9f9f9;
    font-family: "Montserrat", sans-serif;
}

.mobile-dropdown-content li {
    padding: 8px 0;
}

.mobile-dropdown-content li a {
    text-decoration: none;
    color: #555;
    font-family: "Montserrat", sans-serif;
}

/* Show Dropdown When Active */
.mobile-dropdown-content.active {
    display: block;
}

/* Show/Hide Navbars Based on Screen Size */
@media (min-width: 768px) {
    .menu-bar-nav {
        display: flex;
    }
    .mobile-nav {
        display: none;
    }
}
@media (max-width: 767px) {
    .menu-bar-nav {
        display: none;
    }
    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .contact-container {
        display: none; /* Hides the contact section (email, phone, WhatsApp) */
    }

    .menu-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row; /* Keep the logo and book now button in a row on mobile */
        padding: 10px;
    }

    .logo-container {
        display: flex;
        flex-direction: row; /* Arrange logo and company name horizontally */
        align-items: center;
    }

    /* Optional: Adjust layout of logo and company name */
    .logo-image {
        width: 50px; /* Adjust logo size */
        height: auto;
    }

    .logo {
        font-size: 1.2rem; /* Adjust company name size */
        margin-left: 10px; /* Space between logo and company name */
    }
}