        :root {
            --primary-color: #13457A;
            --secondary-color: #FFFFFF;
            --white-color: #FFFFFF;
            --accent-color: #3C8953;
            --dark-blue-color: #13457A;
        }

        body {
            font-family: Arial, sans-serif;
            scroll-behavior: smooth;
        }

        /* Header Styles */
        .top-header {
            background-color: var(--white-color);
            padding: 5px 0;
            min-height: 60px; /* Adjust as needed */
        }
        .top-header .navbar-brand img {
            height: 100px; /* Adjust logo height */
            max-width: 100%;
        }
        .top-header .nav-info {
            text-align: right;
            color: var(--dark-blue-color);
        }
        .top-header .nav-info .btn-book-now {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--white-color);
            font-weight: bold;
            padding: 8px 15px;
            font-size: 0.9rem;
        }
        .top-header .nav-info .btn-book-now:hover {
            background-color: #327546;
            border-color: #327546;
        }
        .top-header .nav-info .phone-number {
            font-size: 1.1rem;
            margin-top: 5px;
            font-weight: bold;
        }
        .top-header .nav-info .tagline {
            font-size: 1.1rem;
			font-weight: bold;
            margin-top: 2px;
        }
		
		.brand-text {
			font-size: 3.5rem;
			font-weight: bold;
            background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 87, 101, 1) 50%, rgba(3, 212, 188, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
		}		

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 500px; /* Adjust as needed */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Align text box to the right */
            text-align: center;
            color: var(--white-color);
            padding-right: 5%; /* Adjust padding for the text box */
			position: relative;
			overflow: hidden; /* Ensure overlay stays contained */
        }
				
        .hero-text-box {
            background-color: rgba(1, 159, 220, 0.7); /* primary-color with opacity */
            padding: 30px;
            border-radius: 8px;
            max-width: 500px; /* Limit width of the text box */
            text-align: left;		
			position: relative;
			z-index: 2; /* Ensure text appears above the overlay */
        }
        .hero-text-box h1 {
            font-size: 1.75rem;
            font-weight: bold;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0;
            background-color: var(--secondary-color);
        }
        .features-section .card {
            border: none;
            border-radius: 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
            background-color: var(--dark-blue-color);
            color: var(--white-color);
            text-align: center;
            padding: 20px;
        }
        .features-section .card:hover {
            transform: translateY(-10px);
        }
        .features-section .card i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        .features-section .card h3 {
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Content Sections (About Us, Services, Contact Us) */
        .content-section {
            padding: 80px 0;
        }
        .content-section:nth-of-type(odd) {
            background-color: #f8f9fa; /* Light grey for alternating background */
        }
        .content-section h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-align: center;
        }
        .content-section img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .content-section p, .content-section ul {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        .content-section ul {
            list-style: none;
            padding: 0;
        }
        .content-section ul li {
            margin-bottom: 15px;
        }
        .content-section ul li strong {
            color: var(--primary-color);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 5px;
        }

        /* Services Section Specifics */
        .services-section .btn-book-now-bottom {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--white-color);
            font-weight: bold;
            padding: 12px 25px;
            font-size: 1.1rem;
            margin-top: 20px;
        }
        .services-section .btn-book-now-bottom:hover {
            background-color: #327546;
            border-color: #327546;
        }

        /* Contact Us Section Specifics */
        .contact-us-form .form-control {
            border: 1px solid #ccc;       /* light gray so fields are visible */
            border-radius: 5px;
            padding: 12px 15px;
            width: 100%;
            background-color: #fff;       /* ensure white background */
            color: #333;
        }

        .contact-us-form .form-control:focus {
            border-color: var(--primary-color);   /* blue border on focus */
            box-shadow: 0 0 0 0.2rem rgba(19, 69, 122, 0.25); /* subtle glow */
        }        
        
        .contact-us-form .form-label {
            font-weight: bold;
            color: var(--primary-color);
        }
        .contact-us-form .btn-submit {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white-color);
            font-weight: bold;
            padding: 12px 30px;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }
        .contact-us-form .btn-submit:hover {
            background-color: var(--dark-blue-color);
            border-color: var(--dark-blue-color);
        }
		
		.site-footer {
			background-color: var(--primary-color);
			color: var(--white-color);
			font-size: 0.9rem;
		}		

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-section {
                height: 400px;
                justify-content: center;
                padding-right: 0;
            }
            .hero-text-box {
                max-width: 80%;
                text-align: center;
                margin-top: 100px; /* Push down to be visible */
            }
            .hero-text-box h1 {
                font-size: 1.8rem;
            }
            .top-header .nav-info {
                text-align: center;
                margin-top: 10px;
            }
            .top-header .navbar-brand {
                display: block;
                text-align: center;
            }
            .content-section .row {
                flex-direction: column;
            }
            .content-section .col-md-6 {
                margin-bottom: 30px;
            }
            .content-section .col-md-6.order-md-1,
            .content-section .col-md-6.order-md-2 {
                order: unset !important;
            }
            .contact-us-form .form-control {
                max-width: 100%; /* Ensure full width on smaller screens */
            }
        }

        @media (max-width: 767.98px) {
            .top-header .nav-info {
                font-size: 0.9rem;
            }
            .top-header .nav-info .btn-book-now {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            .hero-section {
                height: 300px;
            }
            .hero-text-box {
                padding: 20px;
            }
            .hero-text-box h1 {
                font-size: 1.5rem;
            }
            .features-section .card {
                margin-bottom: 20px;
            }
            .content-section h2 {
                font-size: 2rem;
            }
            .content-section p, .content-section ul {
                font-size: 1rem;
            }
        }
        
/* FAQ Section */
#faqs .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden; /* keep rounded corners clean */
}

#faqs .accordion-button {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#faqs .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: none; /* remove default bootstrap shadow */
}

#faqs .accordion-button::after {
    filter: invert(1); /* makes the chevron arrow white */
}

#faqs .accordion-body {
    background-color: #f8f9fa;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    padding: 20px;
}

#contactUs .btn-group .btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
    padding: 10px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 30px; /* pill-like shape */
    margin: 0 5px;
}

#contactUs .btn-group .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
}

#contactUs .btn-group .btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white-color);
}