:root {
    --primary: #31796f;
    --primary-dark: #006666;
    --primary-light: #e6f7f7;
    --secondary: #1a2a3a;
    --accent: #ff6b6b;
    --gold: #d4af37;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #777;
    --primary-rgb: 59, 130, 246;
}


@font-face {
    font-family: 'SolaimanLipi';
    src: url('../global/fonts/SolaimanLipi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* first body block removed to avoid conflicting backgrounds */
h6,
p,
span,
a,
div,
label {
    font-family: 'SolaimanLipi', sans-serif;
    font-size: 17px;
}

body {
    font-family: 'SolaimanLipi', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================== global start here ============================== */

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Kalpurush', sans-serif;
    font-weight: 600;
}

.text-primary-color {
    color: var(--primary);
}

.text-secondary-color {
    color: var(--secondary);
}

.main-content-container {
    margin-top: 30px;
    margin-bottom: 50px;
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;

    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(6, 165, 165, 0.25);
    background-color: white;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.view-link {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.view-link:hover {
    color: var(--primary);
}

.btn {
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-weight: bold;
}


.btn-report-search {
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    font-weight: bold;
    background-color: var(--primary);
    color: white;
}

.btn-report-search:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
}

/* ================== global end here ============================== */

/* ========================== Top header start here =========================== */
.top-header {
    background: var(--primary);
    color: #FFF !important;
    padding: 6px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.top-header .top-left,
.top-header .top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-header a {
    color: #FFF;
    text-decoration: none;
    opacity: 0.9;
}

.top-header a:hover {
    opacity: 1;
}

.top-header i {
    color: #FFF;
    margin-right: 6px;
}

.top-header .social a {
    color: #FFF;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.02);
    transition: all .18s ease;
}

.top-header .social a:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
}


.top-header .social {
    color: #fff !important;
}


/* ========================== Top header end here =========================== */

/* ========================== Navigation start here ========================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    font-size: 1.8rem;
}



/* ========================== Navigation end here ========================== */

/* ========================== Modern navbar interactions ========================== */
/* Header shrink on scroll */
.modern-nav {
    transition: all .28s ease;
}

.modern-nav.nav-shrink {
    padding: 6px 0;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
    backdrop-filter: blur(8px);
}

.modern-nav .navbar-brand img {
    transition: transform .28s ease;
}

.modern-nav.nav-shrink .navbar-brand img {
    transform: scale(.92);
}

/* Offcanvas full-screen menu (mobile) */
.offcanvas-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;
}

.offcanvas-menu .panel {
    width: 100%;
    max-width: 360px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff, #fbfbff);
    box-shadow: -12px 0 48px rgba(2, 6, 23, 0.12);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.2, .9, .3, 1);
    pointer-events: auto;
    padding: 2rem;
    overflow: auto;
}

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

.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
    z-index: 1099;
}

.offcanvas-open .offcanvas-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.offcanvas-panel-close {
    position: absolute;
    left: 12px;
    top: 12px;
    background: transparent;
    border: 0;
    font-size: 1.4rem;
}

.offcanvas-panel nav {
    margin-top: 28px;
}

.offcanvas-panel .nav-link {
    display: block;
    padding: 0.9rem 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.6);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.search-box-panel {
    width: 100%;
    max-width: 760px;
    background: var(--card-bg);
    color: var(--card-text);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-box-panel input {
    flex: 1;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.search-close {
    background: transparent;
    border: 0;
    font-size: 1.25rem;
}

@media (min-width:992px) {
    .offcanvas-menu {
        display: none;
    }
}

/* ========================== End modern navbar interactions ========================== */

/* ========================== Submenu styling start here ========================== */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}



.btn-appointment {
    background-color: var(--primary);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-appointment:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}

/* ========================== Submenu styling end here ========================== */

/* ========================== Hero section start here ========================== */
.hero-section {
    background: linear-gradient(135deg, #131f5b 0%, #36b5b5 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23006666' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-banner-cards {
    position: relative;
    z-index: 2;
    margin-top: 30px;
}

.hero-banner-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.hero-banner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-banner-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.hero-banner-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-banner-card .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s;
}

.hero-banner-card .btn:hover {
    background: white;
    color: var(--primary);
}

/* ========================== Hero section end here ========================== */

/* ==================  breadcrumb start here ==================== */
.breadcrumb-header {
    background-color: var(--primary);
    color: #fff;
    padding: 50px 0;
    background-image: url('https://images.pexels.com/photos/7089035/pexels-photo-7089035.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.85);
}

.breadcrumb-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.breadcrumb-content .breadcrumb {
    background: none;
    display: flex;
    justify-content: center;
}

.breadcrumb-content .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}

.breadcrumb-content .breadcrumb-item.active {
    color: #fff;
    opacity: 1;
}

/* ==================  breadcrumb end here ==================== */



/* ================== Healthcare services section start here  ===================== */

.services-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23008080' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);

    margin: 0 auto;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    bottom: 0;
    left: 0;
    transition: all 0.3s;
    z-index: -1;
}

.service-card:hover:before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    /* width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s;
    margin: 0 auto;
}

.medical-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-section {
    background-color: #f9fafb;
}

.section-title h2 {
    font-size: 2rem;
    line-height: 1.3;
}

.service-item {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-icon {
    color: #0d6efd;
    font-weight: bold;
    font-size: 18px;
}



.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ================== Healthcare services section end here  ===================== */

/* ================ Medical services section start here ====================== */

.medical-services {
    padding: 100px 0;
    background-color: white;
}

/* ================ Medical services section end here ====================== */

/* ================ Packages section start here  ================ */
.packages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.packages-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23008080' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.package-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    background: var(--card-bg);
    color: var(--card-text);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.package-card:hover .package-header:before {
    transform: rotate(45deg) translate(20px, 20px);
}

.package-popular {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.package-body {
    padding: 30px;
    position: relative;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.package-price span {
    font-size: 1rem;
    margin-top: 5px;
    margin-left: 5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.package-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.btn-package {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 30px;
    padding: 12px 25px;
    width: 100%;
    transition: all 0.3s;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.4);
}

/* ================ Packages section end here  ================ */

/* ================ Footer start here ================ */
.footer {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e2a38 100%);
    color: white;
    padding: 80px 0 20px;

}





.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
}

/* ================ Footer end here ================ */

/*  ================ Animations start here ================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  ================ Animations end here ================ */
/* ================ Responsive start here ================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .package-card {
        margin-bottom: 30px;
    }
}

/* ================ Responsive start here ================ */


/* ================ Service page start here ================ */
.services-sidebar {
    background-color: #fff;
}

.services-sidebar .list-group-item {
    border: none;
    padding: 12px 15px;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 0;
}

.services-sidebar .list-group-item:hover:not(.active) {
    background-color: #f1f1f1;
}

.services-sidebar .list-group-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary-dark);
    padding-left: 12px;
}

.sidebar-header {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 15px;
    background-color: var(--primary-light);
    color: var(--primary);
}

.service-detail-section h5 {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.service-detail-section p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ================ Service page end here ================ */


/* ================ About us page start here ================ */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 40px);
}

.timeline-year {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-dark);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    left: 50%;
    margin-left: -50px;
    top: 0;
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    color: var(--card-text);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

.timeline-content:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(45deg);
    top: 15px;
}

.timeline-item:nth-child(odd) .timeline-content:after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content:after {
    left: -10px;
}

.service-card {
    background: var(--card-bg);
    color: var(--card-text);
    border-radius: 8px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
    padding: 20px;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 30px;
        margin-left: -30px;
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .timeline-item:nth-child(odd) .timeline-content:after,
    .timeline-item:nth-child(even) .timeline-content:after {
        left: -10px;
        right: auto;
    }
}

/* ================ About us page end here ================ */


/* ================ Contact page start here ================ */
.info-map-card {
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: var(--card-bg);
    color: var(--card-text);
}

.contact-info-block {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.contact-form-card {
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--card-bg);
    color: var(--card-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-top: 4rem;
}


.btn-custom-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-custom-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

@media (min-width: 992px) {
    .map-iframe {
        min-height: 450px;
    }

    .contact-info-block {
        height: 100%;
    }
}

/* ================ Contact page end here ================ */



/* ================ Search start here ================ */
.search-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.1;
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.form-control-custom {
    border-radius: 0.75rem;
    border: 1.5px solid #e2e8f0;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    flex: 1;
    min-width: 250px;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(var(--primary-rgb, 59, 130, 246), 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.form-control-custom::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.btn-search-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    border-radius: 0.75rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 2px 8px rgba(var(--primary-rgb, 59, 130, 246), 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-search-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-search-custom:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker, #1e40af) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(var(--primary-rgb, 59, 130, 246), 0.3),
        0 3px 8px rgba(0, 0, 0, 0.15);
}

.btn-search-custom:hover::before {
    left: 100%;
}

.btn-search-custom:active {
    transform: translateY(0);
    box-shadow:
        0 2px 4px rgba(var(--primary-rgb, 59, 130, 246), 0.2);
}

.btn-search-custom i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-search-custom:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .search-container {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }

    .search-form {
        gap: 0.75rem;
    }

    .form-control-custom {
        min-width: 100%;
        margin-bottom: 0.5rem;
    }

    .btn-search-custom {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-color-scheme: dark) {
    .search-container {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .form-control-custom {
        background: #374151;
        border-color: #4b5563;
        color: white;
    }

    .form-control-custom::placeholder {
        color: #9ca3af;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-container {
    animation: slideUpFade 0.6s ease-out;
}

/* ================ Search end here ================ */

/* ================ Doctor page start here ================ */

.specialist-card {
    background-color: white;
    border-radius: 1rem 5rem 1rem 1rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    transition: height 0.4s ease;
    z-index: 1;
}

.specialist-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-5px);
}

.specialist-card:hover::before {
    height: 100%;
}

.specialist-card:hover .specialty-title {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.specialist-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    animation: none;
}

.specialist-card:hover .icon-wrapper::after {
    opacity: 0.6;
    animation: gentleJilik 2s ease-out;
}

@keyframes gentleJilik {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.specialist-card:hover .icon-wrapper::before {
    width: 100%;
    height: 100%;
    animation: sparkle 0.6s ease-out;
}

@keyframes sparkle {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

.specialist-card .icon-wrapper i {
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    position: relative;
}

.specialist-card:hover .icon-wrapper i {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.specialty-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.specialist-card:hover {
    animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
    }

    100% {
        box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.2);
    }
}

/* ================ Doctor page end here ================ */

.doctor-card {
    border: 1px solid #e3e6ea;
    border-left: 4px solid #2a5b88;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    gap: 16px;
    transition: 0.3s;
    min-height: 150px;
}

.doctor-card:hover {
    background: #f5f9fc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.doctor-card img {
    width: 120px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.doctor-info h5 {
    margin: 0;
    margin-bottom: 4px;
    color: #1f5b88;
    font-weight: 700;
    font-size: 1.1rem;
}

.doctor-info .specialty {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.doctor-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.appointment-btn {
    margin-top: 12px;
}

.appointment-btn a {
    padding: 8px 16px;
    background: #2a5b88;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.appointment-btn a:hover {
    background: #1b4468;
}

@media(max-width: 767px) {
    .doctor-card img {
        width: 85px;
        height: 90px;
    }

    .doctor-card {
        gap: 10px;
    }
}

.form-control-custom:focus {
    border-color: #2a5b88 !important;
    box-shadow: 0 0 0 0.15rem rgba(42, 91, 136, 0.25) !important;
}

.btn-search-custom:hover {
    background: #1c4469 !important;
}


/* ================ Doctor List page start here ================ */

.image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 3px solid var(--primary);
}

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

.visiting-time,
.location {
    font-size: 0.8em;
    color: var(--text-light);
    margin: 5px 0;
    padding: 5px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    gap: 5px;
    margin-top: 15px;
}

.btn {
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.btn-appointment {
    background-color: var(--primary);
    color: white;
}

.btn-appointment:hover {
    background-color: var(--primary-dark);
}

.btn-call {
    background-color: #5cb85c;
    color: white;
}

.btn-call:hover {
    background-color: #4cae4c;
}

.btn-profile {
    background-color: var(--text-light);
    color: white;
}

.btn-profile:hover {
    background-color: var(--text-dark);
}

.specialties-sidebar h2 {
    color: var(--secondary);
    font-size: 1.4em;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.specialties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialties-list li {
    padding: 8px 0;
    font-size: 0.95em;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.specialties-list li:before {
    content: '+';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.specialties-list .category-header {
    font-weight: bold;
    color: var(--primary);
    margin-top: 10px;
}

.specialties-list .category-header:before {
    content: none;
}

/* ================ Doctor List page end here ================ */


/* ================ Doctor Profile or Details page start here ================ */

.profile-header-section {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-bottom: 20px;
}

.profile-image-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    color: var(--secondary);
    font-size: 2.2em;
    margin: 0 0 5px;
}

.specialty-focus {
    color: var(--primary);
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.credentials p {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 2px 0;
}

.profile-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}


.btn-appointment-large {
    background-color: var(--primary);
    color: white;
}

.btn-appointment-large:hover {
    background-color: var(--primary-dark);
}

.btn-call-large {
    background-color: var(--secondary);
    color: white;
}

.btn-call-large:hover {
    background-color: #0d161f;
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--primary-light);
    margin: 20px 0;
}

.profile-details-section {
    display: flex;
    gap: 30px;
}

.sidebar-details {
    flex: 1;
    min-width: 250px;
}

.content-description {
    flex: 2;
}

.card {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.card h2 {
    color: var(--secondary);
    margin-top: 0;
    padding-bottom: 5px;
    font-size: 1.5em;
}

.card h3 {
    color: var(--primary-dark);
    margin-top: 0;
    font-size: 1.2em;
}

.visiting-card ul {
    list-style: none;
    padding: 0;
}

.visiting-card ul li {
    padding: 5px 0;
    font-size: 0.95em;
    color: var(--text-dark);
}

/* .medical-top-img{
    height: 150px;
    width: 200px;
} */

/* .medical-top-img{
    height: 150px;
    width: 200px;
} */

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 8px 0;
    font-size: 1em;
    color: var(--text-dark);
    border-bottom: 1px dotted var(--primary-light);
}

.list-icon {
    color: var(--primary);
    font-weight: bold;
    margin-right: 10px;
}

.contact-card .contact-line {
    font-size: 0.95em;
    margin: 5px 0;
}

/* ================ Doctor Profile or Details page end here ================ */



/* ================ Appointment page start here ================ */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-heading {
    color: var(--primary);
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
}

.main-heading {
    color: var(--secondary);
    font-size: 2.5em;
    margin-top: 0;
    font-weight: 700;
}

.appointment-content-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.select-doctor-card {
    flex: 1;
    min-width: 250px;
}

.select-doctor-card h2 {
    color: var(--secondary);
    font-size: 1.3em;
    margin-top: 0;
}

.doctor-select-field {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

.doctor-select-field input {
    width: calc(100% - 30px);
    padding: 10px;
    border: none;
    outline: none;
    font-size: 1em;
    background: transparent;
}

.dropdown-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}


.appointment-form-card {
    flex: 2;
}

.appointment-form-card h2 {
    color: var(--secondary);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 20px;
}

.appointment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.input-with-icon {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    border-radius: 4px;
    padding: 10px;
}

.form-icon {
    color: var(--primary);
    font-style: normal;
    font-size: 1.1em;
    margin-right: 10px;
}

.input-with-icon input {
    flex-grow: 1;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    color: var(--text-dark);
}

.submit-request {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-request:hover {
    background-color: var(--primary-dark);
}

/* ================ Appoinment page end here ================ */





/* dashboard */
.dashboard-main {
    background: #f7f7f7;
    position: relative;
}

.dashboard {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cccccccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.dashboard-head img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-head p {
    color: #9e9e9e;
    margin: 0;
}

.dashboard-head h4 {
    color: #39004E;
    font-size: 20px;
}

.dashboard-head .add-property-btn {
    background: #39004E;
    padding: 10px 15px;
    color: #ffffff;
    border-radius: 5px;
}

.d-mobile-btn {
    background: #39004E;
    padding: 4px 10px;
    color: #ffffff;
    border-radius: 5px;
    display: none;
}

.d-mobile-btn:hover {
    background: #39004ee5;
}

.d-mobile-btn i {
    font-size: 22px;
}

.dashboard-head .add-property-btn:hover {
    background: #39004ee5;
}

.dashboard-sidnav {
    background: #EDF8FF;
    padding: 20px 0;
    border-radius: 10px;
    position: sticky;
    top: 110px;
    z-index: 2;
}

.dashboard-body {
    background: #EDF8FF;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.d-submenu {
    padding-top: 5px;
}

.d-submenu a {
    display: flex;
    padding: 5px 0;
    align-items: center;
    gap: 5px;
}

.dashboard-sidnav>ul>li {
    padding: 10px 0;
    list-style: none;
}

.d-submenu {
    padding-left: 15px;
    display: none;
}

.d-submenu i {
    font-size: 10px;
    padding: 3px;
    padding-top: 0;
}

.d-submenu.mm-active {
    display: block;
}

.dashboard-sidnav ul li a.mm-active {
    color: #39004E;
    font-weight: 500;
}

.d-subbtn.mm-active>a {
    color: #39004E;
    font-weight: 500;
}

.d-submenu.mm-active>.mm-active {
    color: #39004E;
    font-weight: 500;
}

.dashboard-card {
    display: flex;
    align-items: start;
    gap: 15px;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.dashboard-card i {
    font-size: 40px;
}

.dashboard-sidnav .d-mobile-close {
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 8px;
    display: none;
}

.dashboard-sidnav .d-mobile-close i {
    font-size: 25px;
}

@media(max-width:991px) {
    .d-mobile-menu {
        position: absolute;
        width: 250px;
        left: -260px;
        top: 0;
        height: 100%;
        transition: .4s;
        display: none;
    }

    .d-mobile-menu .dashboard-sidnav {
        height: 100%;
        border-right: 1px solid #ffffff;
    }

    .d-mobile-menu.active {
        display: block;
        left: 0px;
    }

    .d-mobile-btn {
        display: block;
    }

    .dashboard-sidnav .d-mobile-close {
        display: block;
    }

    .sm-ul {
        margin-top: 15px;
    }
}



.user-profile-img img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-profile-img>div {
    width: 150px;
}

.user-profile-img .image-upload-wrapper {
    height: 150px;
}

.user-profile-img .image-upload-preview {
    border-radius: 50%;
}

.profile-information p {
    margin: 0;
    font-size: 18px;
    padding: 2px 0;
}



/* image uploder */
.image--uploader {
    width: 240px;
    border-radius: 10px;
}

.image-upload-wrapper {
    height: 280px;
    position: relative;
}

.image-upload-preview {
    max-width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    border: 1px dashed #CED4DA;
}

.image-upload-input {
    height: 0;
    width: 0;
    opacity: 0;
}

.image-upload-wrapper label {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

.image__support_file_size button {
    font-size: 12px;
    background: #616161;
    border-radius: 5px;
    padding: 0px 5px;
    color: #ffffff;
    display: inline-block;
    outline: none;
    border: none;
    font-weight: 300;
}







/* image uploder end*/
.report-hero {
    position: relative;
    background: url("{{ asset('images/report-bg.jpg') }}") center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.report-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
}

.report-content {
    position: relative;
    z-index: 2;
}

.report-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b4b5a;
}

.report-box {
    background: var(--primary);
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.report-box h4 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.report-box .form-control {
    height: 48px;
    border-radius: 6px;
    font-size: 15px;
}

.report-box .btn-submit {
    background: #ffa63d;
    border: none;
    height: 48px;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    transition: .3s;
}

.report-box .btn-submit:hover {
    background: #ff9720;
}

.report-note li {
    margin-bottom: 8px;
    font-size: 14px;
}

.otp-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc;
}

.otp-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
}

.otp-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2b2f8f;
}

.otp-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.otp-input {
    letter-spacing: 10px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    height: 55px;
}

.btn-verify {
    background: #2b2f8f;
    color: #fff;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

.btn-verify:hover {
    background: #1f2370;
    color: #FFF;
}

.resend {
    font-size: 14px;
    margin-top: 15px;
}

.resend a {
    color: #ff8c2b;
    text-decoration: none;
    font-weight: 600;
}

.report-dashboard {
    padding: 40px 0;
    background: #f7f9fc;
}

.info-table td {
    padding: 10px 14px;
    background: #f1f1f1;
    border-bottom: 6px solid #fff;
    font-size: 14px;
}

.report-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    margin-bottom: 20px;
}

.report-card h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.pdf-frame {
    width: 100%;
    height: 420px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.side-box {
    background: var(--primary);
    padding: 25px;
    border-radius: 8px;
    color: #fff;
}

.side-box h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.side-box .form-control {
    height: 45px;
    margin-bottom: 12px;
    border-radius: 6px;
}

.side-box button {
    background: #ff9f1c;
    border: none;
    height: 45px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}

.btn-outline-cta {
    border: 1px solid #ff9f1c;
    color: #ff9f1c;
}

.btn-outline-cta:hover {
    background: #ff9f1c;
    color: #fff;
}