/* ============================================ */
/* COLOR SCHEME                                 */
/* Primary: #374898                            */
/* Accent: #b80213                             */
/* Success/Green: #147030                      */
/* ============================================ */
:root {
    --primary: #374898;
    --primary-dark: #2a3a7a;
    --primary-light: #4a5db8;
    --accent: #b80213;
    --accent-dark: #9a0110;
    --accent-light: #d0031a;
    --success: #147030;
    --success-dark: #0e5a26;
    --success-light: #1a8a3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #accd02;
}

/* ============================================ */
/* TOP BAR                                      */
/* ============================================ */
.top-bar {
    background-color: var(--primary);
    color: #fff;
    padding: 4px 0;
    font-size: 11px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .contact-info i {
    font-size: 14px;
    width: 18px;
}

.top-bar .right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar .right-section .language-select {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}

.top-bar .right-section .language-select option {
    color: #333;
}

.top-bar .right-section .phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar .right-section .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar .right-section .social-icons a {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s;
}

.top-bar .right-section .social-icons a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 5px 18px;
    background: rgba(255, 255, 255, 0.1);
    min-width: 240px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 6px 10px;
    font-size: 13px;
    width: 100%;
    background: transparent;
    color: #fff;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* ============================================ */
/* MAIN NAVBAR                                  */
/* ============================================ */
.main-nav {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-nav .navbar-brand {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    padding: 0;
    letter-spacing: 1px;
}

.main-nav .navbar-brand span {
    color: var(--accent);
}

.main-nav .nav-link {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px !important;
    transition: color 0.3s;
}

.main-nav .nav-link:hover {
    color: var(--primary);
}

.main-nav .dropdown-menu {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-nav .dropdown-item {
    font-size: 13px;
    padding: 8px 25px;
}

.main-nav .dropdown-item:hover {
    background-color: #f0f7ff;
    color: var(--primary);
}

.main-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* ============================================ */
/* PAGE BANNER - COMMON                         */
/* ============================================ */
.page-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: url('images/banner.jpg') no-repeat center center/cover;
    overflow: hidden;
    padding: 50px 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(55, 72, 152, 0.92) 0%,
            rgba(184, 2, 19, 0.80) 50%,
            rgba(55, 72, 152, 0.88) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-banner h1 span {
    color: #ffd700;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-banner .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item.active {
    color: #fff;
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.page-banner .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
}

/* ============================================ */
/* ABOUT BANNER - IMAGE WITH GRADIENT           */
/* ============================================ */
.about-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('images/about-banner.jpg') no-repeat center center/cover;
    overflow: hidden;
    padding: 80px 0;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(55, 72, 152, 0.92) 0%,
            rgba(184, 2, 19, 0.80) 50%,
            rgba(55, 72, 152, 0.88) 100%);
    z-index: 1;
}

.about-banner .slant-line {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    transform: rotate(45deg);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.about-banner .slant-line-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    transform: rotate(45deg);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.03);
}

.about-banner .slant-line-3 {
    position: absolute;
    top: 50%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(45deg);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.about-banner .slant-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 21px);
    pointer-events: none;
}

.about-banner .deco-line {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(-15deg);
}

.about-banner .deco-line-1 {
    width: 200px;
    height: 2px;
    top: 15%;
    right: 10%;
}

.about-banner .deco-line-2 {
    width: 150px;
    height: 2px;
    bottom: 25%;
    left: 8%;
}

.about-banner .deco-line-3 {
    width: 100px;
    height: 2px;
    top: 40%;
    right: 25%;
    transform: rotate(25deg);
}

.about-banner .container {
    position: relative;
    z-index: 3;
}

.about-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.about-banner .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.about-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.about-banner .breadcrumb-item a:hover {
    color: #fff;
}

.about-banner .breadcrumb-item.active {
    color: #fff;
}

.about-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-banner .banner-content {
    max-width: 750px;
}

.about-banner .badge-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-banner .badge-label i {
    color: var(--accent);
    margin-right: 8px;
}

.about-banner h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-banner h1 span {
    color: #ffd700;
    position: relative;
}

.about-banner h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-banner .writeup {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.about-banner .writeup i {
    color: var(--accent);
    margin-right: 8px;
}

.about-banner .banner-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-banner .banner-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 110px;
    transition: transform 0.3s, background 0.3s;
}

.about-banner .banner-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-banner .banner-stats .stat-item .number {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.about-banner .banner-stats .stat-item .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 3px;
}

/* ============================================ */
/* CAROUSEL - MAIN                              */
/* ============================================ */
.carousel-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-full .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-full .carousel-caption {
    bottom: 30%;
    text-align: left;
    left: 10%;
    right: 10%;
}

.carousel-full .carousel-caption h2 {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.carousel-full .carousel-caption p {
    font-size: 18px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    max-width: 600px;
}

.carousel-full .carousel-caption .btn {
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 10px;
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-full .carousel-caption .btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ============================================ */
/* PATHOLOGICAL TESTS SECTION                   */
/* ============================================ */
.tests-section {
    padding: 50px 0;
    background: #f4f7fb;
}

.tests-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================ */
/* CIRCULAR LOGOS - ORGAN WISE                  */
/* ============================================ */
.circular-logos-section {
    padding: 30px 0 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.circular-logos-section .section-label {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.circular-logos-section .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.circular-logos-section .circle-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
}

.circular-logos-section .circle-item:hover {
    transform: translateY(-5px);
}

.circular-logos-section .circle-item .circle-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: #f0f4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 45px;
    color: var(--primary);
}

.circular-logos-section .circle-item .circle-img i {
    font-size: 45px;
    color: var(--primary);
}

.circular-logos-section .circle-item .circle-img:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.25);
    transform: scale(1.05);
}

.circular-logos-section .circle-item .circle-label {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.circular-logos-section .circle-item.active .circle-img {
    border-color: var(--primary-light);
    background: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light), 0 8px 25px rgba(55, 72, 152, 0.3);
}

.circular-logos-section .circle-item.active .circle-img i {
    color: #fff;
}

.circular-logos-section .circle-item.active .circle-label {
    color: var(--primary);
}

.circular-logos-section .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.circular-logos-section .owl-nav button.owl-prev,
.circular-logos-section .owl-nav button.owl-next {
    position: absolute;
    background: var(--primary) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.circular-logos-section .owl-nav button.owl-prev {
    left: -20px;
}

.circular-logos-section .owl-nav button.owl-next {
    right: -20px;
}

.circular-logos-section .owl-nav button.owl-prev:hover,
.circular-logos-section .owl-nav button.owl-next:hover {
    background: var(--primary-dark) !important;
}

/* ============================================ */
/* CIRCULAR LOGOS - CONDITION WISE              */
/* ============================================ */
.circular-logos-condition {
    padding: 30px 0 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.circular-logos-condition .section-label {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.circular-logos-condition .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.circular-logos-condition .circle-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 5px;
}

.circular-logos-condition .circle-item:hover {
    transform: translateY(-5px);
}

.circular-logos-condition .circle-item .circle-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 45px;
    color: var(--accent);
}

.circular-logos-condition .circle-item .circle-img i {
    font-size: 45px;
    color: var(--accent);
}

.circular-logos-condition .circle-item .circle-img:hover {
    border-color: var(--accent-dark);
    box-shadow: 0 8px 25px rgba(184, 2, 19, 0.25);
    transform: scale(1.05);
}

.circular-logos-condition .circle-item .circle-label {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.circular-logos-condition .circle-item.active .circle-img {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent), 0 8px 25px rgba(184, 2, 19, 0.3);
}

.circular-logos-condition .circle-item.active .circle-img i {
    color: #fff;
}

.circular-logos-condition .circle-item.active .circle-label {
    color: var(--accent);
}

.circular-logos-condition .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

.circular-logos-condition .owl-nav button.owl-prev,
.circular-logos-condition .owl-nav button.owl-next {
    position: absolute;
    background: var(--accent) !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.circular-logos-condition .owl-nav button.owl-prev {
    left: -20px;
}

.circular-logos-condition .owl-nav button.owl-next {
    right: -20px;
}

.circular-logos-condition .owl-nav button.owl-prev:hover,
.circular-logos-condition .owl-nav button.owl-next:hover {
    background: var(--accent-dark) !important;
}

/* ============================================ */
/* TEST CARD                                    */
/* ============================================ */
.test-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    border-left: 5px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.test-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.test-card .report-in {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-card .report-in i {
    margin-right: 5px;
}

.test-card .description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.test-card .available {
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 12px;
}

.test-card .available i {
    margin-right: 6px;
}

.test-card .contact-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.test-card .contact-btn:hover {
    background: var(--primary-dark);
}

.test-item {
    display: block;
}

.test-item.hidden {
    display: none;
}

/* ============================================ */
/* PACKAGE CARD                                 */
/* ============================================ */
.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    border-left: 5px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.package-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.package-card .package-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.package-card .params {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.package-card .params a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.package-card .params a:hover {
    text-decoration: underline;
}

.package-card .contact-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.package-card .contact-btn:hover {
    background: var(--accent-dark);
}

/* ============================================ */
/* SECTION DIVIDER                              */
/* ============================================ */
.section-divider {
    border-top: 2px dashed #d0d8e0;
    margin: 40px 0;
}

.popular-packages-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 40px 0 30px;
}

/* ============================================ */
/* CORPORATE LAB TOUR                           */
/* ============================================ */
.corporate-tour-section {
    padding: 50px 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.corporate-tour-section .tour-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 35px;
}

.corporate-tour-section .tour-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 25px 35px;
    margin-bottom: 20px;
    background: #f8faff;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.corporate-tour-section .tour-row:last-child {
    margin-bottom: 0;
}

.corporate-tour-section .tour-row:hover {
    background: #f0f7ff;
    transform: translateX(5px);
}

.corporate-tour-section .tour-row .tour-image {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-tour-section .tour-row .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-tour-section .tour-row .tour-image i {
    font-size: 55px;
    color: var(--primary);
}

.corporate-tour-section .tour-row .tour-content {
    flex: 1;
}

.corporate-tour-section .tour-row .tour-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0;
}

.corporate-tour-section .tour-row .tour-content strong {
    color: var(--primary);
    font-size: 17px;
}

/* ============================================ */
/* HEALTH BLOGS                                 */
/* ============================================ */
.health-blogs-section {
    padding: 30px 0 20px;
}

.health-blogs-section .blogs-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

/* ============================================ */
/* ACCREDITATION                                 */
/* ============================================ */
.accreditation-section {
    padding: 50px 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.accreditation-section .accreditation-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 25px;
}

.accreditation-section .accreditation-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 35px;
    padding: 0 20px;
}

.accreditation-section .accreditation-codes {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.accreditation-section .accreditation-codes .code-box {
    background: #f8faff;
    border: 3px solid var(--primary);
    border-radius: 12px;
    padding: 25px 60px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    transition: all 0.3s;
}

.accreditation-section .accreditation-codes .code-box:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

/* ============================================ */
/* UNITING FORCES FOR GROWTH                    */
/* ============================================ */
.uniting-forces-section {
    padding: 50px 40px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    text-align: center;
}

.uniting-forces-section .uniting-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.uniting-forces-section .uniting-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 0 20px;
}

.uniting-forces-section .partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.uniting-forces-section .partner-logos .partner-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    padding: 15px 30px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s;
    background: #f8faff;
}

.uniting-forces-section .partner-logos .partner-item:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.2);
}

/* ============================================ */
/* JOURNEY SECTION - 2 COLUMN                   */
/* ============================================ */
.journey-section {
    padding: 60px 0;
    background: #fff;
}

.journey-section .journey-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.journey-section .journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.journey-section .content-wrapper {
    padding-left: 30px;
}

.journey-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
}

.journey-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 12px;
    border-radius: 2px;
}

.journey-section .content-text {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 20px;
}

.journey-section .content-text strong {
    color: var(--primary);
}

.journey-section .content-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

.journey-section .read-more-btn {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}

.journey-section .read-more-btn:hover {
    color: var(--accent-dark);
    text-decoration: none;
}

.journey-section .read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.journey-section .read-more-btn:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* MISSION, VISION, FUTURE ENVISION             */
/* ============================================ */
.mvf-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.mvf-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.mvf-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.mvf-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.mvf-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.mvf-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(55, 72, 152, 0.05) 50%);
    border-radius: 0 12px 0 100px;
}

.mvf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(55, 72, 152, 0.12);
}

.mvf-card .mvf-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.mvf-card:hover .mvf-icon {
    background: var(--accent);
}

.mvf-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mvf-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.mvf-card .mvf-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.05);
    line-height: 1;
}

.mvf-card.mission-card {
    border-bottom-color: var(--accent);
}

.mvf-card.mission-card .mvf-icon {
    background: var(--accent);
}

.mvf-card.mission-card:hover .mvf-icon {
    background: var(--primary);
}

.mvf-card.mission-card .mvf-number {
    color: rgba(184, 2, 19, 0.05);
}

.mvf-card.vision-card {
    border-bottom-color: var(--primary);
}

.mvf-card.vision-card .mvf-icon {
    background: var(--primary);
}

.mvf-card.vision-card:hover .mvf-icon {
    background: var(--accent);
}

.mvf-card.future-card {
    border-bottom-color: var(--success);
}

.mvf-card.future-card .mvf-icon {
    background: var(--success);
}

.mvf-card.future-card:hover .mvf-icon {
    background: var(--accent);
}

.mvf-card.future-card .mvf-number {
    color: rgba(20, 112, 48, 0.05);
}

/* ============================================ */
/* TEAM SECTION                                 */
/* ============================================ */
.team-section {
    padding: 60px 0;
    background: #fff;
}

.team-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.team-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.team-card {
    background: #f8faff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    text-align: center;
    padding: 30px 20px;
    border-left: 4px solid var(--primary);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(55, 72, 152, 0.12);
}

.team-card .team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    border: 4px solid var(--primary-light);
    overflow: hidden;
}

.team-card .team-img i {
    font-size: 50px;
}

.team-card .team-body h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.team-card .team-body .designation {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 3px;
}

.team-card .team-body .qualification {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.team-card .team-body .reg-no {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

/* ============================================ */
/* IMMUNO BIOCHEMISTRY SECTION                  */
/* ============================================ */
.immuno-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.immuno-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.immuno-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

.immuno-section .content-text {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 15px;
}

.immuno-section .content-text strong {
    color: var(--primary);
}

.immuno-section .content-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

.immuno-section .content-text .marker-tag {
    display: inline-block;
    background: #e8f0fe;
    color: var(--primary);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin: 2px 4px;
    border: 1px solid #d0dce8;
}

.immuno-section .explore-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
    border: none;
}

.immuno-section .explore-btn:hover {
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.immuno-section .explore-btn i {
    margin-right: 8px;
}

.immuno-carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.immuno-carousel .carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.immuno-carousel .carousel-item .carousel-caption {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: left;
}

.immuno-carousel .carousel-item .carousel-caption h5 {
    font-size: 24px;
    font-weight: 700;
}

.immuno-carousel .carousel-item .carousel-caption p {
    font-size: 14px;
    opacity: 0.9;
}

.immuno-carousel .carousel-control-prev,
.immuno-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 15px;
}

.immuno-carousel .carousel-control-prev:hover,
.immuno-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.immuno-carousel .carousel-indicators {
    bottom: 10px;
}

.immuno-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* ============================================ */
/* MARKERS SECTION                              */
/* ============================================ */
.markers-section {
    padding: 40px 0;
    background: #fff;
}

.markers-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
}

.markers-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.markers-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.marker-card {
    background: #f8faff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.marker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.1);
}

.marker-card .marker-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
}

.marker-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.marker-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.marker-card .marker-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.marker-card .marker-items span {
    background: #e8f0fe;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================ */
/* QUALITY ASSESSMENT SECTION                   */
/* ============================================ */
.quality-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.quality-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.quality-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.quality-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.quality-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(55, 72, 152, 0.04) 50%);
    border-radius: 0 12px 0 150px;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(55, 72, 152, 0.12);
}

.quality-card .quality-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.quality-card:hover .quality-icon {
    background: var(--accent);
}

.quality-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.quality-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.quality-card .learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid var(--accent);
    background: transparent;
}

.quality-card .learn-more-btn:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

.quality-card .learn-more-btn i {
    transition: transform 0.3s;
}

.quality-card .learn-more-btn:hover i {
    transform: translateX(5px);
}

.quality-card .quality-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.04);
    line-height: 1;
}

.quality-card.accent-card {
    border-left-color: var(--accent);
}

.quality-card.accent-card .quality-icon {
    background: var(--accent);
}

.quality-card.accent-card:hover .quality-icon {
    background: var(--primary);
}

.quality-card.accent-card .quality-number {
    color: rgba(184, 2, 19, 0.04);
}

.quality-card.accent-card .learn-more-btn {
    border-color: var(--accent);
    color: var(--accent);
}

.quality-card.accent-card .learn-more-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================================ */
/* QUALITY POLICY SECTION                       */
/* ============================================ */
.quality-policy-section {
    padding: 60px 0;
    background: #fff;
}

.quality-policy-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.quality-policy-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.quality-policy-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.policy-intro {
    background: #f8faff;
    border-radius: 12px;
    padding: 35px 40px;
    border-left: 5px solid var(--primary);
    margin-bottom: 40px;
}

.policy-intro p {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 0;
}

.policy-intro p strong {
    color: var(--primary);
}

.policy-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(55, 72, 152, 0.04) 50%);
    border-radius: 0 12px 0 80px;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(55, 72, 152, 0.1);
}

.policy-card .policy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.policy-card:hover .policy-icon {
    background: var(--accent);
}

.policy-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.policy-card .policy-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.04);
    line-height: 1;
}

.policy-card.accent-card {
    border-bottom-color: var(--accent);
}

.policy-card.accent-card .policy-icon {
    background: var(--accent);
}

.policy-card.accent-card:hover .policy-icon {
    background: var(--primary);
}

.policy-card.accent-card .policy-number {
    color: rgba(184, 2, 19, 0.04);
}

.policy-card.success-card {
    border-bottom-color: var(--success);
}

.policy-card.success-card .policy-icon {
    background: var(--success);
}

.policy-card.success-card:hover .policy-icon {
    background: var(--accent);
}

.policy-card.success-card .policy-number {
    color: rgba(20, 112, 48, 0.04);
}

.policy-card.gold-card {
    border-bottom-color: #ffd700;
}

.policy-card.gold-card .policy-icon {
    background: #ffd700;
    color: var(--primary);
}

.policy-card.gold-card:hover .policy-icon {
    background: var(--accent);
    color: #fff;
}

.policy-card.gold-card .policy-number {
    color: rgba(255, 215, 0, 0.08);
}

/* ============================================ */
/* NABL SECTION                                 */
/* ============================================ */
.nabl-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.nabl-section .nabl-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.nabl-section .nabl-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(55, 72, 152, 0.03);
}

.nabl-section .nabl-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(184, 2, 19, 0.03);
}

.nabl-section .nabl-content {
    position: relative;
    z-index: 1;
}

.nabl-section .nabl-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    color: #fff;
    padding: 10px 30px 10px 25px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.nabl-section .nabl-badge i {
    font-size: 28px;
    color: #ffd700;
}

.nabl-section .nabl-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.nabl-section .nabl-title span {
    color: var(--accent);
}

.nabl-section .nabl-text {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    max-width: 800px;
    margin-bottom: 20px;
}

.nabl-section .nabl-text strong {
    color: var(--primary);
}

.nabl-section .nabl-text .highlight {
    color: var(--accent);
    font-weight: 600;
}

.nabl-section .nabl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.nabl-section .nabl-btn:hover {
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 2, 19, 0.25);
}

.nabl-section .nabl-btn i {
    font-size: 18px;
}

.nabl-section .nabl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nabl-section .nabl-icon img {
    max-width: 200px;
    border-radius: 12px;
}

/* ============================================ */
/* CONTACT INFO CARDS                           */
/* ============================================ */
.contact-info-cards {
    padding: 40px 0 60px;
    background: #f4f7fb;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(55, 72, 152, 0.12);
}

.contact-info-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    transition: background 0.3s;
}

.contact-info-card:hover .icon-circle {
    background: var(--accent);
}

.contact-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-card p a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-card p a:hover {
    color: var(--accent);
}

/* ============================================ */
/* CONTACT FORM & MAP                           */
/* ============================================ */
.contact-form-section {
    padding: 60px 0;
    background: #fff;
}

.contact-form-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-form-section .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: #f8faff;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(55, 72, 152, 0.1);
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.contact-form .submit-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contact-form .submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form .submit-btn i {
    margin-right: 8px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* ============================================ */
/* WORKING HOURS SECTION                        */
/* ============================================ */
.working-hours-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.working-hours-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
}

.working-hours-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.working-hours-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hours-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary);
}

.hours-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.08);
}

.hours-card .day {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

.hours-card .time {
    color: #555;
    font-size: 15px;
}

.hours-card .time i {
    color: var(--accent);
    margin-right: 8px;
}

.hours-card .badge-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-open {
    background: #d4edda;
    color: #155724;
}

.badge-closed {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================ */
/* LOCATION SECTION                             */
/* ============================================ */
.contact-location-section {
    padding: 60px 0;
    background: #fff;
}

.contact-location-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.contact-location-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.contact-location-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.location-card {
    background: #f8faff;
    border-radius: 12px;
    padding: 30px 25px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.08);
}

.location-card .loc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 15px;
}

.location-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 5px;
}

.location-card p i {
    color: var(--accent);
    width: 20px;
    margin-right: 5px;
}

.location-card .website-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.location-card .website-link:hover {
    color: var(--accent);
    text-decoration: none;
}

/* ============================================ */
/* EMERGENCY CONTACT SECTION                    */
/* ============================================ */
.emergency-section {
    padding: 40px 0;
    background: var(--accent);
    color: #fff;
}

.emergency-section .emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.emergency-section .emergency-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.emergency-section .emergency-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.emergency-section .emergency-content .emergency-number {
    font-size: 32px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.emergency-section .emergency-content .emergency-number:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.emergency-section .emergency-content .emergency-number i {
    margin-right: 10px;
}

/* ============================================ */
/* SOCIAL MEDIA SECTION                         */
/* ============================================ */
.social-media-section {
    padding: 40px 0;
    background: #fff;
}

.social-media-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.social-media-section .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f0f4f9;
    color: var(--primary);
    font-size: 30px;
    margin: 0 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-media-section .social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
    text-decoration: none;
}

.social-media-section .social-icon.facebook:hover {
    background: #1877f2;
}

.social-media-section .social-icon.twitter:hover {
    background: #1da1f2;
}

.social-media-section .social-icon.instagram:hover {
    background: #e4405f;
}

.social-media-section .social-icon.linkedin:hover {
    background: #0a66c2;
}

.social-media-section .social-icon.youtube:hover {
    background: #ff0000;
}

.social-media-section .social-icon.whatsapp:hover {
    background: #25d366;
}

/* ============================================ */
/* OWL CAROUSEL CUSTOM                          */
/* ============================================ */
.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* ============================================ */
/* FOOTER STYLES                                */
/* ============================================ */
.footer {
    background: var(--primary);
    color: #c8d0d8;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 30px;
}

.footer a {
    color: #c8d0d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer p,
.footer li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #b0b8c8;
}

.footer .address-block p {
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.footer .address-block strong {
    color: #e0e8f0;
}

.footer .contact-info p {
    margin-bottom: 0.4rem;
}

.footer .contact-info i {
    width: 28px;
    color: var(--accent);
    font-size: 1rem;
}

.footer .list-unstyled li {
    margin-bottom: 8px;
}

.footer .list-unstyled li a {
    color: #b0b8c8;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer .list-unstyled li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer .medical-encyclopedia-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.footer .medical-encyclopedia-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer .medical-encyclopedia-item strong {
    color: #e0e8f0;
    font-size: 0.85rem;
}

.footer .medical-encyclopedia-item p {
    margin-bottom: 0;
    color: #b0b8c8;
}

.footer .qr-scan {
    background: rgba(255, 255, 255, 0.06);
    padding: 15px 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.footer .qr-scan:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.footer .qr-scan i {
    color: var(--accent);
    font-size: 2.5rem;
}

.footer .qr-scan span {
    color: #b0b8c8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer .read-more a {
    color: var(--accent);
    font-weight: 600;
}

.footer .read-more a:hover {
    color: #ff3b4a;
}

.footer .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.footer .logo-text span {
    color: var(--accent);
}

.footer .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .footer-divider .copyright {
    color: #8a92a2;
    font-size: 0.85rem;
}

.footer .footer-divider .footer-social a {
    color: #8a92a2;
    margin-left: 18px;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer .footer-divider .footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer .footer-divider .footer-social a:first-child {
    margin-left: 0;
}

.footer .border-right-custom {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================ */
/* RESPONSIVE STYLES                            */
/* ============================================ */
@media (min-width: 1600px) {
    .wide-container {
        max-width: 1600px;
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .top-bar .contact-info {
        gap: 12px;
        justify-content: center;
        margin-bottom: 8px;
    }

    .top-bar .right-section {
        justify-content: center;
        gap: 12px;
    }

    .search-box {
        min-width: 180px;
        width: 100%;
    }

    .main-nav .navbar-nav {
        margin-top: 15px;
    }

    .main-nav .nav-link {
        padding: 8px 0 !important;
    }

    .main-nav .navbar-brand {
        font-size: 26px;
    }

    .carousel-full .carousel-item {
        height: 350px;
    }

    .carousel-full .carousel-caption h2 {
        font-size: 28px;
    }

    .carousel-full .carousel-caption p {
        font-size: 16px;
    }

    .circular-logos-section .circle-item .circle-img,
    .circular-logos-condition .circle-item .circle-img {
        width: 85px;
        height: 85px;
        font-size: 35px;
    }

    .circular-logos-section .circle-item .circle-img i,
    .circular-logos-condition .circle-item .circle-img i {
        font-size: 35px;
    }

    .circular-logos-section .owl-nav button.owl-prev,
    .circular-logos-section .owl-nav button.owl-next,
    .circular-logos-condition .owl-nav button.owl-prev,
    .circular-logos-condition .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 14px !important;
    }

    .circular-logos-section .owl-nav button.owl-prev {
        left: -10px;
    }

    .circular-logos-section .owl-nav button.owl-next {
        right: -10px;
    }

    .circular-logos-condition .owl-nav button.owl-prev {
        left: -10px;
    }

    .circular-logos-condition .owl-nav button.owl-next {
        right: -10px;
    }

    .corporate-tour-section .tour-row {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
    }

    .corporate-tour-section .tour-row .tour-image {
        width: 100px;
        height: 100px;
    }

    .corporate-tour-section .tour-row .tour-image i {
        font-size: 40px;
    }

    .accreditation-section .accreditation-codes {
        gap: 40px;
    }

    .accreditation-section .accreditation-codes .code-box {
        padding: 18px 40px;
        font-size: 22px;
    }

    .corporate-tour-section {
        padding: 30px 20px;
    }

    .accreditation-section {
        padding: 30px 20px;
    }

    .uniting-forces-section {
        padding: 30px 20px;
    }

    .uniting-forces-section .partner-logos {
        gap: 30px;
    }

    .uniting-forces-section .partner-logos .partner-item {
        font-size: 20px;
        padding: 12px 25px;
    }

    .about-banner h1 {
        font-size: 36px;
    }

    .about-banner .writeup {
        font-size: 16px;
    }

    .about-banner .banner-stats {
        gap: 15px;
    }

    .about-banner .banner-stats .stat-item {
        padding: 12px 20px;
        min-width: 100px;
    }

    .about-banner .banner-stats .stat-item .number {
        font-size: 26px;
    }

    .journey-section .content-wrapper {
        padding-left: 0;
        padding-top: 30px;
    }

    .journey-section .journey-image img {
        min-height: 250px;
    }

    .footer .border-right-custom {
        border-right: none;
    }

    .footer .col-md-3,
    .footer .col-md-4,
    .footer .col-md-2 {
        margin-bottom: 35px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer h5 {
        text-align: center;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .nabl-section .nabl-wrapper {
        padding: 30px;
    }

    .nabl-section .nabl-badge {
        font-size: 16px;
        padding: 8px 20px;
    }

    .nabl-section .nabl-title {
        font-size: 24px;
    }

    .nabl-section .nabl-text {
        font-size: 15px;
    }

    .quality-section .section-title {
        font-size: 28px;
    }

    .quality-card {
        margin-bottom: 25px;
    }

    .immuno-section .section-title {
        font-size: 28px;
    }

    .immuno-section .content-text {
        font-size: 15px;
    }

    .immuno-carousel .carousel-item {
        height: 300px;
    }

    .contact-form {
        padding: 25px;
    }

    .map-container {
        min-height: 300px;
        margin-top: 30px;
    }

    .map-container iframe {
        min-height: 350px;
    }

    .emergency-section .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .emergency-section .emergency-content .emergency-number {
        font-size: 26px;
        padding: 12px 25px;
    }

    .hours-card {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        text-align: center;
    }

    .quality-features-section .section-title {
        font-size: 28px;
    }

    .quality-detail-section .section-title {
        font-size: 28px;
    }

    .quality-policy-section .section-title {
        font-size: 28px;
    }

    .feature-card {
        margin-bottom: 25px;
    }

    .quality-detail-card {
        margin-bottom: 25px;
    }

    .policy-card {
        margin-bottom: 25px;
    }

    .policy-intro {
        padding: 25px 30px;
    }
}

@media (max-width: 767px) {
    .footer .border-right-custom {
        border-right: none;
    }

    .footer .col-md-3,
    .footer .col-md-4,
    .footer .col-md-2 {
        margin-bottom: 35px;
    }

    .footer .footer-divider {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer .footer-divider .footer-social a {
        margin: 0 10px;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer h5 {
        text-align: center;
    }

    .footer .qr-scan {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .uniting-forces-section .partner-logos {
        gap: 20px;
    }

    .uniting-forces-section .partner-logos .partner-item {
        font-size: 18px;
        padding: 12px 20px;
        width: 45%;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 11px;
    }

    .top-bar .contact-info {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .top-bar .right-section {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .search-box {
        min-width: unset;
        width: 100%;
    }

    .main-nav .navbar-brand {
        font-size: 22px;
    }

    .carousel-full .carousel-item {
        height: 250px;
    }

    .carousel-full .carousel-caption {
        bottom: 15%;
    }

    .carousel-full .carousel-caption h2 {
        font-size: 20px;
    }

    .carousel-full .carousel-caption p {
        font-size: 13px;
        display: none;
    }

    .tests-section .section-title {
        font-size: 26px;
    }

    .wide-container {
        padding: 0 15px;
    }

    .circular-logos-section .circle-item .circle-img,
    .circular-logos-condition .circle-item .circle-img {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .circular-logos-section .circle-item .circle-img i,
    .circular-logos-condition .circle-item .circle-img i {
        font-size: 28px;
    }

    .circular-logos-section .circle-item .circle-label,
    .circular-logos-condition .circle-item .circle-label {
        font-size: 11px;
    }

    .circular-logos-section .owl-nav button.owl-prev,
    .circular-logos-section .owl-nav button.owl-next,
    .circular-logos-condition .owl-nav button.owl-prev,
    .circular-logos-condition .owl-nav button.owl-next {
        width: 25px;
        height: 25px;
        font-size: 12px !important;
    }

    .circular-logos-section .owl-nav button.owl-prev {
        left: -5px;
    }

    .circular-logos-section .owl-nav button.owl-next {
        right: -5px;
    }

    .circular-logos-condition .owl-nav button.owl-prev {
        left: -5px;
    }

    .circular-logos-condition .owl-nav button.owl-next {
        right: -5px;
    }

    .corporate-tour-section .tour-title {
        font-size: 24px;
    }

    .corporate-tour-section .tour-row .tour-content p {
        font-size: 13px;
    }

    .corporate-tour-section .tour-row .tour-image {
        width: 80px;
        height: 80px;
    }

    .corporate-tour-section .tour-row .tour-image i {
        font-size: 32px;
    }

    .health-blogs-section .blogs-title {
        font-size: 22px;
    }

    .accreditation-section .accreditation-title {
        font-size: 24px;
    }

    .accreditation-section .accreditation-text {
        font-size: 13px;
        padding: 0 10px;
    }

    .accreditation-section .accreditation-codes {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .accreditation-section .accreditation-codes .code-box {
        padding: 12px 30px;
        font-size: 18px;
        width: 80%;
        text-align: center;
    }

    .corporate-tour-section {
        padding: 20px 15px;
    }

    .accreditation-section {
        padding: 20px 15px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer .footer-divider {
        flex-direction: column;
        text-align: center;
    }

    .footer .footer-divider .footer-social a {
        margin: 0 10px;
    }

    .uniting-forces-section {
        padding: 20px 15px;
    }

    .uniting-forces-section .uniting-title {
        font-size: 24px;
    }

    .uniting-forces-section .uniting-text {
        font-size: 13px;
        padding: 0 10px;
    }

    .uniting-forces-section .partner-logos .partner-item {
        font-size: 16px;
        padding: 10px 18px;
        width: 100%;
        text-align: center;
    }

    .about-banner {
        padding: 50px 0;
        min-height: 400px;
    }

    .about-banner h1 {
        font-size: 28px;
    }

    .about-banner .writeup {
        font-size: 14px;
        padding-left: 12px;
    }

    .about-banner .badge-label {
        font-size: 10px;
        padding: 4px 15px;
    }

    .about-banner .banner-stats {
        gap: 10px;
        justify-content: center;
    }

    .about-banner .banner-stats .stat-item {
        padding: 10px 15px;
        min-width: 70px;
        flex: 1;
    }

    .about-banner .banner-stats .stat-item .number {
        font-size: 20px;
    }

    .about-banner .banner-stats .stat-item .label {
        font-size: 10px;
    }

    .about-banner .slant-line,
    .about-banner .slant-line-2,
    .about-banner .slant-line-3 {
        display: none;
    }

    .journey-section .section-title {
        font-size: 26px;
    }

    .journey-section .content-text {
        font-size: 14px;
    }

    .journey-section .journey-image img {
        min-height: 200px;
    }

    .mvf-section .section-title {
        font-size: 26px;
    }

    .mvf-card {
        padding: 25px 20px;
    }

    .mvf-card h3 {
        font-size: 20px;
    }

    .team-section .section-title {
        font-size: 26px;
    }

    .page-banner {
        min-height: 200px;
        padding: 30px 0;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .nabl-section {
        padding: 30px 0;
    }

    .nabl-section .nabl-wrapper {
        padding: 20px;
    }

    .nabl-section .nabl-badge {
        font-size: 14px;
        padding: 6px 15px;
        flex-wrap: wrap;
    }

    .nabl-section .nabl-badge i {
        font-size: 20px;
    }

    .nabl-section .nabl-title {
        font-size: 20px;
    }

    .nabl-section .nabl-text {
        font-size: 14px;
    }

    .nabl-section .nabl-btn {
        width: 100%;
        justify-content: center;
    }

    .quality-section {
        padding: 30px 0;
    }

    .quality-section .section-title {
        font-size: 24px;
    }

    .quality-card {
        padding: 25px 20px;
    }

    .quality-card h3 {
        font-size: 18px;
    }

    .immuno-section {
        padding: 30px 0;
    }

    .immuno-section .section-title {
        font-size: 24px;
    }

    .immuno-section .content-text {
        font-size: 14px;
    }

    .immuno-carousel .carousel-item {
        height: 220px;
    }

    .immuno-carousel .carousel-item .carousel-caption h5 {
        font-size: 18px;
    }

    .immuno-carousel .carousel-item .carousel-caption p {
        font-size: 12px;
    }

    .immuno-section .explore-btn {
        width: 100%;
        text-align: center;
    }

    .markers-section .section-title {
        font-size: 24px;
    }

    .quality-features-section {
        padding: 30px 0;
    }

    .quality-features-section .section-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .quality-detail-section {
        padding: 30px 0;
    }

    .quality-detail-section .section-title {
        font-size: 24px;
    }

    .quality-detail-card {
        padding: 25px 20px;
    }

    .quality-detail-card h3 {
        font-size: 18px;
    }

    .quality-detail-card p {
        font-size: 14px;
    }

    .quality-policy-section {
        padding: 30px 0;
    }

    .quality-policy-section .section-title {
        font-size: 24px;
    }

    .policy-intro {
        padding: 20px;
    }

    .policy-intro p {
        font-size: 14px;
    }

    .policy-card {
        padding: 25px 20px;
    }

    .policy-card h4 {
        font-size: 16px;
    }

    .policy-card p {
        font-size: 13px;
    }

    .contact-info-cards {
        padding: 30px 0;
    }

    .contact-form-section {
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form .submit-btn {
        width: 100%;
        text-align: center;
    }

    .social-media-section .social-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin: 5px;
    }

    .page-banner .subtitle {
        font-size: 14px;
    }

    .page-banner {
        min-height: 250px;
        padding: 40px 0;
    }
}
/* ============================================ */
/* QUALITY FEATURES SECTION                     */
/* ============================================ */
.quality-features-section {
    padding: 60px 0;
    background: #fff;
}

.quality-features-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.quality-features-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.quality-features-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Feature Cards */
.feature-card {
    background: #f8faff;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(55, 72, 152, 0.04) 50%);
    border-radius: 0 12px 0 100px;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(55, 72, 152, 0.12);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-card .feature-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.04);
    line-height: 1;
    pointer-events: none;
}

/* Accent Variant */
.feature-card.accent-card {
    border-bottom-color: var(--accent);
}

.feature-card.accent-card .feature-icon {
    background: var(--accent);
}

.feature-card.accent-card:hover .feature-icon {
    background: var(--primary);
}

.feature-card.accent-card .feature-number {
    color: rgba(184, 2, 19, 0.04);
}

/* Success Variant */
.feature-card.success-card {
    border-bottom-color: var(--success);
}

.feature-card.success-card .feature-icon {
    background: var(--success);
}

.feature-card.success-card:hover .feature-icon {
    background: var(--accent);
}

.feature-card.success-card .feature-number {
    color: rgba(20, 112, 48, 0.04);
}

/* ============================================ */
/* QUALITY DETAIL SECTION                       */
/* ============================================ */
.quality-detail-section {
    padding: 60px 0;
    background: #f4f7fb;
}

.quality-detail-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.quality-detail-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.quality-detail-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.quality-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-left: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.quality-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(55, 72, 152, 0.1);
}

.quality-detail-card .detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.quality-detail-card:hover .detail-icon {
    background: var(--accent);
}

.quality-detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.quality-detail-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

.quality-detail-card .detail-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 50px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.04);
    line-height: 1;
    pointer-events: none;
}

/* Accent variant for detail cards */
.quality-detail-card.accent-card {
    border-left-color: var(--accent);
}

.quality-detail-card.accent-card .detail-icon {
    background: var(--accent);
}

.quality-detail-card.accent-card:hover .detail-icon {
    background: var(--primary);
}

.quality-detail-card.accent-card .detail-number {
    color: rgba(184, 2, 19, 0.04);
}

/* Success variant for detail cards */
.quality-detail-card.success-card {
    border-left-color: var(--success);
}

.quality-detail-card.success-card .detail-icon {
    background: var(--success);
}

.quality-detail-card.success-card:hover .detail-icon {
    background: var(--accent);
}

.quality-detail-card.success-card .detail-number {
    color: rgba(20, 112, 48, 0.04);
}

/* ============================================ */
/* QUALITY POLICY SECTION                       */
/* ============================================ */
.quality-policy-section {
    padding: 60px 0;
    background: #fff;
}

.quality-policy-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.quality-policy-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.quality-policy-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.policy-intro {
    background: #f8faff;
    border-radius: 12px;
    padding: 35px 40px;
    border-left: 5px solid var(--primary);
    margin-bottom: 40px;
}

.policy-intro p {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 0;
}

.policy-intro p strong {
    color: var(--primary);
}

.policy-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(55, 72, 152, 0.04) 50%);
    border-radius: 0 12px 0 80px;
    pointer-events: none;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(55, 72, 152, 0.1);
}

.policy-card .policy-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.policy-card:hover .policy-icon {
    background: var(--accent);
}

.policy-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.policy-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.policy-card .policy-number {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(55, 72, 152, 0.04);
    line-height: 1;
    pointer-events: none;
}

/* Accent variant for policy cards */
.policy-card.accent-card {
    border-bottom-color: var(--accent);
}

.policy-card.accent-card .policy-icon {
    background: var(--accent);
}

.policy-card.accent-card:hover .policy-icon {
    background: var(--primary);
}

.policy-card.accent-card .policy-number {
    color: rgba(184, 2, 19, 0.04);
}

/* Success variant for policy cards */
.policy-card.success-card {
    border-bottom-color: var(--success);
}

.policy-card.success-card .policy-icon {
    background: var(--success);
}

.policy-card.success-card:hover .policy-icon {
    background: var(--accent);
}

.policy-card.success-card .policy-number {
    color: rgba(20, 112, 48, 0.04);
}

/* Gold variant for policy cards */
.policy-card.gold-card {
    border-bottom-color: #ffd700;
}

.policy-card.gold-card .policy-icon {
    background: #ffd700;
    color: var(--primary);
}

.policy-card.gold-card:hover .policy-icon {
    background: var(--accent);
    color: #fff;
}

.policy-card.gold-card .policy-number {
    color: rgba(255, 215, 0, 0.08);
}


       /* ============================================ */
        /* FAQ PAGE SPECIFIC STYLES                    */
        /* ============================================ */
        .faq-section {
            padding: 60px 0;
            background: #fff;
        }

        .faq-section .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 15px;
            position: relative;
        }

        .faq-section .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 12px auto 0;
            border-radius: 2px;
        }

        .faq-section .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* FAQ Accordion */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: #f8faff;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(55, 72, 152, 0.08);
        }

        .faq-item.active {
            border-left-color: var(--accent);
            box-shadow: 0 4px 25px rgba(184, 2, 19, 0.08);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            user-select: none;
        }

        .faq-question:hover {
            background: rgba(55, 72, 152, 0.04);
        }

        .faq-question h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0;
            flex: 1;
            padding-right: 15px;
        }

        .faq-question .faq-toggle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question .faq-toggle {
            background: var(--accent);
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 25px 20px;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-answer p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .faq-answer p strong {
            color: var(--primary);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* FAQ Definition Card */
        .faq-definition {
            background: #f8faff;
            border-radius: 12px;
            padding: 30px 35px;
            border-left: 4px solid var(--accent);
            margin-top: 30px;
        }

        .faq-definition h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .faq-definition h5 i {
            color: var(--accent);
            margin-right: 10px;
        }

        .faq-definition p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Still Have Questions Section */
        .still-questions-section {
            padding: 60px 0;
            background: #f4f7fb;
            text-align: center;
        }

        .still-questions-section .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .still-questions-section .section-subtitle {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 25px;
            line-height: 1.8;
        }

        .still-questions-section .get-in-touch-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent);
            color: #fff;
            padding: 14px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
        }

        .still-questions-section .get-in-touch-btn:hover {
            background: var(--accent-dark);
            color: #fff;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(184, 2, 19, 0.25);
        }

        .still-questions-section .get-in-touch-btn i {
            font-size: 18px;
        }

        @media (max-width: 576px) {
            .faq-question {
                padding: 15px 18px;
            }

            .faq-question h4 {
                font-size: 14px;
            }

            .faq-answer {
                padding: 0 18px 15px;
            }

            .faq-answer p {
                font-size: 14px;
            }

            .faq-definition {
                padding: 20px 22px;
            }

            .faq-definition h5 {
                font-size: 16px;
            }

            .faq-definition p {
                font-size: 14px;
            }

            .faq-section .section-title {
                font-size: 28px;
            }

            .still-questions-section .section-title {
                font-size: 26px;
            }

            .still-questions-section .get-in-touch-btn {
                width: 100%;
                justify-content: center;
            }

            .faq-question .faq-toggle {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
        }

        @media (max-width: 991px) {
            .faq-item {
                margin-bottom: 12px;
            }
        }


        /* ============================================ */
/* OUR SERVICES SECTION - MODERN DESIGN         */
/* ============================================ */
.cservices-section {
    padding: 70px 60px 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cservices-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(55, 72, 152, 0.03);
    pointer-events: none;
}

.cservices-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(184, 2, 19, 0.03);
    pointer-events: none;
}

.cservices-section .tour-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cservices-section .tour-title span {
    color: var(--accent);
}

.cservices-section .tour-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 650px;
    margin: 0 auto 45px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cservices-section .tour-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================ */
/* SERVICE ROW - MODERN CARD STYLE             */
/* ============================================ */
.cservices-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 35px 40px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(55, 72, 152, 0.05);
}

.cservices-row:last-child {
    margin-bottom: 0;
}

.cservices-row:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(55, 72, 152, 0.12);
    border-color: rgba(55, 72, 152, 0.1);
}

/* ============================================ */
/* IMAGE CONTAINER - FIXED WITH PROPER DISPLAY */
/* ============================================ */
.cservices-row .tour-image,
.cservices-row .cservices-image {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #e8f0fe;
}

.cservices-row:hover .tour-image,
.cservices-row:hover .cservices-image {
    box-shadow: 0 12px 45px rgba(55, 72, 152, 0.15);
    transform: scale(1.02);
}

/* IMPORTANT: Image fit - shows full image without cropping */
.cservices-row .tour-image img,
.cservices-row .cservices-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' to show full image */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #f0f4f9;
}

/* Alternative: If you want images to fill but not crop */
.cservices-row .tour-image img.fill,
.cservices-row .cservices-image img.fill {
    object-fit: cover;
}

/* Alternative: If you want images to show full with background */
.cservices-row .tour-image img.show-all,
.cservices-row .cservices-image img.show-all {
    object-fit: contain;
    background: #f0f4f9;
    padding: 10px;
}

/* Image Badge */
.cservices-row .tour-image .image-badge,
.cservices-row .cservices-image .image-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 2, 19, 0.3);
    z-index: 2;
}

.cservices-row .tour-image .image-overlay,
.cservices-row .cservices-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.cservices-row:hover .tour-image .image-overlay,
.cservices-row:hover .cservices-image .image-overlay {
    transform: translateY(0);
}

.cservices-row .tour-image .image-overlay span,
.cservices-row .cservices-image .image-overlay span {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.cservices-row .tour-image .image-overlay small,
.cservices-row .cservices-image .image-overlay small {
    font-size: 12px;
    opacity: 0.8;
}

/* ============================================ */
/* CONTENT - MODERN                            */
/* ============================================ */
.cservices-row .tour-content {
    flex: 1;
}

.cservices-row .tour-content .service-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(184, 2, 19, 0.08);
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.cservices-row .tour-content strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.cservices-row .tour-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.cservices-row .tour-content .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.cservices-row .tour-content .service-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    background: #f0f4f9;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.3s;
}

.cservices-row .tour-content .service-features span i {
    color: var(--success);
    font-size: 12px;
}

.cservices-row:hover .tour-content .service-features span {
    background: var(--primary);
    color: #fff;
}

.cservices-row:hover .tour-content .service-features span i {
    color: #fff;
}

/* ============================================ */
/* VARIANT - IMAGE ON RIGHT                    */
/* ============================================ */
.cservices-row.image-right {
    border: 1px solid rgba(184, 2, 19, 0.08);
}

.cservices-row.image-right .tour-image,
.cservices-row.image-right .cservices-image {
    border: 3px solid var(--accent);
}

.cservices-row.image-right .tour-content .service-number {
    color: var(--primary);
    background: rgba(55, 72, 152, 0.08);
}

/* ============================================ */
/* VARIANT - ALTERNATE BACKGROUND              */
/* ============================================ */
.cservices-row.alt-bg {
    background: #f8faff;
    border: 1px solid rgba(20, 112, 48, 0.08);
}

.cservices-row.alt-bg .tour-image,
.cservices-row.alt-bg .cservices-image {
    border: 3px solid var(--success);
}

.cservices-row.alt-bg .tour-content .service-number {
    color: var(--success);
    background: rgba(20, 112, 48, 0.08);
}

/* ============================================ */
/* RESPONSIVE STYLES                           */
/* ============================================ */
@media (max-width: 1200px) {
    .cservices-row .tour-image,
    .cservices-row .cservices-image {
        width: 220px;
        min-width: 220px;
        height: 220px;
    }
}

@media (max-width: 991px) {
    .cservices-section {
        padding: 50px 30px 35px;
    }

    .cservices-section .tour-title {
        font-size: 32px;
    }

    .cservices-section .tour-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .cservices-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 30px;
        gap: 30px;
    }

    .cservices-row .tour-image,
    .cservices-row .cservices-image {
        width: 250px;
        min-width: 250px;
        height: 250px;
    }

    .cservices-row .tour-content strong {
        font-size: 22px;
    }

    .cservices-row .tour-content p {
        font-size: 15px;
        text-align: center;
    }

    .cservices-row .tour-content .service-features {
        justify-content: center;
    }

    .cservices-row .tour-image .image-overlay,
    .cservices-row .cservices-image .image-overlay {
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .cservices-section {
        padding: 30px 15px 25px;
        margin: 20px 0;
    }

    .cservices-section .tour-title {
        font-size: 26px;
    }

    .cservices-section .tour-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cservices-row {
        padding: 20px 18px;
        gap: 20px;
        border-radius: 12px;
    }

    .cservices-row .tour-image,
    .cservices-row .cservices-image {
        width: 200px;
        min-width: 200px;
        height: 200px;
        border-radius: 12px;
    }

    .cservices-row .tour-content strong {
        font-size: 18px;
    }

    .cservices-row .tour-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .cservices-row .tour-content .service-number {
        font-size: 12px;
        padding: 3px 14px;
    }

    .cservices-row .tour-content .service-features span {
        font-size: 12px;
        padding: 4px 12px;
    }

    .cservices-row .tour-image .image-badge,
    .cservices-row .cservices-image .image-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: 10px;
        left: 10px;
    }

    .cservices-row .tour-image .image-overlay span,
    .cservices-row .cservices-image .image-overlay span {
        font-size: 13px;
    }

    .cservices-row .tour-image .image-overlay small,
    .cservices-row .cservices-image .image-overlay small {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .cservices-row .tour-image,
    .cservices-row .cservices-image {
        width: 160px;
        min-width: 160px;
        height: 160px;
    }
}

/* ============================================ */
/* CHOOSE ORGAN WISE - COMPLETE CSS            */
/* ============================================ */

/* ============================================ */
/* MAIN BLOCK                                  */
/* ============================================ */
.main_block {
    padding: 40px 0 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
}

/* ============================================ */
/* TITLE WRAP                                  */
/* ============================================ */
.title-wrap {
    padding: 0 30px 20px;
    border-bottom: 2px solid #f0f4f9;
}

.title-wrap h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    position: relative;
}

.title-wrap h2::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.title-wrap h3 {
    margin: 0;
}

.title-wrap h3 a {
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    padding: 6px 20px;
    border-radius: 25px;
    border: 2px solid var(--accent);
}

.title-wrap h3 a:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

/* ============================================ */
/* SLIDER WRAP - CAROUSEL                      */
/* ============================================ */
.slider_wrap {
    padding: 25px 30px 10px;
    position: relative;
    overflow: hidden;
}

/* Slick Slider Container */
.slider_wrap .slick-slider {
    margin: 0 -10px;
}

/* Individual Item */
.slider_wrap .item {
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.slider_wrap .item:hover {
    transform: translateY(-5px);
}

/* Image Block */
.slider_wrap .item .img_block {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    overflow: hidden;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f9;
    transition: all 0.3s ease;
    padding: 15px;
}

.slider_wrap .item:hover .img_block {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px rgba(184, 2, 19, 0.1);
    transform: scale(1.05);
}

.slider_wrap .item .img_block img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider_wrap .item p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s;
}

.slider_wrap .item:hover p {
    color: var(--accent);
}

/* Active State */
.slider_wrap .item.active .img_block {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(184, 2, 19, 0.15);
}

.slider_wrap .item.active .img_block img {
    filter: brightness(0) invert(1);
}

.slider_wrap .item.active p {
    color: var(--accent);
}

/* ============================================ */
/* SLICK CAROUSEL NAVIGATION                   */
/* ============================================ */
.slider_wrap .slick-prev,
.slider_wrap .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider_wrap .slick-prev {
    left: 5px;
}

.slider_wrap .slick-next {
    right: 5px;
}

.slider_wrap .slick-prev::before,
.slider_wrap .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: #fff;
}

.slider_wrap .slick-prev::before {
    content: '\f104';
}

.slider_wrap .slick-next::before {
    content: '\f105';
}

.slider_wrap .slick-prev:hover,
.slider_wrap .slick-next:hover {
    background: var(--accent);
    box-shadow: 0 4px 15px rgba(184, 2, 19, 0.3);
}

.slider_wrap .slick-prev.slick-disabled,
.slider_wrap .slick-next.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================ */
/* TEST CARDS WRAP - GRID                      */
/* ============================================ */
.nh_catr_wrap {
    padding: 15px 30px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

/* Filtered Items - Animation */
.nh_catr_wrap .box {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* TEST CARD - BOX                             */
/* ============================================ */
.nh_catr_wrap .box {
    background: #f8faff;
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nh_catr_wrap .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(55, 72, 152, 0.1);
    background: #fff;
}

/* Left Side - Content */
.nh_catr_wrap .box .lt-side {
    flex: 1;
    padding-right: 15px;
}

.nh_catr_wrap .box .lt-side h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px;
}

.nh_catr_wrap .box .lt-side > p {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nh_catr_wrap .box .lt-side .ellipsis {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10px;
    max-height: 62px;
}

/* Availability List */
.nh_catr_wrap .box .lt-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nh_catr_wrap .box .lt-side ul li {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.nh_catr_wrap .box .lt-side ul li:first-child {
    color: #888;
    font-weight: 400;
}

.nh_catr_wrap .box .lt-side ul li i {
    margin-right: 4px;
    color: var(--success);
    font-size: 13px;
}

.nh_catr_wrap .box .lt-side ul li:last-child i {
    color: var(--primary);
}

/* Right Side - Price & Actions */
.nh_catr_wrap .box .rt-side {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 70px;
}

.nh_catr_wrap .box .rt-side .price {
    text-align: right;
}

.nh_catr_wrap .box .rt-side .price h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.nh_catr_wrap .box .rt-side .price .offer-price {
    color: var(--accent);
}

/* Cart Button */
.nh_catr_wrap .box .rt-side .cart-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.nh_catr_wrap .box .rt-side .cart-btn .share-icon {
    font-size: 16px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 4px;
}

.nh_catr_wrap .box .rt-side .cart-btn .share-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.nh_catr_wrap .box .rt-side .cart-btn .btn {
    background: var(--primary);
    padding: 5px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nh_catr_wrap .box .rt-side .cart-btn .btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.nh_catr_wrap .box .rt-side .cart-btn .btn a {
    color: #fff;
    text-decoration: none;
}

/* ============================================ */
/* CONDITION WISE - VARIANT                    */
/* ============================================ */
.main_block.condition_wise .title-wrap h2::after {
    background: var(--accent);
}

.main_block.condition_wise .nh_catr_wrap .box {
    border-left-color: var(--accent);
}

.main_block.condition_wise .nh_catr_wrap .box:hover {
    border-left-color: var(--accent-dark);
}

.main_block.condition_wise .slider_wrap .item .img_block {
    border-color: var(--accent);
}

.main_block.condition_wise .slider_wrap .item.active .img_block {
    background: var(--accent);
    border-color: var(--accent);
}

.main_block.condition_wise .slider_wrap .item.active p {
    color: var(--accent);
}

.main_block.condition_wise .slider_wrap .slick-prev,
.main_block.condition_wise .slider_wrap .slick-next {
    background: var(--accent);
}

.main_block.condition_wise .slider_wrap .slick-prev:hover,
.main_block.condition_wise .slider_wrap .slick-next:hover {
    background: var(--accent-dark);
}

/* ============================================ */
/* RESPONSIVE STYLES                           */
/* ============================================ */
@media (max-width: 991px) {
    .title-wrap {
        padding: 0 20px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .title-wrap h2 {
        font-size: 22px;
    }

    .title-wrap h2::after {
        bottom: -17px;
    }

    .slider_wrap {
        padding: 20px 15px 5px;
    }

    .slider_wrap .item .img_block {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

    .nh_catr_wrap {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        padding: 10px 20px 15px;
        gap: 15px;
    }

    .nh_catr_wrap .box {
        padding: 16px 18px;
    }

    .slider_wrap .slick-prev {
        left: 0;
    }

    .slider_wrap .slick-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .nh_catr_wrap {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .main_block {
        padding: 20px 0 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .title-wrap {
        padding: 0 15px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .title-wrap h2 {
        font-size: 19px;
    }

    .title-wrap h2::after {
        bottom: -14px;
        width: 35px;
    }

    .title-wrap h3 a {
        font-size: 13px;
        padding: 4px 16px;
    }

    .slider_wrap {
        padding: 15px 10px 0;
    }

    .slider_wrap .item {
        padding: 5px 8px;
    }

    .slider_wrap .item .img_block {
        width: 60px;
        height: 60px;
        padding: 10px;
        border-width: 2px;
    }

    .slider_wrap .item p {
        font-size: 11px;
    }

    .slider_wrap .slick-prev,
    .slider_wrap .slick-next {
        width: 28px;
        height: 28px;
    }

    .slider_wrap .slick-prev::before,
    .slider_wrap .slick-next::before {
        font-size: 11px;
    }

    .nh_catr_wrap {
        grid-template-columns: 1fr;
        padding: 5px 15px 10px;
        gap: 12px;
    }

    .nh_catr_wrap .box {
        padding: 14px 15px;
        flex-wrap: wrap;
    }

    .nh_catr_wrap .box .lt-side {
        padding-right: 0;
        width: 100%;
    }

    .nh_catr_wrap .box .lt-side h4 {
        font-size: 14px;
    }

    .nh_catr_wrap .box .lt-side .ellipsis {
        font-size: 12px;
        max-height: 55px;
        -webkit-line-clamp: 2;
    }

    .nh_catr_wrap .box .lt-side ul {
        gap: 8px;
    }

    .nh_catr_wrap .box .lt-side ul li {
        font-size: 11px;
    }

    .nh_catr_wrap .box .rt-side {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid #e8ecf2;
        min-width: unset;
    }

    .nh_catr_wrap .box .rt-side .price {
        text-align: left;
    }

    .nh_catr_wrap .box .rt-side .price h5 {
        font-size: 13px;
    }

    .nh_catr_wrap .box .rt-side .cart-btn {
        flex-direction: row;
        gap: 10px;
        margin-top: 0;
    }

    .nh_catr_wrap .box .rt-side .cart-btn .btn {
        padding: 4px 14px;
        font-size: 11px;
    }

    .slider_wrap .slick-prev {
        left: -5px;
    }

    .slider_wrap .slick-next {
        right: -5px;
    }
}



/* ============================================ */
/* NAVBAR RESPONSIVE IMPROVEMENTS              */
/* ============================================ */

/* Base navbar styles */
.main-nav {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-nav .navbar-brand {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    padding: 0;
    letter-spacing: 1px;
}

.main-nav .navbar-brand span {
    color: var(--accent);
}

/* Navbar logo image */
.main-nav .navbar-brand img,
.main-nav .container > img {
    max-height: 60px;
    width: auto;
}

.main-nav .nav-link {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px !important;
    transition: color 0.3s;
}

.main-nav .nav-link:hover {
    color: var(--primary);
}

.main-nav .dropdown-menu {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-nav .dropdown-item {
    font-size: 13px;
    padding: 8px 25px;
}

.main-nav .dropdown-item:hover {
    background-color: #f0f7ff;
    color: var(--primary);
}

.main-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* ============================================ */
/* NAVBAR TOGGLER                              */
/* ============================================ */
.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--primary);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(55, 72, 152, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

/* ============================================ */
/* DESKTOP - LARGE SCREENS (1200px and above)  */
/* ============================================ */
@media (min-width: 1200px) {
    .main-nav .container {
        max-width: 1140px;
    }

    .main-nav .nav-link {
        font-size: 15px;
        padding: 10px 20px !important;
    }

    .main-nav .navbar-brand {
        font-size: 34px;
    }

    .main-nav .container > img {
        max-height: 70px;
    }

    /* Show dropdown on hover for desktop */
    .main-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Smooth dropdown animation */
    .main-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .main-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ============================================ */
/* LAPTOP - MEDIUM SCREENS (992px to 1199px)   */
/* ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    .main-nav .nav-link {
        font-size: 13px;
        padding: 10px 12px !important;
    }

    .main-nav .navbar-brand {
        font-size: 28px;
    }

    .main-nav .container > img {
        max-height: 55px;
    }

    /* Show dropdown on hover for laptop */
    .main-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .main-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .main-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .dropdown-item {
        font-size: 12px;
        padding: 6px 20px;
    }
}

/* ============================================ */
/* TABLET - SMALL SCREENS (768px to 991px)     */
/* ============================================ */
@media (max-width: 991px) {
    /* Mobile menu styling */
    .main-nav .navbar-collapse {
        background: #fff;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Fix for navbar collapse on tablet */
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        display: block !important;
    }

    .main-nav .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }

    .main-nav .nav-item {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .main-nav .nav-item:last-child {
        border-bottom: none;
    }

    .main-nav .nav-link {
        padding: 12px 15px !important;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .main-nav .nav-link:hover {
        background: #f0f7ff;
        color: var(--primary);
    }

    /* Dropdown styling for tablet */
    .main-nav .nav-item.dropdown {
        position: relative;
    }

    .main-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    .main-nav .nav-item.dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .main-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
        border-radius: 0;
        width: 100%;
    }

    .main-nav .dropdown-menu.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-nav .dropdown-item {
        padding: 10px 15px 10px 35px;
        font-size: 14px;
        color: #555;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .main-nav .dropdown-item:hover {
        background: #f0f7ff;
        color: var(--primary);
        padding-left: 40px;
    }

    .main-nav .container > img {
        max-height: 50px;
    }

    .main-nav .navbar-brand {
        font-size: 24px;
    }

    /* Hide dropdown hover effect on tablet */
    .main-nav .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .main-nav .nav-item.dropdown.show:hover .dropdown-menu {
        display: block;
    }
}

/* ============================================ */
/* MOBILE - EXTRA SMALL SCREENS (575px and below) */
/* ============================================ */
@media (max-width: 575px) {
    .main-nav {
        padding: 10px 0;
    }

    .main-nav .navbar-collapse {
        padding: 12px 15px;
        margin-top: 10px;
        max-height: 75vh;
    }

    .main-nav .nav-link {
        font-size: 14px;
        padding: 10px 12px !important;
    }

    .main-nav .dropdown-item {
        font-size: 13px;
        padding: 8px 15px 8px 30px;
    }

    .main-nav .container > img {
        max-height: 40px;
    }

    .main-nav .navbar-brand {
        font-size: 20px;
    }

    .navbar-toggler {
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }

    /* Sticky navbar for mobile */
    .main-nav {
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    /* Smooth scroll for mobile menu */
    .main-nav .navbar-collapse {
        scroll-behavior: smooth;
    }
}

/* ============================================ */
/* MOBILE - VERY SMALL SCREENS (400px and below) */
/* ============================================ */
@media (max-width: 400px) {
    .main-nav .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main-nav .container > img {
        max-height: 35px;
    }

    .main-nav .navbar-brand {
        font-size: 18px;
    }

    .main-nav .navbar-collapse {
        padding: 10px 10px;
        margin-top: 8px;
    }

    .main-nav .nav-link {
        font-size: 13px;
        padding: 8px 10px !important;
    }

    .main-nav .dropdown-item {
        font-size: 12px;
        padding: 6px 12px 6px 25px;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================ */
/* DROPDOWN ARROW INDICATOR FOR MOBILE         */
/* ============================================ */
@media (max-width: 991px) {
    .main-nav .dropdown-toggle::after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav .nav-item.dropdown.show .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .main-nav .dropdown-toggle {
        position: relative;
        padding-right: 40px !important;
    }
}

/* ============================================ */
/* SCROLLBAR STYLING FOR MOBILE MENU           */
/* ============================================ */
@media (max-width: 991px) {
    .main-nav .navbar-collapse::-webkit-scrollbar {
        width: 4px;
    }

    .main-nav .navbar-collapse::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .main-nav .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }

    .main-nav .navbar-collapse::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
}

/* ============================================ */
/* ACTIVE MENU ITEM INDICATOR                  */
/* ============================================ */
.main-nav .nav-item.active .nav-link {
    color: var(--primary);
    font-weight: 700;
}

.main-nav .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* For mobile, adjust active indicator */
@media (max-width: 991px) {
    .main-nav .nav-item.active .nav-link::after {
        bottom: 8px;
        left: 20px;
        transform: none;
    }
}

/* ============================================ */
/* FIX: Bootstrap navbar collapse on all screens */
/* ============================================ */
@media (max-width: 991px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        flex-wrap: wrap;
    }

    .navbar-expand-lg .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

/* ============================================ */
/* TRANSITION FOR SMOOTH MOBILE MENU           */
/* ============================================ */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}