body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Headings */
h1 {
    font-size: 2.5rem;
    /* ~40px */
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    /* ~32px */
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    /* ~28px */
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    /* ~20px */
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    /* ~16px */
    font-weight: 500;
}

/* Paragraphs and body text */
p {
    font-size: 1rem;
    /* 16px */
    margin-bottom: 1em;
}

small {
    font-size: 0.875rem;
    /* 14px */
    color: #666;
}

div,
span,
li {
    font-size: 1rem;
}

/* =========================================
   HERO NAVBAR
========================================= */

.hero-navbar {
    z-index: 1050;
    transition: transform .35s ease;
}

.hero-navbar.nav-hidden {
    transform: translateY(-100%);
}

.hero-navbar.nav-visible {
    transform: translateY(0);
}


/* =========================================
   LOGO
========================================= */

.hero-logo img {
    height: 90px;
    width: auto;
}


/* =========================================
   DESKTOP NAV PILL
========================================= */

.hero-nav-pill {
    min-height: 58px;
    padding: 6px 8px 6px 14px;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 50%, #020617 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}


/* =========================================
   NAV LINKS
========================================= */

.hero-nav-pill .nav-link,
.mobile-nav-menu .nav-link {
    position: relative;
    z-index: 1;

    color: rgba(255, 255, 255, .75);

    font-size: 14px;
    white-space: nowrap;

    transition:
        color .3s ease,
        transform .3s ease;
}


/* DESKTOP NAV LINK */

.hero-nav-pill .nav-link {
    padding: .65rem .9rem;
    border-radius: 50rem;
}


/* =========================================
   HOVER / ACTIVE BACKGROUND
========================================= */

.hero-nav-pill .nav-link::before {
    content: "";

    position: absolute;
    inset: 3px;

    border-radius: 50rem;

    background:
        linear-gradient(135deg,
            rgba(0, 104, 183, .45),
            rgba(0, 185, 232, .22));

    opacity: 0;

    transform: scale(.75);

    transition:
        opacity .3s ease,
        transform .3s ease;

    z-index: -1;
}


/* SMALL GLOW EFFECT */

.hero-nav-pill .nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #00b9e8;

    opacity: 0;

    transform:
        translateX(-50%) scale(0);

    box-shadow:
        0 0 8px #00b9e8,
        0 0 15px rgba(0, 185, 232, .7);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


/* =========================================
   HOVER EFFECT
========================================= */

.hero-nav-pill .nav-link:hover {
    color: #fff;

    transform: translateY(-1px);
}


.hero-nav-pill .nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}


.hero-nav-pill .nav-link:hover::after {
    opacity: 1;

    transform:
        translateX(-50%) scale(1);
}


/* =========================================
   ACTIVE NAV LINK
========================================= */

.hero-nav-pill .nav-link.active {
    color: #fff;
}


.hero-nav-pill .nav-link.active::before {
    opacity: 1;

    transform: scale(1);

    background:
        linear-gradient(135deg,
            rgba(0, 104, 183, .65),
            rgba(0, 185, 232, .35));

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 5px 15px rgba(0, 145, 210, .15);
}


.hero-nav-pill .nav-link.active::after {
    opacity: 1;

    transform:
        translateX(-50%) scale(1);
}


/* =========================================
   TOGGLER
========================================= */

.navbar-toggler {
    border: 1px solid rgba(0, 145, 210, .4);
    border-radius: 50rem;

    background: transparent;

    box-shadow: none;

    color: #009fe3;
}


.navbar-toggler:hover,
.navbar-toggler:focus {
    background: transparent;
    box-shadow: none;
}


.navbar-toggler i {
    color: #009fe3 !important;
}


/* =========================================
   GET QUOTE BUTTON
========================================= */

.hero-reserve-btn {
    min-height: 46px;
    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50rem;

    background:
        linear-gradient(135deg,
            #0068b7,
            #008fd3 50%,
            #00b9e8);

    color: #fff;

    white-space: nowrap;

    box-shadow: 0 5px 18px rgba(0, 145, 210, .28);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;
}


.hero-reserve-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 8px 25px rgba(0, 170, 230, .45);
}


.hero-reserve-btn i {
    transition: transform .3s ease;
}


.hero-reserve-btn:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   DROPDOWN
========================================= */

.hero-dropdown {
    min-width: 210px;

    margin-top: 14px;
    padding: 10px;

    border-radius: 15px;

    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 50%, #020617 100%);

    backdrop-filter: blur(14px);
}


.hero-dropdown .dropdown-item {
    padding: 10px 12px;

    border-radius: 8px;

    color: rgba(255, 255, 255, .8);

    transition:
        background .25s ease,
        color .25s ease,
        padding-left .25s ease;
}


.hero-dropdown .dropdown-item:hover,
.hero-dropdown .dropdown-item.active {
    background: rgba(0, 145, 210, .18);

    color: #fff;

    padding-left: 16px;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-nav-menu {
    padding: 20px;

    border-radius: 20px;

    background: rgba(18, 18, 22, .96);

    backdrop-filter: blur(14px);
}


.mobile-nav-menu .nav-link {
    border-radius: 12px;

    padding: .7rem 1rem;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-link.active {
    color: #fff;

    background:
        linear-gradient(135deg,
            rgba(0, 104, 183, .45),
            rgba(0, 185, 232, .22));

    transform: translateX(4px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

    .hero-logo img {
        height: 80px;
    }

    .hero-reserve-btn {
        min-height: 42px;
        padding: 0 16px;

        font-size: 13px;
    }

}


@media(max-width:576px) {

    .hero-navbar .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-logo img {
        height: 65px;
    }

    .hero-reserve-btn {
        min-height: 40px;
        padding: 0 13px;

        font-size: 12px;
    }

}

/* Premium TOC Styling */
.sticky-sidebar {
    position: sticky;
    top: 20px;
    z-index: 10;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
}

.sticky-sidebar::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.premium-toc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.toc-toggle-btn {
    background: linear-gradient(135deg, #245aa8, #38c7d2);
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toc-toggle-btn:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.toc-toggle-btn .transition-icon {
    transition: transform 0.3s ease;
}

.toc-toggle-btn:not(.collapsed) .transition-icon {
    transform: rotate(180deg);
}

#toc {
    background: #fbfdff;
}

#toc a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #475569;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1.4;
}

#toc a.toc-h3 {
    padding-left: 28px;
    font-size: 13.5px;
    color: #64748b;
}

#toc a:hover {
    background-color: rgba(56, 199, 210, 0.1);
    color: #245aa8;
    transform: translateX(4px);
}

#toc i.toc-icon-main {
    flex-shrink: 0;
    color: #38c7d2;
    font-size: 14px;
}

#toc i.toc-icon-sub {
    flex-shrink: 0;
    color: #94a3b8;
    font-size: 13px;
}

/* side bar form css */
.premium-form-sidebar .modal-body {
    padding: 10px 15px !important;
}

.premium-form-sidebar .modal-footer {
    padding: 6px 15px 10px !important;
}

.premium-form-sidebar .booking-modal-header {
    padding: 10px 15px !important;
}

.premium-form-sidebar .row {
    --bs-gutter-y: 6px;
}

.premium-form-sidebar .booking-textarea-group textarea {
    min-height: 42px;
    height: 42px;
    padding: 6px 12px 6px 38px;
}

.premium-form-sidebar .booking-submit-btn {
    height: 40px;
}

.premium-form-sidebar .booking-input-group .form-control,
.premium-form-sidebar .booking-select,
.premium-form-sidebar .booking-input {
    height: 38px;
}

@media (max-width: 767px) {
    .mobile-contents {
        display: contents !important;
    }

    .mobile-order-1 {
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    .mobile-order-2 {
        order: 2 !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    .mobile-order-3 {
        order: 3 !important;
        width: 100% !important;
    }
}

/* footer css */

.contact-buttons {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999999;
}

.contact-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 50px;
    /* Button width */
    height: 50px;
    /* Button height */
    border-radius: 50%;
    /* Circular shape */
    margin-bottom: 10px;
    color: #ffffff;
}

.whatsapp-button {
    background-color: #25D366;
    /* WhatsApp green */
}

.call-button {
    background-color: #007BFF;
    /* Call button blue */
}

.email-button {
    background-color: #DC3545;
    /* Email button red */
}

.contact-buttons a:hover {
    opacity: 0.8;
    /* Dim button on hover */
}

/* 3 contact btns in the bottom right corner of the page, fixed position, with hover effect. */
/* =========================================
   PREMIUM CONTACT BUTTONS
========================================= */

.contact-buttons {
    position: fixed;
    right: 22px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* BUTTON */

.contact-buttons a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 21px;

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18),
        inset 0 1px 1px rgba(255, 255, 255, .25);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;
}


/* WHATSAPP */

.contact-buttons .whatsapp-button {
    background: linear-gradient(135deg,
            #25d366,
            #128c7e);
}


/* CALL */

.contact-buttons .call-button {
    background: linear-gradient(135deg,
            #2618e5,
            #6feaf2);
}


/* EMAIL */

.contact-buttons .email-button {
    background: linear-gradient(135deg,
            #0068b7,
            #00b9e8);
}


/* HOVER */

.contact-buttons a:hover {
    color: #fff;

    transform:
        translateY(-4px) scale(1.08);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, .25);

    filter: brightness(1.08);
}


/* ICON */

.contact-buttons a i {
    transition: transform .3s ease;
}

.contact-buttons a:hover i {
    transform: scale(1.12);
}


/* MOBILE */

@media(max-width:576px) {

    .contact-buttons {
        right: 14px;
        bottom: 18px;
        gap: 9px;
    }

    .contact-buttons a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

}

/* news and bllogs section  */

.marwan-updates-section {
    background: #f8fafc;
}

.marwan-updates-label,
.marwan-blog-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50rem;
    background: rgba(0, 145, 210, .1);
    color: #008fd3;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.marwan-updates-card {
    border: 1px solid rgba(0, 145, 210, .08);
    transition: .3s ease;
}

.marwan-updates-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 145, 210, .1) !important;
}

.marwan-updates-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #0068b7, #00b9e8);
}

.marwan-see-all,
.marwan-read-link {
    color: #008fd3;
    font-size: .85rem;
    font-weight: 700;
}

.marwan-update-image {
    width: 90px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
}

.marwan-update-image img,
.marwan-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.marwan-service-update:hover img,
.marwan-featured-update:hover img {
    transform: scale(1.08);
}

.marwan-featured-image {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
}

.marwan-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, #0068b7, #00b9e8);
    padding: 10px 18px;
    border-radius: 50rem;
    font-weight: 600;
    font-size: .9rem;
    transition: .3s ease;
}

.marwan-article-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================
   PREMIUM FOOTER
========================================= */

.marwan-footer {
    position: relative;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 185, 232, .12),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(0, 104, 183, .12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0b1628 0%,
            #07111f 55%,
            #020817 100%
        );

    color: #e2e8f0;
    overflow: hidden;
}

.marwan-footer-main {
    padding: 65px 0 45px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.marwan-footer-brand {
    padding-right: 25px;
}

.marwan-footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 18px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    transition: .35s ease;
}

.marwan-footer-logo:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08);
    border-color: rgba(0,185,232,.35);
}

.marwan-footer-logo img {
    max-width: 175px;
    height: auto;
    display: block;
}

.marwan-footer-description {
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.8;
    margin-top: 22px;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.marwan-footer-heading {
    position: relative;

    display: inline-block;

    color: #fff;

    font-size: 1.05rem;
    font-weight: 800;

    margin-bottom: 22px;
}

.marwan-footer-heading::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 38px;
    height: 3px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #0068b7,
        #00b9e8
    );
}


/* =========================================
   CONTACT
========================================= */

.marwan-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marwan-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 14px;

    color: #94a3b8;

    font-size: .88rem;
    line-height: 1.6;
}

.marwan-footer-contact li i {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #00b9e8;

    background: rgba(0,185,232,.08);

    border: 1px solid rgba(0,185,232,.12);
}

.marwan-footer-contact a {
    color: #94a3b8;
    text-decoration: none;

    transition: color .3s ease;
}

.marwan-footer-contact a:hover {
    color: #00b9e8;
}


/* =========================================
   FOOTER LINKS
========================================= */

.marwan-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marwan-footer-links li {
    margin-bottom: 10px;
}

.marwan-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #94a3b8;

    font-size: .88rem;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}

.marwan-footer-links a i {
    color: #00b9e8;
    font-size: .7rem;

    transition: transform .3s ease;
}

.marwan-footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.marwan-footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================
   SOCIAL ICONS
========================================= */

.marwan-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 22px;
}

.marwan-footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #cbd5e1;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    text-decoration: none;

    transition:
        transform .3s ease,
        color .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.marwan-footer-social a:hover {
    transform: translateY(-5px);

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0068b7,
            #00b9e8
        );

    border-color: transparent;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.marwan-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    padding: 20px 0;

    color: #64748b;

    font-size: .82rem;
}

.marwan-footer-bottom p {
    margin: 0;
}

.marwan-footer-bottom strong {
    color: #cbd5e1;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 991px) {

    .marwan-footer-main {
        padding: 50px 0 35px;
    }

    .marwan-footer-brand {
        padding-right: 0;
    }

}

@media(max-width: 767px) {

    .marwan-footer-main {
        padding: 45px 0 25px;
    }

    .marwan-footer-column {
        margin-bottom: 35px;
    }

    .marwan-footer-logo img {
        max-width: 155px;
    }

}
