:root {
    --primary-color: #082c66;
    --secondary-color: #016e75;
    --black: #000;
    --white: #fff;
}

::selection {
    background: var(--secondary-color);
    color: var(--white);
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: #f9f9f9;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* top nav */


.top-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 7px 0;
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

.top-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.top-contact {
    align-items: center;
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-text li,
.top-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);

}

.top-text li a {
    margin-right: 8px;
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
}

.top-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 0;
}

.top-social li a {
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 30px;
    background: var(--primary-color);
    height: 30px;
    color: var(--white);
    border: 2px solid var(--white);

}

.top-social li a:hover {
    background: var(--secondary-color);
    color: var(--white);
}





/* menu  */

.custom-navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    /* margin-bottom: -110px; */
}

.custom-navbar .container {
    /* background: var(--white); */
    border-radius: 0 0 20px 20px;
}

@media (max-width: 991px) {
    .custom-navbar .container {
        padding: 0;
    }

    .custom-navbar .container {
        border-radius: 0;
    }
}

.logo img {
    border-radius: 6px;

    margin: 0;
}

.nav-toggle {
    display: none;
    text-align: right;

    button {

        font-size: 24px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
    }
}

ul.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    /* gap: 26px; */
    justify-content: space-between;
}

ul.nav-links li {
    position: relative;
}

ul.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    padding: 20px 10px;
    display: block;
}

ul.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 95%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--secondary-color);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* overflow: hidden; */
    padding: 0;
    flex-direction: column;
    min-width: 230px;
    width: max-content;
    z-index: 999;
}

.dropdown-menu a {
    padding: 5px 10px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    color: var(--black) !important;
    border-bottom: 1px solid var(--primary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

/* Subdropdown */
.has-subdropdown {
    position: relative;
}

.subdropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border: 1px solid var(--secondary-color);
    border-top: 3px solid var(--secondary-color);
    background: var(--white);
    display: none;
    padding: 0;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    list-style: none;
}

.subdropdown-menu a {
    padding: 6px 12px !important;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--black);
}

.subdropdown-menu a:hover {
    background: var(--secondary-color) !important;
    color: var(--white);
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .has-subdropdown:hover>.subdropdown-menu {
        display: flex;
    }

}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    ul.nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        margin-top: 10px;
        gap: 0;
        max-height: 100vh;
        overflow-y: auto;
    }

    ul.nav-links.show {
        display: flex;
    }

    ul.nav-links li {
        width: 100%;
    }

    ul.nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #ccc;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 8px 8px 23px !important;
        font-size: 16px !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.show .dropdown-menu {
        display: flex;
    }


    .subdropdown-menu {
        position: static;
        display: none;
        background: #000;
        border: none;
        border-radius: 0;
        width: 100%;
        box-shadow: none;
    }

    .subdropdown-menu.show {
        display: flex;
    }

    .subdropdown-menu a {
        padding: 10px 20px !important;
        border-bottom: 1px solid #333;
        color: #fff !important;
    }

    .sub-subdropdown-menu {
        position: static;
        display: none;
        background: #fff;
        border: none;

        border-radius: 0;
        width: 100%;
    }
}


.section__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}


/* about */

.about-intro .title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.about-thumb img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .about-intro .title {
        font-size: 28px;
    }

    .about-intro p {
        font-size: 16px;
    }
}

.about-container {
    background: #fff;
    padding: 60px 0;
}

.abt-excellance {
    display: flex;
    position: relative;
    justify-content: end;
}

.excellance-award-img img {
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.excellance-text {
    position: absolute;
    left: 10px;
    top: 50px;
    max-width: 850px;
    background: #fff;
    padding: 40px 100px 40px 50px;
    border-radius: 0 20px 20px 0;
    /* box-shadow: 0 4px 15px rgba(0, 0,
                    0, 0.1); */
}

.excellance-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 48px;
    font-family: "adobe-devanagari", sans-serif;
    /* margin-right: 80px; */
}

.excellance-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.excellance-text ul li {
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.excellance-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

@media (max-width: 992px) {
    .about-container {
        padding: 40px 12px;
    }

    .abt-excellance {
        flex-direction: column;
        align-items: center;
    }

    .excellance-award-img img {
        border-radius: 20px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .excellance-text {
        position: static;
        max-width: 100%;
        padding: 20px 0;
        border-radius: 20px;
    }

    .excellance-text h3 {
        font-size: 32px;
        margin-right: 0;
    }
}








.about-page {
    padding: 100px 0 60px;
}

.doc-profile {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

.doc-card-box {

    position: relative;
    z-index: 5;
}

.doc-profile img {
    object-fit: cover;
}

.doc-education {
    margin: 10px 0 0;
    font-size: 16px;
    color: #fff;
}

.pro-service-card {
    padding: 20px 20px 25px;
}

.pro-service-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: white;
}

.pro-service-desc {
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro-service-card a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: capitalize;
    background: var(--white);
    padding: 4px 10px;
    border-radius: 20px;

    i {
        margin-left: 3px;

    }
}

.pro-service-card a:hover {
    background: var(--black);
    color: var(--white);
}


@media (max-width: 768px) {

    .doc-card-box {
        margin-top: 0;
        margin-bottom: 0;
    }

    .pro-service-card {
        padding: 12px 12px 20px;
    }

    .pro-service-title {
        font-size: 17px;
    }

    .pro-service-desc {
        font-size: 12px;
    }

    .pro-service-card a {
        font-size: 12px;
    }

    .doc-profile {
        margin-top: 20px;
        display: flex;
    }

    .doc-profile img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1.5;
    }

    .about-page {
        padding: 40px 0;
    }

    .doc-education {
        color: #333;
    }

}



/* award  */


.dr-awards-section {
    background: #f9fafb;
    padding: 80px 0;
}

.dr-awards-section .dr-section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    margin-bottom: 14px;
}

.dr-awards-section .dr-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
}

.dr-awards-section .dr-section-title span {
    color: var(--primary-color);
}


/* ===== AWARD CARDS ===== */
.dr-award-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dr-award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.dr-award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.dr-award-card .dr-award-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    background: var(--primary-color);
    color: #fff;
}

.dr-award-card.dr-award-highlight .dr-award-icon {
    background: var(--secondary-color);
}

.dr-award-card .dr-award-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.dr-award-card .dr-award-desc {
    font-size: 1rem;
    color: #333;
    line-height: 1.65;
    margin: 0;
}

.dr-training-strip {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 30px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dr-training-strip::after {
    content: '\f19d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90px;
    opacity: 0.07;
}

.dr-training-strip .dr-training-label {
    font-size: 23px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.dr-training-strip .dr-training-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin: 0;
}

.dr-membership-block {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.dr-membership-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.dr-membership-block .dr-mem-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.dr-membership-block .dr-mem-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.dr-membership-block .dr-mem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dr-membership-block .dr-mem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #bfbfc0;
    font-size: 0.92rem;
    color: #3a3a5c;
    font-weight: 500;
}

.dr-membership-block .dr-mem-list li:last-child {
    border-bottom: none;
}

.dr-membership-block .dr-mem-list li .dr-mem-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.dr-awards-footer-note {
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 12px 12px 0;
    background: #fff;
    padding: 22px 24px;
    font-size: 0.93rem;
    color: #4a4a6a;
    line-height: 1.75;
    font-style: italic;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dr-awards-footer-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

@media (max-width: 767px) {
    .dr-awards-section .dr-section-title {
        font-size: 1.7rem;
    }

    .dr-training-strip {
        padding: 24px 22px;
    }

    .dr-membership-block {
        padding: 26px 20px;
    }
}




.why-choose-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.choose-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.choose-feature-card {
    background: linear-gradient(135deg, #d9f2f7 0%, #e8f7f9 100%);
    border-right: 1px solid rgba(1, 110, 117, 0.2);
    padding: 25px 20px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 44, 102, 0.1);
}

.choose-feature-card:last-child {
    border-right: none;
}

.choose-feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(1, 109, 117, 0.099);
    line-height: 1;
}

.choose-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.choose-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.choose-feature-description {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .choose-feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(1, 110, 117, 0.2);
        margin-bottom: 0;
    }

    .choose-feature-card:last-child {
        border-bottom: none;
    }

}

@media (max-width: 576px) {
    .choose-section-title h2 {
        font-size: 1.75rem;
    }

    .choose-feature-number {
        font-size: 2rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .choose-feature-card {
        padding: 20px 12px;
    }
}

/* research and publication  */

.publications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header Styles */
.publications-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.publications-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.publications-section-badge i {
    margin-right: 8px;
}

.publications-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.publications-section-description {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Styles */
.publication-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(8, 44, 102, 0.15);
}

/* Image Wrapper */
.publication-image-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.publication-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.publication-year {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

/* Content Styles */
.publication-content {
    padding: 35px;
}

.publication-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.7;
}

.publication-authors {
    font-size: 0.95rem;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

/* Meta Information */
.publication-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.publication-journal {
    background: linear-gradient(135deg, #e3f2fd, #e1f5fe);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.publication-citation {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* DOI Link */
.publication-doi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.publication-doi:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}


@media (max-width: 767px) {
    .publications-section-title {
        font-size: 1.75rem;
    }

    .publication-icon {
        width: 100%;
    }

    .publication-content {
        padding: 25px;
    }

    .publication-title {
        font-size: 1rem;
    }
}

/* academic engagement */

.tabs-container {
    width: 100%;
    /* max-width: 800px; */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    position: relative;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 15px;
    gap: 8px;
}

.tab-button {
    flex: 1;
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: #6c757d;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-button:hover:not(.active) {
    color: #495057;
    transform: translateY(-2px);
}

.tab-button.active {
    color: #ffffff;
}

.tab-button .icon {
    font-size: 20px;
}

.tab-indicator {
    position: absolute;
    bottom: 8px;
    left: 8px;
    height: calc(100% - 16px);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 0;
}

.tabs-content {
    padding: 20px;
    min-height: 300px;
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
}

.tab-panel p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.tab-feature-list {
    list-style: none;
    margin: 0;
}

.tab-feature-list li {
    padding: 12px 0;
    color: #333;
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
    opacity: 0;
    transform: translateX(-20px);

    small {
        color: var(--secondary-color);
    }
}

.tab-feature-list li:last-child {
    border-bottom: none;
}

.tab-feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.tab-cta-button {
    margin-top: 24px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    opacity: 0;
    transform: translateY(10px);
}

.tab-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 600px) {


    .tabs-header {
        flex-direction: column;
    }

    .tab-button {
        font-size: 15px;
        padding: 12px 16px;
        color: var(--white);
    }

    .tab-button.active {
        background: var(--white);
        color: var(--primary-color);
    }

    .tab-feature-list li {
        gap: 7px;
        font-size: 14px;
        padding: 8px 0;
        line-height: 20px;
    }

    .tab-feature-list li::before {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }

    .tabs-content {
        padding: 12px 0;
    }

    .tab-panel h2 {
        font-size: 24px;
    }
}

/* video  */

.video-section {
    padding: 60px 0;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;

    left: 50%;
    font-size: 3rem;
    color: white;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;

    i {
        color: #fff;
        position: relative;
        z-index: 1;
    }
}

/* Modal iframe */
.modal-video iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .modal-video iframe {
        height: 250px;
    }
}


.membership-logo img {
    aspect-ratio: 5/4;
    object-fit: contain;
    background: #f1f1f1;
    border: 4px solid #fff;
    box-shadow: 0 0 19px rgb(0 0 0 / 0.3), inset -5px -5px 10px rgb(0 0 0/ 0.2), inset 10px 10px 10px rgb(255 255 255 / 0.3);
    width: 100%;
}

.fellowship-logo img {
    aspect-ratio: 2/1;
    object-fit: contain;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 0 19px rgb(0 0 0 / 0.3);
    width: 100%;
    border-radius: 20px;
}


/* gallery */

.gal-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--white);
    box-shadow: inset 5px 5px 10px rgb(0 0 0/ 25%), inset 10px 10px 10px rgb(255 255 255/ 55%), 0 0 15px rgb(0 0 0/ 25%);
}

.gal-img img:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
    box-shadow: inset 2px 2px 5px rgb(0 0 0/ 15%), inset 5px 5px 5px rgb(255 255 255/ 35%), 0 0 30px rgb(0 0 0/ 25%);
}

.blog__item-media img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.blog__item-content h4 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog__item-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 23px;
}



/* contact us  */

.custom-contact-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.custom-hero-title-section {
    text-align: center;
    margin-bottom: 30px;
}

.custom-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.custom-main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 30%, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

.custom-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.custom-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
}

.custom-form-section {
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 249, 250, 1) 100%);
}

.custom-info-section {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 40%, var(--secondary-color) 100%);
    color: white;
    height: 100%;
    position: relative;
}

.custom-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 80px 80px;
    opacity: 0.3;
}

.custom-section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    position: relative;
}

.custom-section-header-white {
    color: #ffffff;
}

.custom-form-group {
    margin-bottom: 20px;
    position: relative;
}

.custom-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    display: block;
}

.custom-form-input {
    width: 100%;
    padding: 12px !important;
    height: auto !important;
    border: 2px solid #e9ecef;
    border-radius: 10px !important;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    color: var(--black);
    outline: none;
    font-family: "Poppins", sans-serif;
}

.custom-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(34, 79, 163, 0.1);
    transform: translateY(-2px);
}

.custom-form-input::placeholder {
    color: #999;
    font-weight: 300;
}

.custom-form-textarea {
    min-height: 110px;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(34, 79, 163, 0.3);
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.custom-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 79, 163, 0.4);
}

.custom-submit-button:hover::before {
    left: 100%;
}

.custom-submit-button:active {
    transform: translateY(-1px);
}


.custom-info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.custom-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 15px 0 0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.custom-info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.custom-social-links {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.custom-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1));
    margin: 0 12px 12px 0;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.custom-social-link:hover {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {

    .custom-form-section,
    .custom-info-section {
        padding: 30px 12px;
    }

    .custom-main-title {
        font-size: 2rem;
    }

    .custom-section-header {
        font-size: 2rem;
    }

    .custom-info-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin-right: 10px;
    }

    .custom-social-links {
        margin-top: 30px;
    }

    .custom-contact-card {
        border-radius: 15px;
    }

    .custom-contact-hero {
        padding: 40px 0;
    }
}



/* breadcrumb  */

.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 30px 0;
    }
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%2333c89e' fill-opacity='0.1' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a i {
    font-size: 14px;
    height: 25px;
    width: 25px;
    display: inline-flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    color: #d4f6ec;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffffcc;
    margin: 0;
}

.breadcrumb-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-subtitle {
    font-size: 16px;
    color: #d9f4eb;
}


/* service  */


.cat-service {
    padding: 30px 20px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.cat-service .seri-img {
    aspect-ratio: 16/8;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.cat-service h2,
.cat-service h3,
.cat-service h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    /* padding-bottom: 5px; */
    border-bottom: 2px solid var(--primary-color);
}

.cat-service p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.cat-service ul {
    list-style: disc;
    margin-bottom: 15px;
    padding-left: 25px;
}

.cat-service ol {
    list-style: decimal;
    margin-bottom: 15px;
    padding-left: 25px;
}

.cat-service ul li::marker {
    color: var(--primary-color);
    font-size: 18px;
}

.cat-service ul li {
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}



@media (max-width: 768px) {
    .cat-service {
        padding: 0;
        box-shadow: none;
        background: transparent;
        margin-bottom: 25px;
    }

    .cat-service table th,
    .cat-service table td {
        font-size: 14px;
        padding: 5px;
        line-height: 20px;
    }
}

.sidebar {
    background: #ffffff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
}

/* Doctor Profile Section */
.sidebar-doctor-profile {
    padding: 30px 12px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sidebar-doctor-profile::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    transform: rotate(45deg);
}

.sidebar-doctor-profile::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
}

.sidebar-profile-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sidebar-doctor-img-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sidebar-doctor-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-doctor-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.sidebar-img-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid var(--white);
    border-right: 2px solid transparent;
}

.sidebar-doctor-profile .sidebar-doctor-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-doctor-education {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Services Section */
.sidebar-services-section {
    padding: 20px 10px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    position: relative;
}

.sidebar-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.sidebar-services-heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sidebar-services-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sidebar-services-heading::before {
    content: "⚕️";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.sidebar-services-list {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
}

.sidebar-service-item {
    position: relative;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 15px;
    border: 2px solid #e8f2ff;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 19 117 / 81%);
}

.sidebar-service-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.sidebar-service-link:hover::before {
    left: -100%;
}

.sidebar-service-link:hover {
    color: #2c3e50;
    box-shadow: 0 15px 35px rgba(30, 46, 131, 0.25);
    border-color: var(--primary-color);
}

.sidebar-service-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}


/* Contact Section */
.sidebar-contact-section {
    padding: 20px 10px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
}

.sidebar-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.sidebar-contact-heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sidebar-contact-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.sidebar-contact-details {
    margin-bottom: 30px;
    display: grid;
    gap: 15px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    padding: 5px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid transparent;
    /* box-shadow: 0 4px 15px rgba(30, 46, 131, 0.08); */
    box-shadow: 0 0 6px rgba(30, 46, 131, 0.1);
    position: relative;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.sidebar-contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-sidebar-contact-item:hover::before {
    transform: scaleY(1);
}

.sidebar-contact-item:hover {
    box-shadow: 0 8px 25px rgba(30, 46, 131, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.sidebar-contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(30, 46, 131, 0.3);
    transition: all 0.3s ease;
}

.sidebar-contact-item:hover .sidebar-contact-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 46, 131, 0.4);
}

.sidebar-contact-text {
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;

    a {
        color: #2c3e50;
        font-weight: 400;
    }
}

/* Contact Form */
.sidebar-contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 20px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 46, 131, 0.1);
    border: 2px solid rgba(30, 46, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-contact-form::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    transform: rotate(45deg);
}

.sidebar-form-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.sidebar-form-input {
    width: 100%;
    padding: 8px 10px !important;
    height: auto !important;
    border: 2px solid #e8f2ff;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    font-weight: 500;
    display: block;
    color: #2c3e50;
}

.sidebar-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 46, 131, 0.1);
    transform: translateY(-2px);
}

.sidebar-form-input:hover {
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.sidebar-form-input::placeholder {
    line-height: 20px;

}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.sidebar-form-button {
    padding: 7px 15px;
    /* background: linear-gradient(135deg, #1e2e83 0%, #006c62 100%); */
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 46, 131, 0.3);
}

.sidebar-form-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transition: left 0.5s ease;
}

.sidebar-form-button:hover::before {
    left: 0;
}

.sidebar-form-button:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(30, 46, 131, 0.4);
}

.sidebar-form-button span {
    position: relative;
    z-index: 2;
}