* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #2a5ea7;
  --secondary-color: #3bb77e;
  --accent-color: #f8a31b;
  /* --dark-color: #02a650; */
  --bg-dark: #1a2a42;
  --light-color: #f8f9fa;
}

:root {
  --pr-color: #02a554;
  --green-color: #02a650;
  --sec-color: #ed1b24;
  --accent-color: #f8a31b;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
  scroll-behavior: auto !important;
}

body {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}


ul li {
  list-style-type: none;
}

/* Responsive font sizes */
@media (max-width: 767px) {
  body {
    font-size: calc(16px + 0.3vw);
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
}

/* Top Info Bar */
.top-info-bar {
  background-color: var(--green-color);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
  position: relative;
  z-index: 1031;
}

.top-info-bar a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-info-bar a:hover {
  color: var(--accent-color);
}

.top-info-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Main Header */
.main-header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  top: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  max-height: 85px;
}

@media screen and (max-width: 600px){
  html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  }
  .logo-container img{
    max-height: 60px;
  }
}



.logo-text {
  margin-left: -25px;
  font-size: 16px;
  font-style: italic;
  color: var(--green-color);
}

.logo-text h6 {
  font-weight: 700;
  font-size: 1rem;
  font-style: italic;
  color: black;
  margin: 0;
  line-height: 1;
}

.logo-text p {
  font-size: 0.8rem;
  color: black;
  margin: 0;
  font-weight: 500;
}

/* Navbar */
.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 700;
  padding: 10px 15px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--secondary-color);
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--sec-color);
  bottom: 5px;
  left: 15px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: calc(100% - 30px);
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  margin-top: 10px;
  padding: 10px 0;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item:hover {
  background-color: rgba(59, 183, 126, 0.1);
  color: var(--secondary-color);
  padding-left: 25px;
}

.dropdown-item:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}

.dropdown-item:hover:before {
  opacity: 1;
  left: 20px;
}

/* CTA Button */
.cta-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 183, 126, 0.3);
}

.cta-button:hover {
  background-color: #2fa36b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 183, 126, 0.4);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before,
.navbar-toggler-icon:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler-icon:before {
  transform: translateY(-6px);
}

.navbar-toggler-icon:after {
  transform: translateY(6px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (min-width: 1465px){
  .hero-slide{
    background-size: cover;
  }
}


.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  color: white;
  width: 50%;
  padding: 2% 7%;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  background-color: #02a651a4;
  opacity: 0;
}

.slide-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  animation: fadeInUp 1s ease;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.slide-content .btn {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: white;
  transform: scale(1.2);
  border-color: var(--secondary-color);
}

/* Slider Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.learn-more-button {
  background-color: var(--sec-color);
  color: white;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.learn-more-button:hover {
  background-color: #b80009;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /* margin-top: 15px; */
  }

  .dropdown-menu {
    box-shadow: none;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 15px;
  }

  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }

  .slide-content {
    padding: 0 10%;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {

  .top-info-bar {
    font-size: 0.8rem;
  }

  .hero-slider {
    height: 70vh;
    min-height: 400px;
  }

  .slide-content {
    padding: 10% 5%;

  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .navbar-brand {
    display: block;
  }
}

.reg-text {
  text-align: center;
  font-size: 25px;
  animation: fadeInUp 1s ease;
}

.del-text {
  font-weight: 650;
}

.products-text h1 {
  font-weight: 800;
  font-size: 40px;
  color: var(--sec-color);
  /* text-align: center; */
}

.view-products-button {
  padding: 12px 25px;
  border: none;
  background-color: var(--green-color);
  color: white;
  transition: all .3s ease-in-out;
}

.view-products-button:hover {
  background-color: #008842;
}


.products-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-slider {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.products-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.products-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.products-wrapper {
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.products-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.products-group {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}
@media screen and (max-width: 769px){
  .products-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }
  .products-container .products-autoplay-toggle{
    display: none;
  }
}

.products-card {
  flex: 1;
  background: white;
  border-radius: 20px;
  /* padding: 20px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  width: 300px;
  /* height: 400px; */
  max-width: 300px;
}

.products-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.products-image {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.products-image:hover {
  border-color: #667eea;
  background: #f0f2ff;
}

.products-image img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.products-placeholder {
  color: #adb5bd;
  font-size: 4rem;
  opacity: 0.3;
}

.products-nav-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.products-nav-btn {
  background: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #2c3e50;
  font-size: 1.2rem;
}

.products-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, var(--green-color) 0%, var(--pr-color) 100%);
  color: white;
}

.products-nav-prev {
  left: -30px;
}

.products-nav-next {
  right: -30px;
}

.products-indicators {
  text-align: center;
  margin-top: 30px;
}

.products-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.products-indicator.active {
  background: var(--sec-color);
  transform: scale(1.3);
}

.products-autoplay-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.products-autoplay-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .products-group {
    /* flex-direction: column; */
    gap: 20px;
    padding: 20px;
  }
  .product-card{
    height: 400px;
  }

  .products-image {
    height: 400px;
  }

  .products-image img{
    height: 400px;
  }

  .products-nav-btn {
    width: 50px;
    height: 50px;
  }

  .products-nav-prev {
    left: 10px;
  }

  .products-nav-next {
    right: 10px;
  }
  .products-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }
  .products-container .products-autoplay-toggle{
    display: none;
  }
}

@media (max-width: 576px) {
  .products-slider {
    padding: 40px 0;
  }

  .products-group {
    padding: 15px;
    justify-content: center;
    align-items: center;
  }


  .product-card{
    height: 400px;
  }

  .products-image {
    height: 400px;
  }

  .products-image img{
    height: 400px;
  }
}

/* CSS for divisions */

.divisions-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.divisions-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.divisions-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.divisions-section-subtitle {
  color: #666;
  max-width: 700px;
  /* margin: 0 auto; */
  font-size: 1.1rem;
}

/* Tabs Navigation */
.divisions-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.tab-btn {
  padding: 15px 40px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
}

.tab-btn.active::after {
  width: 100%;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 3px 3px 0 0;
}

/* Tab Content */
.tab-content {
  /* display: none; */
  animation: fadeIn 0.6s ease;
}

.tab-content.active {
  display: block;
}

.division-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.division-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.division-img {
  height: 250px;
  overflow: hidden;
}

.division-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.division-card:hover .division-img img {
  transform: scale(1.05);
}

.division-body {
  padding: 30px;
}

.division-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.division-text {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.division-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.feature-icon {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.9rem;
  margin-top: 3px;
}

.feature-text {
  color: #555;
  font-size: 0.95rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.learn-more-btn i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(3px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .divisions-section-title {
    font-size: 2.3rem;
  }

  .division-img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .divisions-section {
    padding: 70px 0;
  }

  .divisions-section-title {
    font-size: 2rem;
  }

  .divisions-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 5px;
  }

  .tab-indicator {
    display: none;
  }

  .tab-btn::after {
    height: 2px;
  }
}

/* CSS for partners */
.partners-section {
  padding: 60px 0;
  /* background: #f8f9fa; */
  text-align: center;
  overflow: hidden;
}

.partners-section h2 {
  margin-bottom: 40px;
  /* color: #333; */
  font-size: 40px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 30px;
}

.logo-item img {
  max-width: 300px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}


/* Video Sections */
.video-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(2, 165, 84, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(2, 166, 80, 0.2) 0%, transparent 50%);
}

.video-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-header {
  text-align: center;
  margin-bottom: 5rem;
}

.video-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, var(--pr-color), var(--green-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(2, 165, 84, 0.5);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  /* height: 250px; */
  background: linear-gradient(45deg, var(--pr-color), var(--green-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.video-play:hover {
  transform: scale(1.1);
  background: white;
}

.video-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid var(--pr-color);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}

.video-content {
  padding: 2rem;
  background-color: white;
}

.video-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  /* color: white; */
}

.video-description {
  /* color: rgba(255, 255, 255, 0.7); */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.video-duration {
  background: rgba(2, 165, 84, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
}

/* Featured Video */
.video-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(2, 165, 84, 0.1) 0%, rgba(2, 166, 80, 0.1) 100%);
  border: 2px solid rgba(2, 165, 84, 0.3);
}

.video-featured .video-thumbnail {
  height: 400px;
  background: linear-gradient(45deg, var(--pr-color), var(--green-color));
}

.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(45deg, var(--pr-color), var(--green-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-card {
  animation: fadeInUp 0.6s ease forwards;
}

.video-card:nth-child(2) {
  animation-delay: 0.1s;
}

.video-card:nth-child(3) {
  animation-delay: 0.2s;
}

.video-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-section {
    padding: 4rem 1rem;
  }

  .video-thumbnail {
    height: 200px;
  }

  .video-featured .video-thumbnail {
    height: 250px;
  }
}

/* Footer */
.pharma-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
  box-shadow: 0 -5px 15px rgb(0 0 0 / 10%);
  position: relative;
  overflow: hidden;
}

.pharma-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 100px;
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white !important;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 300;
  opacity: 0.9;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
  opacity: 1;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.m-circle {
  font-size: 12px;
  margin-right: 10px;
}

.core-text-start {
  font-size: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color) !important;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;

  /* margin-top: 20px; */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgb(255 255 255 / 10%);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-form input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  background-color: rgb(255 255 255 / 10%);
  color: var(--text-light);
  border: 1px solid rgb(255 255 255 / 20%);
}

.newsletter-form input::placeholder {
  color: rgb(255 255 255 / 60%);
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  width: 100%;
}

.newsletter-form button:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.copyright {
  opacity: 0.7;
  font-size: 0.8rem;
}

.badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.badge {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.badge:hover {
  opacity: 1;
}

@media (width <=768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* show-more-button */
.show-morebutton {
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  z-index: 1;
}

.show-morebutton::after,
.show-morebutton::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.show-morebutton::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.show-morebutton::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.show-morebutton:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.show-morebutton:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.show-morebutton:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}



/* About header css */
.about-header-section {
  background-image: url('../img/panacea-headquaters-asokwa.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
}

.about-overlay-box-container {
  background-color: #fff;
  color: black;
  padding: 60px;
  margin-top: -120px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-overlay-box-container p {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.profile-heading {
  color: var(--secondary-color);
  animation: fadeInUp 1s ease;
}


@media (max-width: 768px) {
  .overlay-box-container {
    padding: 20px;
    margin-top: 20px;
    z-index: 999;
  }
}

.mission-vision-section {
  padding: 5rem 0;
  position: relative;
}

.mission-overlay-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  height: 500px;
  /* Adjust based on your needs */
  cursor: pointer;
}

.mission-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  object-position: top;
}

.mission-overlay-card:hover img {
  transform: scale(1.03);
}

.mission-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 15px 15px 0 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  border-top: 5px solid var(--sec-color);
  height: 300px;
}

.mission-overlay-card:hover .mission-card-content {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.95);
}

.mission-section-title {
  color: #182848;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.mission-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--bg-dark);
}

.mission-feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.mission-feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.mission-feature-list li::before {
  content: '✓';
  color: var(--sec-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Animation classes */
.animate-card {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFadeIn 1s ease forwards;
}

@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .overlay-card {
    height: 400px;
  }

  .card-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .overlay-card {
    height: 350px;
  }
}

.core-values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.core-value-heading {
  color: var(--secondary-color);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 30px;
}

.value-item {
  background: #92929259;
  padding: 12px;
  border-radius: 15px;
  color: black !important;
}

.value-heading {
  color: var(--secondary-color);
}

/* Hero Section */
.retail-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #02a650);
  color: white;
  position: relative;
  padding: 180px 0px 100px;
  width: 100%;
  /* height: 70vh; */
  overflow: hidden;
}

.retail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/retail-12.jpg') center/cover;
  opacity: 0.15;
}
.products-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/products-header.png') center/cover;
  opacity: 0.15;
}


.retail-hero-content {
  position: relative;
  z-index: 2;
  /* padding-top: 30px; */
}

.retail-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  animation: fadeInUp 1s ease;
  /* margin-bottom: 20px; */
}

.retail-hero-content p {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.retail-button {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.retail-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.retail-gallery-section {
  position: relative;
}

.retail-image-slider {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-flow: column;
  width: clamp(360px, 96vw, 1000px);
  aspect-ratio: 16 / 9;
  /* min-height: 300px; */
  overflow: hidden;
  border-radius: 8px;
  container-type: inline-size;
  contain: content;
  background-color: #0006;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px, rgba(0, 0, 0, 0.3) 0px 2px 4px,
    rgba(0, 0, 0, 0.25) 0px 4px 8px, rgba(0, 0, 0, 0.2) 0px 8px 16px,
    rgba(0, 0, 0, 0.15) 0px 16px 32px;
}

@media screen and (max-width: 600px) {
  .retail-image-slider {
    width: 350px;
  }
}

.retail_slider__content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}

.retail-slider-control--button {
  border: 0;
  background: 0;
  outline: 0;
  cursor: pointer;
  place-content: center;
  padding-inline: 3vw;
  z-index: 1;
  display: grid;
}

.icon {
  height: 2rem;
  width: 2rem;
  fill: var(--icon-default);
  border-radius: 50%;
}

.retail-slider-control--button:where(:hover) {
  background-image: linear-gradient(to var(--position),
      #0000 0%,
      #0002,
      80%,
      #0006 100%);

  .icon {
    fill: var(--icon-accent);
    background: #0001;
  }
}

.retail-slider-control--button:active {
  /* outline: 0.2em solid hsl(204 100 53); */
  outline-offset: -0.5em;
}

.retail-prev-button {
  --position: left;
}

.retail-next-button {
  --position: right;
}

.retail-image-display {
  position: fixed;
  inset: 0;
}

.retail-slider-navigation {
  z-index: 10;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-columns: 100%;
  gap: 1.25rem;
  padding: 1rem;
  place-content: center;
  background-color: var(--navigation-color);
  backdrop-filter: blur(6px);
}

.retail-nav-button {
  display: grid;
  width: 100%;
  height: 100%;
  border-radius: 0.5em;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 0;
  aspect-ratio: 16 / 9;
  transition: filter 150ms linear, scale 266ms ease;
}

.thumbnail {
  display: block;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.retail-nav-button[aria-selected="true"] {
  scale: 1.1;
}

.retail-nav-button[aria-selected="true"],
.retail-nav-button:focus-visible {
  outline: 0.2em solid var(--active-color);
  outline-offset: 0.2em;
}

.retail-nav-button[aria-selected="false"] {
  filter: opacity(0.7);
}

.retail-nav-button[aria-selected="false"]:where(:hover, :focus-visible) {
  filter: opacity(1);
}

@container (max-width: 660px) {
  .retail-nav-button:not(:has(img)) {
    background-color: rgb(241, 235, 232);
  }

  .retail-slider-navigation {
    display: flex;
    justify-content: center;
    padding-block: 1.5em;
  }

  .retail-nav-button {
    inline-size: 0.625rem;
    aspect-ratio: 1;
    border-radius: 50%;
  }

  .retail-nav-button>.thumbnail {
    display: none;
  }

  .retail-nav-button[aria-selected="true"] {
    background-color: black;
    scale: 1.5;
  }
}

.retail-list a li {
  color: black;
  transition: all .3s ease-in-out;
}

.retail-list a li:hover {
  color: var(--sec-color);
}

@media screen and (max-width: 600px) {
  .retail-list {
    display: flex;
    flex-direction: column;
  }
}



.retail-services-header {
  text-align: center;
  margin-bottom: 3rem;
  overflow: hidden;
}



@keyframes textFire {
  0% {
    text-shadow: 0 0 5px rgba(79, 70, 229, 0.5);
  }

  100% {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 30px rgba(79, 70, 229, 0.6);
  }
}

.retail-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.retail-service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.retail-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.retail-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green-color), var(--secondary-color));
  z-index: 2;
}

.retail-service-card:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

.retail-service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--green-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--secondary-color);
}

.retail-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.retail-service-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-color), var(--secondary-color));
  border-radius: 3px;
}

.retail-service-card p {
  color: #64748b;
  line-height: 1.6;
}

.retail-highlight-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--green-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.retail-highlight-card:hover {
  transform: scale(1.02);
}

.retail-highlight-content {
  padding: 2rem;
  flex: 1;
}

.retail-highlight-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.retail-highlight-card p {
  color: rgba(255, 255, 255, 0.9);
}

.retail-highlight-image {
  flex: 1;
  background: url('../img/ab.png') center/cover;
  min-height: 100%;
  position: relative;
}


.retail-cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--secondary-color);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.retail-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .retail-highlight-card {
    grid-column: span 1;
    flex-direction: column;
  }

  .retail-services-header h1 {
    font-size: 2.5rem;
  }
}

.why-choose-us {
  padding: 80px 0;
  position: relative;
  /* background-color: #f8f9fa; */
}

.why-content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.why-image-container {
  flex: 1;
  position: relative;
  z-index: 1;
}

.why-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-text-container {
  flex: 1;
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-left: -100px;
  /* This creates the overlap effect */
}

.why-text-container h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  position: relative;
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.why-feature-text h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.why-feature-text p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-content-wrapper {
    flex-direction: column;
  }

  .why-text-container {
    margin-left: 0;
    margin-top: -50px;
    width: 90%;
  }

  .why-image-container img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .why-text-container {
    padding: 30px;
  }

  .why-feature-item {
    flex-direction: column;
    gap: 10px;
  }

  .why-feature-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/*Wholesale Features Section */
.whoelesale-features-section {
  padding: 100px 0;
  background-color: white;
}

.wholesale-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.wholesale-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.wholesale-feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.wholesale-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wholesale-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 94, 167, 0.05) 0%, rgba(59, 183, 126, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.wholesale-feature-card:hover::before {
  opacity: 1;
}

.wholesale-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.wholesale-feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.wholesale-feature-text {
  color: #666;
  line-height: 1.7;
}

.wholesale-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2fa36b 100%);
  color: white;
  text-align: center;
}

.wholesale-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.wholesale-cta-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.wholesale-cta-button {
  background-color: white;
  color: var(--secondary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wholesale-cta-button:hover {
  background-color: var(--dark-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.products-text {
  width: 60%;
}


.product-card {
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 300px;
  object-fit: cover;
  /* padding: 15px; */
  background: #f8f9fa;
}

.nav-tabs .nav-link {
  font-weight: 600;
  color: #555;
  border: none;
  padding: 12px 20px;
}

.nav-tabs .nav-link.active {
  color: var(--green-color);
  border-bottom: 3px solid var(--green-color);
  background-color: transparent;
}

.category-title {
  position: relative;
  margin-bottom: 30px;
}

.category-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--green-color);
}

.tab-content {
  padding: 30px 0;
}

.pdf-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--sec-color);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
  width: 100%;
}

.gallery img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s;
  object-fit: cover;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.modal img.loaded {
  display: block;
}


.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.modal .prev,
.modal .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: bold;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
}

.modal .prev {
  left: 20px;
}

.modal .next {
  right: 20px;
}

.contact-details {
  padding: 16px;
  border: 1px solid var(--green-color);
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  height: 100px;
  margin-bottom: 20px;
}


.c-icon {
  color: var(--sec-color);
}


.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid black;
  /* width: fit-content; */
}

.input-group input {
  border: none;
  width: 90%;
}

.input-group input:focus {
  outline: none;
}

.input-group textarea {
  border: none;
  width: 100%;
  background: transparent;
}

.input-group textarea:focus {
  outline: none;
}

.report-adverse-form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 25px 16px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--green-color) 0%, var(--secondary-color) 100%);
}

.map-row {
  --bs-gutter-x: none;
}

.locations-heading {
  display: flex;
  align-items: center;
}

@media screen and (max-width:768px) {
  .locations-heading {
    display: flex;
    flex-direction: column;
  }
}

.locations-heading img {
  width: 160px;
}

.current-locations-heading {
  color: var(--sec-color);
  font-weight: 700;
  font-size: 40px;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  height: 100%;
}

.location-item img {
  width: 100px;
  cursor: pointer;
}

.location-content {
  text-align: center;
}

.location-content h5 {
  margin-bottom: 10px;
}

.news-image img {
  width: 100%;
  z-index: 100;
  border-radius: 15px;
}

.news-content {
  position: relative;
  background-color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 90%;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 1000;
  padding: 16px;
  border-radius: 15px;
  border-bottom: 2px solid var(--secondary-color);
}

.read-blog-button {
  border: none;
  background: none;
  color: var(--secondary-color);
  transition: all .3s ease-in-out;
}

.read-blog-button:hover {
  color: var(--sec-color);
}

.date-stamp {
  color: var(--secondary-color);
}

/* Blog Detail Page Styles */

.blog-detail-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-meta {
  color: #6c757d;
  margin-bottom: 20px;
}

.blog-detail-content img {
  border-radius: 8px;
  margin-bottom: 30px;
}

.sidebar {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sidebar-news-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.sidebar-news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-news-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.sidebar-news-content h5 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.stats-section {
	padding: 80px 0;
	background-color: #f8f9fa;
	text-align: center;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--secondary-color);
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.stat-number::after {
	content: '+';
	display: inline;
}

.stat-label {
	font-size: 1.1rem;
	color: #6c757d;
}

.float {
	position: fixed;
	padding: 5px 10px;
	bottom: 40px;
	left: 40px;
	background-color: #002f75;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	font-size: 20px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	font-size: 20px;
	color: var(--secondary-color);
}

.express-online-logo{
  max-height: 100px;
}


.panacea-express-logo{
  max-height: 70px;
}



