/* ================= Header   ================= */
header.style-4 .header-logo img {
    min-width: 100%;
    max-width: 100%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-4 .header-logo {
        padding: 2px 0px;
    }
}

.header.style-4 .main-nav ul li {
    display: inline-block;
    position: relative;
    padding: 0 17px;
}

.btn--lg {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 12px 35px;

}

.btn--primary2 {
    background: #1a456f;
    color: white;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
    border: 2px solid #17254e;
}

/* ================= FINAL SUBMENU CLEAN LOOK ================= */

.menu-item-has-children {
    position: relative;
}

/* Main dropdown box */
.menu-item-has-children>.sub-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 0;
    /* min-width: 245px; */
    background: #ffffff !important;
    padding: 10px !important;
    margin: 0 !important;
    border: 1px solid #edf1f5 !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 45px rgba(23, 37, 78, 0.14) !important;
    list-style: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 99999;
}

/* Show on hover */
.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Remove old lines/borders */
.menu-item-has-children .sub-menu li {
    position: relative;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    margin: 0 !important;
}

/* Main submenu links */
.menu-item-has-children .sub-menu li a {
    display: block;
    width: 100%;
    padding: 12px 3px 12px 28px !important;
    color: #06163a !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.3;
    border-radius: 11px !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.28s ease;
    position: relative;
}

/* Small dot */
.menu-item-has-children .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #17254e;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.28s ease;
}

/* Hover */
.menu-item-has-children .sub-menu li:hover>a {
    background: rgba(255, 168, 72, 0.12) !important;
    color: #ffa848 !important;
}

.menu-item-has-children .sub-menu li:hover>a::before {
    background: #ffa848;
}

/* Dropdown right icon */
.menu-item-has-children .sub-menu li>.dropdown-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #17254e !important;
    font-size: 14px;
    z-index: 5;
    transition: all 0.28s ease;
}



/* Second level submenu */
.menu-item-has-children .sub-menu li .sub-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 12px);
    /* min-width: 230px; */
    width: 100%;
    background: #ffffff !important;
    padding: 10px !important;
    border-radius: 16px !important;
    border: 1px solid #edf1f5 !important;
    box-shadow: 0 18px 45px rgba(23, 37, 78, 0.14) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Show second submenu */
.menu-item-has-children .sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Second submenu arrow shape */
.menu-item-has-children .sub-menu li .sub-menu::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 18px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
}

/* Top menu dropdown icon */
.menu-item-has-children>.dropdown-icon {
    margin-left: 4px;
    color: #06163a !important;
    transition: all 0.3s ease;
}

.menu-item-has-children:hover>.dropdown-icon {
    color: #17254e !important;
    transform: rotate(180deg);
}

/* Header overflow fix */
header,
.header-area,
.main-header,
.main-menu,
.navbar,
.nav-wrapper {
    overflow: visible !important;
    z-index: 99999;
}

@media (max-width: 991px) {

    /* Mobile menu panel */
    .main-menu,
    .mobile-menu,
    .nav-menu {
        overflow-y: auto !important;
    }

    /* Parent submenu mobile */
    .menu-item-has-children>.sub-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        margin-top: 12px !important;
        padding: 8px !important;
        background: #ffffff !important;
        border-radius: 16px !important;
        border: 1px solid #edf1f5 !important;
        box-shadow: 0 12px 30px rgba(23, 37, 78, 0.08) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .menu-item-has-children:hover>.sub-menu,
    .menu-item-has-children.active>.sub-menu {
        display: block !important;
    }

    /* All submenu li */
    .menu-item-has-children .sub-menu li {
        position: relative !important;
        border: none !important;
        margin-bottom: 4px !important;
    }

    .menu-item-has-children .sub-menu li:last-child {
        margin-bottom: 0 !important;
    }

    /* Submenu links */
    .menu-item-has-children .sub-menu li a {
        padding: 12px 38px 12px 36px !important;
        border-radius: 12px !important;
        background: transparent !important;
        color: #06163a !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        display: block !important;
    }

    .menu-item-has-children .sub-menu li a::before {
        left: 16px !important;
        width: 7px !important;
        height: 7px !important;
        background: #17254e !important;
    }

    .menu-item-has-children .sub-menu li:hover>a {
        background: rgba(255, 168, 72, 0.12) !important;
        color: #ffa848 !important;
    }

    /* Icon position */
    .menu-item-has-children .sub-menu li>.dropdown-icon {
        right: 16px !important;
        top: 22px !important;
        transform: none !important;
        color: #17254e !important;
    }

    /* Child submenu mobile */
    .menu-item-has-children .sub-menu li .sub-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        margin: 6px 0 8px 0 !important;
        padding: 8px 8px 8px 12px !important;
        background: #f8fafc !important;
        border-radius: 14px !important;
        border: 1px solid #edf1f5 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }

    .menu-item-has-children .sub-menu li:hover>.sub-menu,
    .menu-item-has-children .sub-menu li.active>.sub-menu {
        display: block !important;
    }

    .menu-item-has-children .sub-menu li .sub-menu::before {
        display: none !important;
    }

    /* Child links */
    .menu-item-has-children .sub-menu li .sub-menu li a {
        background: #ffffff !important;
        padding: 11px 14px 11px 34px !important;
        border-radius: 11px !important;
        font-size: 14px !important;
        margin-bottom: 4px;
    }

    .menu-item-has-children .sub-menu li .sub-menu li a::before {
        left: 15px !important;
        background: #17254e !important;
    }
}

header.style-4 .main-nav ul li ul.sub-menu>li i {
    position: absolute;
    top: 20px;
    right: 9px;
    display: block;
    color: var(--white);
}

.menu-item-has-children .sub-menu li:hover>.dropdown-icon {
    color: #ffa848 !important;
    right: -7px;
}

@media (max-width: 991px) {
    header.style-4 .header-logo {
        padding: 7px 0px;
    }
}

/* ================= DESKTOP SUBMENU WIDTH FINAL FIX ================= */

@media (min-width: 992px) {

    /* First level dropdown */
    header.style-4 .main-nav ul li.menu-item-has-children>ul.sub-menu {
        width: 270px !important;
        min-width: 270px !important;
        max-width: 270px !important;
        padding: 10px !important;
        left: 0 !important;
    }

    /* Second level dropdown */
    header.style-4 .main-nav ul li.menu-item-has-children ul.sub-menu li>ul.sub-menu {
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
        left: calc(100% + 12px) !important;
        top: 0 !important;
        padding: 10px !important;
    }

    /* Remove theme padding from submenu li */
    header.style-4 .main-nav ul li ul.sub-menu li {
        padding: 0 !important;
        width: 100% !important;
        display: block !important;
    }

    /* Main submenu links */
    header.style-4 .main-nav ul li ul.sub-menu li a {
        width: 100% !important;
        display: block !important;
        white-space: nowrap !important;
        padding: 12px 42px 12px 34px !important;
        font-size: 15px !important;
        line-height: 1.25 !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }

    /* Second submenu links */
    header.style-4 .main-nav ul li ul.sub-menu li ul.sub-menu li a {
        white-space: nowrap !important;
        padding: 12px 18px 12px 34px !important;
        font-size: 15px !important;
    }

    /* Dot position */
    header.style-4 .main-nav ul li ul.sub-menu li a::before {
        left: 15px !important;
    }

    /* Right arrow position */
    header.style-4 .main-nav ul li ul.sub-menu>li>.dropdown-icon {
        right: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #17254e !important;
        z-index: 10 !important;
    }

    header.style-4 .main-nav ul li ul.sub-menu>li:hover>.dropdown-icon {
        right: 10px !important;
        color: #ffa848 !important;
    }

    /* Stop second submenu from becoming same width as parent */
    .menu-item-has-children .sub-menu li .sub-menu {
        width: 360px !important;
        min-width: 360px !important;
        max-width: 360px !important;
    }
}

/* ================= Header   ================= */
/* ================= Footer  ================= */
/* ================= PREMIUM ENQUIRY MODAL FIX ================= */

.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 35, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.custom-modal-overlay.active {
    display: flex;
}

.custom-enquiry-modal {
    width: 100%;
    max-width: 470px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    animation: modalFadeUp 0.32s ease;
}

@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #ffa848;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header-box {
    background: linear-gradient(135deg, #17254e 0%, #0d1839 100%);
    padding: 34px 28px 62px;
    text-align: center;
    position: relative;
}

.modal-header-box::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 28px;
    width: 72px;
    height: 3px;
    background: #ffa848;
    border-radius: 50px;
    transform: translateX(-50%);
}

.modal-header-box h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-merriw);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-header-box p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
    text-transform: uppercase;
}

.modal-form-box {
    background: #ffffff;
    margin: -34px 24px 0;
    padding: 24px 22px 26px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 45px rgba(23, 37, 78, 0.12);
    border: 1px solid #eef1f6;
}

.modal-input-group {
    width: 100%;
    min-height: 54px;
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e7edf5;
    transition: all 0.3s ease;
}

.modal-input-group:focus-within {
    background: #ffffff;
    border-color: #ffa848;
    box-shadow: 0 0 0 4px rgba(255, 168, 72, 0.14);
}

.modal-input-group i {
    width: 22px;
    color: #17254e;
    font-size: 17px;
    flex-shrink: 0;
    text-align: center;
}

.modal-input-group input,
.modal-input-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent !important;
    color: #06163a;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
}

.modal-input-group input {
    height: 52px;
}

.modal-input-group input::placeholder,
.modal-input-group textarea::placeholder {
    color: #8b95a5;
    font-weight: 500;
}

.textarea-group {
    min-height: 118px;
    align-items: flex-start;
    padding-top: 15px;
}

.textarea-group textarea {
    resize: none;
    min-height: 90px;
    padding-top: 1px;
}

.modal-submit-btn {
    min-width: 155px;
    height: 48px;
    border: none;
    border-radius: 50px;
    background: #ffa848;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0;
    transition: all 0.35s ease;
    box-shadow: 0 12px 26px rgba(255, 168, 72, 0.32);
}

.modal-submit-btn:hover {
    background: #91bd4a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(145, 189, 74, 0.32);
}

.modal-note {
    text-align: center;
    font-size: 14.5px;
    color: #667085;
    margin: 22px 15px 26px;
}

/* Chrome autofill color fix */
.modal-input-group input:-webkit-autofill,
.modal-input-group input:-webkit-autofill:hover,
.modal-input-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
    -webkit-text-fill-color: #06163a !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Mobile */
@media (max-width: 575px) {
    .custom-enquiry-modal {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-header-box {
        padding: 30px 20px 58px;
    }

    .modal-header-box h3 {
        font-size: 24px;
    }

    .modal-form-box {
        margin-left: 16px;
        margin-right: 16px;
        padding: 20px 16px 22px;
        border-radius: 18px;
    }

    .modal-input-group {
        min-height: 52px;
        border-radius: 12px;
    }

    .modal-input-group input {
        height: 50px;
    }
}

.footer-section .footer-about {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    max-width: 310px !important;
    margin: 0 !important;
    text-align: left !important;
    position: relative !important;
}

.footer-section .footer-about .footer-logo {
    display: block !important;
    margin-bottom: 18px !important;
}

.footer-section .footer-about .footer-plane {
    width: 95px !important;
    max-width: 95px !important;
    height: auto !important;
    display: block !important;
    margin: 0 0 18px 0 !important;
    position: static !important;
    transform: none !important;
}

.footer-section .footer-about p {
    display: block !important;
    clear: both !important;
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin: 0 0 22px 0 !important;
    max-width: 290px !important;
}

.footer-section .footer-about-btn {
    height: 44px !important;
    padding: 0 20px !important;
    border-radius: 50px !important;
    background: #ffa848 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.footer-section .footer-about-btn:hover {
    background: #91bd4a !important;
    color: #ffffff !important;
}

/* remove any old absolute/floating logo behavior */
.footer-section .footer-about img,
.footer-section .footer-about .footer-plane {
    float: none !important;
}

/* Mobile center */
@media (max-width: 991px) {
    .footer-section .footer-about {
        text-align: center !important;
        margin: 0 auto !important;
    }

    .footer-section .footer-about .footer-plane {
        margin: 0 auto 18px auto !important;
    }

    .footer-section .footer-about p {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.footer-section {
    background-image: none !important;
    background: #14224b;
    position: relative;
    padding: 0 10px;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(145, 189, 74, 0.10);
    border-radius: 50%;
}

.footer-section::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 340px;
    height: 340px;
    background: rgba(255, 168, 72, 0.10);
    border-radius: 50%;
}

.footer-section .footer-top,
.footer-section .footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-section .footer-top {
    padding: 55px 0 45px;
}

/* Footer About */
.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-about .footer-plane {
    max-width: 135px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: none;
    opacity: 1 !important;
}

.footer-about p {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
}

.footer-about-btn {
    height: 44px;
    padding: 0 20px;
    border-radius: 50px;
    background: #ffa848;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-about-btn:hover {
    background: #91bd4a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Headings */
.footer-item h4 {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-merriw);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 13px;
}

.footer-item h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 50px;
    background: #ffa848;
}

/* Links */
.footer-section .link-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section .link-list li {
    margin-bottom: 13px;
}

.footer-section .link-list li a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .link-list li a:hover {
    color: #ffa848;
    padding-left: 6px;
}

/* Contact List */
.footer-section .contact-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-section .contact-list .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ffa848;
    color: #ffa848;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-section .contact-list .icon i {
    font-size: 16px;
}

.footer-section .contact-list .text,
.footer-section .contact-list .text a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .contact-list .text a:hover {
    color: #ffa848;
}

/* Social */
.social-links {
    margin-top: 24px;
}

.footer-section .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section .footer-social i {
    border: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ffffff;
    background: #ffa848;
    text-align: center;
    font-size: 21px;
    border-radius: 50%;
    transition: all 0.35s ease;
}

.footer-section.sibling-2 .footer-social i:hover,
.footer-section .footer-social i:hover {
    background: #91bd4a;
    color: #ffffff;
    transform: translateY(-4px);
}

/* Footer Bottom */
.footer-section .footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-section .footer-bottom p {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-exo);
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
    margin-right: 30px;
}

.footer-section .footer-bottom p .egns-lab {
    font-size: 18px;
    font-weight: 800;
    color: #ffa848;
}

.footer-section .footer-bottom .f-bottom-list {
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-section .footer-bottom .f-bottom-list li {
    position: relative;
}

.footer-section .footer-bottom .f-bottom-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}

.footer-section .footer-bottom .f-bottom-list a {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .footer-bottom .f-bottom-list a:hover {
    color: #ffa848;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-about {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .footer-about .footer-plane {
        margin: 0 auto;
    }

    .footer-item h4 {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .footer-section .footer-top {
        padding: 45px 0 35px;
    }

    .footer-about p {
        font-size: 15px;
    }

    .footer-section .footer-bottom p {
        margin-right: 0;
        font-size: 15px;
    }

    .footer-section .footer-bottom .f-bottom-list a {
        font-size: 15px;
    }

    .footer-section .footer-social {
        justify-content: center;
    }
}

/* ================= Footer  ================= */
/* ================= service section  ================= */
.service-grid-section {
    background: #f6f7f9;
    position: relative;
    overflow: hidden;
}

.service-section-title {
    margin-bottom: 45px;
}



.service-section-title p {
    font-size: 16px;
    line-height: 1.75;
    color: #667085;
    max-width: 760px;
    margin: 0 auto;
}

/* Card */
.service-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(23, 37, 78, 0.06);
    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #91bd4a;
    box-shadow: 0 18px 45px rgba(23, 37, 78, 0.12);
}

/* Normal image */
.service-img {
    height: 245px;
    overflow: hidden;
    background: #f8fafc;
    padding: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.04);
}

/* Content */
.service-content {
    padding: 26px 24px 28px;
    text-align: center;
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 14px;
}

.service-content p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #5f6978;
    margin-bottom: 22px;
}

/* Button */
.service-btn {
    min-height: 46px;
    padding: 0 24px;
    border-radius: 50px;
    background: #17254e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #91bd4a;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-btn i {
    font-size: 16px;
}

/* Remove old chip if still exists */
.service-tag {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .service-section-title h2 {
        font-size: 32px;
    }

    .service-img {
        height: 230px;
    }
}

@media (max-width: 575px) {
    .service-grid-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .service-section-title h2 {
        font-size: 28px;
    }

    .service-section-title p {
        font-size: 15px;
    }

    .service-card {
        border-radius: 16px;
    }

    .service-img {
        height: 215px;
    }

    .service-content {
        padding: 22px 18px 24px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-content p {
        font-size: 15px;
    }
}

/* ================= service section  ================= */

/* ====================================================== services deatils page ===================================================  ================= */




.service-info-box,
.booking-form-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 26px 22px;
    border: 1px solid #edf1f5;
    box-shadow: 0 14px 38px rgba(23, 37, 78, 0.08);
    margin-bottom: 26px;
}

/* Details Box */
.service-info-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e8edf3;
}

.service-info-box h3 {
    font-size: 24px;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.service-info-box h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #91bd4a, #ffa848);
    border-radius: 50px;
    transform: translateX(-50%);
}

.service-info-list {
    display: grid;
    gap: 12px;
}

.service-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 16px;
    padding: 13px 14px;
    transition: all 0.3s ease;
}

.service-info-item:hover {
    transform: translateY(-3px);
    border-color: #ffa848;
    box-shadow: 0 10px 24px rgba(23, 37, 78, 0.08);
}

.service-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(145, 189, 74, 0.14);
    color: #91bd4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-info-item:hover .service-info-icon {
    background: #ffa848;
    color: #ffffff;
}

.service-info-item h5 {
    font-size: 14.5px;
    font-weight: 900;
    color: #06163a;
    margin-bottom: 3px;
}

.service-info-item p {
    font-size: 14px;
    font-weight: 700;
    color: #5f6978;
    margin: 0;
}

/* Action Buttons */
.service-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.quick-call-btn,
.quick-whatsapp-btn {
    height: 46px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.quick-call-btn {
    background: #17254e;
}

.quick-whatsapp-btn {
    background: #91bd4a;
}

.quick-call-btn:hover,
.quick-whatsapp-btn:hover {
    background: #ffa848;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Form Box */
.booking-form-box {
    background: #ffffff;
}

.booking-form-box h3 {
    font-size: 25px;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 8px;
    text-align: center;
}

.booking-form-box>p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #667085;
    text-align: center;
    margin-bottom: 22px;
}

.banner-form .search-box-single {
    min-height: 56px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 0 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.banner-form .search-box-single:focus-within {
    background: #ffffff;
    border-color: #91bd4a;
    box-shadow: 0 0 0 4px rgba(145, 189, 74, 0.12);
}

.banner-form .textarea-box {
    align-items: flex-start;
    padding-top: 14px;
}

.searchbox-icon {
    width: 30px;
    color: #91bd4a;
    font-size: 17px;
    flex-shrink: 0;
}

.textarea-box .searchbox-icon {
    padding-top: 2px;
}

.searchbox-input {
    width: 100%;
}

.searchbox-input input,
.searchbox-input textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #06163a;
    font-size: 15px;
    font-weight: 600;
}

.searchbox-input input {
    height: 54px;
}

.searchbox-input textarea {
    resize: none;
    padding-bottom: 12px;
}

.searchbox-input input::placeholder,
.searchbox-input textarea::placeholder {
    color: #7b8494;
    font-weight: 500;
}

.sidebar-submit-btn {
    width: 100%;
    height: 54px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #17254e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    margin-top: 4px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 28px rgba(23, 37, 78, 0.20);
}

.sidebar-submit-btn:hover {
    background: #ffa848;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 168, 72, 0.32);
}

/* Sticky remove */
@media (min-width: 992px) {
    .col-lg-4 .service-info-box {
        position: static !important;
        top: auto !important;
        z-index: auto !important;
    }
}

/* Responsive */
@media (max-width: 575px) {

    .service-info-box,
    .booking-form-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .service-action-row {
        grid-template-columns: 1fr;
    }

    .booking-form-box h3,
    .service-info-box h3 {
        font-size: 22px;
    }
}


/* ================= SERVICE DETAILS CONTENT CSS ================= */

.destination-details {
    background: #ffffff;
    border-radius: 22px;
    padding: 35px;
    border: 1px solid #edf1f5;
    box-shadow: 0 16px 45px rgba(23, 37, 78, 0.08);
}

.desti-details-block>h3 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 800;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 22px;
}

.desti-details-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}

.desti-details-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Description dynamic content */
.service-description-content {
    font-size: 16px;
    line-height: 1.85;
    color: #4f5665;
}

.service-description-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #4f5665;
    margin-bottom: 18px;
}

.service-description-content h1,
.service-description-content h2,
.service-description-content h3,
.service-description-content h4 {
    color: #06163a;
    font-weight: 800;
    font-family: var(--font-merriw);
    margin-top: 30px;
    margin-bottom: 16px;
}

.service-description-content h1 {
    font-size: 34px;
}

.service-description-content h2 {
    font-size: 30px;
}

.service-description-content h3 {
    font-size: 26px;
}

.service-description-content h4 {
    font-size: 22px;
}

/* Points / bullet list */
.service-description-content ul,
.service-description-content ol {
    margin: 18px 0 24px;
    padding-left: 0;
}

.service-description-content ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4f5665;
    font-size: 16px;
    line-height: 1.7;
}

.service-description-content ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 1px;
    color: #91bd4a;
    font-size: 17px;
}

.service-description-content ol {
    counter-reset: item;
}

.service-description-content ol li {
    list-style: none;
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    color: #4f5665;
    font-size: 16px;
    line-height: 1.7;
}

.service-description-content ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #91bd4a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table inside description */
.service-description-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(23, 37, 78, 0.08);
}

.service-description-content table th {
    background: #17254e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-description-content table td {
    color: #4f5665;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    border: 1px solid #edf1f5;
}

.service-description-content table tr:nth-child(even) td {
    background: #f8fafc;
}

.service-description-content table tr:hover td {
    background: rgba(145, 189, 74, 0.08);
}

/* Links inside description */
.service-description-content a {
    color: #91bd4a;
    font-weight: 700;
    text-decoration: none;
}

.service-description-content a:hover {
    color: #ffa848;
}

/* Blockquote */
.service-description-content blockquote {
    margin: 25px 0;
    padding: 22px 25px;
    border-left: 5px solid #ffa848;
    background: #f8fafc;
    border-radius: 14px;
    color: #06163a;
    font-size: 17px;
    font-weight: 600;
}

/* ================= FEATURES FACILITIES ================= */

.features-facilities {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid #d9dee7;
}

.features-facilities>h3 {
    font-size: 30px;
    font-weight: 800;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 28px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    padding: 28px 16px 24px;
    text-align: center;
    min-height: 145px;
    box-shadow: 0 12px 32px rgba(23, 37, 78, 0.06);
    transition: all 0.35s ease;
}

.feature-box:hover {
    transform: translateY(-7px);
    border-color: #ffa848;
    box-shadow: 0 20px 45px rgba(23, 37, 78, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: #17254e;
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.35s ease;
}

.feature-box:hover .feature-icon {
    background: #91bd4a;
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-box h4 {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    color: #06163a;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .destination-details {
        padding: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .desti-details-block>h3 {
        font-size: 28px;
    }

    .features-facilities>h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .destination-details {
        padding: 20px;
        border-radius: 18px;
    }

    .desti-details-block>h3 {
        font-size: 24px;
    }

    .service-description-content p,
    .service-description-content ul li,
    .service-description-content ol li {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-box {
        padding: 22px 12px 20px;
        min-height: 130px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .feature-box h4 {
        font-size: 13px;
    }

    .service-description-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
.features-facilities {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid #d9dee7;
}

.features-facilities>h3 {
    font-size: 30px;
    font-weight: 800;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 28px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-box {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 18px;
    padding: 22px 12px 20px;
    text-align: center;
    min-height: 150px;
    box-shadow: 0 12px 30px rgba(23, 37, 78, 0.06);
    transition: all 0.35s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    border-color: #ffa848;
    box-shadow: 0 18px 42px rgba(23, 37, 78, 0.12);
}

.feature-icon-img {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all 0.35s ease;
}

.feature-icon-img img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.feature-box:hover .feature-icon-img {
    background: rgba(145, 189, 74, 0.12);
    border-color: #91bd4a;
    transform: translateY(-3px);
}

.feature-box h4 {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    color: #06163a;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-facilities>h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-box {
        min-height: 130px;
        padding: 18px 10px;
    }

    .feature-icon-img {
        width: 62px;
        height: 62px;
        border-radius: 15px;
        padding: 12px;
        margin-bottom: 12px;
    }

    .feature-icon-img img {
        width: 38px;
        height: 38px;
    }

    .feature-box h4 {
        font-size: 13px;
    }
}


/* ====================================================== services deatils page ===================================================  ================= */

/* ===========================about page=============================  */

.h {
    height: 80px;
}

.sangam-about-clean {
    padding: 50px 0;
    /* background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%); */
    position: relative;
    overflow: hidden;
}

.sangam-about-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 19px;
    border: 1px solid #edf1f5;
    /* box-shadow: 0 22px 65px rgba(23, 37, 78, 0.10); */
}

.about-label {
    display: inline-block;
    background: rgba(145, 189, 74, 0.14);
    color: #6fa832;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.sangam-about-content h2 {
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    color: #06163a;
    /* font-family: var(--font-merriw); */
    margin-bottom: 17px;
}

.sangam-about-content p {
    font-size: 15px;
    line-height: 22.5px;
    color: #4f5665;
    margin-bottom: 15px;
}

.sangam-about-content strong {
    color: #06163a;
    font-weight: 900;
}

.about-mini-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.about-mini-box div {
    background: #f8fafc;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-mini-box div:hover {
    background: #17254e;
    transform: translateY(-5px);
}

.about-mini-box h4 {
    font-size: 24px;
    font-weight: 900;
    color: #17254e;
    margin-bottom: 4px;
}

.about-mini-box span {
    font-size: 13px;
    font-weight: 700;
    color: #667085;
}

.about-mini-box div:hover h4,
.about-mini-box div:hover span {
    color: #ffffff;
}

/* Image */
.sangam-about-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    /* height: 620px;
            box-shadow: 0 30px 80px rgba(6, 22, 58, 0.22); */
}

.sangam-about-image::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(6, 22, 58, 0.05), rgba(6, 22, 58, 0.55)); */
    z-index: 1;
}

.sangam-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.sangam-about-image:hover img {
    transform: scale(1.06);
}

.image-info-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.image-info-card i {
    width: 52px;
    height: 52px;
    background: #ffa848;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.image-info-card h4 {
    font-size: 18px;
    font-weight: 900;
    color: #06163a;
    margin-bottom: 3px;
}

.image-info-card p {
    font-size: 14px;
    color: #667085;
    margin: 0;
}

/* VMC Cards */
.about-vmc-row {
    margin-top: 45px;
}

.vmc-card {
    text-align: center;
    height: 100%;
    background: #ffffff;
    border-radius: 26px;
    padding: 22px 17px;
    border: 1px solid #1a254c;
    box-shadow: 0 10px 10px rgba(23, 37, 78, 0.08);
    transition: all 0.35s ease;
}

.vmc-card:hover,
.vmc-card.active {
    background: #17254e;
    transform: translateY(-8px);
    border-color: #17254e;
    box-shadow: 0 10px 20px rgba(23, 37, 78, 0.20);
}

.vmc-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #f3f7fb;
    color: #17254e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.vmc-card:hover .vmc-icon,
.vmc-card.active .vmc-icon {
    background: #ffa848;
    color: #ffffff;
}

.vmc-card h3 {
    font-size: 25px;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 14px;
}

.vmc-card p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #5f6978;
    margin: 0;
}

.vmc-card:hover h3,
.vmc-card:hover p,
.vmc-card.active h3,
.vmc-card.active p {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .sangam-about-clean {
        padding: 40px 0;
    }

    .sangam-about-content {
        padding: 35px 28px;
    }

    .sangam-about-content h2 {
        font-size: 34px;
    }

    .sangam-about-image {
        /* height: 430px; */
    }
}

@media (max-width: 575px) {
    .sangam-about-clean {
        padding: 30px 0;
    }

    .sangam-about-content {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .sangam-about-content h2 {
        font-size: 28px;
    }

    .sangam-about-content p {
        font-size: 15px;
    }

    .about-mini-box {
        grid-template-columns: 1fr;
    }

    .sangam-about-image {
        height: 340px;
        border-radius: 24px;
    }

    .image-info-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 14px;
    }

    .image-info-card i {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .image-info-card h4 {
        font-size: 16px;
    }

    .vmc-card {
        padding: 28px 22px;
        border-radius: 22px;
    }
}

.vmc-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
}



.facility-single2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ffc080;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all .55s ease;
}

.section-title1 {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section-title1 span {
    display: block;
    font-family: var(--font-work-sans);
    font-size: 20px;
    font-weight: 400;
    color: #1a456f;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.facility-single2 .facility-content h4 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-merriw);
    transition: all .45s ease;
    margin-bottom: 14px;
}

/* ===========================about page=============================  */

/* ================= TESTIMONIAL CARD FIX ================= */

/* ================= TESTIMONIAL CARD FIX ================= */


/* ================= CLient Section CARD FIX ================= */
.partner-title {
    margin-bottom: 45px;
}

.partner-title span {
    color: #ffa848;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.partner-title h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 12px;
}

.partner-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.partner-slider {
    padding: 10px 8px 35px;
}

.partner-single {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    padding: 26px 18px 22px;
    text-align: center;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 14px 35px rgba(23, 37, 78, 0.07); */
    transition: all 0.35s ease;
}

.partner-single:hover {
    transform: translateY(-8px);
    border-color: #ffa848;
    box-shadow: 0 22px 55px rgba(23, 37, 78, 0.14);
}

.partner-logo-box {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 16px;
    transition: all 0.35s ease;
}

.partner-single:hover .partner-logo-box {
    border-color: #91bd4a;
    box-shadow: 0 12px 12px rgba(145, 189, 74, 0.20);
}

.partner-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-single h4 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    color: #06163a;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 767px) {
    .partner-section {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .partner-title h2 {
        font-size: 32px;
    }

    .partner-title p {
        font-size: 15px;
    }

    .partner-single {
        min-height: 170px;
        padding: 8px 10px;
    }

    .partner-logo-box {
        width: 95px;
        height: 95px;
    }

    .partner-single h4 {
        font-size: 15px;
    }
}

/* ================= CLient Section CARD FIX ================= */



/* ================= Conatct page  ================= */

@media (min-width: 1200px) and (max-width: 1399px) {
    .inner-banner-section {
        min-height: 195px;
    }
}

@media (max-width: 767px) {
    .inner-banner-section {
        min-height: 270px;
    }

    .inner-banner-section .breadcrumb-area h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--white);
        font-family: var(--font-merriw);
        margin-bottom: 0px;
        line-height: 1.25;
        text-transform: capitalize;
    }
}

.info-single {
    background: #fff;
    border: 1px dashed #17254e;
    padding: 20px 20px;
    text-align: center;
    transition: all .55s ease;
}

.info-single:hover {
    border: 1px dashed #ffa848;
}

.info-single .info-text h3 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #17254e;
    font-family: var(--font-merriw);
    margin-bottom: 15px;
}

.info-single .info-text p,
.info-single .info-text a {
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    font-family: var(--font-work-sans);
    margin-bottom: 0px;
}

/* ================= CONTACT FORM UPDATED ================= */
/* ================= CONTACT FORM NEW CLEAN UI ================= */

.contact-section {
    /* background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%); */
    padding: 48px 0 65px;

}

.contact-head {
    max-width: 700px;
    margin: 0 auto 38px;
}

.contact-head span {
    display: inline-block;
    color: #91bd4a;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-head h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 12px;
}

.contact-head p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.contact-card-wrap {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 38% 62%;
    /* box-shadow: 0 18px 55px rgba(23, 37, 78, 0.12); */
    border: 1px solid #eef1f5;
}

.contact-left-box {
    background: linear-gradient(145deg, #17254e, #0b1533);
    padding: 42px 35px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-left-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -55px;
    top: -55px;
    background: rgba(255, 168, 72, 0.18);
    border-radius: 50%;
}

.contact-left-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: -45px;
    bottom: -45px;
    background: rgba(145, 189, 74, 0.18);
    border-radius: 50%;
}

.contact-left-content {
    position: relative;
    z-index: 2;
}

.contact-left-content .mini-title {
    display: inline-block;
    background: #ffa848;
    color: #17254e;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 22px;
}

.contact-left-content h3 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    font-family: var(--font-merriw);
}

.contact-left-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 30px;
}

.contact-mini-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-mini-info div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-mini-info i {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffa848;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-mini-info span {
    font-size: 15px;
    color: #ffffff;
}

.contact-form-box {
    padding: 42px;
}

.form-inner label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #17254e;
    margin-bottom: 8px;
}

.form-inner input,
.form-inner textarea {
    width: 100%;
    border: 1px solid #e5eaf1;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
}

.form-inner input {
    height: 52px;
}

.form-inner textarea {
    min-height: 125px;
    resize: none;
}

.form-inner input::placeholder,
.form-inner textarea::placeholder {
    color: #9aa3af;
}

.form-inner input:focus,
.form-inner textarea:focus {
    background: #ffffff;
    border-color: #ffa848;
    box-shadow: 0 0 0 4px rgba(255, 168, 72, 0.14);
}

.contact-submit-btn {
    border: none;
    outline: none;
    background: #17254e;
    color: #ffffff;
    height: 52px;
    padding: 0 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.contact-submit-btn:hover {
    background: #ffa848;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 168, 72, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-card-wrap {
        grid-template-columns: 1fr;
    }

    .contact-left-box {
        padding: 35px 28px;
    }

    .contact-form-box {
        padding: 35px 28px;
    }

    .contact-head h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .contact-section {
        padding: 55px 0 60px;
    }

    .contact-head {
        margin-bottom: 28px;
    }

    .contact-head h2 {
        font-size: 28px;
    }

    .contact-head p {
        font-size: 15px;
    }

    .contact-left-content h3 {
        font-size: 23px;
    }

    .contact-left-box,
    .contact-form-box {
        padding: 28px 20px;
    }

    .contact-card-wrap {
        border-radius: 18px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================= Conatct page  ================= */


/* ================= Fleet Section ================= */
/* ================= FLEET STYLE BEST PLAN SECTION ================= */

.fleet-offer-section {
    background: #f6f7f9;
}

.fleet-section-title {
    margin-bottom: 35px;
}

.fleet-section-title span {
    display: block;
    color: #91bd4a !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fleet-section-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #06163a !important;
    margin-bottom: 0;
}

.fleet-plan-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 14px 38px rgba(23, 37, 78, 0.08);
    transition: all 0.35s ease;
}

.fleet-plan-card:hover {
    transform: translateY(-7px);

    border-color: #ffa848 !important;
    box-shadow: 0 22px 55px rgba(23, 37, 78, 0.14);
}

.fleet-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.fleet-img img {
    width: 100%;
    /*height: 210px;*/
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.45s ease;
}

.fleet-plan-card:hover .fleet-img img {
    transform: scale(1.06);
}

.fleet-whatsapp {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    background: #4cd964;
    color: #ffffff;
    border-radius: 50%;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

}

.fleet-whatsapp:hover {
    color: #ffffff;
    background: #25d366;
}

.fleet-content {
    padding-top: 18px;
}

.fleet-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: #06163a !important;
    text-align: center;
    margin-bottom: 18px;
}

.fleet-info-grid {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
}

.fleet-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fleet-info-item span {
    width: 28px;
    height: 28px;
    /* background: #ff2f3b; */

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #91bd4a !important;
    color: #ffffff !important;
}

.fleet-info-item span i {
    font-size: 14px;
}

.fleet-info-item h5 {
    font-size: 14px;
    font-weight: 800;
    color: #06163a;
    margin-bottom: 2px;
}

.fleet-info-item p {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.2;
}

.fleet-card-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.fleet-call-btn,
.fleet-enquiry-btn {
    height: 46px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.fleet-call-btn {
    background: #17254e !important;
    color: #ffffff !important;
}

.fleet-enquiry-btn {
    background: #ff2f3b;
}

.fleet-call-btn:hover {
    background: #17254e;
    color: #ffffff;
}

.fleet-enquiry-btn:hover {
    background: #17254e;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .fleet-section-title h2 {
        font-size: 32px;
    }

    .fleet-img img {
        /*height: 220px;*/
    }
}

@media (max-width: 575px) {
    .fleet-offer-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .fleet-section-title h2 {
        font-size: 28px;
    }

    .fleet-plan-card {
        padding: 14px;
    }

    .fleet-img img {
        /*height: 200px;*/
    }

    .fleet-info-grid {
        gap: 16px 10px;
    }

    .fleet-card-btns {
        grid-template-columns: 1fr;
    }
}


/* ================= FLEET SECTION THEME COLOR UPDATE ================= */

/* .fleet-offer-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
} */





.fleet-info-item:nth-child(2) span,
.fleet-info-item:nth-child(4) span {
    background: #17254e !important;
}





.fleet-enquiry-btn {
    background: #ffa848 !important;
    color: #ffffff !important;
}

.fleet-call-btn:hover {
    background: #91bd4a !important;
    color: #ffffff !important;
}

.fleet-enquiry-btn:hover {
    background: #17254e !important;
    color: #ffffff !important;
}

/* Border line */
.fleet-info-grid {
    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
}

/* Image radius clean */
.fleet-img,
.fleet-img img {
    border-radius: 16px;
}

.fleet-img {
    position: relative;
}

.fleet-img-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #17254e;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(23, 37, 78, 0.22);
}

.fleet-plan-card:hover .fleet-img-tag {
    background: #ffa848;
    color: #ffffff;
}

/* ================= Fleet Section ================= */


/* ================= Gallery Page ================= */
.destination-section .gallery-card-modern {
    padding: 9px;
    border-radius: 20px;
    border: 1px solid rgba(6, 22, 58, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.destination-section .gallery-card-modern:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 20px rgba(6, 22, 58, 0.16);
    border-color: rgba(31, 79, 130, 0.25);
}

.image-gallery-single {
    margin-bottom: 3px;
}

.destination-section .gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    border-radius: 15px;
    background: #f1f5f9;
}

.destination-section .gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.destination-section .gallery-card-modern:hover .gallery-img-wrap img {
    transform: scale(1.08);
}

.destination-section .gallery-view {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 22, 58, 0.08),
            rgba(6, 22, 58, 0.68));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    text-decoration: none;
    transition: all 0.35s ease;
}

.destination-section .gallery-card-modern:hover .gallery-view {
    opacity: 1;
}

.destination-section .gallery-view span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    color: #1f4f82;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(0.75);
    transition: all 0.35s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.destination-section .gallery-card-modern:hover .gallery-view span {
    transform: scale(1);
}

@media (max-width: 991px) {
    .destination-section .gallery-img-wrap {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .destination-section .gallery-img-wrap {
        height: 230px;
    }

    .destination-section .gallery-card-modern {
        padding: 7px;
        border-radius: 17px;
    }
}

/* ================= Gallery Page ================= */


/* ================= privacy and Terms  ================= */
.policy-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.policy-card {
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 18px 50px rgba(23, 37, 78, 0.08);
}

.policy-title {
    text-align: center;
    margin-bottom: 38px;
    padding-bottom: 26px;
    border-bottom: 1px solid #edf1f5;
}

.policy-title span {
    display: inline-block;
    color: #91bd4a;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.policy-title h1 {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 900;
    color: #06163a;
    font-family: var(--font-merriw);
    margin-bottom: 12px;
}

.policy-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
    max-width: 650px;
    margin: 0 auto;
}

/* Dynamic content */
.policy-content {
    font-size: 16px;
    line-height: 1.9;
    color: #4f5665;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4f5665;
    margin-bottom: 18px;
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
    color: #06163a;
    font-family: var(--font-merriw);
    font-weight: 900;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content h1 {
    font-size: 34px;
}

.policy-content h2 {
    font-size: 30px;
}

.policy-content h3 {
    font-size: 25px;
}

.policy-content h4 {
    font-size: 21px;
}

.policy-content strong,
.policy-content b {
    color: #06163a;
    font-weight: 900;
}

/* Lists */
.policy-content ul,
.policy-content ol {
    margin: 18px 0 24px;
    padding-left: 0;
}

.policy-content ul li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4f5665;
    font-size: 16px;
    line-height: 1.75;
}

.policy-content ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #91bd4a;
    font-size: 16px;
}

.policy-content ol {
    counter-reset: policy-counter;
}

.policy-content ol li {
    list-style: none;
    position: relative;
    padding-left: 38px;
    margin-bottom: 12px;
    color: #4f5665;
    font-size: 16px;
    line-height: 1.75;
}

.policy-content ol li::before {
    counter-increment: policy-counter;
    content: counter(policy-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: #91bd4a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Table */
.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(23, 37, 78, 0.08);
}

.policy-content table th {
    background: #17254e;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-content table td {
    color: #4f5665;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid #edf1f5;
}

.policy-content table tr:nth-child(even) td {
    background: #f8fafc;
}

/* Links */
.policy-content a {
    color: #91bd4a;
    font-weight: 800;
    text-decoration: none;
}

.policy-content a:hover {
    color: #ffa848;
}

/* Blockquote */
.policy-content blockquote {
    margin: 25px 0;
    padding: 22px 25px;
    border-left: 5px solid #ffa848;
    background: #f8fafc;
    border-radius: 14px;
    color: #06163a;
    font-size: 17px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .policy-card {
        padding: 35px 28px;
    }

    .policy-title h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .policy-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .policy-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .policy-title h1 {
        font-size: 28px;
    }

    .policy-title p,
    .policy-content p,
    .policy-content ul li,
    .policy-content ol li {
        font-size: 15px;
    }

    .policy-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ================= privacy and Terms  ================= */




       .counter-single {
           padding: 25px 0px;
           margin-bottom: 14px;
       }
      
.counter-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(145, 189, 74, 0.14);
    color: #1a456f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.35s ease;
}
.counter-icon i {
    font-size: 38px;
    line-height: 1;
}

.counter-single:hover .counter-icon {
    background: #ffa848;
    color: #ffffff;
    transform: translateY(-5px);
}
.counter-wrapper {
    background: none;
    box-shadow: none;
    padding: 6px;
}