/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.95
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */


body, p, span {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
/*     font-family: 'Playfair Display'; */
	font-family:'Outfit', sans-serif !important;
    color:#00387c;
    line-height: 1.3 !important;
    letter-spacing: 0.5px;
}
section {
    overflow: hidden;
}

p.about-text {
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #525252eb;
}
img.img-fluid.logo {
    width: 50%;
}
/* Topbar-section */

section.top-bar-section {
    background: #00387c;
    padding: 8px 0;
}
section.top-bar-section p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.top-bar {
    color: #fff;
}

/* Hero-section */


.text-light-teal { color: #a5c3c3; }
.tracking-widest { letter-spacing: 0.15em; }
.z-2 { z-index: 2; }

.pharma-hero {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
}

section.pharma-hero .about-heading {
    color: #fff;
}

.carousel-item {
    background-image: var(--bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(253 254 248 / 30%);
}

.video-play-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.3s ease;
}
a.btn.btn-outline-dark {
    background-color: #da000600;
    color: #00387c;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #58a23d;
}
a.btn.btn-outline-dark:hover{
	background-color: #00387c;
	color:#fff;
	border:none;
}

.video-play-btn:hover {
    background-color: #eee;
    transform: scale(1.1);
}

.carousel-indicators-custom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.slide-indicator {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
}
section.pharma-hero span.about-us {
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.1em;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.indicator-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    /* width: 0% !important; */
    background: #58a23d;
    transition: width 0.3s ease;
}
.ctrl-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}
section.pharma-hero.p-0.overflow-hidden p.about-text {
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #ffffffeb;
}
@media (max-width: 991px) {
    .pharma-hero {
        height: auto;
        padding: 100px 0;
    }

    .carousel-indicators-custom {
        bottom: 15px;
    }
}

/* About-us */

section.about-section {
    padding: 70px 0 0 0;
}
span.about-us {
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.1em;
    letter-spacing: 0.1em;
    color: #58a23d;
    text-transform: uppercase;
}
.about-heading {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    color: #00387c;
    line-height: 1.3;
    font-size: 39px;
}
.about-heading-text {
    font-weight: 500;
    color: #00387c;
    font-family: 'Outfit', sans-serif !important;
    font-size: 23px;
}
.about-text {
    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.custom-img-height {
    height: auto;
    object-fit: cover;
    border-radius: 18px;
}

.ms-n2 {
    margin-left: -10px !important;
}
.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.review-card {
    background: #efefef;
    border-radius: 9px;
    padding: 15px 43px 15px 32px;
    margin: 0 -10px 20px 0;
}

/* .avatar-plus {
    width: 40px;
    height: 40px;
    font-size: 12px;
    font-weight: bold;
    background: #0094da;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
} */
.avatar-plus {
    width: 40px;
    height: 40px;
    font-size: 12px;
    font-weight: bold;
    background: #00387c !important;
    display: flex !important;
}
@media (max-width: 991px) {
    .col-6.pt-5 {
        padding-top: 0 !important;
    }

    .about-heading {
        font-size: 26px;
    }
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: #58a23d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.main-img {
    height: 600px;
    object-fit: cover;
}
.contact-badge-container {
    position: absolute;
    bottom: 30px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rotating-text {
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.badge-center-icon {
    position: absolute;
    background: #a3a38e;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .contact-badge-container {
        right: 20px;
        width: 100px;
        height: 100px;
    }
}
section.why-choose-us {
    padding: 70px 0 0 0;
}
/* Services-section */

section.services-section {
    padding: 70px 0 0 0;
}

.service-card.reveal-on-hover {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eee;
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 1;
}

.service-card.reveal-on-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;

    opacity: 1; 
    transform: scale(1);
    z-index: -2;
}

.service-card.reveal-on-hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 71 71 / 90%) 30%, transparent 100%);
    opacity: 1;
    transition: 0.4s ease;
    z-index: -1;
}

.service-icon i {
    color: #ffffff;
    transition: 0.4s ease;
    padding: 20px 0 0 0;
}

.service-card .about-heading-text,
.service-card .card-description,
.service-card .learn-more-link {
    color: #ffffff;
}
p.about-text.card-description {
    color: #fff !important;
}

.learn-more-link {
    border-bottom: 2px solid #ffffff;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card:hover::after {
    background: linear-gradient(to top, rgba(0, 71, 71, 0.8) 20%, transparent 90%);
}

@media (max-width: 768px) {
    .service-card.reveal-on-hover {
        height: auto;
        min-height: 350px;
    }
}

.feature-icon-box:hover {
    width: 50px;
    height: 50px;
    background-color:#00387c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Process-section */

section.process-section {
    background: #f5f5f5;
    margin: 70px 0 0 0;
    padding: 50px 0;
}
.process-wrapper {
    position: relative;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-box {
    width: 100px;
    height: 100px;
    background-color:#003856;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.step-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
}

@media (min-width: 768px) {
    .step-down {
        margin-top: 80px;
    }
    .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 30px;
        right: -60px; 
        width: 215px;
        height: 100px;
        background-image: url('https://hivends.org/accesslifescience/site2/wp-content/uploads/2026/04/how-work-step-arrow.png'); 
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
        pointer-events: none;
    }

    .process-step.step-down:not(:last-child)::after {
        transform: scaleY(-1);
        top: 20px;
    }
}

@media (max-width: 767px) {
    .process-step::after {
        display: none;
    }
    .step-box {
        margin: 0 auto;
    }
    .process-step {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Product-crousel */

section.segments-section {
    position: relative;
    padding: 65px 0 70px 0;
    background: #00387c;
    margin: 70px 0 0 0;
}
.arrow-btn i{
	position:absolute;
	bottom:60px;
}
.overlay {
    background: #eeeeeec2;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}
.product-card {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* Contact Us */

section.contact-section {
    padding: 65px 0 65px 0;
    background: #00387c;
}
section.contact-section p.about-text {
    color: #fff !important;
}
.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(226, 255, 111, 0.4); 
    outline: none;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
}
a.btn.btn-outline-dark i {
    background:#58a23d;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot.active {
    background: #e2ff6f;
    width: 25px;
    border-radius: 10px;
}

.view-all-btn {
    background-color: #00387c;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #58a23d !important;
    letter-spacing: 0.6px;
}
.view-all-btn:hover {
	background: #58a23d !important;
    border: none;
    color: #fff;
}
.view-all-btn .arrow-icon {
    background:#58a23d;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-all-btn .arrow-icon:hover {
    background: #00387c !important;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991px) {
    .contact-image-card {
        height: 400px !important;
        margin-top: 30px;
    }
}

/* CTA section */

section.cta-section {
    padding: 65px 0 0 0;
}
.container.cta {
    background: #00387c;
    border-radius: 22px;
}

/* Blog section */

section.blog-section {
    padding: 70px 0 100px 0;
}
.blog-img-wrapper {
    transition: all 0.5s ease;
    cursor: pointer;
}

.blog-img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.blog-title {
    transition: color 0.3s ease;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card:hover .blog-title {
    color: #00387c !important; 
}

.view-article {
    position: relative;
    padding-bottom: 5px;
}

.view-article::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color:#58a23d;
    transition: width 0.3s ease;
}

.blog-card:hover .view-article::after {
    width: 100%;
}

@media (max-width: 768px) {
    .view-all-btn {
        margin-top: 20px;
    }
}

/* Footer-section */

section.footer-section {
    background: #00387c;
    padding: 20px 0 35px 0;
    position: relative;
    overflow: unset !important;
}
.footer-contact {
    background: #58a23d;
    padding: 26px 0 0 81px;
    border-radius: 50px;
    position: relative;
    top: -54px;
}
img.img-fluid.footer-img {
    width: 30%;
}
h4.footer-links {
    font-size: 26px;
    font-weight: 700;
}
iframe {
    width: 100%;
    border-radius: 4px;
    height: 40%;
}
.footer-contact ul.list-unstyled.text-white li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 33.7px !important;
}
 ul.list-unstyled.text-white li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 33.7px !important;
}
.footer-contact i {
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #00387c;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 0 7px 0 0;
}
.footer-contact-info {
    border-right: 1px solid #ffffffad;
}
.row.custom-border {
    border-bottom: 1px solid #ffffffad;
}
.foooter-social-icons i {
    color: #ffffff;
    font-size: 37px;
}

/* Faq-section */

section.faq-section {
    background-image: linear-gradient(rgb(0 48 73 / 87%), rgb(0 48 73 / 70%)), url(https://hivends.org/accesslifescience/site2/wp-content/uploads/2026/04/mission-alleviate-scaled.avif);
    background-size: cover;
    background-position: center;
    padding: 65px 0;
}
.faq-box {
    background: #003049;
    padding: 26px 55px;
    width: 60%;
    border-radius: 8px;
}

/* Testimonial-section */

section.testimonial-section {
    padding: 70px 0 52px 0;
}
.review-summary-card {
    background-color: #00387c;
    border: 1px solid #eee;
    color: #fff;
}

.stars i {
    color: #f2f2f2e8;
    font-size: 1.2rem;
    margin: 0 2px;
}

.user-avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.user-avatars .avatar.count {
    background-color: #58a23d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}
.client-img {
    width: 220px !important;  
    height: 220px;
    object-fit: cover;
}

.testimonial-card {
    min-height: 280px;
    border: 1px solid #efefef;
    margin: 53px 0 0 0;
}

.testimonial-slider .owl-dots {
    text-align: right !important;
    margin-top: 20px !important;
}

.testimonial-slider .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #d1d1d1 !important;
    transition: all 0.3s ease;
}

.testimonial-slider .owl-dot.active span {
    width: 25px !important;
    background: #a3a38e !important;
    border-radius: 10px !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #00387c !important;
}


/* Responsive css */
@media (max-width: 767px) {
	
section.top-bar-section {
    display: none;
}
header.header-section a.view-all-btn {
    display: none;
}
	a.video-play-btn {
    display: none;
}
	.carousel-indicators-custom {
    display: none;
}
	span.text-uppercase.small.tracking-widest.text-white {
    display: none;
}
section.pharma-hero.p-0.overflow-hidden a.view-all-btn {
    margin: 0 0 48px 0;
}
	.pharma-hero {
    min-height: 0px; 

}
	section.segments-section {
    padding: 65px 0 15px 0;
}
	section.process-section {
    padding: 50px 0 0 0;
		margin:0;
}
.faq-box {
    width: 100%;
}
	.testimonial-card {
    margin:0 0 0 0;
}
	.owl-theme .owl-dots .owl-dot {
    display: none;
}
.footer-contact {
    background: #58a23d;
    padding: 18px 0 0 33px;
    border-radius: 50px;
    position: relative;
    top: -66px;
}
	h2.inner-heading {
    font-size: 33px !important;
}
	.footer-contact ul.list-unstyled.text-white li a {
     margin: 0 0 0 0;
}
	iframe {
    width: 100% !important;
}
	.review-card {
    padding: 15px;
    width: 100%;
}
	header.header-section {
    padding: 15px 0 0 0;
}
	.col-md-6.col-6.pt-5 img {
    display: none !important;
}
}

/* Inner-pages css */
h2.about-heading {
    font-weight: 700;
    line-height: 44px;
}
span.inner-main-text {
    font-size: 33px !important;
    font-weight: 700;
    color: #58a23d;
}
ul.about-points {
    list-style: none;
    padding: 0;
}
ul.about-points li {
    font-size: 16px !important;
    font-weight: 600;
    color: #272727;
}
ul.about-points i {
    color: #58a23d;
}
.custom-card.text-center {
    background: #ededed;
    padding: 35px 20px 14px 20px;
    border-radius: 10px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 210, 0);
}
.card-icon i {
    font-size: 39px !important;
   color: #58a23d;
}
h5.card-title {
    font-weight: 700;
    color: #000000;
    font-size: 21px;
    padding: 0 0 6px 0;
}
.card-icon-large i {
    background: #e9e7e7;
    padding: 9px 0 0 0;
    font-size: 32px !important;
    border-radius: 46px;
    color: #c62828;
    width: 50px;
    height: 50px;
    align-items: center;
}
.card-icon-large i {
    background: #e2f2dc;
    padding: 9px 0 0 0;
    font-size: 32px !important;
    border-radius: 46px;
    color: #58a23d;
    width: 50px;
    height: 50px;
    align-items: center;
}
ul.list-unstyled i {
    color: #58a23d;
    font-size: 24px !important;
}
section.innerpages {
    padding: 50px 0;
}
p{
	    font-family: Arial, sans-serif;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
	letter-spacing: 0.4px;
}

h1.pagetitle {
    color: #fff;
}
span.breadcrumb_new a {
    text-decoration: none;
}
img.img-fluid.contact-img {
    border-radius: 16px;
}