:root {
    --white-color: #FFFFFF;
    --black-color: #000000;
    --grey-color: #666666;
    --main-color: #072045;
    --base-color: #D6EFD8;
    --light-grey-color: #EEEEEE;
    --secondary-color: #2E6AC1;
    --light-blue: #E7EEF8;
}

.header-logo {
    width: 8rem;
}

.header-bg {
    background: linear-gradient(135deg, var(--white-color), var(--secondary-color));
    /* Gradient from top-left to bottom-right */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-item {
    position: relative;
    /* Ensure the text is positioned relative to the image */
}

.carousel-caption {
    position: absolute;
    /* Position the text relative to the carousel item */
    top: 60%;
    /* Center vertically */
    left: 30%;
    /* Center horizontally */
    transform: translate(-10%, -70%);
    /* Offset the text to truly center */
    z-index: 10;
    /* Ensure the text appears above the image */
    color: white;
    /* Text color */
}

.carousel-caption h1 {
    font-size: 4rem;
    /* Adjust heading size */
    font-weight: bold;
}

.carousel-caption p {
    font-size: 2rem;
    /* Adjust paragraph size */
    line-height: 2.5rem;
}

a:visited {
    color: rgb(0, 0, 0);
}

.booking-button:hover {
    background-color: var(--secondary-color);
}


.nav-item {
    color: var(--secondary-color) !important;
}

.nav-item-active {
    color: var(--main-color) !important;
}

.custom_menu-btn {
    position: fixed;
    right: 25px;
    top: 15px;
    width: 50px;
    height: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
}

.openbtn:hover {
    background-color: #444;
}

.sidepanel {
    width: 0;
    position: fixed;
    z-index: 1;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--main-color);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    padding: 8px 8px 15px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
    border-bottom: grey solid 1px;
}

.sidepanel a:hover {
    color: #f1f1f1;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
}

.custom_menu-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
    z-index: 7;
    border-radius: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.custom_menu-btn.menu_btn-style::before {
    width: 100vh;
    height: 100vh;
    background-color: #072045;
    -webkit-transform: scale(5);
    transform: scale(5);
    border-radius: 0;
}

.custom_menu-btn button {
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    position: relative;
    z-index: 999;
    margin: 0;
}

.custom_menu-btn button span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000000;
    margin: 2.5px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 15px;
}

.custom_menu-btn .s-2 {
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}


/*header section*/
.header_section {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.header_section .nav_container {
    margin: 0 auto;
}



.overlay-content {
    position: relative;
    top: 30%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    z-index: 99;
}


.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 9;
}

.overlay .closebtn {
    position: absolute;
    top: 0;
    left: 30px;
    font-size: 60px;
}

.overlay a {
    padding: 0px;
    text-decoration: none;
    font-size: 22px;
    color: #ffffff;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 15px;
    /* text-transform: uppercase; */
    font-weight: 600;
    /* opacity: 0; */
}

.overlay a:hover {
    color: #ffffff;
}

.overlay-content {
    position: relative;
    top: 30%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    z-index: 99;
}

.menu_width {
    width: 100%;
}

.menu_width.overlay a {
    opacity: 1;
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
        /* Ensure no other CSS overrides it */
    }
}

.top-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    /* padding-bottom: 0px; */
    /* Adjust background color as needed */
}

.icons {
    display: flex;
    gap: 15px;
    /* Adjust spacing between icons */
}

.icons a {
    text-decoration: none;
    color: var(--secondary-color);
    /* Adjust icon color */
    font-size: 24px;
    /* Adjust icon size */
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    padding: 10px;
    transition: all 0.3s ease;
}

.icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.logo img {
    width: 80px;
    /* Adjust logo size */
}


.fixed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    /* Ensures it stays above other elements */
}

.top-row {
    padding: 10px;
    text-align: center;
}

.headline {
    padding: 5rem 3rem;
    text-align: center;
    font-size: 1.8rem;
}

.cust-btn {
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    /* Background color for the circle */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Default styling for larger screens */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile styling */
@media (max-width: 768px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom a,
    .footer-bottom p {
        margin: 5px 0;
        /* Optional: Adds spacing between text and links */
    }
}

.title-text {
    font-size: 3.5rem !important;
    font-family: 'Lobster', serif;
    font-weight: normal !important;
}

/* Container for alignment (optional) */
.rounded-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Rounded image styling */
.rounded-image {
    width: 100%;
    /* Adjust size as needed */
    height: auto;
    border-radius: 15px;
    /* Rounds the corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional shadow */
}

.light-blue-container {
    background-color: var(--light-blue);
}

.paragraph {
    font-size: 1.5rem;
    text-align: center;
    line-height: 2.2rem;
}

.dwb {
    font-size: 2rem;
    text-align: center;
    line-height: 2.6rem;
}

.service-card {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Lobster', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
}

.cust-btn {
    text-align: center;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
}

.cust-btn:hover {
    background-color: #072045;
    color: var(--white-color);
}

.footer {
    background-color: var(--main-color);
    color: #ffffff;
}

.footer-logo {
    width: 5rem;
    color: #ffffff;
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #d1d1d1;
}

.footer-address {
    font-size: 1.3rem;
    line-height: 25px;
    color: #d1d1d1;
}

.footer-links {
    list-style: none;
    /* padding-top: 5rem; */
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 1.3rem;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #001d42;
    /* Even darker blue */
    font-size: 0.9rem;
    color: #d1d1d1;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    padding: 3rem 0rem;
}

.dev-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 900px;
    gap: 20px;
}

.text-section {
    flex: 1;
    min-width: 300px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-section p {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.image-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.features-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

.features-title {
    text-align: left;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 10px;
}

.features-title2 {
    text-align: left;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    font-weight: bold;
    line-height: 5px;
}

.feature {
    display: flex;
    align-items: flex-start;
    /* Aligns text and icons to the top */
    gap: 20px;
    /* Adds spacing between the icon and the text */
    border-bottom: 1px solid #ccc;
    /* Divider between features */
    padding: 15px 0;
}

.feature:last-child {
    border-bottom: none;
    /* Remove divider from the last feature */
}

/* Fix the width of the image container */
.feature-icon {
    width: 60px;
    /* Set a fixed width for consistency */
    display: flex;
    justify-content: center;
    /* Centers the image horizontally */
    align-items: center;
    /* Centers the image vertically */
    flex-shrink: 0;
    /* Prevents the container from shrinking */
}

.feature-icon img {
    max-width: 100%;
    /* Ensures the image fits within the container */
    max-height: 50px;
    /* Set a max height for the image */
    object-fit: contain;
    /* Ensures the image retains its aspect ratio */
}

.feature-content {
    flex-grow: 1;
    /* Ensures the text area takes up the remaining space */
}

.feature-content h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: var(--main-color);
    font-weight: bold;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

/* Adjust padding and font size for mobile screens */
@media (max-width: 768px) {
    .features-container {
        padding: 10px;
    }

    .feature {
        flex-direction: column;
        /* Stacks icons and text vertically on smaller screens */
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 10px;
    }
}

a:visited {
    color: white;
}

.qoute p {
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 2rem;
    font-family: 'Lobster';
    font-weight: normal;
    padding: 3rem;
    line-height: 3rem;
    margin: 2rem 0;
    text-align: center;
}

.nav-item a:visited{
    color: var(--main-color);
}

.terms-header h1 {
    margin: 0;
}

.terms-container {
    padding: 20px;
}

.terms-title {
    color: var(--main-color);
}

.terms-paragraph {
    margin: 10px 0;
}

.terms-list {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 10px;
}

.terms-contact a {
    color: #0056b3;
    text-decoration: none;
}

.terms-contact a:hover {
    text-decoration: underline;
}