@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

:root {
  --dark-bg: #0f0f0f;
  --accent-blue: #0dcaf0;
  --border-redius: 8px;
  --primaryGold: #ff9900;
  --whiteColor: #ffffff;
  --SecondBg: #f8f7f0;
  --bodyFont: #000000;
  --text-color: #81848a;
  --primary-color: #1c2f45;
  --secondary-color: #e7e7e7;
  --text-color: #81848a;
  --accent-color: #ff9900;
  --white-color: #ffffff;
  --divider-color: #ebebeb;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Manrope", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", "Segoe UI", sans-serif;
}

h6 {
  font-family: "Manrope", sans-serif;
}
/* --- OVERLAY MENU --- */
.overlay-menu {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  justify-content: center;
}

.overlay-menu.active {
  height: 100vh;
}

.overlay-content-wrapper .nav-links li a {
  font-size: 20px;
}
/* ================================Navbar CSS start Here======================= */
.navLogo {
  width:150px;
}

.navbar-nav {
  margin: 0 auto !important;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item span {
  background-color: var(--primaryGold);
  width: 35px;
  height: 35px;
  border-radius: var(--border-redius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: var(--whiteColor);
}

.navbar-nav .nav-link {
  color: rgb(0, 0, 0) !important;
  font-weight: 500;
}

/* --- MENU LINKS --- */
.nav-links {
  list-style: none;
  padding: 0;
}

.nav-links li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(-30px);
  transition: 0.5s ease;
}

.overlay-menu.active .nav-links li {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.1s * var(--i));
}

.nav-links a {
  font-size: 3rem;
  font-weight: 800;
  color: var(--whiteColor);
  text-decoration: none;
  letter-spacing: 3px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent-blue);
  padding-left: 15px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 60px;
  background: none;
  border: none;
  color: var(--whiteColor);
  cursor: pointer;
}

/* --- HERO SECTION --- */
.Herobanner {
  width: 100%;
  height: auto;
  padding: 40px 0px 100px 0px;
}
.hero-section {
  width: 100%;
  height: auto;
  background: url("../images/orisg.jpg")
    no-repeat center center/cover;
  position: relative;
  z-index: 1;
  background-position:center;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
    .hero-section {
        background-position:left;
    }
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.heroBannerPara {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
}
.menu-icon-trigger {
  width: 30px;
  cursor: pointer;
}

.menu-icon-trigger span {
  display: block;
  height: 3px;
  background: #1C2F45;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.herobtn .hk-link-button {
  margin-top: 20px;
  display: inline-block;
  font-size: 16px;
  color: var(--primaryGold);
  padding: 15px 45px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  outline: none;
  box-shadow: none !important;
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: transparent;
}
.herobtn .hk-link-butto:hover {
  color: var(--whiteColor);
}
.herobtn .hk-link-button span {
  position: absolute;
  background: var(--primaryGold);
}

.herobtn .hk-link-button span:nth-child(1) {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  animation: animate1 2s linear infinite;
}
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.herobtn .hk-link-button span:nth-child(2) {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.herobtn .hk-link-button span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  animation: animate3 2s linear infinite;
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.herobtn .hk-link-button span:nth-child(4) {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.search-box-premium {
  display: flex;
  background: var(--whiteColor);
  padding: 5px 10px 5px 25px;
  border-radius: 50px;
}

.search-box-premium input {
  border: none;
  width: 100%;
  outline: none;
  padding: 10px 0;
}

.search-box-premium button {
  background: var(--primaryGold);
  color: var(--whiteColor);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.main-hero-icon {
  font-size: 70px;
  display: block;
  margin-bottom: 10px;
}
/* ====================================ABout US CSS Start Here ========================= */
.aboutUs {
  width: 100%;
  height: auto;
  background-color: var(--SecondBg);
}
.aboutImg {
  width: 100%;
  background-image: url(../images/Hero-1.png);
  height: 610px;
  background-size: cover;
  background-position: center;
}
.aboutHeading h6 {
  font-size: 16px;
  color: var(--bodyFont);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  margin-left: 52px;
}
.aboutHeading h6::before {
  position: absolute;
  content: "";
  top: 45%;
  left: -50px;
  width: 40px;
  height: 2px;
  background-color: var(--bodyFont);
}
.aboutContent {
  padding-inline: 50px !important;
}
.aboutUSHeading {
  font-size: 48px;
  font-weight: 500;
  color: var(--bodyFont);
  margin-left: 0;
  /* padding-block: 10px; */
}
.aboutUSHeading b {
  color: var(--primaryGold);
}
.AboutUspara {
  font-size: 18px;
  color: var(--text-color);
}

.about-content-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-content-list ul li {
  position: relative;
  list-style: none;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-left: 40px;
  margin-bottom: 20px;
}
.about-content-list ul li::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  background-image: url("../images/icon-check.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}


.genuine-rating-counter{
	background: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
	text-align: center;
}

.genuine-rating-counter .about-counter{
	margin-bottom: 5px;
}

.genuine-rating-counter .about-counter h2{
    background: url("../images/genuine-rating-counter-bg.jpg");
    background-size: cover;
	background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	font-weight: 900;
}

.genuine-rating{
	margin-bottom: 20px;
}

.genuine-rating ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.genuine-rating ul li{
	margin-right: 5px;
}

.genuine-rating ul li:last-child{
	margin-right: 0;
}

.genuine-rating ul li i{
	color: var(--accent-color);
}

.genuine-rating-counter-content p{
	text-transform: capitalize;
	margin: 0;
}
.MedicoPharma{
  background-image: url(../images/bg.jpeg);
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
}
.medicoverlay{
  background-color: rgba(0, 0, 128, 0.3);
  width: 100%;
  padding-block: 100px;
}


.ProDuctSection{
  padding: 80px 0;
}
.ProDuctSection .title h3{
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  padding-bottom: 20px;
}

.footer-section {
  background: #0f2a44;
  padding: 70px 0;
  color: #ffffff;
}

.footer-logo h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0;
}
.footer-logo img{
  width: 250px;
}
.footer-logo span {
  color: #ff9800;
}

.tagline {
  font-size: 14px;
  color: #ccc;
}

.footer-text {
  margin: 20px 0;
  color: #cfd8dc;
  max-width: 320px;
}

.footer-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff9800;
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  color: #cfd8dc;
}

.footer-contact i {
  margin-right: 10px;
  color: #ff9800;
}

.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ff9800;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff9800;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .footer-logo h2 {
    font-size: 32px;
  }
  .card{
    width: 100% !important;
    margin-top: 20px;
  }
  .MedicoPharma {
    background-position: center;
}
.aboutUSHeading{
  font-size: 28px;
}
.aboutContent {
    padding-inline: 30px !important;
    margin-top: 50px;
    padding-bottom: 20px;
}
.ProDuctSection{
  padding: 30px 0;
}
.ProDuctSection .title h3{
  font-size: 28px;
}
}
