:root {
    --primary-blue: #0256a2;
    --secondary-blue: #007bff;
    --accent-green: #76bc43;
    --dark-blue: #0a1d37;
    --light-bg: #f8fbff;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html,
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/* --- Header & Navigation --- */
.navbar-main {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-main.sticky {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}



.nav-link-custom {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap !important;
}

.nav-link-custom:hover {
    color: var(--primary-blue);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition-smooth);
}

.nav-link-custom:hover::after {
    width: calc(100% - 40px);
}

/* Mega Menu */
.mega-menu {
    position: static !important;
}

.mega-menu-content {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px;
    background: var(--white);
    border: none;
    border-top: 3px solid var(--accent-green);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    display: none;
    position: absolute;
    margin-top: 15px;
}



@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.mega-menu-item-box {
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    display: block;
    text-decoration: none;
}

.mega-menu-item-box:hover {
    background: var(--light-bg);
}

.mega-menu-item-box i {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.mega-menu-item-box h6 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.mega-menu-item-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Dropdown */
.dropdown-custom-menu {
    border: none;
    border-top: 3px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
}



.dropdown-item-custom {
    padding: 12px 25px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dropdown-item-custom:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
    padding-left: 30px;
}

/* --- Hero Section (Image Reference Style) --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    padding: 0;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.heroSwiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 86, 162, 0.6) 0%, rgba(2, 86, 162, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Slider UI Elements */
.hero-section .swiper-pagination {
    bottom: 30px !important;
}

.hero-section .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-green);
    width: 30px;
    border-radius: 10px;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-sidebar-tabs {
    position: absolute;
    right: 0;
    top: 30%;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.sidebar-tab {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-tab.primary {
    background: #00c2cb;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition-smooth);
}

.navbar-main .btn-primary-custom {
    padding: 10px 22px;
    font-size: 14px;
}

.btn-primary-custom:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 86, 162, 0.2);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: var(--transition-smooth);
}

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

.hero-image-box {
    position: relative;
    z-index: 1;
}

.hero-img-main {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.card-1 {
    top: 10%;
    right: -5%;
}

.card-2 {
    bottom: 10%;
    left: -5%;
}

.icon-box-sm {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
}

/* --- About Section --- */
.about-section {
    padding: 40px 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 188, 67, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 86, 162, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.section-title-box {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--accent-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(118, 188, 67, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 3.2rem;
    line-height: 1.1;
    color: var(--primary-blue);
    font-weight: 800;
}

/* Qualifications Card Styling */
.about-qual-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(2, 86, 162, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-qual-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 35px 80px rgba(2, 86, 162, 0.12);
}

.qual-title {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.qual-title i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.qual-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    height: 100%;
}

.qual-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(2, 86, 162, 0.1);
    background: var(--light-bg);
}

.qual-item i {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.qual-item:hover i {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(10deg);
}

.qual-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.3;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-image-wrapper {
    position: relative;
    padding: 40px;
    z-index: 1;
}

.about-main-frame {
    position: relative;
    background: var(--white);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 40px 80px rgba(10, 29, 55, 0.12);
    z-index: 2;
    transition: var(--transition-smooth);
}

.about-main-frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(118, 188, 67, 0.2);
    border-radius: 65px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.about-main-frame:hover::before {
    inset: -10px;
    border-color: var(--accent-green);
    border-width: 3px;
}

.frame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(2, 86, 162, 0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
}

.frame-internal {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #f0f7ff;
}

.about-doctor-img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.about-main-frame:hover .about-doctor-img {
    transform: scale(1.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
    font-size: 1.5rem;
    z-index: 3;
    animation: float-alt 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: -10px;
    background: #e8f4ff;
    color: #007bff;
}

.float-2 {
    bottom: 20%;
    right: -20px;
    background: #f0fff4;
    color: #28a745;
    animation-delay: 2s;
}

.float-3 {
    top: 40%;
    left: -20px;
    background: #fff5e6;
    color: #ff9900;
    animation-delay: 4s;
}

@keyframes float-alt {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Enhanced Badge */
.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: rgba(2, 86, 162, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(2, 86, 162, 0.3);
    border: 5px solid var(--white);
    z-index: 4;
}

.experience-badge h3 {
    font-size: 2.8rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 800;
}

.experience-badge p {
    font-size: 0.85rem;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 22px;
}

/* --- Services Section --- */
/* .services-section {
    background: var(--light-bg);
     padding: 100px 0; 
} */

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(2, 86, 162, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 30px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
}

/* --- Gallery Section --- */
/* .gallery-section {
    padding: 100px 0;
} */

/* Legacy Gallery Styles - Commented out to avoid conflict with new gallery cards 
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 86, 162, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}
*/

/* --- Footer --- */
.footer-new {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 40px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 30px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
}

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

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

.icon-box-footer {
    width: 35px;
    height: 35px;
    background: rgba(118, 188, 67, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: var(--accent-green);
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Responsive --- */




.btn-primary-custom:hover .transition-arrow {
    transform: translateX(5px);
}

.transition-arrow {
    transition: var(--transition-smooth);
}

/* --- Info Grid Section --- */
.info-grid-section {
    position: relative;
    z-index: 10;
}

.info-ribbon {
    background: var(--primary-blue);
    padding: 20px 0;
    color: var(--white);
}

.ribbon-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

.ribbon-text h3 span {
    font-weight: 400;
    text-transform: none;
    font-size: 1.1rem;
    margin-left: 10px;
    opacity: 0.8;
}

.btn-chat {
    background: var(--accent-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-chat:hover {
    background: var(--accent-green);
    color: var(--white);
}

.info-cards-container {
    background: #dae7f3;
    border-bottom: 1px solid #f0f0f0;
}

.info-card-col {
    border-right: 1px solid #f0f0f0;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    text-decoration: none;
    color: var(--dark-blue);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #e8ffd8;
    z-index: -1;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.info-card:hover {
    color: var(--primary-blue);
}



.info-card-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}




.info-card:hover .info-card-icon {
    transform: translateY(-10px) scale(1.05);
    color: var(--primary-blue);
}

.info-card-col.highlighted .info-card-icon {
    font-size: 4rem;
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit;
}

.info-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 200px;
}

.info-card-arrow {
    margin-top: auto;
    color: var(--accent-green);
    font-size: 1.2rem;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.info-card:hover .info-card-arrow {
    opacity: 1;
    transform: translateY(5px);
}

.info-card-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 260px;
    line-height: 1.4;
}

.info-card:hover .info-card-desc {
    max-height: 150px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* --- Mega Menu List --- */
.nav-item.mega-menu {
    position: static !important;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    display: none;
    z-index: 999;
    border-top: 3px solid var(--accent-green);
    border-bottom: 5px solid var(--primary-blue);
}

/* Invisible bridge to prevent closing on hover gap */
.mega-menu-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}



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

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

.mega-category {
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.mega-category:hover {
    background: rgba(2, 86, 162, 0.02);
}

.mega-cat-title {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(2, 86, 162, 0.05);
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.mega-cat-title i {
    font-size: 1.2rem;
    color: var(--accent-green);
}

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

.mega-list li {
    margin-bottom: 12px;
}

.mega-list li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: block;
    position: relative;
    padding-left: 20px;
}

.mega-list li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 0.8rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.mega-list li a:hover {
    color: var(--primary-blue);
    padding-left: 25px;
}

.mega-list li a:hover::before {
    opacity: 1;
    left: 5px;
}



.nav-link-custom i {
    transition: transform 0.3s ease;
}

.nav-item.mega-menu:hover .nav-link-custom i,
.nav-item.dropdown:hover .nav-link-custom i,
.nav-link-custom[aria-expanded="true"] i {
    transform: rotate(180deg);
}

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

/* Also for mobile accordion items */
.offcanvas-body .dropdown-item i {
    transition: transform 0.3s ease;
}

.offcanvas-body .dropdown-item[aria-expanded="true"] i {
    transform: rotate(180deg);
}


/* --- Why Choose Us Section --- */
.why-choose-section {
    /* padding: 120px 0; */
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-img-wrapper {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.img-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--accent-green);
    z-index: 0;
    border-radius: 10px;
}

.why-choose-img-container {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.why-choose-img-wrapper:hover .why-choose-img {
    transform: scale(1.05);
}

.why-card {
    background: rgb(201 216 235 / 60%);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(2, 86, 162, 0.05);
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(2, 86, 162, 0.08);
    border-bottom-color: var(--primary-blue);
    transform: translateY(-8px);
}

.why-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(118, 188, 67, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-card:hover .why-icon-box {
    background: var(--accent-green);
    color: var(--white);
}

.why-card-content h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.why-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Circle Service Cards --- */
.service-card-v2 {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    padding: 8px;
    margin-bottom: 25px;
    display: inline-block;
}

.service-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-blue);
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite;
}

.service-card-v2:hover .service-image-wrapper::before {
    border-color: var(--primary-blue);
    animation-duration: 5s;
}

.service-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.service-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card-v2:hover .service-image-circle img {
    transform: scale(1.1);
}

.service-card-v2 h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.service-card-v2:hover h4 {
    color: var(--primary-blue);
}

.service-card-v2 p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-padding {
    padding: 100px 0;
}

/* --- Testimonials --- */
.testimonials-section {
    background: #ffffff;
    position: relative;
}

.testimonial-card {
    background: #dae7f3;
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(2, 86, 162, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(2, 86, 162, 0.08);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h6 {
    margin-bottom: 1px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: var(--primary-blue);
}

/* --- Home CTA Section --- */
.home-cta-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/IMG-20260413-WA0053.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.home-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 214, 95, 0.85), rgba(118, 188, 67, 0.85));
    z-index: 1;
}

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

.home-cta-heading {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.home-cta-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0.95;
    text-transform: uppercase;
}

.home-cta-btn {
    background: var(--white);
    color: rgb(144, 214, 95);
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: 2px solid var(--white);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-cta-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}



.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button:after {
    background-size: 1rem;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.transition-hover {
    transition: var(--transition-smooth);
}



/* --- Premium Layout Utilities --- 
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.transition-up {
    transition: var(--transition-smooth);
}

.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 86, 162, 0.1) !important;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}


/* --- About Page Specifics --- 
.about-hero {
    padding-top: 180px !important;
    padding-bottom: 80px !important;
    background-color: var(--dark-blue) !important;
}

.bio-section {
    padding: 100px 0;
    background: var(--white);
}

.focus-card {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}


/* --- Interactive Hover Effects --- 
.transition-hover {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(2, 86, 162, 0.1) !important;
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

.hover-light-bg:hover {
    background: var(--light-bg);
}

.hover-accent-border:hover {
    border-color: var(--accent-green) !important;
}
/* ==========================================================================
   GALLERY PAGE & COMPONENTS
   ========================================================================== */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(2, 86, 162, 0.2);
}

.gallery-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative;
    height: 350px;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    transform: translateZ(0);
    isolation: isolate;
    clip-path: inset(0 round 20px); /* Absolute clipping */
    -webkit-clip-path: inset(0 round 20px);
}

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 86, 162, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-info h5 {
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.gallery-info p {
    color: #ffffff !important;
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 1 !important;
    transition: var(--transition-smooth);
}

.gallery-icon-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-icon-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-item {
    transition: all 0.5s ease-in-out;
}

.gallery-item a {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
}

/* Awards Section Styles */
.award-image-container,
.award-main-display {
    padding: 20px;
}

.award-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(118, 188, 67, 0.1) 0%, rgba(2, 86, 162, 0.05) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: blob-animate 15s infinite alternate;
}

.rotate-2 {
    transform: rotate(2deg);
    transition: var(--transition-smooth);
    z-index: 1;
}

.rotate-2:hover {
    transform: rotate(0deg) scale(1.02);
}

@keyframes blob-animate {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    }
}

.award-list .p-2,
.award-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    background: rgba(118, 188, 67, 0.08) !important;
    border-radius: 50%;
    color: var(--accent-green);
    transition: var(--transition-smooth);
}

.award-icon-circle {
    font-size: 1.5rem;
}

.award-item-v2:hover .award-icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-list h6,
.award-details h4 {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 700;
}

.award-details h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

/* Fellowship Banner Section */
.fellowship-banner-section {
    padding: 0 !important;
}

/* .fellowship-banner-wrapper {
    min-height: 400px;
} */

.fellowship-col {
    flex: 1;
    min-width: 200px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fellowship-col:hover {
    flex: 2.5;
    z-index: 5;
}

.vertical-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: rgba(2, 86, 162, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.vertical-label span {
    transform: rotate(-90deg);
    white-space: nowrap;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fellowship-col:nth-child(even) .vertical-label {
    background: rgba(118, 188, 67, 0.85);
}

.fellowship-col:hover .vertical-label {
    width: 60px;
}

.fellowship-content {
    z-index: 2;
    background: linear-gradient(transparent, rgba(2, 86, 162, 0.9));
    width: 100%;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 992px) {
    .fellowship-content {
        padding-left: 80px !important;
    }
}

.fellowship-col:hover .fellowship-content {
    transform: translateY(0);
}

.fellowship-content h5 {
    margin-bottom: 12px;
}

.fellowship-content p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}


/* Research & Publications */
.pub-card {
    transition: all 0.3s ease;
}

.pub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(2, 86, 162, 0.1) !important;
}

.bg-soft-primary {
    background: rgba(2, 86, 162, 0.08) !important;
}

.bg-soft-accent {
    background: rgba(118, 188, 67, 0.08) !important;
}

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

.text-accent-green {
    color: var(--accent-green) !important;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Presentations */
.pres-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(2, 86, 162, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pres-item::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 60px;
    width: 1px;
    height: calc(100% - 14px);
    background: rgba(2, 86, 162, 0.1);
    z-index: -1;
}

.pres-item:last-child::after {
    display: none;
}

.pres-item:hover .pres-icon-box {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.pres-details h6 {
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 86, 162, 0.2), transparent);
}

/* --- Presentation Cards V3 --- */
.pres-card-v3 {
    perspective: 1000px;
    transition: var(--transition-smooth);
}

.pres-card-inner {
    background: var(--white);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(2, 86, 162, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.pres-card-front {
    position: relative;
    z-index: 2;
}

.pres-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pres-icon-circle {
    width: 65px;
    height: 65px;
    background: rgba(2, 86, 162, 0.1);
    color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.5s ease;
}

.pres-icon-circle.accent {
    background: rgba(118, 188, 67, 0.1);
    color: var(--accent-green);
}

.pres-icon-circle.gold {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.pres-year-badge {
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(2, 86, 162, 0.2);
}

.pres-card-v3:hover .pres-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(2, 86, 162, 0.12);
    border-color: var(--primary-blue);
}

.pres-card-v3:hover .pres-icon-circle {
    transform: scale(1.1) rotate(10deg);
    background: var(--primary-blue);
    color: var(--white);
}

.pres-card-v3:hover .pres-icon-circle.accent {
    background: var(--accent-green);
}

.pres-card-v3:hover .pres-icon-circle.gold {
    background: #ffc107;
}

.pres-card-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(2, 86, 162, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.6s ease;
}

.pres-card-v3:hover .pres-card-overlay {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(2, 86, 162, 0.06) 0%, transparent 70%);
}

.pres-meta i {
    font-size: 0.9rem;
}

.fw-500 {
    font-weight: 500;
}

/* --- Testimonials Section (Modern & Attractive) --- */
.testimonials-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-blue) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 45px rgba(2, 86, 162, 0.05);
    border: 1px solid rgba(2, 86, 162, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    margin: 15px;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(2, 86, 162, 0.1);
    border-color: rgba(2, 86, 162, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(2, 86, 162, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
}

.author-tag {
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(2, 86, 162, 0.04);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(2, 86, 162, 0.08);
    transform: scale(1.1) rotate(-10deg);
}

/* Swiper Pagination Customization */
.testimonialSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    opacity: 0.2;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

.testimonialPageSwiper .swiper-slide {
    height: auto !important;
}

.testimonialPageSwiper .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Prevent Bootstrap from adding a gap (padding-right) to the body when modal opens */
body.modal-open {
    padding-right: 0 !important;
    overflow: auto !important;
    /* Optional: keeps the page scrollable to completely prevent shift */
}

/* Hide scrollbar for the modal itself to remove the uncommon scrollbar from the side */
#appointmentModal::-webkit-scrollbar {
    display: none;
}

#appointmentModal {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: var(--primary-blue);
}

.final-cta-text {
    max-width: 800px;
}

.btn-text-primary {
    color: var(--primary-blue) !important;
}

/* Editorial Board Section */
.editorial-board-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: 36px;
    align-items: stretch;
    padding: 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(2, 86, 162, 0.06), rgba(118, 188, 67, 0.06));
    border: 1px solid rgba(2, 86, 162, 0.08);
    box-shadow: 0 18px 48px rgba(2, 86, 162, 0.08);
}

.editorial-board-heading {
    position: relative;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-board-heading::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
}

.editorial-board-list {
    display: grid;
    gap: 16px;
}

.editorial-board-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--accent-green);
    box-shadow: 0 10px 26px rgba(2, 86, 162, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.editorial-board-item:nth-child(even) {
    border-left-color: var(--primary-blue);
}

.editorial-board-item:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 34px rgba(2, 86, 162, 0.11);
}

.editorial-board-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 86, 162, 0.08);
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.editorial-board-item:nth-child(even) .editorial-board-icon {
    background: rgba(118, 188, 67, 0.12);
    color: var(--accent-green);
}

.editorial-board-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .editorial-board-wrap {
        grid-template-columns: 1fr;
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .editorial-board-wrap {
        padding: 22px;
        border-radius: 18px;
    }

    .editorial-board-item {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 16px;
    }

    .editorial-board-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}


 .publicationSwiper {
        overflow: hidden;
    }

    .publicationSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .publicationSwiper .swiper-slide {
        height: auto;
    }

    .publication-swiper-prev,
    .publication-swiper-next {
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 50%;
        background: var(--primary-blue);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
    }

    .publication-swiper-prev:hover,
    .publication-swiper-next:hover {
        background: var(--accent-green);
        transform: translateY(-2px);
    }

    .publication-swiper-prev.swiper-button-disabled,
    .publication-swiper-next.swiper-button-disabled {
        opacity: 0.45;
        cursor: not-allowed;
        transform: none;
    }

    .publication-swiper-pagination {
        width: auto !important;
        min-width: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .publication-swiper-pagination .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        background: rgba(2, 86, 162, 0.35);
        opacity: 1;
    }

    .publication-swiper-pagination .swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 999px;
        background: var(--accent-green);
    }

    .national-agenda {
        position: relative;
        max-width: 1050px;
        margin: 0 auto;
    }

    .national-agenda::before {
        content: "";
        position: absolute;
        top: 12px;
        bottom: 12px;
        left: 28px;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-blue), var(--accent-green));
        border-radius: 999px;
        opacity: 0.32;
    }

    .national-agenda-item {
        position: relative;
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 18px;
        padding: 0 0 28px;
    }

    .national-agenda-item:last-child {
        padding-bottom: 0;
    }

    .national-agenda-marker {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: var(--white);
        border: 3px solid var(--primary-blue);
        color: var(--primary-blue);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        box-shadow: 0 10px 26px rgba(2, 86, 162, 0.14);
        z-index: 2;
    }

    .national-agenda-item:nth-child(even) .national-agenda-marker {
        border-color: var(--accent-green);
        color: var(--accent-green);
    }

    .national-agenda-content {
        padding: 0 0 28px;
        border-bottom: 1px solid rgba(2, 86, 162, 0.12);
    }

    .national-agenda-item:last-child .national-agenda-content {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .national-agenda-topline {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .national-agenda-year {
        color: var(--accent-green);
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .national-agenda-event {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-blue);
        font-size: 0.86rem;
        font-weight: 800;
    }

    .national-agenda-title {
        color: var(--primary-blue);
        font-weight: 800;
        margin-bottom: 10px;
    }

    .national-agenda-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .national-agenda-meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

/* Research publications slider */
.research-presentations-section .publicationSwiper {
    width: 100%;
    overflow: hidden;
    padding-inline: 2px;
}

.research-presentations-section .publicationSwiper .swiper-wrapper {
    align-items: stretch;
}

.research-presentations-section .publicationSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.research-presentations-section .publicationSwiper .pub-card {
    width: 100%;
    min-height: 320px;
}

.thesis-highlight {
    position: relative;
    padding: 28px 30px 28px 34px;
    border-left: 5px solid var(--accent-green);
    background: linear-gradient(90deg, rgba(2, 86, 162, 0.06), rgba(118, 188, 67, 0.05));
    box-shadow: 0 14px 36px rgba(2, 86, 162, 0.08);
    border-radius: 0 18px 18px 0;
}

.thesis-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(2, 86, 162, 0.18);
    flex-shrink: 0;
}

.thesis-highlight-list {
    list-style: none;
    padding-left: 0;
    line-height: 1.9;
    font-size: 1.05rem;
}

.thesis-highlight-list li {
    position: relative;
    padding-left: 30px;
}

.thesis-highlight-list li + li {
    margin-top: 12px;
}

.thesis-highlight-list li::before {
    content: "";
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 5px rgba(118, 188, 67, 0.14);
}

.conference-title {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    letter-spacing: 0.02em;
}

.conference-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(460px, 100%);
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green) 0%, rgba(118, 188, 67, 0.42) 65%, rgba(2, 86, 162, 0.08) 100%);
    border-radius: 999px;
}

.conference-list {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 58px;
}

.conference-list::before {
    content: "";
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 18px;
    width: 2px;
    background: rgba(2, 86, 162, 0.32);
}

.conference-row {
    position: relative;
    display: grid;
    grid-template-columns: 116px 108px minmax(0, 1fr) 210px;
    align-items: center;
    min-height: 104px;
    margin-bottom: 24px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(2, 86, 162, 0.11);
    overflow: visible;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.conference-row:last-child {
    margin-bottom: 0;
}

.conference-row::before {
    content: "";
    position: absolute;
    left: -47px;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-green);
    transform: translateY(-50%);
    z-index: 2;
}

.conference-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(2, 86, 162, 0.16);
}

.conference-index {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    padding: 0 22px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0b6fb6 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.conference-icon {
    width: 92px;
    height: 92px;
    margin-left: -18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent-green);
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: -8px 0 0 rgba(118, 188, 67, 0.86), 0 10px 26px rgba(2, 86, 162, 0.12);
    z-index: 2;
}

.conference-main {
    position: relative;
    padding: 0 28px;
}

.conference-main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 2px;
    background: rgba(118, 188, 67, 0.72);
}

.conference-main h5 {
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 900;
    line-height: 1.25;
}

.conference-main p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.conference-main p::before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-blue);
    margin-right: 10px;
}

.conference-date {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 18px 26px;
    background: #eef7ff;
    color: var(--primary-blue);
    font-weight: 800;
    text-align: center;
    border-left: 1px solid rgba(2, 86, 162, 0.08);
}

.conference-date::after {
    content: "";
    position: absolute;
    top: 0;
    right: -28px;
    width: 30px;
    height: 100%;
    background: var(--primary-blue);
    clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%, 30% 50%);
}

.conference-date i {
    color: var(--primary-blue);
    font-size: 1.65rem;
}

.conference-date span {
    display: block;
}

.publication-swiper-controls {
    min-height: 48px;
}

.publication-swiper-prev,
.publication-swiper-next {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.publication-swiper-prev:hover,
.publication-swiper-next:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.publication-swiper-prev.swiper-button-disabled,
.publication-swiper-next.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.publication-swiper-pagination {
    position: static;
    width: auto !important;
    min-width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.publication-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: rgba(2, 86, 162, 0.35);
    opacity: 1;
}

.publication-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background: var(--accent-green);
}

@media (max-width: 767.98px) {
    .research-presentations-section .publicationSwiper .pub-card {
        min-height: auto;
    }

    .thesis-highlight {
        padding: 24px 22px;
        border-radius: 0 14px 14px 0;
    }

    .conference-list {
        padding-left: 38px;
    }

    .conference-list::before {
        left: 13px;
    }

    .conference-row {
        grid-template-columns: 76px minmax(0, 1fr);
        min-height: 0;
        border-radius: 16px;
        overflow: hidden;
    }

    .conference-row::before {
        left: -35px;
    }

    .conference-index {
        min-width: 76px;
        padding: 22px 12px;
        font-size: 1.35rem;
        border-radius: 16px 0 0 0;
    }

    .conference-icon {
        display: none;
    }

    .conference-main {
        padding: 22px 18px;
    }

    .conference-main::before {
        display: none;
    }

    .conference-date {
        grid-column: 1 / -1;
        min-height: 72px;
        flex-direction: row;
        border-left: 0;
        border-top: 1px solid rgba(2, 86, 162, 0.08);
    }

    .conference-date::after {
        display: none;
    }
}
