@import url('../fonts/font-style.css');

:root {
  --background-white: #ffffff;
  --white: #ffffff;
  --primary-color: #000508;
  --font-Inter-Sans: 'Inter';
  --btn-primary-bg: #135486;
  --btn-secondary-bg: #CFA859;
}
html{
position: relative;
}
body {
    margin: 0;
    padding: 0;
    position: relative;
    font-weight: normal;
    font-family: 'Inter';
    font-size: 18px;
}

a{
    color: #224CA0;
    text-decoration: none;
}
a:hover{
     text-decoration: none;
}
.top-header {
    margin: 0;
    display: block;
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 1030;
    background:#fff;  
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; 
}
html:has(.mfp-iframe-holder),
html:has(.mfp-zoom-out-cur){
    overflow: auto!important;
    margin:0!important;
}
.header-part-info {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.top-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color:#fff; 
}
.right-part {
    float: right;
}
.top-logo {
    max-width: 360px;
    float: left;
    margin: 0 56px 0 0;
    position: relative;
    border: 0 !important;
}
.top-logo a {
    padding: 0;
    margin-right: 0px;
    border: 0 !important;
}
.top-logo a img {
    max-width: 100%;
    border: 0;
}
.top-header .navbar {
    padding: 10px 16px;     
}
.top-header.fixed  .navbar{
    border-color: transparent;
}
.top-store-info {
    min-height: 57px;
    background-color: #EDFED8;
    -webkit-border-bottom-right-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-bottomright: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-top: -1px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    float: right;
}
.header-menu-part {
    float: right;
    clear: both;
    margin: 0 0;
}
#main-menu ul {
    margin: 0px;
    padding: 0;
    align-items: center;
    display: flex;
}
#main-menu ul li {
    padding: 0 10px;
    margin: 0;
	box-shadow: unset !important;
}
#main-menu ul li a {
    color:var(--primary-color);  
    font-family:'Inter';
    font-size: 18px;
    font-weight:400;
    line-height: normal;
    padding: 0 15px;
    text-decoration: none;
    transition: none !important;
  transform: none !important;
  animation: none !important;
}
#main-menu ul li a:hover {
    color: #224CA0;
}
/* #main-menu ul li.current-menu-item a{
    color: #224CA0;  
} */
i.fa-solid.fa-globe {
    color: #224CA0;
}


/***/

/* === MENU ITEM POSITIONING === */
.menu-item-has-children {
    position: relative;
}
.sub-menu .menu-item-has-children {
    position: relative;
}

/* === DROPDOWN DEFAULT STATE === */
.sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: #fff;
    padding: 0px 6px;
    min-width: 150px;
    z-index: 999;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.6);
    margin-top: 1rem !important;
}
.sub-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: #002F87;
    color:#fff;
    border-radius: 10px;
    padding: 0px 6px;
    z-index: 999;
      border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* === SUB-SUB POSITION (RIGHT) === */
.sub-menu .sub-sub-menu {
    top: 0;
    left: 100%;
    margin-left: 6px;
}

/* === SHOW ON HOVER === */
.menu-item-has-children:hover > .sub-menu,
.sub-menu .menu-item-has-children:hover > .sub-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* === NAV LINK STYLE INSIDE DROPDOWN === */
#main-menu .sub-menu li {
    margin: 12px 0;
    list-style-type: none;
}
#main-menu .sub-menu li a {
    color: #000508 !important;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 500;
    padding: 0 15px;
    text-decoration: none;
}

.dropdown-toggle-icon {
    margin-left: 5px;
}

@media (max-width: 992px) {
    #main-menu ul li {
        padding: 6px 15px;
    }

    #main-menu .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1 !important;
        visibility: visible !important;
        display: none; /* JS will control visibility */
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    #main-menu .dropdown-menu li a {
        color: #000;
        padding-left: 30px;
    }

    #main-menu .dropdown-toggle-icon {
        cursor: pointer;
    }

    .menu-item-has-children.active > .dropdown-menu {
        display: block;
    }
}

/* Submenu Items */

/* Animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/**/
/**main-footer**/
.main-footer {
    background-color: #fff;
    padding:30px 0;
    clear: both;
    width: 100%;
    position: relative;
    width: 100%;
    display: block;
}
.footer-logo-media img{
    max-width: 320px;
}
.footer-contact{
    justify-content: right;
    display: flex;
}
.footer-contact-info{
    max-width: 100%;
}
.footer-menu-list{padding-bottom: 15px;}
.footer-menu-list a{
    color: #242424;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height:30px;
    text-decoration: none;
}
.footer-menu-list a:hover {
    color: #224CA0;
}
.footer-scoial-info{
    margin: 0;
    padding: 0;
}
.footer-scoial-info ul{
    padding: 0;
    display: flex;    
    gap: 12px;
}
.footer-scoial-info ul li{
    list-style-type: none;
    display: inline-block;
    padding: 0;
    width: auto;   
}
.footer-copyright {
    display: block;
    position: relative;
}
.footer-copyright p, .footer-terms-info a {
    color: #242424;
    text-align:left;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.footer-terms-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 10px;
}
.footer-terms-info .footer-divider {
  display: inline-flex;
  align-items: center;
}
.footer-terms-info a:hover {
  color: #224CA0; 
}
.footer-terms-info .footer-divider:not(:last-child)::after {
  content: " | ";
  color: #242424;
  margin: 0 8px;
  font-weight: 400;
}

/* scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #fff;
  color: #224CA0;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  display: none; /* hidden until scroll */
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(34, 76, 160);
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  transition: background 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
}

.scroll-top-btn:hover {
  background-color: #224CA0;
  color: #FFF;
}

.scroll-top-btn i {
  font-size: 20px;
}


/***/

/** Main Banner **/
.main-banner {
  background: url('../images/main-banner.webp') center center / cover no-repeat;
  height: 800px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
/* Blue overlay box in the corner */
.main-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width:880px; 
  height: 215px;
  background: url('../images/banner-overlay.png') no-repeat bottom left;
  background-size: contain; 
  z-index: 1;
}
.main-banner-content {
    position: absolute;
    z-index: 2;
    max-width: 620px;
    color: #fff;
    left: 200px;
    bottom: 0;
    padding: 0 0 40px;
}
.main-banner-content h1{
    color: #FFF;
    font-family:'Roboto';
    font-size: 50px;
    font-weight: 600;
    line-height:  60px;
    letter-spacing: -0.5px;
}

/* accordion section */
.accordion-section{
    padding: 80px 0;
}
.faq-accordion-align{align-items: center;}
.accordion-item {
    border: transparent;
    background-color: transparent;
}
button.accordion-button {
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    background-color: transparent !important;
}
button.accordion-button:hover{color:#224CA0;}
.accordion-button:focus {box-shadow: unset;background-color: transparent;}
button.accordion-button.collapsed {  
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 rgba(34, 76, 160, 0.5);
    border-radius: 0 !important;
    padding: 26px 20px;
}
.accordion-button:not(.collapsed) {box-shadow: unset;color:#224CA0;}
.accordion-button::after {display: none;}
.accordion-content p {
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.accordion-item, .accordion-collapse.faq-accordion-desc.collapse {
    border-radius: 0;
}
.accordion-media img{
    border-radius: 20px;
}

/* values section */
section.values-section {
    position: relative;
    padding: 80px 0;
}
.values-align-position{position: relative;}
.values-image {
    position: absolute;
    left: 0px;
    top:0;
    width: 690px;
    height: 580px;
}
.values-info h2{
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}
.value-item {
    padding-bottom: 30px;
}
.value-item-list {
    padding: 40px 0 0;
}
.value-item-icon{padding-bottom: 20px;min-height: 100px;}
.value-item-content-info h3{
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
}
.value-item-content-info p{
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/* Pharma Solutions */
.pharma-solutions-sec{padding: 60px 0 10px;}
.pharma-solutions-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.pharma-solutions-sec h2 {
    color: var(--Text1, #242424);
    /* text-align: center; */
    font-family: 'Roboto';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height:36px;
}
.pharma-list{padding: 0 20px 50px;}
.pharma-list img{border-radius: 20px;}
.pharma-list-info {padding: 20px 0;}
.pharma-list-info h3{
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 25px;
    /* min-height: 70px; */
}
.pharma-list-info p{
    color: var(--Text1, #242424);
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    min-height: 170px;
    
}
.pharma-list-info a{
    border-radius: 6px;
    border: 1px solid #224CA0;
    padding: 15px 30px;
    color: #224CA0;
    text-align: center;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.pharma-list-info a:hover{background: #224CA0; color:#fff}
.pharma-slider .slick-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color:#A1A1A1;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: absolute;
    top: 45%;
    cursor: pointer;
}
.pharma-slider .slick-prev {
    left: -50px; 
}
.pharma-slider .slick-next {
    right: -50px; 
}

/* Contact Form */
.contact-sec{
    background: #224CA0;
    padding: 80px 0;
}
.contact-form-info{
    max-width: 700px;
    float: right;
}
.contact-form-info h2{
    color: #FFF;
    font-family: 'Roboto';
    font-size: 30px;
    font-weight: 700;
    line-height:  36px;
    margin-bottom: 10px;
}
.row.contact-form-list {
    padding-top: 20px;
}
.form-label{
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.form-control {
    padding: 11px 12px;
    border-radius: 6px;
    border: 1px solid #CBD2E0;
    background: #FFF;
}
.custom-submit-btn.btn.wpcf7-submit {
    color: #224CA0;
    text-align: center;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    border-radius: 6px;
    padding: 14px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #224CA0;
    background: #fff;
}
.custom-submit-btn.btn.wpcf7-submit:hover{background: #224CA0; color:#fff;border: 1px solid #fff;}
.wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output {
    color: #fff;
    font-family: 'Roboto';
}