:root {
    --primary-dark-blue: #1a2a40; /* Deep, professional blue */
    --secondary-light-blue: #007bff; /* Brighter accent blue */
    --accent-gold: #FFD700; /* Subtle gold accent for highlights */
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-off-white: #f8f8f8; /* Slightly off-white for section separation */
    --border-subtle: rgba(0, 0, 0, 0.05);
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-off-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    color: var(--primary-dark-blue);
}

/* Adjusted font weights for headings */
h1 { font-size: 3.8rem; font-weight: 700; }
h2 { font-size: 3rem; font-weight: 600; }
h3 { font-size: 2.2rem; font-weight: 500; }
h4 { font-size: 1.8rem; font-weight: 500; }
h5 { font-size: 1.4rem; font-weight: 400; }
h6 { font-size: 1.1rem; font-weight: 400; }


/* Top Bar Styling */
.top-bar {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    padding: 0.7rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1030;
}

.top-bar a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accent-gold);
}

/* Navbar Styling */
.navbar {
    background-color: var(--bg-light);
    box-shadow: 0 5px 25px var(--shadow-light);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--primary-dark-blue) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
    margin-right: 12px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem !important;
    color: var(--text-dark) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light) !important;
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    box-shadow: 0 5px 18px rgba(0, 123, 255, 0.4);
    transform: translateY(-3px);
}

/* Gradient Heading Styles */
.gradient-heading {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section Styling (General) */
.hero-section {
    padding-top: 5px;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    position: relative;
    overflow: hidden;
}

/* Services Page Hero Section Specific Styling (also used for other sub-pages) */
.services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x600/1a2a40/ffffff?text=Clinical+Research+Services') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.services-hero-section h1 {
    color: #fff;
    font-size: 3.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.services-hero-section p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.services-hero-section .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-top: 1.5rem;
}

.services-hero-section .breadcrumb-item {
    font-size: 1rem;
}

.services-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.services-hero-section .breadcrumb-item a:hover {
    color: var(--accent-gold) !important;
}

.services-hero-section .breadcrumb-item.active {
    color: var(--accent-gold) !important;
}


.hero-slider-container {
    height: 600px;
    background-color: var(--bg-light);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-medium);
    border: 1px solid var(--border-subtle);
}

.owl-carousel .item {
    height: 600px;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.owl-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(26, 42, 64, 0.8);
    color: var(--text-light);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.owl-caption h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.owl-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-right-images {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-right-images img {
    width: 100%;
    height: calc(50% - 15px);
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-medium);
    border: 1px solid var(--border-subtle);
}

/* Section Padding and Separation */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border-subtle);
}
section:last-of-type {
    border-bottom: none;
}

/* Alternate background for better separation */
#about, #clients, #testimonials, #pharma-clients, #med-device-clients, #cro-collaborators, #academic-collaborators, #testimonials-content, #news-section, #job-openings, #job-detail-content {
    background-color: var(--bg-light);
}
#services, #collaborators, #news-events, #contact, #what-we-do, #why-choose-us, #employee-directory, #service-detail-content, #hospital-collaborators, #biotech-clients, #events-section, #why-join-us {
    background-color: var(--bg-off-white);
}

/* Image Shadow for all content images */
img:not(.navbar-brand img, .owl-carousel .item img, .hero-right-images img) {
    box-shadow: 0 10px 30px var(--shadow-light);
    border-radius: 15px;
    border: 1px solid var(--border-subtle);
}

/* About Section */
#about .about-content {
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-subtle);
}
#about h3 {
    color: var(--primary-dark-blue);
}
#about h4 {
    color: var(--secondary-light-blue);
}
#about ul li i {
    color: var(--secondary-light-blue);
}

/* Services Section (for index.php, if used as brief) - Keeping original for now */
.service-card {
    background-color: var(--bg-light);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--border-subtle);
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.service-card .icon {
    font-size: 4.5rem;
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.service-card h5 {
    color: var(--primary-dark-blue);
    font-weight: 600;
}

/* NEW Service Card Styling for services.php */
.service-card-new {
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-light-blue);
}

.service-card-new .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.service-card-new .icon {
    font-size: 2.5rem;
    color: var(--text-light);
}

.service-card-new h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-new p {
    font-size: 0.95rem;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.btn-outline-primary-custom {
    color: var(--secondary-light-blue);
    border-color: var(--secondary-light-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-primary-custom:hover {
    background-color: var(--secondary-light-blue);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-outline-secondary-custom {
    color: var(--primary-dark-blue);
    border-color: var(--primary-dark-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-outline-secondary-custom:hover {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(26, 42, 64, 0.4);
}


/* Clients & Collaborators Sections */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.logo-grid img {
    max-width: 180px;
    height: auto;
    filter: grayscale(60%);
    opacity: 0.85;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
    margin: 30px;
    box-shadow: 0 8px 20px var(--shadow-light);
    border-radius: 10px;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* News & Events Section */
.news-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--border-subtle);
}

.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.news-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.news-card-body {
    padding: 2.2rem;
}
.news-card .card-title {
    font-weight: 700;
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
}
.news-card .btn {
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    border: none;
    color: var(--text-light);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}
.news-card .btn:hover {
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.5);
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--bg-off-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}
.testimonial-card .quote-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}
.testimonial-card p.quote-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}
.testimonial-card .author-name {
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.testimonial-card .author-title {
    font-size: 0.95rem;
    color: var(--text-muted);
}
/* Owl Carousel specific for testimonials */
#testimonials .owl-carousel .owl-item {
    padding: 15px;
}
#testimonials .owl-carousel .owl-nav button.owl-prev,
#testimonials .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-dark-blue) !important;
    color: var(--text-light) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#testimonials .owl-carousel .owl-nav button.owl-prev:hover,
#testimonials .owl-carousel .owl-nav button.owl-next:hover {
    opacity: 1;
    background: var(--secondary-light-blue) !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
}
#testimonials .owl-carousel .owl-nav button.owl-prev {
    left: -30px;
}
#testimonials .owl-carousel .owl-nav button.owl-next {
    right: -30px;
}
#testimonials .owl-carousel .owl-dots {
    margin-top: 30px;
}
#testimonials .owl-carousel .owl-dot span {
    background: var(--text-muted) !important;
    opacity: 0.5;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}
#testimonials .owl-carousel .owl-dot.active span {
    background: var(--secondary-light-blue) !important;
    opacity: 1;
}

/* Added explicit visibility and min-height for Owl Carousel */
.owl-carousel {
    display: block !important;
    opacity: 1 !important;
    min-height: 300px;
}

/* Career Section (content remains, but styling adjusted) */
#career {
    background-color: var(--bg-light);
}
.job-opening {
    background-color: var(--bg-off-white);
    border-left: 6px solid var(--secondary-light-blue);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.job-opening::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 123, 255, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.job-opening:hover::before {
    opacity: 1;
}
.job-opening:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}
.job-opening h4 {
    color: var(--primary-dark-blue);
    font-weight: 600;
    font-size: 1.6rem;
}
.job-opening .btn {
    position: relative;
    z-index: 2;
    border-color: var(--text-muted);
    color: var(--text-muted);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}
.job-opening .btn:hover {
    background-color: var(--secondary-light-blue);
    color: var(--text-light);
    border-color: var(--secondary-light-blue);
}
.btn-primary-gradient {
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    border: none;
    color: var(--text-light) !important;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}
.btn-primary-gradient:hover {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.6);
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Contact Section */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-medium);
    height: 550px;
    border: 1px solid var(--border-subtle);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-form .form-control {
    border-radius: 15px;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}
.contact-form .form-control:focus {
    border-color: var(--secondary-light-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}
.contact-details ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.contact-details ul li i {
    color: var(--secondary-light-blue);
    width: 30px;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    padding: 5rem 0;
    border-top: 8px solid var(--secondary-light-blue);
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}
footer .list-unstyled li {
    margin-bottom: 10px;
    color: var(--text-light);
}
footer .small.text-muted {
    color: var(--text-light) !important;
}
footer p.mb-0.small.text-muted {
    color: var(--text-light) !important;
}

footer .social-icons a {
    font-size: 1.8rem;
    margin: 0 12px;
    color: var(--text-light);
    transition: color 0.3s ease;
}
footer .social-icons a:hover {
    color: var(--accent-gold);
}

/* Scroll to top button */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    border: none;
    outline: none;
    background: linear-gradient(45deg, var(--secondary-light-blue), var(--primary-dark-blue));
    color: var(--text-light);
    cursor: pointer;
    padding: 20px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#scrollToTop:hover {
    background: linear-gradient(45deg, var(--primary-dark-blue), var(--secondary-light-blue));
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    .owl-carousel .item{
        height:350px;
    }

    .owl-carousel .item img {
        height: 350px;
        object-fit: cover;
        border-radius: 25px;
    }
    .hero-slider-container, .hero-right-images {
        height: auto;
    }
    .hero-right-images img {
        height: auto;
        margin-top: 1.5rem;
    }
    .hero-right-images {
        margin-top: 3rem;
    }
    .gradient-heading {
        font-size: 2.8rem;
    }
    section {
        padding: 6rem 0;
    }
    .top-bar .social-icons, .top-bar .contact-info {
        text-align: center !important;
        margin-top: 0.5rem;
        margin-left: 0 !important;
    }
    .top-bar .social-icons a {
        margin: 0 8px;
    }
    .navbar-brand {
        font-size: 1.6rem;
    }
    .navbar-brand img {
        height: 38px;
    }
    .nav-link {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem;
    }
    .service-card .icon {
        font-size: 3.5rem;
    }
    .logo-grid img {
        max-width: 140px;
        margin: 15px;
    }
    .news-card img {
        height: 200px;
    }
    .map-container {
        height: 400px;
    }
    .testimonial-card {
        padding: 2rem;
    }
    #testimonials .owl-carousel .owl-nav button.owl-prev,
    #testimonials .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        left: -10px;
        right: -10px;
    }

    /* Services Page Responsive Adjustments */
    .services-hero-section {
        min-height: 300px;
    }
    .services-hero-section h1 {
        font-size: 2.8rem;
    }
    .services-hero-section p.lead {
        font-size: 1.1rem;
    }
    .service-card-new {
        padding: 1.5rem;
    }
    .service-card-new .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    .service-card-new .icon {
        font-size: 2rem;
    }
    .service-card-new h5 {
        font-size: 1.3rem;
    }
    .service-card-new p {
        font-size: 0.9rem;
    }
}
@media (max-width: 767.98px) {
    .gradient-heading {
        font-size: 2.2rem;
    }
    .hero-section {
        padding-top: 5px;
    }
    .hero-slider-container, .hero-right-images {
        height: 350px;
    }
    .hero-right-images img {
        height: calc(50% - 8px);
    }
    .owl-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }
    .owl-caption h3 {
        font-size: 1.5rem;
    }
    .owl-caption p {
        font-size: 0.9rem;
    }
    .job-opening {
        padding: 1.5rem;
    }
    .job-opening h4 {
        font-size: 1.4rem;
    }
    .btn-primary-gradient {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
    .contact-form .form-control {
        padding: 0.8rem 1rem;
    }
    .contact-details ul li {
        font-size: 1rem;
    }
    .contact-details ul li i {
        font-size: 1.1rem;
    }
    footer {
        padding: 3rem 0;
    }
    footer .social-icons a {
        font-size: 1.3rem;
        margin: 0 8px;
    }

    /* Services Page Responsive Adjustments */
    .services-hero-section {
        min-height: 250px;
    }
    .services-hero-section h1 {
        font-size: 2.2rem;
    }
    .services-hero-section p.lead {
        font-size: 1rem;
    }
}

/* New Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px; /* Adjust based on your fixed header height */
    padding-top: 1rem; /* Space from the top of the section */
}

.sidebar-box {
    background-color: var(--bg-light); /* Light background for the card */
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light); /* Subtle shadow for depth */
    padding: 2.5rem;
    margin-bottom: 2rem; /* Space between sidebar boxes */
    border: 1px solid var(--border-subtle);
}

.sidebar-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-subtle);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Align with border-bottom */
    width: 60px; /* Accent line length */
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-light-blue), transparent);
}

.contact-info-sidebar li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-info-sidebar li i {
    color: var(--secondary-light-blue);
    width: 25px; /* Align icons */
    font-size: 1.1rem;
}

.related-links-list li {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-links-list li a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* Make the whole link clickable */
}

.related-links-list li a:hover {
    color: var(--secondary-light-blue);
}

.related-links-list li a i {
    color: var(--secondary-light-blue);
    font-size: 0.9rem;
}

.related-links-list li small {
    font-size: 0.85rem;
    color: var(--text-muted);
}
