.customer-service-container {
    position: fixed;
    bottom: 145px;
    right: 103px;
    width: 60px;
    height: 60px;
    z-index: 999;
}

html,
body {
    overflow-x: hidden;
}

.customer-service-container:hover {
    cursor: pointer;
}


.btn-color-denka {
    background-color: #0E3D91;
}

.color-denka-secondary {
    background-color: #AB9734;
}

.custom-denka-btn {
    background-color: #AB9734;
    border-radius: 10px;
    padding: 15px 20px;
    border: 0;
}

.text-blue {
    color: #0E3D91;
}

img {
    max-width: 100%;
    height: auto;
}


@media (max-width: 780px) {
    .main-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .page-links {
        display: none;
        flex-direction: column;
        background: #111;
        padding: 15px;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .page-links li {
        margin: 0;
        padding: 2px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-links li a {
        color: #fff !important;
    }

    /* ------------------HAMBURGER MENU MOBILE------------------ */
    .main-menu-list li.active a,
    .mobile-menu-list li.active a {
        color: #AB9734 !important;
    }

    .mobile-menu-list a:hover {
        color: #AB9734;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        margin-left: auto;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100dvh;
        background: #111;
        color: #fff;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }


    .mobile-menu-overlay.open {
        display: block;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 10px;
    }

    .mobile-menu-header .mobile-logo img {
        height: 40px;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
        overflow-y: auto;
    }

    .mobile-menu-list li {
        margin-bottom: 15px;
    }

    .mobile-menu-list a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: block;
        padding: 10px 0;
        transition: color 0.2s;
    }

    .mobile-menu-list a:hover {
        color: #AB9734;
    }

    .mobile-menu-footer {
        flex-shrink: 0;
        padding-bottom: env(safe-area-inset-bottom, 15px);
    }


    .social-icons li a {
        color: #fff;
        font-size: 16px;
    }

    .mobile-language select {
        background: #0E3D91;
        color: #fff;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
    }
}

/* Desktop */
@media (min-width: 781px) {
    .menu-toggle {
        display: none;
    }
}

/* ------------------HEADER MOBILE START------------------ */
@media (max-width: 768px) {

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

    .about-section-one .col-lg-6 {
        margin-bottom: 30px;
    }

    .about-section-mission .row,
    .about-section-vision .row {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .about-section-mission p,
    .about-section-vision p {
        width: 100%;
        max-width: 100%;
        text-align: justify;
        color: #999999;

    }

    .about-section-one video {
        width: 100%;
        height: auto;
    }

    .testimonial-slider-one .testimonial-item-one {
        margin-bottom: 20px;
    }

    .testimonial-slider-one .testimonial-author-image img {
        width: 70px;
        height: 70px;
    }

    .about-section-one .col-lg-6.col-sm-12:last-child {
        height: 200px !important;
        margin-bottom: 20px;
    }

}

/* Loading overlay */
#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Card */
.loading-card {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    min-width: 260px;
}

/* Text */
.loading-text {
    margin-top: 20px;
    font-size: 18px;
    font-family: 'Gilroy-Medium';
    color: #111;
}

/* Dot loader */
.dot-loader {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot-loader span {
    width: 14px;
    height: 14px;
    background: #0168D9;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.dot-loader span:nth-child(1) {
    animation-delay: -0.32s;
}

.dot-loader span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ------------------HEADER MOBILE END------------------ */
/***********************
* Banner section homepage
***********************/
.hero-banner-container {
    padding: 40px 100px;
    position: relative;
}

.hero-banner {
    position: relative;
    width: 100%;
    max-width: 1450px;
    height: clamp(200px, 70vh, 500px);
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.slick-slide-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

.hero-content h1 {
    font-size: clamp(28px, 6vw, 50px);
    margin-bottom: 1rem;
    font-family: 'Gilroy-Bold' !important;
    color: #fff;
}

.hero-content p {
    font-size: clamp(16px, 4vw, 30px);
    margin-bottom: 2rem;
    font-family: 'Gilroy-Regular' !important;
}

.btn-hero {
    background-color: #fff;
    color: #0075C9;
    padding: clamp(8px, 1vw, 14px) clamp(20px, 3vw, 35px);
    font-size: clamp(12px, 2vw, 18px);
    font-family: 'Gilroy-Bold' !important;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #0075C9;
    color: #fff;
}

.hero-slider {
    margin: 0 auto;
    position: relative;
}


.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    top: 105%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #0168D9;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: #235C93;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .slick-prev {
    left: 90px;
}

.hero-slider .slick-next {
    right: 90px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    content: '';
    display: none;
}

.hero-slider .slick-prev:after {
    content: '<';
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.hero-slider .slick-next:after {
    content: '>';
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.hero-slider .slick-dots {
    position: relative;
    top: 35px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.hero-slider .slick-dots li {
    margin: 0 16px;
}

.hero-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 6px;
    background: #E5E5E5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
    display: block;
}

.hero-slider .slick-dots li.slick-active button {
    background: #0168D9;
    width: 35px;
    height: 10px;
    border-radius: 14px;
    transform: scale(1.5);
}

.hero-slider .slick-dots li button:hover {
    background: #235C93;
}


.slick-dots li button:before {
    content: none !important;
}

@media (max-width: 992px) {
    /* .hero-banner-container .coverage-check-slider-container {
        padding: 1.5rem 1rem;
    } */

    .hero-content p {
        line-height: 1.4;
    }

    .hero-banner {
        position: relative;
        width: 100%;
        max-width: 1320px;
        height: 500px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
    .hero-banner-container {
    padding: 40px 10px;
    position: relative;
}
}

@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: auto;
        height: 60vh;
        min-height: 360px;
        border-radius: 14px;
    }

    .hero-banner-container {
        padding: 1.5rem 1rem;
    }

    .hero-content {
        padding: 0.5rem;
    }

    .btn-hero {
        padding: 10px 18px;
    }

    .hero-slider .slick-prev,
    .hero-slider .slick-next {
        top: 106%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }

    .hero-slider .slick-prev {
        left: 10px;
    }

    .hero-slider .slick-next {
        right: 10px;
    }

    .hero-slider .slick-prev:after,
    .hero-slider .slick-next:after {
        font-size: 18px;
    }
}

/* ===== Coverage Mini Banner ===== */
.coverage-check-slider-container h2 {
    font-size: clamp(28px, 4vw, 30px);
    font-family: 'Gilroy-Bold' !important;
    color: #667085;
    margin-bottom: 30px !important;
}

.coverage-check-slider-container {
    padding: 20px 100px 60px;
}

.coverage-inner {
    max-width: 1450px;
    margin: 0 auto;
}

.coverage-slider {
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
}

.coverage-banner {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.coverage-slider .slick-prev,
.coverage-slider .slick-next {
    position: absolute;
    top: 105%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #0168D9;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-slider .slick-prev:hover,
.coverage-slider .slick-next:hover {
    background: #235C93;
    transform: translateY(-50%) scale(1.1);
}

.coverage-slider .slick-prev {
    left: 90px;
}

.coverage-slider .slick-next {
    right: 90px;
}

.coverage-slider .slick-prev:before,
.coverage-slider .slick-next:before {
    content: '';
    display: none;
}

.coverage-slider .slick-prev:after {
    content: '<';
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.coverage-slider .slick-next:after {
    content: '>';
    font-family: 'Font Awesome 6 Free';
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.coverage-slider .slick-dots {
    position: relative;
    top: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.coverage-slider .slick-dots li {
    margin: 0 16px;
}

.coverage-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 6px;
    background: #E5E5E5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    padding: 0;
    display: block;
}

.coverage-slider .slick-dots li.slick-active button {
    background: #0168D9;
    width: 35px;
    height: 10px;
    border-radius: 14px;
    transform: scale(1.5);
}

.coverage-slider .slick-dots li button:hover {
    background: #235C93;
}


.slick-dots li button:before {
    content: none !important;
}

@media (max-width: 1400px) {
    .coverage-banner {
        height: 480px;
    }
}

@media (max-width: 1200px) {
    .coverage-banner {
        height: 420px;
    }

    .coverage-check-slider-container {
        padding: 40px 40px;
    }
}

@media (max-width: 992px) {
    .coverage-banner {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .coverage-banner {
        height: 320px;
    }

    .coverage-check-slider-container {
        padding: 40px 20px;
    }

    .coverage-slider .slick-prev,
    .coverage-slider .slick-next {
        top: 114%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
    }

    .coverage-slider .slick-prev {
        left: 10px;
    }

    .coverage-slider .slick-next {
        right: 10px;
    }

    .coverage-slider .slick-prev:after,
    .coverage-slider .slick-next:after {
        font-size: 18px;
    }

    .coverage-check-slider-container h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .coverage-banner {
        height: 160px;
    }
}

/* ================= FAQ SECTION ================= */

.faq-header h2 {
    font-size: clamp(28px, 5vw, 30px);
    font-family: 'Gilroy-Bold' !important;
    color: #0C55A5;
}

.faq-header p {
    font-size: clamp(16px, 3vw, 24px);
    color: #0C55A5;
    font-family: 'Gilroy-Medium' !important;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 1250px;
    padding: 0 10px;
}

.faq-item {
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #F3F3F3;
    border: none;
    padding: 12px 20px;
    font-size: clamp(14px, 1.5vw, 20px);
    font-family: 'Gilroy-Medium' !important;
    color: #0C55A5;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.faq-icon {
    font-size: 20px;
    color: #0C55A5;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 15px 0 20px;
    color: #000;
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-header p {
        margin-bottom: 10px;
    }
}

.cta-section {
    padding: 60px 20px;
}

.cta-box {
    width: 1450px;
    height: 500px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    box-shadow: 0px 2px 25px 0px #0000001A;
    flex-direction: row;
}

.cta-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text h3 {
    color: #667085;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: 'Gilroy-Bold' !important;
}

.cta-btn {
    background: #0168D9;
    color: #fff;
    padding: 0 30px;
    border-radius: 10px;
    font-family: 'Gilroy-Bold' !important;
    transition: 0.3s ease;
    font-size: 24px;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: inline-block;
}


.cta-btn:hover {
    background: #014f9a;
    color: #fff;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1700px) {
    .cta-box {
        width: 90%;
        height: 460px;
    }

    .cta-section {
        padding: 20px 20px;
    }

    .cta-text h3 {
        color: #667085;
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 40px;
        font-weight: bold;
    }

    .cta-image {
        height: auto;
    }
}

@media (max-width: 1200px) {
    .cta-box {
        width: 95%;
        height: 420px;
    }

    .cta-text {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .cta-box {
        flex-direction: column;
        height: auto;
    }

    .cta-text {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .cta-text h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 8px 16px;
        height: 40px;
        background: #0168D9;
        color: #fff;
        border-radius: 8px;
        font-family: 'Gilroy-Bold' !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: 0.3s ease;
    }

    .cta-image {
        height: auto;
        width: 100%;
        margin: 0;
    }

    .cta-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 768px) {

    .cta-text {
        padding: 20px 10px;
    }

    .cta-text h3 {
        font-size: 24px;
        margin: 26px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 8px 16px;
        height: 40px;
        background: #0168D9;
        color: #fff;
        border-radius: 8px;
        font-family: 'Gilroy-Bold' !important;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: 0.3s ease;
    }


    .cta-image img {
        height: auto;
        width: 100%;
    }
}

/* ================= PROFILE SECTION ================= */
.sidebar {
    width: 265px;
    background-color: #0168D9;
    color: white;
    padding-top: 20px;
    min-height: 100vh;
    flex-shrink: 0;
}

.main-content {
    flex-grow: 1;
    padding: 50px 60px;
}

.profile-page h2 {
    color: #0C55A5;
    font-size: clamp(24px, 2vw, 30px);
    font-family: 'Gilroy-Bold' !important;
}

.profile-box {
    background: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin: 40px auto;
}

.profile-text .form-label {
    font-family: 'Gilroy-Medium' !important;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #000;
}

.country-code-wrapper {
    position: relative;
    display: inline-block;
    width: 120px;
}

.country-code-wrapper select {
    appearance: none;
    background-color: #fff;
    padding-right: 35px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 38px;
}

.country-code-wrapper .custom-dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 36px;
    color: #0168D9;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar .nav-link.fw-bold {
    color: #FFFFFF;
}

.change-password-btn {
    width: 200px;
    height: 50px;
    background-color: #0168D9;
    color: #fff;
    font-family: 'Gilroy-Bold' !important;
    font-size: clamp(16px, 1.8vw, 18px);
    border-radius: 10px;
    border: none;
    opacity: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.change-password-btn:hover {
    background-color: #005bb5;
    color: #fff;
}

.cancel-btn,
.update-btn {
    width: 150px;
    height: 50px;
    border-radius: 10px;
    font-family: 'Gilroy-Bold' !important;
    font-size: clamp(16px, 1.8vw, 18px);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cancel-btn {
    background-color: #A0A0A0;
    color: #fff;
}

.update-btn {
    background-color: #0168D9;
    color: #fff;
}

.cancel-btn:hover {
    background-color: #888888;
    color: #fff;
}

.update-btn:hover {
    background-color: #005bb5;
    color: #fff;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .main-content {
        padding: 20px 15px;
    }

    h2 {
        font-size: 24px;
    }

    .profile-box {
        padding: 20px 15px;
        margin: 20px auto;
        width: 100%;
    }

    .profile-text .form-label {
        font-size: 16px;
    }

    .profile-text input.form-control,
    .profile-text select.form-control {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }

    .cancel-btn,
    .update-btn {
        width: 40% !important;
        height: 50px !important;
        font-size: 18px !important;
        padding: 0 10px !important;
    }

    .change-password-btn {
        width: 100% !important;
        height: 50px !important;
        font-size: 18px !important;
        padding: 0 10px !important;
    }
}

/* ================= COVERAGE SUBMISSION SEARCH HISTORY SECTION ================= */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-content {
    flex-grow: 1;
    padding: 50px 60px !important;
}

.search-box {
    background: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin: 40px auto;
}

table thead th {
    vertical-align: top;
    font-family: 'Gilroy-SemiBold';
    font-size: clamp(16px, 1.8vw, 18px);
}

.custom-table td {
    font-family: 'Gilroy-Regular' !important;
    font-size: clamp(16px, 1.8vw, 18px);
}

.custom-table thead th {
    border-bottom: 2px solid #000 !important;
    padding: 20px 20px;
    font-size: clamp(16px, 1.8vw, 18px);
}

.custom-table td,
.custom-table th,
.custom-table tbody tr {
    border: none !important;
}

.search-page h2 {
    color: #0C55A5;
    font-size: clamp(24px, 2vw, 30px);
    font-family: 'Gilroy-Bold' !important;
}

.filter-input {
    padding-right: 35px;
    min-width: 180px;
    color: #235C93;
}

.filter-input::placeholder {
    color: #235C93;
    opacity: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.history-action-btn.disabled {
    color: #A0A0A0;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}

.date-input-wrapper {
    position: relative;
}

.date-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #235C93;
    pointer-events: none;
    font-size: 14px;
}

select.filter-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
}

.filter-icon-img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.filter-icon-img.search-icon {
    pointer-events: auto !important;
}

.filter-icon-char {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #235C93;
    font-size: 18px;
}

.history-action-btn {
    text-decoration: none;
    color: #0089CF;
    transition: all 0.3s;
}

.history-action-btn:hover {
    text-decoration: underline;
    color: #005A99;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar .nav-link.fw-bold {
    color: #FFFFFF;
}


/* ==================== MOBILE VIEW (768px and below) ==================== */
@media (max-width: 768px) {
    page-wrapper {
        display: block;
        /* no flex on mobile */
        width: 100%;
    }

    .sidebar {
        display: none;
    }


    .main-content {
        padding: 20px 15px !important;
    }

    .search-page h2 {
        font-size: 24px !important;
        margin-bottom: 25px !important;
    }

    #filterForm {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .date-input-wrapper,
    .position-relative {
        width: 100% !important;
    }

    .filter-input {
        width: 100% !important;
        min-width: auto !important;
        font-size: 14px !important;
        padding: 10px 35px 10px 15px !important;
    }

    #filterIdNumber {
        min-width: auto !important;
    }

    .filter-icon-img {
        width: 16px !important;
        height: 16px !important;
        right: 12px !important;
    }

    .filter-icon-char {
        font-size: 16px !important;
        right: 12px !important;
    }

    .search-box {
        padding: 20px 15px !important;
        margin: 20px auto !important;
        border-radius: 10px !important;
    }

    .table-responsive {
        margin: 0 -10px !important;
        padding: 0 10px !important;
    }

    .custom-table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .custom-table thead th {
        font-size: 14px !important;
        padding: 12px 8px !important;
        min-width: 100px !important;
    }

    .custom-table td {
        font-size: 14px !important;
        padding: 12px 8px !important;
        min-width: 100px !important;
    }

    table thead th {
        font-size: 14px !important;
    }

    .custom-table td,
    .custom-table th {
        font-size: 14px !important;
    }

    .history-action-btn {
        font-size: 14px !important;
        padding: 6px 12px !important;
        display: inline-block !important;
    }
}

/* ================= COVERAGE SUBMISSION STEP 1 SECTION ================= */
.container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.coverage-box input.form-control,
.coverage-box select.form-control {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 16px;
    box-sizing: border-box;
}

.coverage-box label {
    font-family: 'Gilroy-Medium' !important;
    font-size: clamp(16px, 1.8vw, 18px);
    color: #000;
}

.coverage-box .select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 30px;
    height: 14px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 14.95px solid #0168D9;
    pointer-events: none;
}


.blur-overlay {
    filter: blur(2px);
    pointer-events: none;
    opacity: 0.4;
}

.locked-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 60px 60px;
    border-radius: 12px;
    font-size: 20px;
    text-align: center;
}

.coverage-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    width: 100%;
    height: auto;
    margin: 20px auto;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    opacity: 1;
}

.coverage-box {
    width: 100%;
    max-width: clamp(440px, 50vw, 640px);
}

.btn-login {
    background-color: #0168D9;
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-login:hover {
    background-color: #005bb5;
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 15px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    .coverage-box {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        margin: 20px auto !important;
        padding: 25px 20px !important;
    }

    .coverage-box input.form-control,
    .coverage-box select.form-control {
        height: 50px !important;
        font-size: 14px !important;
        padding: 0 10px !important;
    }

    .form-label {
        font-size: 16px !important;
    }

    .btn-lg {
        font-size: 18px !important;
        padding: 10px 0 !important;
    }

    .locked-message {
        padding: 30px 20px !important;
        font-size: 16px !important;
        width: 90%;
    }

    .btn-login {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .select-wrapper::after {
        width: 20px !important;
        height: 10px !important;
        border-left: 10px solid transparent !important;
        border-right: 10px solid transparent !important;
        border-top: 10px solid #0168D9 !important;
    }
}

/* ================= COVERAGE SUBMISSION STEP 2 SECTION ================= */
.coverage2-box {
    background: #fff;
    padding: 50px 50px;
    border-radius: 12px;
    max-width: 1550px;
    min-height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.form-label {
    font-size: clamp(16px, 1.8vw, 18px);
    color: #000;
    font-family: 'Gilroy-Medium' !important;
}

.save-btn {
    background-color: #157AE8;
    color: #fff;
    border: none;
    transition: 0.2s;
    margin-top: 20px;
    font-family: 'Gilroy-Bold' !important;
    font-size: clamp(16px, 1.8vw, 18px);
    padding: 0 30px;
    height: 50px;
    border-radius: 10px;
    white-space: nowrap;
}

.back-btn {
    background-color: #A0A0A0;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    color: #fff;
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: 'Gilroy-Bold' !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    margin-top: 20px;
}

.next-btn {
    background-color: #0168D9;
    color: #fff;
    width: 180px;
    height: 50px;
    font-size: clamp(16px, 1.8vw, 18px);
    border-radius: 10px;
    font-family: 'Gilroy-Bold' !important;
    border: none;
    transition: 0.2s;
    margin-top: 20px;
}

.save-btn:hover {
    background-color: #0F63C7;
}

.back-btn:hover {
    background-color: #7A7A7A;
    color: #fff;
}

.next-btn:hover {
    background-color: #0052AC;
    color: #fff;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #F4F4F4;
    color: #717171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy-Medium' !important;
    font-size: clamp(16px, 1.8vw, 20px);
    transition: 0.2s ease;
}

.active-step .circle {
    background: #0168D9;
    color: #fff;
    font-family: 'Gilroy-Bold' !important;
    transform: scale(1.05);
}

.step-label {
    font-family: 'Gilroy-Medium' !important;
    font-size: clamp(16px, 1.8vw, 20px);
    color: #0C55A5;
    white-space: nowrap;
}

.active-step .step-label {
    font-family: 'Gilroy-Bold' !important;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.custom-select-wrapper::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #0168D9;
    font-size: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .coverage2-box {
        padding: 20px 15px !important;
        margin: 10px auto !important;
        width: 100%;
    }

    .form-label {
        font-size: 16px !important;
    }

    .coverage2-box input.form-control,
    .coverage2-box select.form-control {
        font-size: 14px !important;
        height: 45px !important;
        padding: 0 10px !important;
    }

    .d-flex.justify-content-between.mt-4 {
        flex-direction: column;
        gap: 15px;
    }

    .d-flex.justify-content-between.mt-4 .d-flex.gap-3 {
        justify-content: space-between;
        flex-direction: row;
        gap: 10px;
    }

    .save-btn,
    .back-btn,
    .next-btn {
        font-size: 16px !important;
        padding: 8px 15px !important;
        width: 100%;
        height: 50px
    }

    .step-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px !important;
        padding-bottom: 20px;
    }

    .step {
        gap: 10px !important;
    }

    .circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }

    .step-label {
        font-size: 14px !important;
    }

    .custom-select-wrapper::after {
        font-size: 0.8rem !important;
        right: 0.5rem !important;
    }

    .row {
        flex-wrap: wrap;
    }

    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px;
    }
}

/* ================= COVERAGE SUBMISSION STEP 3 SECTION ================= */
.coverage-box3 {
    background: #fff;
    padding: 30px 50px;
    border-radius: 12px;
    max-width: 1550px;
    min-height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.file-drop-area {
    border: 2px dashed #0C55A5;
    border-radius: 8px;
    padding: 20px 20px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}

.file-drop-area:hover {
    background-color: #f0f8ff;
}

.file-drop-area p {
    margin: 0;
    font-weight: 500;
    color: #000;
}

#selectedFileNames {
    text-align: left;
    font-weight: 500;
    color: #0168D9;
    margin-top: 10px;
    text-decoration: underline;
}

.ocr-inline-loading {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #F5F9FF;
    color: #235C93;
    font-size: 14px;
    font-weight: 500;
}

.ocr-inline-loading .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 2px;
}

@media (max-width: 768px) {

    .coverage-box3 {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
        width: 100%;
    }


    .coverage-box3 input.form-control,
    .coverage-box3 select.form-control {
        font-size: 14px !important;
        height: 45px !important;
        padding: 0 10px !important;
    }

    .coverage-box3 .d-flex.gap-3 {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .coverage-box3 .d-flex.gap-3 .flex-fill {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .coverage-box3 input.form-control,
    .coverage-box3 select.form-control {
        width: 100% !important;
    }

    .button-group-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .button-group-mobile .save-btn {
        width: 100% !important;
    }

    .button-group-mobile .d-flex.gap-3 {
        flex-direction: row !important;
        gap: 10px;
    }

    .button-group-mobile .d-flex.gap-3 .btn {
        flex: 1;
    }

    .d-flex.gap-3>.flex-fill {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .file-drop-area {
        padding: 25px 15px !important;
    }

    #selectedFileNames {
        font-size: 14px !important;
    }

    #dropAreaText {
        font-size: 14px !important;
    }
}

/* ================= COVERAGE SUBMISSION RESULT SECTION ================= */
.coverage-box4 {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.mb-3 div {
    font-size: clamp(16px, 1.8vw, 18px);
    color: #000;
    font-family: 'Gilroy-Regular' !important;
}

.mb-3 label {
    color: #000;
    font-size: clamp(16px, 1.8vw, 18px);
    font-family: 'Gilroy-Medium' !important;
}

.table {
    border: 1px solid #EBEBEB;
    border-collapse: collapse;
}

.table th,
.table td {
    vertical-align: middle;
    padding: 10px;
    text-align: center;
}

.table td {
    font-family: 'Gilroy-Medium' !important;
    font-size: clamp(16px, 1.8vw, 18px);
}

.table tbody tr {
    background-color: #157AE8;
    color: #fff;
}

.new-search-btn:hover {
    background: #0052AC !important;
    color: #fff !important;
}

.history-btn:hover {
    background: #7A7A7A !important;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .coverage-box4 {
        padding: 20px 15px;
    }

    .mb-3 div,
    .mb-3 label {
        font-size: 14px;
    }

    h4 {
        font-size: 24px !important;
    }

    .table th,
    .table td {
        padding: 6px;
        font-size: 12px;
    }

    .table thead th {
        font-size: 12px;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .mobile-button-group a {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .mobile-button-group {
        flex-direction: column !important;
        align-items: stretch;
    }

    .new-search-btn,
    .history-btn {
        font-size: 14px !important;
        padding: 8px 10px !important;
    }
}

/* ================= FOOTER SECTION ================= */
.main-footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Gilroy-Medium' !important;

}

.mainfooter-text {
    font-size: clamp(24px, 6vw, 36px) !important;
    font-family: 'Gilroy-Bold' !important;
}

.main-footer p {
    font-size: 16px;
    margin: 5px 0;
    color: #000;
}

.footer-line {
    width: 60px;
    height: 4px;
    background-color: #f4b334;
    margin: 12px auto 20px;
}

.footer-contact {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: row;
}

.footer-contact .contact-text {
    text-align: left;
}

@media (max-width: 768px) {
    .main-footer h3 {
        font-size: 20px;
    }

    .footer-contact {
        flex-direction: row;
    }

    .main-footer p {
        font-size: 14px;
    }

    .footer-contact {
        flex-direction: row;
        text-align: center;
        gap: 20px;
    }

    .footer-contact img {
        width: 55px !important;
        height: 55px !important;
    }

    .footer-contact .contact-text {
        text-align: left;
    }
}