.about-hero-section {
    width: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 49.85%, rgba(69, 63, 133, 0.12) 91.75%);
    position: relative;
    display: flex;
    align-items: end;
}

.about-hero-section .hero-bg {
    position: absolute;
    top: 50%;
    left: 60%;
    width: 40%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
}

.about-hero-section-side-img-card {
    width: 100%;
    height: auto;
}

.about-hero-section-side-img {
    width: 100%;
    height: auto;
}

.about-hero-content .hero-tagline {
    color: var(--primary-bg);
}

.about-hero-content .hero-heading {
    color: var(--secondary-bg);
}

.about-hero-section .email-btn {
    background-color: #f0fdfa;
    border: 1px solid var(--primary-bg);
    color: var(--primary-bg);
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.about-hero-section .email-btn:hover {
    background-color: #fff;
    color: var(--secondary-bg);
    border: 1px solid var(--secondary-bg);

}

.about-hero-section .social-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.2s;
    border: 1px solid var(--secondary-bg);
}

.about-hero-section .social-icon:hover {
    background-color: #fffaf0;
    border: 1px solid var(--custom-orange);
    color: var(--custom-orange);
}


.counter-wrapper {
    background: rgb(255, 255, 255);
    background: cover;
    background-position: center center;
    position: relative;
}

.count-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--secondary-bg);
}

.counter-inner {
    position: relative;
    z-index: 2;
}

.count-icon {
    font-size: 48px;
}

.publications-section {
    background-color: #ece9fb;
}

.publications-section .publication-item {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.publications-section .publication-item.show {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 5px;
}


.publications-section .section-title,
.testimonial-youtube-section .section-title,
.blog-section .section-title {
    color: var(--theme-color);
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.publications-section .section-title::after,
.testimonial-youtube-section .section-title::after,
.blog-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-bg);
    border-radius: 5px;
}


.publications-section .publication-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.publications-section .publication-card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(69, 63, 133, 0.05) 0%, rgba(43, 127, 255, 0.05) 100%);
    border-radius: 100px;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.publications-section .publication-card:hover::before {
    background: linear-gradient(135deg, rgba(69, 63, 133, 0.05) 0%, rgba(43, 128, 255, 0.165) 100%);
    transform: scale(1.1);
}

.publications-section .icon-container {
    background-color: var(--primary-bg);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.publications-section .icon-container i {
    font-size: 18px;
}

.publications-section .year-badge {
    background: rgba(229, 227, 255, 1);
    color: var(--secondary-bg);
    padding: 7px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
}

.publications-section .featured-badge {
    background-color: rgba(255, 251, 235, 1);
    color: rgba(225, 113, 0, 1);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #c2c2c233;
}


.publications-section .publication-card .publication-card-title {
    color: var(--secondary-bg);
    font-weight: 700;
}

.publications-section .publication-card .publication-card-text {
    color: var(--theme-color);
    font-size: 0.95rem;
}

.publications-section .publication-card .read-more-link {
    color: var(--secondary-bg);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.publications-section .publication-card .read-more-link:hover {
    color: var(--primary-bg);
    text-decoration: underline;
}

.testimonial-youtube-section {
    background-color: #fff;
}

.testimonial-youtube-section .testimonial-youtube-card {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    background: #F0F8FF;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.blog-section {
    background-color: #fff;
}

.blog-section .blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 5px;
    background-color: #fff;
    margin-top: 5px;
}

.blog-section .blog-card:hover {
    transform: translateY(-5px);
}

.blog-section .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-section .blog-card .blog-category {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.blog-section .blog-card .blog-date {
    font-size: 14px;
    color: #adb5bd;
}

.blog-section .blog-card .blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 25px;
    max-height: 50px;
}

.blogs-section .blog-card .read-more-link {
    font-size: 14px;
    color: var(--secondary-bg);
    font-weight: 600;
    text-decoration: underline !important;
}

.blogs-section .blog-card .read-more-link:hover {
    text-decoration: none;
    color: var(--primary-bg);
}


ul.navigation-list li::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: transparent;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s ease;
}

ul.navigation-list li:hover::before {
    background: var(--secondary-bg);
}

ul.navigation-list li.active::before {
    background: var(--secondary-bg);
}

ul.navigation-list li:hover {
    cursor: pointer;
}

ul.navigation-list li a {
    width: 100%;
    display: block;
}

ul.navigation-list li:hover a {
    color: var(--secondary-bg);
    cursor: pointer;
}

ul.navigation-list li.active a {
    color: var(--secondary-bg);
    font-weight: 600;
}

ul.navigation-list li.active {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #f3f2ffff;
}

.author-info-card {
    display: inline-flex;
}

.author-info-card .sub-heading {
    font-weight: 800;
}

.author-info-card .author-name-card {
    background: rgba(241, 236, 255, 1);
    padding: 0px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
}

.author-info-card .author-icon {
    color: var(--secondary-bg);
}

.author-info-card .author-name {
    color: var(--secondary-bg);
    font-weight: 600;
    font-size: 15px;
}

.author-info-card .date-text,
.author-info-card .read-time-text {
    color: var(--theme-color);
    font-size: 1rem;
    font-weight: 500;
}




.tldr-card {
    background-color: #f7f2ff;
    border: none;
    border-radius: 15px;
    /* overflow-y: auto; */
    width: 100%;
    box-shadow: inset 0 -6px 10px -6px rgba(0, 0, 0, 0.66);
    padding: 15px;
    padding-bottom: 0px;
}

.tldr-card .tldr-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 1.5px #6a4ec3;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tldr-card .tldr-content-wrapper {
    max-height: 2.4em;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 47px;
}

.tldr-card:hover .tldr-content-wrapper {
    max-height: 200px;
    overflow: auto;
    margin-bottom: 20px;
}


.tldr-card .tldr-content-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.tldr-card .tldr-content-wrapper::-webkit-scrollbar-track {
    background: #dddddd;
    border-radius: 4px;
}

.tldr-card .tldr-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 4px;
    height: 50px;
}

.tldr-card .tldr-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-bg);
}

.blog-total-content .blog-post-img-large,
.blog-total-content .blog-post-inner-img {
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin-bottom: 12px;
}
.Faq_Section h5{
color:var(--secondary-bg);
}

