@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://use.typekit.net/gmm3xfq.css");

body {
    font-family: "degular", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Anybody", sans-serif;
}

:root {
    --primary-color: #3383ce;
    --second-color: #BCDEFF;
    --grey-color: #797979;
    --black-color: #000000;
    --white-color: #ffffff;

}

/********** Global Styles **********/


.btn-blue {
    background-color: var(--primary-color);
    padding: 8px 20px;
    color: var(--white-color);
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
}

.btn-blue:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transform: translateY(-10px);

}

.btn-black {
    background-color: var(--black-color);
    padding: 8px 20px;
    color: var(--white-color);
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    font-size: 16px;
}

.btn-black:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-10px);

}

.btn i {
    font-size: 14px;
}


.subtitle {
    font-size: 20px;
    background-color: #f6f6f6;
    color: var(--black-color);
    border: 1px solid #d9d9d9;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
    max-width: fit-content;
    width: 100%;

}


/********** Navigation bar ************/
header.main-header {
    position: absolute;
    top: 10px;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: #000 !important;
    font-weight: 600;
}

.right-navs{display: flex; align-items: center;}

/* Search dropdown box */
.search-box .search-dropdown {
    width: 275px;
    border-radius: 10px;
}

.search-box .search-input-wrapper .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    box-shadow: none;
}

.search-box .search-input-wrapper .form-control:focus {
    border-color: #000;
    box-shadow: none;
    outline: none;
}

.search-box .close-search {
    background: #f3f3f3;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
}

.search-box .close-search:hover {
    background: #e5e5e5;
}

.search-box .btn-link {
    text-decoration: none;
}

.search-box .btn-link i {
    transition: 0.3s;
}

.search-box .btn-link:hover i {
    color: #000;
    transform: scale(1.1);
}

.search-box .search-dropdown {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*****Carousel Slider*****/

#carouselPharmaFormFinders .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 24rem;
    max-width: 600px;
    text-align: left;
    padding: 1.25rem;
    color: var(--black-color);
    z-index: 5;
}

#carouselPharmaFormFinders .carousel-caption h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--black-color);
    line-height: 1.2;
}

#carouselPharmaFormFinders .carousel-caption .banner-title {
    font-size: 18px;
    color: var(--black-color);
}

#carouselPharmaFormFinders .carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 25px;

}

#carouselPharmaFormFinders .carousel-caption span {
    color: var(--primary-color);
    font-weight: 600;
}

#carouselPharmaFormFinders .banner-btngroup {
    display: flex;
    justify-content: start;
    gap: 10px;
}

#carouselPharmaFormFinders .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #363636;
}

#carouselPharmaFormFinders .carousel-indicators .active {
    background-color: var(--white-color);
}
#carouselPharmaFormFinders .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* **Who We Are** */

.who-we-are .whoweare-content h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.who-we-are .whoweare-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

/* **Publications / About Us** */

.publication-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.publication-img img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.publication-img figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}


.publication-img:hover figcaption {
    background: rgba(0, 0, 0, 0);
    color: var(--black-color);
}

.publication-img:hover img {
    transform: scale(1.05);
}

/*  Highlight */

.trusted-section {
    background-color: var(--white-color);
}

.trusted-text hr {
    z-index: 0;
    border-color: #ddd;
}

.trusted-text span {
    font-size: 0.95rem;
    color: #555;
}

.trusted-section h2 {
    font-size: 52px;
    color: var(--black-color);
    font-weight: 500;
}

.text-highlight {
    color: var(--black-color);
    margin-left: -10px;
    font-size: 72px;
}

.trusted-section small {
    display: block;
    margin-top: 0.25rem;
    font-size: 16px;
    color: var(--black-color);
}

/* **Our Services** */

.our-services {
    padding: 50px 0;
    background-color: #ECF2FF;
}

.our-services h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.our-services .service-item {
    transition: all 0.5s ease-in-out;
    padding: 0px;
}

.our-services .service-item:hover {

    transform: translateY(-10px);
}

.our-services .service-item h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black-color);
    min-height: 55px;
}

.our-services .service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--black-color);
}

.our-services .btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    vertical-align: middle;
}

/* Our Practice Areas owl carousel navs */
.our-services .owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    transform: translateY(-50%);
    display: block !important;
}

.our-services .owl-nav .owl-prev,
.our-services .owl-nav .owl-next {
    background: transparent !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    cursor: pointer;
    position: absolute;
    font-size: 20px !important;
    color: var(--black-color) !important;
}

.our-services .owl-nav .owl-prev:hover,
.our-services .owl-nav .owl-next:hover {
    background-color: var(--primary-color) !important;
    color: var(--black-color) !important;
    border: none !important;
}

.our-services .owl-nav .owl-prev {
    left: -50px;
}

.our-services .owl-nav .owl-next {
    right: -50px;
}

/*** Why choose ***/

.why-choose {padding: 40px 0;}

.why-choose .why-choose-content {
    max-width: 630px;
    width: 100%;
    float: right;
}

.why-choose-img img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.why-choose .why-choose-content h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.why-choose .why-choose-content h2 span {
    color: var(--primary-color);
}

.why-choose .why-choose-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

/* **INDUSTRIES** */

.industries .container {
    background-color: var(--primary-color);
    padding: 40px;
}

.industries h2 {
    font-size: 42px;
    color: var(--white-color);
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.industries h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--white-color);
    font-weight: 500;
}

.industries p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-color);
}

.industries img {
    filter: brightness(0) invert(1);
    width: 60px;
    height: 60px;
    flex-shrink:0;
    object-fit: contain;
}


/* ** Case Studies** */



.case-studies .case-studies-content .casestudies-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 20px;
}

.case-studies .case-studies-content h4 {
    font-size: 28px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 15px;
}

.case-studies .case-studies-content p span {
    color: var(--black-color);
    font-weight: 500;
}

.case-studies .case-studies-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}


/* *** Testimonials *** */
.testimonials {
    background-image: url(../images/testimonials.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.testimonials .testimonial-item {
    background-color: var(--second-color);
    padding: 50px 70px;
}

.testimonials .testimonial-item img {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.testimonials .testimonial-item p {
    font-size: 26px;
    font-weight: 500;
    color: var(--black-color);
}

.testimonials .testimonial-item h5 {
    font-size: 16px;
    font-weight: 400;
    color: var(--black-color);
    margin-top: 15px;
}

/* Owl Carousel Dots  */
#testimonial-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--black-color) !important;
    border-radius: 50%;
    margin: 5px 6px;
    display: block;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}

#testimonial-slider .owl-dots .owl-dot.active span {
    background: transparent !important;
    border: 1px solid var(--black-color) !important;
}

#testimonial-slider .owl-dots {
    position: relative;
    margin-top: -35px;
    margin-left: 70px;
    z-index: 1000;
}

/* FAQ Section  */

.faqs h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.faqs .accordion-button:not(.collapsed),
.faqs .accordion-button:focus {
    background-color: transparent;
    color: var(--black-color);
    box-shadow: none;
}

.faqs .accordion-header span {
    font-size: 20px;
    color: var(--black-color);
    font-weight: 500;
}

.faqs .accordion-body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-color);
}

/* Plus / Minus Icon Style */
.faqs .accordion-button::after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f067";
    background-color: transparent !important;
    border: 1px solid #000;
    border-radius: 50%;
    color: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-image: none !important;
    transition: all 0.3s ease;
}

/* When accordion is open — show minus */
.faqs .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: transparent !important;
    border: 1px solid var(--black-color);
    color: var(--black-color);
}

/*  Talk to an expert today*/

.talk-expert-section {
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #000 50%, #000 100%);
}

.talk-expert {
    background-color: #3383CE;
    padding: 50px 0 40px;
}

.talk-expert h2 {
    font-size: 42px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.talk-expert p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-color);
    margin-bottom: 0px;
}

/* White background input fields */
.custom-input {
    background-color: var(--white-color) !important;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 0px;
    font-size: 16px;
    color: var(--black-color);
}

.custom-input::placeholder {
    color: var(--grey-color);
    font-weight: 400;
}

.talk-expert .btn:hover {
    box-shadow: none;
    border: 1px solid #ffffff;
}



/* Form transparent */

.es-form-2 form {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    max-width: 100% !important;
    margin:0 !important;
}

/* Field wrapper transparent */
.es-form-2 .es-field-wrap,
.es-form-2 .es-field-label {
    background: transparent !important;
    max-width: 100% !important;
    display: block !important;
}

/* Input transparent + full width */
.es-form-2 input[type="email"] {
    width: 100%;
    background-color: transparent !important;
    border: 1px solid #d1d5db; /* visible border */
    padding: 12px 14px;
    border-radius: 6px;
}

/* Button */
.es-form-2 input[type="submit"] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
}


div#es_form_f2-n1 {
    max-width: 100% !important;
}

/********Footer *******/
.footer {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer .footer-logo img {
    height: auto;
    width: 180px;
    margin-bottom: 20px;
}

.subscribe .newsletter-group {
    padding: 8px;
    background-color: #33333317;
}

.subscribe .email-input {
    border: none;
    background: transparent !important;
    color: #fff;
    padding: 0;
}

.subscribe .email-input:focus {
    outline: none;
    box-shadow: none;
}

.subscribe .subscribe-btn {
    margin-left: 15px;
    padding: 6px 20px;
    border-radius: 4px;
}

.subscribe .subscribe-btn:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    border: none;
}

.subscribe .subscribe-des {
    color: #7C7C7C;
    font-size: 14px;
    text-align: left;
}

.footer .footer-nav .nav-link {
    color: #7C7C7C !important;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .social-icon a {
    position: relative;
    padding-right: 12px;
    margin-right: 12px;
    text-decoration: none;
}

.footer .social-icon a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.footer .social-icon a:last-child::after {
    display: none;
}

/* ****Responsive css */
@media screen and (max-width: 1699px) and (min-width: 1400px) {
    #carouselPharmaFormFinders .carousel-caption {
        bottom: 9rem;
        left: 5%;
    }

}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .navbar-nav .nav-link {
        color: #000 !important;
        font-weight: 500;
        font-size: 16px;
    }
    .why-choose .why-choose-content {
    max-width: 545px;}
    #carouselPharmaFormFinders .carousel-caption {
        bottom: 3rem;
        left: 5%;
    }
.our-services .owl-nav .owl-prev {
    left: -5px;}

.our-services .owl-nav .owl-next {
    right: 20px;}
.our-services .owl-nav .owl-prev, .our-services .owl-nav .owl-next {
    background: #ffffff !important;
    border: 1px solid #000 !important;
}
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    #carouselPharmaFormFinders .carousel-caption {
    position: absolute;
    left: 5%;
    right: 15%;
    bottom: 5rem;
}
.navbar-nav li a { padding: 0 !important;}
.right-navs .btn-black {padding: 8px 10px !important;}
.why-choose .why-choose-content { max-width: 445px;}
.footer ul.nav.footer-nav li { margin: 0 -4px; padding: 0;}

#carouselPharmaFormFinders .carousel-caption h2, .who-we-are .whoweare-content h2, .our-services h2, .why-choose .why-choose-content h2, .faqs h2, .talk-expert h2, .inner-banner h1, .work-history h2, .awards-section h2, .affiliations-section h2, .journals .journals-content h2, .core-value h2  {
    font-size: 32px;}
.case-studies .case-studies-content h4 {font-size: 24px;}
.our-services .owl-nav .owl-prev { left: 0px;}
.our-services .owl-nav .owl-next { right: 24px;}
.our-services .owl-nav .owl-prev, .our-services .owl-nav .owl-next {
    background: #ffffff !important;
    border: 1px solid #000 !important;
}

}

@media screen and (max-width: 991px) and (min-width: 768px) {}

@media (min-width: 992px) {
    .search-box .dropdown-menu {
        min-width: 420px;
    }
}
@media screen and (max-width: 991px) {
      #carouselPharmaFormFinders .carousel-caption {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 3rem;}
    #carouselPharmaFormFinders .carousel-caption h2, .who-we-are .whoweare-content h2, .our-services h2, .why-choose .why-choose-content h2, .faqs h2, .talk-expert h2, .inner-banner h1, .core-value h2, .work-history h2, .awards-section h2, .affiliations-section h2, .journals .journals-content h2, .core-value h2 {
    font-size: 32px !important;}
    .case-studies .case-studies-content h4 { font-size: 24px;}
    .our-services .owl-nav .owl-prev {left: 0px;}

.our-services .owl-nav .owl-next { right: 24px;}
.our-services .owl-nav .owl-prev, .our-services .owl-nav .owl-next {
    background: #ffffff !important;
   border: 1px solid #000 !important;}
   .navbar-collapse { background-color: #ebf1ff !important; padding-bottom: 30px;}
   .subtitle{margin-bottom: 20px;}
   .right-navs{display: block; align-items: center; padding-left: 1rem;}
   .why-choose .why-choose-content {
    max-width: 100% !important;
    width: 100%;
    float: initial;
}
.footer-bottom { display: block;}
.footer-bottom li{margin: 10px 0;}
.work-history h2{padding-left: 0;}
.education img { float: left !important;}
.work-history h2 { margin-bottom: 0; padding-left: 0; padding-top: 20px;}

}
@media screen and (max-width: 767px) {
       .who-we-are .whoweare-content h2, .our-services h2, .why-choose .why-choose-content h2, .faqs h2, .talk-expert h2, .inner-banner h1, .core-value h2, .work-history h2, .awards-section h2, .affiliations-section h2, .journals .journals-content h2, .core-value h2 {
           font-size: 24px;
        margin-bottom: 0;
    }
       #carouselPharmaFormFinders .carousel-caption h2 {
        font-size: 18px !important;
        margin-bottom: 0;
    }
     #carouselPharmaFormFinders .carousel-item {
        height: 450px;
    }
    .education img{max-width: 300px !important}
    .top-bar {
        flex-direction: column;
        height: auto;
        padding: 5px;
        text-align: center;
    }

    .top-bar>.d-flex {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .top-bar span {
        font-size: 12px;
        line-height: 1.4;
    }

    .icon-box {
        border-left: none;
        padding: 5px;
    }

    .lang-select {
        font-size: 12px;
        height: auto;
    }

.search-box .dropdown-menu-end[data-bs-popper] { right: 0; left: 0 !important;}
.footer .footer-nav .nav-link { margin-bottom: 0; line-height: 1;}
.affiliations-section .row { padding: 0 20px 50px !important;}
.trusted-section h2, .trusted-section small{text-align: center;}
.trusted-section hr{margin: 0 !important;}
}

/* **About us page** */

.inner-banner {
    background-image: url(../images/inner-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white-color);
}

.inner-banner h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black-color);
}

.inner-banner h1 span {
    color: var(--primary-color);
}

.inner-banner li.breadcrumb-item a,
.breadcrumb-item.active {
    color: var(--black-color);
    text-decoration: none;
}

/* **core value** */
.core-value h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 30px;
}

.core-value .core-value-content {
    background-color: #F8F7F7;
    transition: all 0.5s ease-in-out;
}

.core-value .core-value-content img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.core-value .core-value-content:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

.core-value .core-value-content h4 {
    font-size: 24px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.core-value .core-value-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);

}

/* ** Work History** */

.work-history {
    background-color: #ECF2FF;
    padding: 50px 0;
    overflow: hidden;
}

.work-history h2 {
    font-size: 44px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 20px;

}

.work-history .work-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-history .work-history-list li {
    font-size: 18px;
    color: var(--black-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.work-history .work-history-list li::before {
    content: "\f0c8";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.work-history .card {
    background-color: transparent;
    border: none;
}

.work-history .card h5 {
    font-size: 22px;
    color: var(--black-color);
}

.work-history .card h5 span {
    color: var(--primary-color);
    font-size: 16px;

}

/* **Education** */
.education {
    padding: 50px 0;
}

.education .education-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.education .education-list li {
    font-size: 22px;
    color: var(--black-color);
    padding-left: 0px;
    margin-bottom: 15px;
    font-weight: 600;
}

.education .education-list li span {
    color: var(--primary-color)
}

.education img {
    max-width: 400px;
    float: right;
}

/* ***Awards** */


.awards-section .container {
    background-color: #F8F7F7;
    padding: 50px;
}

.awards-section h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.awards-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}

.awards-section .award-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    line-height: 1.6;
    color: var(--black-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.awards-section .award-item .num {
    font-weight: 600;
    font-size: 16px;
    min-width: 30px;
}

@media (max-width: 768px) {
  .awards-section .awards-grid {
        grid-template-columns: 1fr;
    }
    .awards-section .container {
    background-color: #F8F7F7;
    padding: 50px 20px;
}
}


/* **affiliations** */

.affiliations-section {
    background-image: url(../images/affiliations.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
}

.affiliations-section .row {
    background: var(--primary-color);
    color: #fff;
    padding: 0 0 50px;
    border-radius: 30px;
}

.affiliations-section h2 {
    font-size: 42px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 60px;
    padding: 10px 0;
}

.affiliations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.affiliations-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 20px;
    line-height: 1.8;
}

.affiliations-list li:last-child {
    border-bottom: none;
}

/* **Journals** */

.journals .journals-content {
    max-width: 630px;
    width: 100%;
    float: right;
}

.journals-img img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.journals .journals-content h2 {
    font-size: 42px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.journals .journals-content h2 span {
    color: var(--primary-color);
}

.journals .journals-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-color);
    margin-bottom: 20px;
}

/*Contact Us Page*/

.page-template-template-contact .contact-details p {
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: left;
    margin-bottom: 10px !important;
}

.page-template-template-contact .contact-details i {
    min-width: 18px;     
    font-size: 16px;
}

.page-template-template-contact .contact-details a {
    display: flex;
    line-height: 1.4;
    color:#000;
    justify-content: start;
}

/***Services Pages***/

.services-pages .card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.services-pages .card ul li i {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 4px; /* aligns icon with first line of text */
}

.services-pages .card ul li span {
    display: block;
    line-height: 1.6;
}

/* Post label text */
.category-case-studies .card p.text-muted {
    font-size: 18px;          
    color: #000 !important;  
    font-weight: 500;
}


.category-case-studies .card .btn {
    width: fit-content;
    max-width: max-content;
   
    display: flex;
    align-items: center;
    gap: 6px;
}
.category-case-studies .card h5 a {
    color: #000;
    font-size: 18px;      
    font-weight: 500;
    text-decoration: none;
}

.category-case-studies .card h5 a:hover {
    color: #000;          
    text-decoration: none;
}

