/**
* Template Name: Abhishek Tiwary
* Updated: Aug 07 2024 with Bootstrap v5.3.3  
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

 

:root {
  --default-font: "Noto Sans", sans-serif;
  --heading-font: "Noto Sans",  sans-serif;
  --nav-font: "Noto Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e84545; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #e84545; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e84545; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-family: var(--nav-font);
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p{
    font-family: var(--nav-font);
}

.open-search visible{
    background: #f1466b;
    padding: 10px 14px;
    border-radius: 50%;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
@media screen and (min-width: 1920px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1610px!important;
}

 .section_data_pharma{
              width: 95%;
    margin-left: 3em;
    border-radius: 25px;
      }
.home3 h2{
    margin-bottom: 1em;
}
.in-focus .btn-outline-danger{
    margin-top: -2em;
}
.border-line{
    margin-bottom: 40px;
}
.navmenu a, .navmenu a:focus{
    font-size:18px !important;
}
.search-and-social{
    margin-left: 9em !important;
}
.home-banner-slider{
    padding-top: 7.6em!important;
}

.ourCustombtn button {
        font-size: 18px!important;
    }

}

.home-banner-slider{
    padding-top: 7.6em!important;
}

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 26px 0;
  transition: all 0.5s;
  z-index: 997;
}
.open-search.visible{
    background: #f1466b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    padding: 4px;
}
.open-search.visible i {
    font-size: 24px;
    color: #fff;
}
.open-search.visible .bi-search::before {
    font-weight:600;
}
.open-search svg{
    margin-left: 4px;
}
.header .logo {
  line-height: 1;
}

.header .logo img {
    max-height: 85px;
    margin-right: 3px;
    margin-left: 8em;
    width: 300px;
}




.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.search-and-social{
       order: 2;
       margin-right: 1em;
}
 .searchform {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 300px;
  max-width: 100%;
  background: #fff;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transform: translateX(120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 10000;
}

.search-and-social.active .searchform {
  transform: translateX(0);
        opacity: 1;
        visibility: visible;
        width: 98%;
        height: 850px;
        background: #f1466b;
        text-align: center;
        border-radius: 10px;
}
 .mobile-nav-active .navmenu ul.menu li a, .open-search.visible  {
    text-decoration:none;
  }
 
.ourCustombtn button{
    color: var(--nav-color);
    font-size: 18px;
    padding: 18px 19px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    font-weight:600;
    width: 100%;
    font-family: var(--nav-font);
    align-items: center;
}
.ourCustombtn i {
    margin-left: 5px;
    margin-top: 5px;
    color: #f1466b;
    font-size: 14px;
}
.ourCustombtn button:hover{
   color: var(--nav-hover-color)!important;
}
.open-search,
.close-search {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.open-search.visible,
.close-search.visible {
  opacity: 1;
  visibility: visible;
}

.header-search-form input{
        background-color: #000e1d;
    border-color: #b9c0c7;
    border-radius: 24px;
    border-style: solid;
    border-width: 0px 0px 2px;
    box-sizing: border-box;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    height: 52px;
    line-height: 2.6rem;
    text-align: center;
    padding: 0 70px;
    width: 100%;
}
.header-search-form{
    position: relative;
      margin-top: 15%;
    max-width: 70%;
    margin-left: 15%;
}
.header-search-form p{
        font-size: 1.4em;
    color: #ffff;
    font-family: 'Noto Sans';
    font-weight: 700;
    margin-bottom: 1em;
}
#searchsubmit{
        /*pointer-events: none;*/
    position: absolute;
        right: 24px;
           top: 75%;
        transform: translateY(-50%);
        background: none;
        border: none;
}

.close-search {
  display: inline-block;
  margin-left: 10px;
  cursor: pointer;
}
 
/* Navmenu - Desktop */
@media (min-width: 1200px) {
   
  
   
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
            text-decoration: none;
                    font-weight: 600;
  }
  .ourCustombtn button{
      font-size: 16px;
  }
  .search-and-social {
    margin-left: 8em;
}
  

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  
  

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .menu-item-has-children ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .menu-item-has-children ul li {
    min-width: 200px;
  }

  .navmenu .menu-item-has-children ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .menu-item-has-children ul a i {
    font-size: 12px;
  }

  .navmenu .menu-item-has-children ul a:hover,
  .navmenu .menu-item-has-children ul .active:hover,
  .navmenu .menu-item-has-children ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .menu-item-has-children .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .menu-item-has-children .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
.navmenu .submenu-toggle {
  margin-left: 8px;
  font-size: 18px;
  font-weight: bold;
  color: var(--nav-dropdown-color, #000);
  display: inline-block;
  pointer-events: none; /* Prevent double-clicks */
}

/* Optional: style it as a button */
.navmenu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .navmenu .menu-item-has-children:hover > .submenu {
    display: block;
  }

  .navmenu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .navmenu .menu-item-has-children {
    position: relative;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
    
    .mobile-nav-active .navmenu nav ul.menu {
    display: block !important;
    position: relative;
    inset: auto;
    background-color: #fff;
    padding: 10px;
    margin-top: 60px;
    border-radius: 5px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu ul.menu li a {
    color: #000 !important;
    font-size: 18px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
  }
  
    .mobile-nav-active .navmenu .menu-item-has-children ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
     margin: 10px 5px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid
 color-mix(in srgb, #c81246, #ca1a1a00 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .mobile-nav-active .navmenu .menu-item-has-children ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .mobile-nav-active .navmenu .menu-item-has-children>.menu-item-has-children-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

 .navmenu .menu-item-has-children ul.submenu {
    display: none;
  }

  .navmenu .menu-item-has-children.submenu-open > ul.submenu {
    display: block;
  }
    
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /*box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);*/
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    /*background-color: var(--accent-color);*/
    color: #e84545;
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #f14c83;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  /*.mobile-nav-active .navmenu>ul {*/
  /*  display: block;*/
  /*}*/
  
/*  .mobile-nav-active .navmenu ul {*/
/*  display: block;*/
/*}*/
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #de4b6e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*Homepage Banner*/

.home-banner-slider {
  position: relative;
  overflow: hidden;
}
.banner-slider .slide {
  /*height: 100vh;*/
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner-content {
  max-width: 100%;
   padding: 5.6rem;
}
.banner-content p{
    font-size: 1.2em;
    font-family: var(--nav-font);
    font-weight: 400;
    line-height: 27px;
}
.banner-content a{
    padding: 6px 26px;
    margin-top: 0.6em;
    background: #de4b6e;
    font-family: var(--nav-font);
}
.banner-content a:hover{
    background: #de4b6e;
}
.slick-dots {
  position: absolute;
  right: 20px;
     top: 0%;
  transform: translateY(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(90deg);
   left: 20%;
}

.slick-dots li{
        transform: rotate(90deg);
            margin: 0px 12px!important;
}
.slick-dots li button {
  border: none;
  background: #ccc;
      width: 8px !important;
    height: 36px !important;
  border-radius: 5px;
  padding: 3px;
      background: transparent!important; 
      border: 1px solid #1e1e1e !important;
}
.slick-dots li.slick-active button {
    background: #e64575!important;
    /* height: 67px; */
    margin-right: 6em;
    /*padding: 3px;*/
}
.slick-dots li button:before {
  display: none;
}
.banner-slider img{
 border-radius: 30px;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
 
    .header .logo img{
    max-height: 48px;
    margin-left: 0 !important;
    }
    .search-and-social{
        margin-right: 0;
    }
    .searchform{
        right: 4px;
    }
    .header-search-form p{
     font-size: 1em;   
    }
    .header-search-form{
            max-width: 100%;
    margin-left: 0%;
        margin-top: 46%;
    }
    .open-search.visible{
        margin-right: 0em;
    }
    .close-search.visible{
        margin-right: 2em; 
    }
    #searchsubmit{
            top: 77%;
    }
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}
 
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*about-section*/

  /*.home2 {*/
  /*    padding: 4em 0;*/
  /*    background-color: #fff;*/
  /*  }*/

    .home2 .hero-image img {
      border-radius: 30px;
      width: 100%;
      height: auto;
    }

    .home2 .hero-content h2 {
      font-size: 2.7rem;
    font-weight: 500;
    color: #00667a;
    }

    .home2 .hero-content h2 span {
      color: #00667a;
      font-weight: 400;
    }

    .home2 .hero-content p {
          color: #0a0707;
    margin-top: 20px;
    font-size: 18px;
    }
    .home2 .hero-content{
       padding-left: 3em;
    }

    .home2 .btn-outline-pink {
      margin-top: 0px;
          color: #de4b6e;
    border-color: #de4b6e;
      border-radius: 30px;
      padding: 8px 32px;
      font-weight: 600;
      transition: 0.3s;
    }

    .home2 .btn-outline-pink:hover {
      background-color: #de4b6e;
      color: white;
    }
    
    /*footer*/
    
     .footer {
      background-color: #fff;
      padding: 90px 0 20px;
          font-size: 18px;
    }

    .footer .logo img {
      max-height: 70px; 

    }

    .footer .social-icons a {
      color: #e7466c;
      font-size: 20px;
      margin-right: 15px;
      transition: 0.3s;
          text-decoration: none;
    }

    .footer .social-icons a:hover {
      color: #b63353;
    }
/*Newsletter*/
   .footer .newsletter {
  position: relative;
  text-align: right;
}

.footer .newsletter-button {
  background: #e7466c;
  color: #fff;
  padding: 8px 30px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
      width: 50%;
  transition: 0.3s;
}

/* FLIP WRAPPER */
.newsletter-flip-wrap {
  perspective: 1000px;
  display: inline-block;
  position: relative;
  width: 100%;
}

/* ROTATION FORM */
.newsletter-form-rotate {
  display: none;
  opacity: 0;
  transform: rotateY(-90deg);
  transform-origin: right;
  transition: all 0.6s ease-in-out;
}

.newsletter-form-rotate.show {
  display: block;
  opacity: 1;
  transform: rotateY(0deg);
}

/* INPUT FIELD */
.form-control.border-pink {
    border: 2px solid #ec4d72;
    padding: 8px 20px;
    border-radius: 25px;
    /*width: 50%;*/
    font-size: 18px;
}
.webform-submission-newsletter-signup-form .webform-button--submit{
    background: transparent;
    color: #fff;
}
.webform-submission-newsletter-signup-form label{
    display: none;
}
.webform-submission-newsletter-signup-form .webform-confirmation__message{
       color: green;
    font-size: 1em;
    font-weight: 700; 
}

/* SUBMIT BUTTON */
.btn.btn-pink {
 background-color: #ec4d72;
    color: #fff;
    font-weight: 600;
    padding: 8px 30px;
    border-radius: 25px;
    border: none;
    font-size: 18px;
}
.btn.btn-pink:hover{
    background-color: #ec4d72;
    color: #fff;
    
}

#newsletterForm a, #newsletterToggle a{
    color:#000;
    font-weight: 500;
}
#newsletterForm p, #newsletterToggle p{
    color:#000;
    font-weight: 500;
    font-size: 12px;
}
/* Responsive stacking */
@media (max-width: 768px) {
  .newsletter-form-rotate .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .form-control.border-pink {
    width: 100%;
  }

  .btn.btn-pink {
    width: 100%;
  }
}

 /*newslterr end*/
 
 .card img:hover{
         transition: width 2s, height 2s, transform 2s;
      transform: scale(0.97);
 }
 
   .footer .newsletter-form {
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.footer .newsletter-form.show {
  opacity: 1;
}

    .footer .newsletter-form.active {
      max-height: 100px;
      opacity: 1;
      margin-top: 15px;
    }

    .footer .newsletter-form input[type="email"] {
      padding: 10px 15px;
      border: 2px solid #e7466c;
      border-radius: 25px;
      margin-right: 10px;
      max-width: 250px;
    }

    .footer .newsletter-form button {
      background-color: #e7466c;
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      font-weight: 600;
    }

    .footer hr {
      border-top: 1px solid #0c5c6b;
      margin: 30px 0 15px;
    }

    .footer .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-top: 1em;
          border-top: 2px solid;
          padding-bottom: 1em;
    }
    .footer_first{
        padding-bottom: 2em;
    }

    .footer .footer-bottom a {
      margin-right: 20px;
      color: #000;
      text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    }

    .footer .footer-bottom a:hover {
      /*text-decoration: underline;*/
      color: #e7466c;
    }
    .copyright{
            font-weight: 500;
    font-size: 14px;
    }

    @media (max-width: 768px) {
      .footer .newsletter {
        text-align: left;
        margin-top: 20px;
      }

      .footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    }
    
    /*Home section 3*/
    
.home3 .card-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/*.home3 .card-box:hover {*/
/*  transform: translateY(-8px);*/
/*}*/

.card-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.card-overlay {
  content: "";
  position: absolute;
  inset: 0; 
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 19, 26, 1) 0%, rgba(0, 95, 128, 1) 100%);
    border-radius: 30px;
}

.card-box:hover .card-overlay {
  opacity: 1;
}
.slick-slide img {
    display: block;
    /*padding: 8px 2em;*/
}

/* Icon & Title - always visible */
.card-static-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
  z-index: 2;
  text-align: left;
  transition: transform 0.4s ease;
}

.card-box:hover .card-static-content {
  transform: translateY(-330px);
}

.card-static-content .icon {
  width: 90px;
  height: 90px;
  transition: transform 0.4s ease;
}
.in-focus img{
    /*height: 260px;*/
    object-fit: cover;
}
.in-focus{
    padding-top: 0;
}
.card-box:hover .card-static-content .icon {
  transform: scale(1.1);
}
.home3 .title{
    font-size: 32px;
    font-weight: 600;
        text-transform: capitalize;
}
.home3 a{
    transition: none;
}
/* Hover Text */
.card-hover-content {
  position: absolute;
  top: 55%;
  left: 30px;
  right: 30px;
  opacity: 0;
  z-index: 2;
  color: #fff;
  text-align: left;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.card-box:hover .card-hover-content {
  opacity: 1;
 transform: translateY(1px);
    /*font-size: 26px;*/
}

.card-hover-content p {
    font-size: 18px;
    margin-bottom: 3em;
    margin-top: 0em;
}
.read-more:hover {
    color: #fff!important;
}

.read-more {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.home3 h2{
    color: #005f80;
    font-size: 2.7em;
    font-weight: 500;
}

.slick-dotted.slick-slider{
    margin-bottom: 0 !important;
}
/*.home-banner-slider{*/
/*    margin-top: 6em;*/
/*}*/
/*Home Spotlight*/
.spotlight h2{
    color: #005f80;
    font-size: 2.7em;
    padding-bottom: 1em;
}
.in-focus h2{
    color: #005f80;
    font-size: 2.7em;
    padding-bottom: 1em;
    font-weight: 500;
}
.in-focus h2 span{
      font-weight: 700;
}
.spotlight .video-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.pharma-impact h2{
    color: #005f80;
    font-size: 2.7em;
}
.pharma_paragraph{
        margin-top: -2em;
    font-weight: 400;
    font-size: 17px;
}
.spotlight h3{
 color: #005f80;
    margin-bottom: 1em;
    /* color: #005f80; */
    font-size: 1.8em;
    font-weight: 700;
}
.spotlight .play-icon {
  /*width: 60px;*/
  /*height: 60px;*/
  z-index: 2;
  transition: transform 0.3s ease;
  cursor: pointer;
  
}
 
.spotlight .video-link:hover .play-icon {
  transform: scale(1.1);
}

/*Gallery homepage*/

.in-focus .btn-outline-danger {
  border: 1px solid #e7466c;
  color: #e7466c;
  transition: all 0.3s ease;
  padding: 6px 20px;
}

.in-focus .btn-outline-danger:hover {
  background-color: #e7466c;
  color: #fff;
}

/*Explore Data center*/

.bg-light-pink {
  background-color: #fde4e8;
  /*border-radius: 1rem;*/
}

.highlight {
    font-size: 4rem;
    font-weight: 700;
    color: #005f79;
    margin-bottom: 0.25rem;
    /*margin-left: 12px;*/
}
.insights-section h2{
    color: #005f80;
    font-size: 2.7em;
    padding-bottom: 20px;
}
.nav-link:focus, .nav-link:hover {
    color: #f1466b!important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    color: black!important;
    background: transparent!important;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 20px;
}
.insights-section img{
        height: 300px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}
.insight-section .card{
    padding: 2px 14px;
}
 
.desc {
    font-size: 19px;
    /* font-weight: 500; */
    color: #000000;
    /*text-transform: uppercase;*/
    /* line-height: 1.4; */
    margin-top: 1em;
    /*width: 90%;*/
    /*margin-left: 14px;*/
}

.border-line {
  border-left: 2px solid #e7466c;
  padding-left: 1rem;
}

/* Optional: Adjust spacing and stacking for mobile */
@media (max-width: 767.98px) {
  .border-line {
    border-left: none;
    border-top: 2px solid #e7466c;
    padding-left: 0;
    padding-top: 1rem;
  }
}

/*Blog insight*/

.nav-pills .nav-link {
  border-radius: 30px;  
    color: #000;
    font-family: var(--nav-font);
        font-size: 16px;
    font-weight: 400;
    padding: 6px 20px;
}
.nav-pills .nav-link.active {
  background-color: transparent;
  border: 1px solid #dc3545;
  color: #dc3545;
}

/* Card styles */
.card-title {
  font-size: 1.05rem;
  font-weight: 600;
}
.card-body {
  padding: 1rem 0rem !important;
}
.card-body .badge {
  background: #fde4e8;
   font-weight: 400;
}
.card-body .small{
        font-weight: 500;
    margin-left: 14px;
    color: black !important;
    font-size: 14px;
}
#all .card-title{
    min-height: 70px;
    color: #005f80;
    font-weight: 700;
    font-size: 21px;
}
#all .card-text{
    min-height: 80px; 
    font-size: 17px;
}
#reports .card-title{
        min-height: 70px;
    color: #005f80;
    font-size: 20px;
} 
#blogs .card-title{
        min-height: 70px;
    color: #005f80;
    font-size: 20px;
} 
#publications .card-title{
        min-height: 40px;
    color: #005f80;
    font-size: 20px;
}  
/* Smooth animation */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}
 
 /*Policy section*/
 
 .policy-section {
  background: url('/sites/default/files/2025-06/25-Years-Section.png') center/cover no-repeat;
  padding: 6em 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.border-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*border-left: 1px dashed rgba(255,255,255,0.4);*/
  /*border-top: 1px dashed rgba(255,255,255,0.4);*/
}
.border-grid > div {
  position: relative;
  /*padding: 30px 65px;*/
  transition: all 0.4s ease;
  background-size: cover;
  background-position: center;
}

/* Apply border-right only on the left column (first and third items) */
.border-grid > div:nth-child(1),
.border-grid > div:nth-child(3) {
  border-right: 1px dashed rgb(255 255 255);
}

/* Apply border-bottom only on the first row (first and second items) */
.border-grid > div:nth-child(1),
.border-grid > div:nth-child(2) {
  border-bottom: 1px dashed rgb(255 255 255);
}

/*.border-grid > div {*/
/*  position: relative;*/
/*  padding: 30px;*/
/*  border-right: 1px dashed rgba(255,255,255,0.4);*/
/*  border-bottom: 1px dashed rgba(255,255,255,0.4);*/
/*  transition: all 0.4s ease; */
/*  background-size: cover;*/
/*  background-position: center;*/
/*}*/

.content-box {
  position: relative;
  z-index: 2;
  padding: 2.5em 4em 1.5em;
}

.box-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
}

.box-hover:hover::before {
  opacity: 1;
}

.box-hover:nth-child(1):hover::before { background-image: url('bg1.jpg');
  border-radius: 40px;
    height: 168px;
    background-position: center;
    opacity: 0.2;
    width: 770px;
    background-size: cover;
    background-position-y: inherit;
    
}
.box-hover:nth-child(2):hover::before { background-image: url('bg1.jpg');
 border-radius: 40px;
    height: 168px;
    background-position: center;
    opacity: 0.2;
    width: 770px;
    background-size: cover;
    background-position-y: inherit;}
.box-hover:nth-child(3):hover::before { background-image: url('bg1.jpg'); 
     border-radius: 40px;
    height: 168px;
    background-position: center;
    opacity: 0.2;
    width: 770px;
    background-size: cover;
    background-position-y: inherit;
}
.box-hover:nth-child(4):hover::before { background-image: url('bg1.jpg');
 border-radius: 40px;
    height: 168px;
    background-position: center;
    opacity: 0.2;
    width: 770px;
    background-size: cover;
    background-position-y: inherit;}

/*Admin Page*/
.site-page{
  
    padding-top: 4em;
}
.user-login-form{
       max-width: 400px;
    margin: auto;
    padding-top: 12em;
    margin-bottom: 13em;
}
.user-login-form input{
        border-radius: 20px;
    border: 1px solid #181515ee;
    
}
.user-login-form label{
    color: #005f80;
    font-size: 20px;
    font-weight: 500;
}
.user-login-form #edit-submit{
        background: #f1466b;
    color: #fff;
    padding: 10px 40px;
}

/*Innovation Page*/

 .hero-img {
      width: 100%;
      height: auto;
      border-radius: 20px;
    }
    .breadcrumb-overlay {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ec407a;
    color: white;
    padding: 4px 32px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 500;
    }
    .hero-container {
      position: relative;
      overflow: hidden;
    }

.innovation-img {
       border-radius: 32px;
    object-fit: cover;
    width: 100%;
    height: auto;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    }
    .highlight-text {
     color: #005b7f;
    font-size: 2.7em;
        font-weight: 500;
    }
   .global_new h2 {
      color: #005f80;
    font-size: 2.7em;
    font-weight: 500;
    }
    .innovation_first p{
            font-size: 18px;
            text-align: justify;
    }
    .highlight-text em {
      font-style: normal;
      font-weight: 700;
    }
  /*   #innovation_stories .position-absolute {*/
  /*  top: 1.25rem !important;*/
  /*  left: 1.25rem !important;*/
  /*}*/
  /*#innovation_stories .number{*/
  /*        background: #005f80;*/
  /*  color: #fff;*/
  /*  padding: 16px 23px;*/
  /*  border-radius: 10px;*/
  /*  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
  /*}*/
  /* #innovation_stories h6{*/
  /*        font-size: 50px;*/
  /*  font-weight: bolder;*/
  /*}*/
  .story_content h5{
      color: #005f80;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .story_content p{
      font-size: 18px;
    color: #121010b5;
    font-weight: 500;
    line-height: 30px;
  }
  .card_view{
      border-radius: 25px;
  }
  .innovation_second h2{
          color: #005b7f;
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 1em;
  }
  .innovation_second p{
      font-size: 20px;
  }
  .modi_image {
      padding: 30px 4em;
  }
  #innovation4 h2{
       color: #005b7f;
    font-size: 2.7em;
    font-weight: 500;
  }
  #innovation4 p{
   font-size: 18px;
    margin-top: 2em;
    text-align: justify;
  }
  .blog_date_innovation{
      font-size: 14px;
    font-weight: 500;
  }
  .innovation-blog h3{
   color: #005b7f;
    /* margin-top: 1em; */
    font-size: 2.7em;
    font-weight: 500;
  }
  .innovation-blog h4{
       color: #005f80;
    font-weight: 500;
    /*padding-bottom: 20px;*/
    font-size: 2.6em; 
  }
  .innovation-blog img{
      border-radius: 25px;
  }
  .innovation-blog p{
        font-size: 18px;
    margin-top: 2em;
    text-align: justify;
  }
  #innovation_stories h2{ 
          color: #005f80;
    font-size: 2.8em;
    margin-bottom: 1em;
  }

  
/*New Css */

nav#navmenu {
    margin-left: 1.4em;
    margin-bottom: 0.2em;
}
#header .container-fluid {
    justify-content: unset!important;
}
  
.visible-part {
    display: flex;
    align-items: center;
}
.bi-chevron-down::before{
    font-weight: 600 !important;
}
 
.home-banner-slider .slick-dots li button{
    padding:3px!important;
} 
.home-banner-slider .slick-dots li{
    bottom: 5em;
} 

.slick-list.draggable{
    padding: 0px 2em;
}
#slick-slide00 .banner-content {
    max-width: 64%;
    /*padding: 5.6rem;*/
}
  
.ourCustomSpotlight{
    /*padding-right:3em!important;*/
}
  
.ourCustomSpotlight .bg-light{
    background-color: #eeeeee!important;
}

.spotlight p{
    font-weight: 500;
}

.spotlight a{
    font-size: 19px;
    font-weight: 600 !important;
    color: #f1466b !important;
}
.spotlight a i{
   font-size: 15px;
}
.spotlight .bi-chevron-right::before {
    font-weight: 600;
}

.pharma-impact .btn-outline-danger{
    border: 1px solid #e7466c!important;
    color: #e7466c!important;
    transition: all 0.3s ease;
    padding: 6px 28px;
}

.pharma-impact .btn-outline-danger:hover {
    background-color: #e7466c;
    color: #fff!important;
}



.section_data_pharma {
    padding:43px 0 20px 0px;
}
.section_data_pharma .stat-card.border-line{
    padding-left: 1.6rem!important;
}


.insights-section .text-danger{
    font-size: 17px;
    font-weight: 500 !important;
    color: #f1466b !important;
}

.insights-section a i {
    font-size: 15px;
}

.insights-section .bi-chevron-right::before {
    font-weight: 600;
}
  
.card-hover-content i {
    font-size: 15px;
}
.card-hover-content .bi-chevron-right::before {
    font-weight: 600;
}

.policy-section  .section-title{
    font-size: 2.7em!important;
    padding-bottom: 1em; 
    font-weight: 500;
    margin-top: 1em;
}
.policy-section  .section-title span{
     font-weight: 400;
}
.policy-section h5{
    font-size: 18px;
    margin-bottom:0;
}  
.policy-section p{
    font-weight: 300;
        margin-bottom: 0;
}  
 
 
.global-innovation-section .container {
    background: linear-gradient(to right, rgba(0, 123, 181, 0.95), rgba(218, 45, 110, 0.9));
    border-radius: 25px;
    margin-top: 7em;
}
.modi_ji_img img{
        margin-top: -9em;
}
.global-innovation-section h2{
    font-size: 2.8em;
}
.global-innovation-section p{
    font-size: 16px;
        text-align: justify;
}

.story-number {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #e64072;
    margin-bottom: -2px;
    background: #e5eef2;
    padding: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px; 
}
.innovation_story_title{
    background: #e5eef2;
    /*padding: 10px;*/
    /*border-bottom-right-radius: 25px;*/
    /*border-bottom-left-radius: 25px;*/
    /*min-height: 385px;*/
}

.innovation_stories .slick-prev{
    background: #f1466b;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
        position: absolute;
   top: -2%; 
    left: 93%;
    transform: translateY(-150%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.innovation_stories .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus{
        background: #005f80; 
        
}
.innovation_stories .slick-next:hover, .slick-next:focus, .slick-next:hover, .slick-next:focus{
        background: #005f80;
}
.innovation_stories .slick-next{
    background: #f1466b;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    position: absolute;
        top: -14%;
    left: 97%;
    transform: translateY(30%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.innovation_stories .slick-next:before{
    display:none
}
.innovation_stories .slick-prev:before{
    display:none
}
.innovation_stories h2{
        color: #005b7f;
    font-size: 2.8em;
}
.innovation_stories h6{
        color: #00577a;
    font-weight: 600;
   font-size: 20px;
    /* line-height: 30px; */
    min-height: 88px;
}
.innovation_stories p{
    font-size: 1em;
    min-height: 200px;
}
.left_border{
        border-left: 2px solid #005f80;
}
.innovation_stories .slick-slide{
        padding: 10px 25px;
}
.innovation_stories .slider-item {
  padding: 15px;
  box-sizing: border-box;
}
/*.innovation_stories .slick-active{*/
/*    border-left: 2px solid #005f80;*/
/*}*/

.meetslider {
  margin-top: 30px;
}

.meetslider .slider-item {
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  transition: border-left 0.3s ease;
  height: 100%;
}

.meetslider .slick-slide {
  box-sizing: border-box;
}

/* Add border-left to active visible slides except the first in viewport */
.meetslider .slick-active:not(:first-child) {
  border-left: 2px solid #005f80;
}

/* Optional: spacing between slides */
.meetslider .slick-slide {
  padding: 0 10px;
}




/* Make sure slides don't overflow */
.meetslider .slick-slide {
  box-sizing: border-box;
  padding: 0 10px; /* Adjust this spacing */
  margin: 0;
}

/* Inside content padding, so it doesn’t affect layout */
.meetslider .slider-item {
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
}

/* Prevent wrapping and distortion */


/* Remove potential float or width issues */
.meetslider .slick-track {
  display: flex !important;
}
.meetslider .read-more{
        color: #f1466b;
    font-weight: 600;
    text-decoration: none;
}
 .meetslider .slider-item{
 padding: 0em 2em;
 }
.intro_part_content{
        padding: 3em 2em;
    background: linear-gradient(to right, rgba(0, 123, 181, 0.95), rgba(218, 45, 110, 0.9));
    border-radius: 25px;
        color: white;

}
.intro_part_content h1{
        font-size: 2.8em;
    margin-bottom: 1em;
}
.cta_ipa_member{
    color: #ffff;
    text-decoration: none;
    border: 2px solid;
    border-radius: 30px;
    padding: 7px 40px;
}
.cta_ipa_member:hover{
    background: #e7466c;
    color: #fff; 
}
.intro_part_content p{
        margin-top: 1em;
    font-size: 18px;
    margin-bottom: 2em;
}

.storm_image{
    display: flex;
}
.card-image img{
    border-radius:0;
}
.card-image .card-box:hover .card-overlay {
    opacity: 0.5;
    border-radius: 0;
}
.timeline {
      position: relative;
          margin-top: 0px;
    padding-left: 8em;
    padding-right: 12em;
    }
    .timeline-line {
     height: 4px;
    background-color: #fff;
    position: absolute;
    top: 76px;
       left: 8em;
    right: 14em;
    z-index: 1;
    }
    .timeline-dot {
     position: relative;
    z-index: 2;
    background-color: #ffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 27px;
    cursor: pointer;
    margin-top: 2em;
    }
    .timeline-dot.active {
      background-color: #e94b6e;
    }
    .timeline-year {
      text-align: center;
      margin-top: 5px;
      color: #fff;
    }
    .timeline-content {
      display: none;
      background-color: #fdeef1;
    border-radius: 20px;
    padding: 21px 14px;
    margin-top: 1em;
    width: 28%;
    margin-left: 7%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
    .timeline-content.active {
      display: block;
    }
    .timeline-content h3 {
          font-size: 6rem;
    color: rgba(233, 75, 110, 0.2) !important;
    position: relative;
    right: -20px;
    top: -204px;
    z-index: 0;
    float: right;
    /* color: azure; */
    font-weight: 600;
    transform: translateY(-20px);
    }
    .timeline-box {
      position: relative;
      z-index: 2;
    }
    .timeline .flex-fill {
    flex: 0 !important;
}
.about_journey .container-fluid{
        background: url(/sites/default/files/2025-07/timeline-bg.webp) center / cover no-repeat;
      position: relative;
    /*overflow: hidden;*/
    border-radius: 25px;
    padding: 0em;
    height: 520px;
}
.quality_cert1 .container-fluid{
        background: url(/sites/default/files/2025-08/quality-bg.webp) center / cover no-repeat;
      position: relative;
    /*overflow: hidden;*/
    border-radius: 25px;
    padding: 0em;
    height: 520px;
}

/*New Quality Section start here*/

.horizontal-divider {
     border-top: 1px dotted #fff;
    width: 84%;
    margin: 0 auto 0px;
}
.policy-box h5{
        font-size: 2.8em;
    font-weight: 700;
}

.policy-purpose-wrapper {
  background: url(/sites/default/files/2025-08/quality-bg.webp) center / cover no-repeat;
  border-radius: 30px; 
  padding: 16px 0px;
        color: #ffff;
}
.policy-box:hover{
        background: #ffff;
    border-radius: 25px;
    color: #004a63;
    padding: 10px 180px;
        margin-top: 10px;
            /*transition: ease-in 0.3s;*/
}
.quality_cert{
    padding-top: 0;
}

.policy-purpose-wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
}

.policy-purpose-wrapper h2 span {
  font-weight: 300;
}

.policy-box {
 padding: 21px 180px;
    font-size: 18px;
    line-height: 1.6;
}

.policy-box p strong {
  font-weight: 700;
}

.border-right {
  border-right: 1px dotted #fff;
}

.bottom-border {
  border-bottom: 1px dotted #fff;
}



/*New Qulaity section end here*/
.about_journey h2{
color: #fff;
    transform: translateY(40px);
    margin-left: 3em;
}
.logo_25{
    transform: translateY(-34px);
    width: 200px;
}
.timeline_data{
        margin-top: 8em;
    position: absolute;
    z-index: 1;
}
.timeline-box h5{
  color: #005f80;
    font-size: 2.3em;
    margin-top: 15px;
}
.timeline-box p{
   margin-top: 5em;
    color: black;
    font-size: 18px;
    /* width: 88%; */
    min-height: 70px;
}
.about_journey{
      padding-bottom: 7em;
    padding-left: 2em;
    padding-right: 2em;
}
.about_fourth h3{
     font-size: 2.7em;
    color: #005f80;
    font-weight: 500;
    margin-bottom: 35px;
}
.about_fourth .left{
        padding-top: 5em;
    padding-bottom: 5em;
}
.about_fifth h3{
  color: #005f80;
    padding-bottom: 1em;
    font-size: 2.7em;
}
.map_para{
    font-size: 18px;
        text-align: left;

}
.home3 h6{
    font-weight: 600;
    font-size: 1.1em;
    margin-top: -2em;
    margin-bottom: 1em;
    line-height: 4px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: #f1466b;
    transform: translateY(-3em);
}
.navigating_sub{
        margin-top: -2em;
    font-size: 17px;
}
.about_fifth .card-box:hover .card-static-content {
    transform:  translateY(-180px);
}
.about_fifth h5{
        font-size: 1.2em;
    font-weight: 700;
}
.about_fifth .card-box:hover .card-hover-content {
    opacity: 1;
    transform: translateY(28px);
}
.spolight_left{
    padding-left: 3em;
}

.global_reach_section3 {
  background-color: #fff;
}

.global_reach_section3 .text-primary {
  color: #005b76 !important;
}

.global_reach_section3 .vertical-divider {
     position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    width: 2px;
    background-color: #de4b6e;
}

.global_reach_last .text-primary {
 color: #005b7f !important;
    font-size: 2.7em;
    font-weight: 500;
}

.impact-card {
  height: 100%;
  background-color: #ffff;
  position: relative;
}

.impact-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.impact-caption {
  background-color: rgba(0, 66, 77, 0.85); /* semi-transparent dark blue */
  position: absolute;
     bottom: 14px;
    left: 10px;
    right: 10px;
    /* border-bottom-left-radius: 28px; */
    /* border-bottom-right-radius: 28px; */
    border-radius: 16px;
}
.served_no {
    padding-left: 2em;
}
.served_no h2{
        color: #005f80;
    font-size: 3.2em;
}
.served_no p{
    font-size: 18px;
}
.small_con{
        font-size: 20px; 
}
.global_reach_last h6{
        font-size: 1.2em;
    padding-bottom: 10px;
}


.bg-gradient-red {
  background: linear-gradient(90deg, #c62e56, #e6485e);
  min-height: 350px;
  position: relative;
}

.bg-gradient-blue {
  background: linear-gradient(90deg, #044f7c, #0f7998);
  min-height: 350px;
  position: relative;
}

.quality_3 img {
  z-index: 2;
}

.icon-box {
  padding: 10px;
  text-align: center;
}

.icon-box img {
  height: 40px;
}
.is-active {
    color: #f1466b !important;
}
.menu .active button{
   color: #f1466b !important; 
}
.about_lead_row{
        background: #e5eef2;
    padding: 2em 2em;
    border-radius: 26px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        margin-bottom: 2em;
}
/*.about_lead_img{*/
/*        transform: translateY(-100px);*/
/*    float: right;*/
/*        width: 150px;*/
/*    height: 150px;*/
/*}*/
.about_lead_img{
        float: right; 
     transform: translate(37px, 37px);
    width: 300px;
}
.about_leader{
    padding-top: 4em;
}
.about_vector{
    /*transform: translate3d(10px, 23px, 10px);*/
    transform: translate3d(9px, -55px, 10px);
}
.about_lead_info{
        transform: translateY(-44px);
    text-align: justify;
    /* font-size: 17px; */
    font-weight: 500; 
       min-height: 150px;
}
.about_lead_info p{
  font-size: 17px;
 line-height: 28px;  
}
.part_border{
    border: 1px solid #f1466b;
    transform: translateY(-30px);
}
.about_lead_row h3{
       font-size: 22px;
    color: #005f80;
    font-weight: 700;
}
.about_lead_row h5{
    font-size: 15px;
}
.about_lead_row h6{
    font-size: 16px;
    font-weight: 700;
}
.about_name_desc{
    min-height: 110px; 
           transform: translate3d(-6px, 62px, 0px);
}
.about_lead_img img{
        /*border-radius: 50%;*/
    object-fit: cover;
        margin-top: -5em;
            border-bottom-right-radius: 25px;
}
.search_leader{
        float: right;
    margin-left: 24%;
}
#leaderSearch{
    border-radius: 50px;
    border: 1px solid #d9d5d5ee;
    padding: 10px 1em;
    background: #de4b6e;
}
.search_btn_leader{
  position: absolute;
    top: 12px;
    right: 4em;
}
#leaderSearch::placeholder {
  color: white;
  opacity: 1; /* Ensures it's fully opaque */
}
#leaderSearch::-webkit-input-placeholder {
  color: white;
}
#leaderSearch:-moz-placeholder {
  color: white;
}
#leaderSearch::-moz-placeholder {
  color: white;
}
#leaderSearch:-ms-input-placeholder {
  color: white;
}
.lead_sec img{
    border-radius:25px;
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.lead_sec h3{
        font-size: 26px;
    margin-top: 1em;
    color: #005f7e;
    font-weight: 700;
}
.lead_sec h5{
        font-size: 16px;
    margin-top: 1em;
    font-weight:600;
}
.lead_sec h6{
        font-size: 16px;
}
.lead_sec{
    margin-bottom: 4em;
}
.member_data img{
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
}
.ipa_members h2{
        font-size: 1.6em;
    margin-bottom: 2em;
    color: #005f80;
    font-weight: 600;
}
.intro_lead h2{
color: #005f80;
    font-size: 2.0em;
    margin-bottom: 1em;
    font-weight: 700;
}
.intro_lead p {
    font-size: 20px;
}
.member_data{
        margin-bottom: 4em;
}
.affl{
        text-align: center;
    border: 1px solid #F5F5DC;
    border-radius: 25px;
        padding: 0px 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.affl:hover{
    transform: translateY(-8px);
    transition: all 0.6s;
}
.member_data:hover{
   transform: translateY(-8px);
    transition: all 0.6s; 
}
.affl h5{
        font-size: 20px;
            min-height: 70px;
                color: #005f80;
    font-weight: 600;


}
.intro_lead th{
        color: #005f80 !important;
}
.ipa_affiliation{
    margin-bottom:3em;
    margin-top:2em;
}
.certification_data{
        display: flex;
        padding-top: 2em;
}
.certified_name{
border-right: 2px solid #f1466b;
    padding-left: 1em;
  
}
.certified_name h5{
        color: #005f80;
    font-weight: 800;
    font-size: 2.0em;
}
.certified_name h6{
    font-size: 18px;
    font-weight: bold;
     margin-top: 20px;
    min-height: 28px;
}
.certified_name p{
        font-size: 16px;
    /*margin-top: 1em;*/
}
.certificate_source{
        float: right;
    font-size: 12px;
    padding-top: 30px;
}
.quality_certification h2{
    color: #005f80;
   padding-bottom: 20px;
        font-weight: 500;
    font-size: 2.7em;
}
.quality_fourth h3{
        color: #005f80; 
    font-weight: 500;
        padding-bottom: 20px;
    font-size: 2.6em;
   
}
.quality_fourth p{
        font-size: 18px;
            text-align: justify;
}
.quality_fourth .left{
    padding-bottom: 2em;
}
.quality_fourth img{
        border-radius: 25px;
}

.btn-outline-pink {
    margin-top: 0px;
    color: #de4b6e;
    border-color: #de4b6e;
    border-radius: 30px;
    padding: 8px 32px;
    font-weight: 600;
    transition: 0.3s;
}

.quality_fourth .right{
        padding-top: 4em;
    padding-bottom: 4em;
}
.banner-content h1{
        font-size: 2.0em;
    color: black;
}
.banner-content h2{
     font-size: 2.3em;
    color: black;
    font-weight: 800;
    line-height: 50px;
}
.banner-content p{ 
    color: black;
}
table{
        font-family: "Noto Sans", sans-serif;
}
.modi_ji_global .container-fluid{
        background: #e5eef2;
    width: 95%;
    margin-left: 3em;
    border-radius: 25px;
}
.modi_vector{
     transform: translate3d(5em, -3em, 10px);
}
.content_modiji{
    margin-left: 5em;
   transform: translateY(-8px);
}
.content_modiji h6{
      color: #f1466b;
    margin-top: 3em;
    font-size: 1.2em;
}
.border_line{
     border: 1px solid #f1466b;
    width: 90%;
    margin-top: 2em;
    margin-bottom: 2em;
}
.modi_img{
      transform: translateX(15px);
margin-top: -12em;
}
#year-filter{
        float: right;
   margin-right: -13.5em;
}
#year-select{
    border-radius: 25px;
    color: #ffff;
    border: 1px solid #f1466b;
    background: #f1466b;
    padding: 7px 20px;
    margin-left: 1em;
}
.blog-list{
        padding-top: 0em;
    padding-bottom: 4em;
}
.blog-item img{
        border-radius: 25px;
            object-fit: cover;
    /*min-height: 300px;*/
        margin-bottom: 1em;
        border: 1px solid #e7e7e7;
}
.blog-item .badge{
        background: #ffc0cb85;
    padding: 5px 8px;
}
.blog-item .blog-title{
    color: #005f80;
    font-weight: 600;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 1em;
}
.blog-item .blog_cta{ 
        font-weight: 600;
}
.blog-item{
        margin-bottom: 3em;
}
.about_fifth p{
 min-height: 60px;
}
.content_modiji h3{
        font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    color: #005f80;
    font-size: 1.8em;
    line-height: 1.5;
}
.modi_ji_global{
      padding-top: 10em;
}
.innovation_ticker .card-box:hover .card-hover-content{
  transform: translateY(-90px);
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: #f1466b !important;
}
.global_quality_content img{
    border-radius : 25px; 
        margin-bottom: 1em;
}
.global_quality_content h4{
        color: #005f80;
    font-size: 24px;
    font-weight: 600;
    margin-top: 1em;
}
.global_quality_content{
    padding : 30px 30px;
}
.global_quality_content p{
        font-size: 18px;
    margin-top: 1em;
    text-align: justify;
}
.qaulity_global h3{
        color: #005f80;
    font-size: 2.7em;
    font-weight: 500;

}
.qaulity_global{
        padding-bottom: 0em;
  padding-top: 2em;
}
.innovation_ticker .card-overlay{
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 19, 26, 1) 0%, rgba(0, 95, 128, 1) 100%);
    opacity: 0.3;
}
.blog_detail{
    padding-top: 6em;
}
.blog_detail_content .badge{
        background: #ef6e85;
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 25px;
}
.blog_detail_content h1{
        color: #005f80;
    padding-top: 20px;
    font-weight: 700;
    font-size: 2.6em;
}
.blog_date_detail{
        font-weight: 700;
    font-size: 22px;
    margin-top: 1em;
}
.blog_detail_content .content p{
        font-size: 20px;
    line-height: 34px;
    text-align: justify;
}
.blog_detail_content .content p a{
    text-decoration: none;
    color: #f1466b;
    text-transform: capitalize;
}
.blog_detail_content .content h3{
        color: #005f80;
    font-size: 1.6em;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
}
.blog_detail_content .content h2{
        color: #005f80;
    font-size: 1.6em;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
}
.blog_detail_content .content img{
        object-fit: cover;
    text-align: center;
    width: 900px;
    border-radius: 25px;
    margin-top: 1em;
    /* padding-bottom: 1em; */
    margin-bottom: 1em;
}
.blog_detail_content .content h4{
        color: #005f80;
    font-size: 1.6em;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
}
 
.blog_detail_right .image img{
        border-radius: 25px;
            object-fit: cover;
    width: 645px;
}
.suggested_content h4{
     color: #005f80;
    font-size: 1.7em;
    font-weight: 600;
    padding-top: 2em;
    padding-bottom: 1em; 
}
.suggested_content img{
        border-radius: 25px;
            margin-bottom: 2em;
}
.blog_detail_right{
    padding-left: 1em;
        position: sticky;
    top: 144px;
}
.suggested_content .badges{
        background: #ffa0b1;
    padding: 5px 12px;
    font-size: 16px;
    border-radius: 8px;
        font-weight: 500;
}
.suggest_date{
        margin-left: 1em;
    font-weight: 500;
    font-size: 20px;
}
.suggested_content h5{
        font-size: 24px;
    color: #005f80;
    margin-top: 1em;
    font-weight: 700;
    /* margin-bottom: 1em; */
    min-height: 50px;
}
.suggested_content p{
        font-size: 20px;
    line-height: 34px;
    text-align: justify;
}
.suggested_content a{
        font-weight: 600;
    font-size: 20px;
}
.blog_detail_content .content ul{
    font-size: 20px;
    line-height: 34px;
    text-align: justify;
}
.blog_share i{
    color: #e7466c;
    font-size: 26px;
        margin-right: 16px;
}
.blog_share a{
    text-decoration: none;
}
.blog_share i:hover{
        color: #005f80;
    font-size: 26px;
    transition: 0.3s ease-in;
        transform: rotate(335deg);
}
.blog_share p{
        font-size: 22px;
    font-weight: 500;
}
/*Remove Spacing*/
.home2, .home3, .insights-section, .spotlight, .about_fourth, .about_fifth, .innovation_first, .innovation4, .leader_intro, .leadership_select_area, .innovation_ticker, .ucpmp_report_first{
    padding-top: 0;
}

.data_content{
        background: #e6eff3;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.data_sec_img {
    float: right;
}
.data_content h2{
color: #1e3765;
    margin-bottom: 2em;
    font-size: 2.6em;
    padding-bottom: 1em;
}
.datapage h4{
    margin-top: 2em;
    font-size: 1.2em;
    color: #1e3765;
    text-align: center;
    margin-bottom: 2em;
}
.datapage p{
        font-size: 19px;
    margin-top: 1em;
    width: 1366px;
}
 .gap_between_slider{
      gap: 5.5rem !important;
 }

/* Slider Arrow Styles */
.data_content .slick-prev,
.data_content .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
    background-color: #de4b6e;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.data_content .slick-prev {
  left: 6px;
}
.data_content .slick-next {
    right: 10px;
}



.data_sec_img {
    max-width: 620px;
}

.dataslider {
  overflow: hidden;
}
.dataslider .slick-next:before{
    display:none;
}
.dataslider .slick-prev:before{
    display:none;
}
.quality_global1 img{
        border-radius: 25px;
}
.quality_global1 .container{
        background: linear-gradient(125deg, #005f80 0%, #f1466b 50%, #de4b6e 100%);
    border-radius: 25px;
}
.quality_global1 .left{
    padding: 25px 20px;
}
.quality_global1 .left img{
     transform: translate(-80px, -4em);
}
.quality_global1 h4{
        color: #fff;
    font-size: 2.2em;
    margin-bottom: 1em;
}
.quality_global1 p{
    font-size: 1.2em;
    color: #ffff;
}
.quality_global1 .right{
padding: 35px 10px;
}
.basic_page{
    padding-top: 0;
}
.basic_page h1{
        font-size: 2.3em;
    color: #005f80;
    font-weight: 600;
    margin-bottom: 1em;
}
.basic_page_content p{
        font-size: 20px;
    text-align: justify;
}
.basic_page_content h3{
    font-size: 1.6em;
    color: #005f80;
    margin-top: 1em;
}
.basic_page_content li{
        font-size: 20px;
}
.interview_section{
    padding-top: 0;
}
.ucpmp_select_area{
    padding-top: 0;
}
.ucpmp_guideline_first .report h3{
        font-size: 20px;
    color: #005f80;
    font-weight: 700;
}
.ucpmp_button{
        background: #e7466c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 20px;
    text-align: center;
}
.ucpmp_button:hover{
        background: #005f80;
    color: #ffff; 
    transition: ease-in 0.4s;
}
.ucpmp_guidline_second h2{
        font-size: 2.2em;
    font-weight: 700;
    color: #005f80;
    margin-bottom: 2em;
}
.commitee_name h5{
      font-size: 20px;
    font-weight: 600;
    color: #005f80;
    padding-left: 1em;
}
.commitee_name {
    border-left: 2px solid #de4b6e;
}
.commitee_name p{
        padding-left: 1em;
    font-size: 18px;
}
.ucpmp_guidline_second{
    background: #feedf1;
    border-radius: 25px;
}
.press_rel th{
        color: #f1466b !important;
}
.press_rel a{
    text-decoration: none;
    color: #005f80 !important;
}
.press_rel td{
        color: #005f80 !important;
}

#content-1999 h3,
#content-2005 h3,
#content-2020 h3,
#content-2021 h3
{
    right: -17px;
    top: -190px;
}

#content-2003 h3,
#content-2010 h3,
#content-2019 h3,
#content-2024 h3,
#content-2025 h3{
    right: -18px;
    top: -179px;
}

#content-2015 h3{
    right: -18px;
    top: -217px;
}
#content-2025{
    margin-left: 73%!important;
}
.timeline-box p {
    margin-top: 4.5em!important;
    margin-bottom: 0;
}
.right_contact{
        background: linear-gradient(330deg, #f1466b 0%, #005f80 80%);
    padding: 2em 2em;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #fff;
}
.con_address h2{
  font-size: 2.0em;
    font-weight: 500;
    color: #ffff;
    margin-bottom: 19px;
}
.con_address h6{
    color: #ffff;
    font-size: 1.3em;
}
.con_address p{
    color: #ffffffcf;
    font-size: 1.3em;
}
.contact_map{
    height: 90%;
	margin-top:20px;
}
.con_address2 h2{
  font-size: 2.0em;
    font-weight: 500;
    color: #ffff;
    margin-bottom: 34px;
    margin-top: 50px;
}
.con_address2 h6{
  	color: #ffff;
    font-size: 1.6em;   
}
.con_address2 p{
    color: #fff;
    font-size: 1.2em;
}
.con_address2 a{
    color: #fff; 
}
.con_address3 h6{
    margin-top: 125px;
    color: #fff;
    font-size: 1.6em;
}
.con_address3 p{
    color: #fff;
    font-size: 1.2em;   
}
.follow h5{
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.4em;
    margin-top: 1em;
}
.social_icon{
    display: inline-flex;
    margin-top: 1em;
    color: #046f80;
}
.social_icon div {
    font-size: 1em;
    margin-right: 20px;
    border-radius: 50%;
    background: #fff;
    padding: 5px 9px;
    border: 2px solid #046f80;
    cursor:pointer;
    
}
.social_icon div a {
   color: #046f80;
   cursor:pointer; 
}
.left_contact .custom_in{
        border-radius: 14px!important;
    border: 1px solid #005f80 !important;
     margin-bottom: 2em;
}
.left_contact h2{
        font-size: 1.4em;
    color: #005f80;
    margin-bottom: 1em;
}
.left_contact .form-submit{
        background: #de4b6e;
    color: #ffff;
    padding: 10px 33px;
    border-radius: 50px;
    font-size: 20px;
    transition: ease-in 0.3s;
}
.left_contact .form-submit:hover{
        background: #005f80; 
    transition: ease-in 0.3s;
}
.left_contact .form-select{
        height: 50px;
}
.report_download li{
        list-style: none;
    margin-bottom: 1em;
}
.report_download .download_report{ 
         float: right;
    text-decoration: none;
    background: #de4b6e;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
}
.reports h3{
      font-size: 1.6em;
    color: #005f80;
    font-weight: 600;
    margin-bottom: 23px;
}
.report_title{
        color: #e7466c;
    font-size: 1em;
    text-decoration: none;
}
.report_download{
        margin-bottom: 2em;
}
.border_complain {
position: relative;
    border-radius: 25px;
    background: #fff;
      padding: 60px 19px;
    z-index: 1;
    min-height: 220px;
}

.border_complain::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(90deg, #d7266f, #08aeea);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.border_complain{
    color: #005f80;
}
.status_complain h3{
        
    font-size: 1.6em;
    font-weight: 600;
}
.status_complain h4{
        font-size: 2em; 
    font-weight: 800;
}
.border_complain:hover img {
  filter: brightness(0) invert(1); /* makes it white */
}
.border_complain img {
  transition: filter 0.3s ease;
}
.border_complain:hover{
      background: linear-gradient(330deg, #f1466b 0%, #005f80 80%);
    color: #fff;
}

/*innovation slider */

.slider-item:first-child .innovation_story_title {
    margin: 0 1em 0 0;
}
.slick-list.draggable {
    padding: 0;
}
.meetslider .slider-item {
    padding: 0;
}

.innovation_story_title {
    margin: 0 1em;
    border-radius: 25px;
    padding: 2em;
    height: 34em;

}
.declaration{
    padding-top: 0em;
}
.declaration #yearFilter{
        width: 15%;
    border: 1px solid #f1466b;
    border-radius: 25px;
}
.external_detail img{
    border-radius: 25px;
}
.external_detail{
    padding-top: 0;
}
.events-grid{
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    /* border: 1px solid #ddd; */
    border-radius: 20px;
    margin-bottom: 2em;
}

.event_img{
    margin: 30px 40px 30px 30px;
    border-radius: 10px;
    overflow: hidden;
}
.event_img img{
        border-radius: 10px;
    transition: all 0.4s ease;
}
.event_con{
        padding: 30px 100px 30px 0px;
    margin-left: -25px;
}
.event_con h3{
font-weight: 700;
    font-size: 1.8em;
    line-height: 46px;
    color: #005f80;
}
.events-grid .event_date{
    margin-left:4em;
}
.events-grid i{
    color:#de4b6e;
}
.location-date{
    margin-bottom: 1em;
}
.event_con h3 a{
        text-decoration: none;
    color: #005f80;
}
.event_con h3 a:hover{
        color: #de4b6e;
}
.ipa_event_listing h1{
        color: #005f80;
    font-size: 2.4em;
    font-weight: 500;
    margin-bottom: 1em;
}
.ipa_event_listing{
    padding-top:0em;
}
.event_cat_list{
        border: 1px solid #eeee;
    padding: 13px 0px;
    border-radius: 13px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.event_cat_list li{
    list-style: none;
        margin-bottom: 1em;
         padding: 10px;
}
.event_cat_list a{
    text-decoration: none;
    color: #005f80;
    font-size: 1.2em;
    font-weight: 600;
}

.event_detail_data{
        padding-left: 3em;
}
.event_detail_data h2{
        background: #005f80;
    color: #ffff;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.6em;
        margin-bottom: 1em;
}
.event_detail_data img{
        border-radius: 25px;
    margin-bottom: 1em;
}
.event_detail_data h4{
    font-size: 1.2em;
    color: #005f80;
}
.event_detail_data a{
    text-decoration: none;
    color: #f1466b;
    font-weight: 600;
}
.event_cat_list ul{
        padding: 2px 12px;
}
.event_cat_list .active{
  background: #f1466b;
    border-radius: 10px;
    padding: 10px;
}
.event_cat_list .active a{
    color: #fff;
}
.event_vrief{
    padding-top: 0;
}
.event_detail_vrief{
        background: linear-gradient(330deg, #f1466b 0%, #005f80 80%);
    padding: 2em 2em;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #fff;
}
.event_detail_vrief h1{
        font-size: 2.4em;
        font-weight:600;
            padding-left: 1em;
}
.event_detail_vrief .location-date{
        margin-top: 2em;
    padding-left: 3em;
}
.event_detail_vrief .event_date{
    margin-left: 10em;
}
.common_head{
        display: inline-flex;
}
h3.right_spot_head {
    margin-left: 2em;
}
.spolight_left {
    padding-left: 3em;
    text-align: justify;
}
.about_pharmacy h3{
        color: #005f80;
    font-size: 2.7em;
        margin-bottom: 1em;
}
.world_slider .slick-dots{
    transform: rotate(360deg);
    left: 0%;
    top: 110%;
}
.cards {
  font-size: 2.4em;
  color: #005f80;
  font-weight: 700;
  position: relative; /* important for positioning ::before */
  padding-left: 1em; /* space for the line */
  display: inline-block;
}

.cards::before {
  content: "";  /* required */
  position: absolute;
  left: 0;
  top: 0;
  bottom: -50px;
  border-left: 3px solid #de4b6e;
}
.slide_it p{
    padding-left: 2em;
    font-size: 1em;
}
.spotlight .play-icon{
    width: 100px;
}
.spotlight1 img{
        border-radius: 25px;
    margin-bottom: 1em;
    object-fit: cover;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.spotlight1 img:hover{
        transition: width 2s, height 2s, transform 2s;
    transform: scale(0.97);
}
.spotlight1 h5{
    min-height: 70px;
    color: #005f80;
    font-weight: 700;
    font-size: 21px;
}
.spotlight1 p{
    min-height: 160px;
}
.right_part_spot{
    margin-left: 1em;
}
.spotlight1{
    background: #d547692b;
    border-radius: 25px;
}
.spotlight1 .small{
        font-weight: 500; 
    color: black !important;
    font-size: 14px;
}
.spotlight1 a{
        font-size: 17px;
    font-weight: 500 !important;
    color: #f1466b !important;
}
.social-link-scroll iframe{
        border: none;
    overflow: hidden;
    position: absolute;
    top: 13%;
    left: 12%;
    height: 670px;
}
.map_para h3{
        color: #005f80;
    font-size: 2.7em;
        margin-bottom: 24px;
}
.slide_card {
    background: #fde3e9;
    padding: 20px;
    border-radius: 25px;
    margin: 28px;
    height: 170px;
}
.slide_card h5{
    font-size: 2.4em;
    color: #005f80;
    font-weight: 700;
    position: relative; 
    display: inline-block;
}
