@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 95% !important;
  margin: 0 auto;
}

:root {
  /* Colors */
  --primary-color: #012E29;
  --secondary-color: #036056;
  --dark-color: #212529;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;

  /* Effects */
  --transition: all 0.3s ease-in-out;
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

body {
  font-family: var(--font-body);
  color: var(--dark-color);
  line-height: 1.7;
  overflow-x: hidden !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--primary-color);
}

h1 {
  font-weight: 800;
  font-size: 2.5rem;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
}

h4 {
  font-weight: 600;
  font-size: 1.25rem;
}

h5 {
  font-weight: 600;
  font-size: 1.1rem;
}

h6 {
  font-weight: 600;
  font-size: 1rem;
}

p {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: #444;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-color);
}

.text-small {
  font-size: var(--font-size-sm);
}

.text-large {
  font-size: var(--font-size-lg);
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--secondary-color);
  margin-top: 10px;
}

.bg-darker {
  background-color: #121212;
}


.top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: transform 0.3s ease;
}

.top-bar-hidden {
  transform: translateY(-100%);
}

.top-bar a,
.top-bar-contact a {
  color: white;
  transition: var(--transition);
}

.top-bar a:hover,
.top-bar-contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Main Navigation */
.navbar {
  transition: var(--transition);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1020;
  /* border-bottom: 2px solid var(--dark-color); */
}

/* Custom Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none; /* Hidden by default, shown on mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1031;
}

.mobile-menu-toggle:hover {
  background-color: rgba(1, 46, 41, 0.08);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1025;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Slide-in Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  z-index: 1030;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(1, 46, 41, 0.1);
  background: white;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-menu-close:hover {
  background-color: rgba(1, 46, 41, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  padding: 20px 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
}

.mobile-nav-link i {
  margin-right: 15px;
  width: 20px;
  color: var(--primary-color);
  font-size: 16px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(1, 46, 41, 0.08);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-nav-link.join-btn {
  margin: 15px 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 8px;
  border-left: none;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  transform: none;
}

.mobile-nav-link.join-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 46, 41, 0.3);
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  justify-content: space-between;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.mobile-nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(1, 46, 41, 0.03);
  transition: max-height 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
  max-height: 200px;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 25px 12px 60px;
  color: var(--gray-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-dropdown-item:hover {
  background-color: rgba(1, 46, 41, 0.08);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-menu-footer {
  margin-top: auto;
  padding: 20px 25px;
  border-top: 1px solid rgba(1, 46, 41, 0.1);
  background: white;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.mobile-social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(1, 46, 41, 0.3);
}

.mobile-contact-info {
  text-align: center;
}

.mobile-contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--gray-color);
}

.mobile-contact-info i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Mobile Menu Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link.animate-in {
  animation: slideInRight 0.4s ease forwards;
}

/* Responsive adjustments for mobile menu */
@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
  
  .mobile-nav-link {
    font-size: 18px;
    padding: 18px 20px;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

.navbar-sticky {
  position: fixed;
  top: 0 !important;
  width: 100%;
  animation: fadeInDown 0.5s ease-in-out;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.brand-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.2;
  display: block;
  font-family: var(--font-primary);
}

.brand-tagline {
  color: var(--gray-color);
  font-size: 0.8rem;
  font-weight: 400;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0.25rem;
  padding: 0.75rem 0.5rem;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.04em;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 0.7rem;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  margin-top: 0;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.6rem 1.2rem;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(1, 46, 41, 0.08);
  color: var(--primary-color);
  transform: translateX(5px);
}

.dropdown-item:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
}

.navbar-nav .dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* News Cards */
.card {
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.event-date {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
}


.btn-lg {
  height: 58px;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
  /* Hide mobile menu elements on larger screens */
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-toggle {
    display: none !important;
  }

  /* Show desktop navigation */
  .navbar-collapse {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  /* Show mobile menu elements on screens smaller than desktop */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Hide desktop navigation on mobile */
  .navbar-collapse {
    display: none !important;
  }

  .top-bar {
    padding: 5px 0;
    font-size: 0.75rem;
  }

  .top-bar-contact span {
    display: none;
  }

  .top-bar-location {
    font-size: 0.75rem;
  }

  .navbar {
    top: 29px;
  }

  .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background-color: rgba(1, 46, 41, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 2rem;
    background-color: transparent;
  }

  .hero-section {
    padding-top: 6rem;
    text-align: center;
  }

  .section-title::after {
    margin: 10px auto 0;
  }
}

@media (max-width: 767px) {

  /* Show mobile menu elements on smaller screens */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Hide desktop navigation on mobile */
  .navbar-collapse {
    display: none !important;
  }

  .top-bar {
    text-align: center;
  }

  .top-bar-contact {
    justify-content: center;
    margin-bottom: 5px;
  }

  .top-bar-location {
    display: none;
  }

  .navbar {
    top: 38px;
  }
  .brand-text {
    display: none !important;
  }

  .hero-header-title{
    font-size: 1.5rem !important;
  }

  .hero-content{
    display: none !important;
  }

  .hero-image .parallax-wrapper{
    display: none;
  }
}

/* Helpers */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.learn-more-button {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Remove border-radius from all elements except social icons */
.card,
.card-img-top,
.dropdown-menu,
.dropdown-item,
.navbar-nav,
.btn,
.btn-primary,
.btn-outline-primary,
.form-control {
  border-radius: 0 !important;
}

/* Keep border-radius for social icons */
.social-icon {
  border-radius: 50%;
}

.hero-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-header-title {
  font-size: 4rem;
  overflow: hidden;
  opacity: 0; /* Hide initially to prevent flash before animation */
}

.hero-header-title .char {
  display: inline-block;
  transform-origin: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  object-fit: cover;
}

.hero-image img {
  width: 100%;
  height: 600px;
  transform-origin: center;
  object-fit: cover;
}

.hero-header-description {
  opacity: 0;
  transform: translateY(20px);
}


.member-button {
  color: white;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.687);
}

.member-button:hover {
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.marquee-scrolling-values {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-inner p,
.marquee-inner i {
  display: inline-flex;
  margin: 0;
}

.scrolling-values-item {
  font-size: 3rem;
  font-weight: 700;
}

/* Animation related classes */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px;
  background-size: 110%;
  background-position: center 0%;
  background-repeat: no-repeat;
  will-change: background-position;
  opacity: 0;
  /* Start completely hidden */
}

/* Disable parallax effect on mobile */
@media (max-width: 768px) {
  .parallax-wrapper {
    background-size: cover;
    background-position: center center;
    height: 400px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 46, 41, 0.5), rgba(3, 96, 86, 0.7));
  z-index: 1;
  opacity: 0;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
  padding: 3rem;
}

.hero-caption {
  color: #fff;
  max-width: 700px;
  /* text-align: right; */
  opacity: 0;
  margin-bottom: 1rem;
  transform: translateY(0px);
}

.hero-caption-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-caption-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  color: white;
}

.hero-content .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Parallax scrolling effect for hero background */
@media (min-width: 768px) {
  .parallax-wrapper {
    background-attachment: fixed;
    transition: background-position 0.3s ease;
  }
}

.text-reveal {
  opacity: 0;
  transform: translateY(20px);
}

/* Entrance animation classes */
.top-bar {
  position: relative;
  opacity: 0;
  transform: translateY(-100%);
}

.navbar {
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
}

.heading-animation {
  display: inline-block;
  overflow: hidden;
}

.heading-animation-1 {
  display: inline-block;
  overflow: hidden;
}

.split-chars {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

/* Vertical About Us Text */
.about-vertical {
  position: absolute;
  top: 0;
  left: -30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
}

.about-vertical span {
  padding: 5px 0;
}

/* Home about section styling */
.home-about-pmag {
  position: relative;
}

.home-about-pmag .row {
  min-height: 500px;
  /* Set a minimum height for the entire row */
  display: flex;
  flex-wrap: wrap;
}

.home-about-title {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.about-header-section {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-header-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background-color: var(--secondary-color);
  transform: skewX(-15deg);
  z-index: 1;
}

.about-header-container {
  padding: 3rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-section {
  /* background-color: black; */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-inner {
  max-width: 600px;
}

.get-btn {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.get-btn:hover {
  color: white;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  transform: translateY(-3px);
}

.pmag-heading {
  font-weight: 900;
  color: white;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
}

.pmag-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: white;
}

.key-statistics {
  /* background-image: url('../images/who-we-are-bg.jpg'); */
  padding: 4rem 0;
  position: relative;
}

.about-side-home{
  position: relative;
  background-image:  url(../images/who-we-are-bg.jpg);
  background-position:  center;
  background-size: cover;
  background-attachment:  fixed;
}

.about-side-home::before{
  content: "";
  top: 0;
  left:  0;
  width: 100%;
  height: 100%;
  background: #121212c7;
  position: absolute;
}

.key-statistics .section-title::after {
  background-color: var(--secondary-color);
  margin: 10px auto 0;
}

.stat-item {
  position: relative;
  height: 420px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.stat-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  z-index: 2;
  padding: 1.5rem;
  transition: opacity 0.4s ease-in-out;
}

.stat-icon {
  margin-bottom: 1rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-info {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.stat-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.stat-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 0.4s ease-in-out;
}

.stat-hover-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 46, 41, 0.85), rgba(3, 96, 86, 0.7));
  z-index: -1;
}

.stat-hover-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.stat-hover-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.stat-item:hover .stat-content {
  opacity: 0;
}

.stat-item:hover .stat-hover-content {
  opacity: 1;
}

/* Pivotal Role Section Styles */
.pivotal-role-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.p-role-title {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
}

.pivotal-role-item {
  transition: var(--transition);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
}

.pivotal-role-item:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.p-item-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.p-item-content {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-color);
  border-right: 1px solid var(--gray-color);
  border-left: 1px solid var(--gray-color);
}

.p-content-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2rem;
}

/* PMAG News & Events Section Styles - All with unique class names to avoid conflicts */
.pmag-news-section {
  padding: 5rem 0;
  background-color: black;
  position: relative;
}

.pmag-news-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.pmag-news-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.pmag-news-card {
  height: 100%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pmag-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pmag-news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.pmag-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pmag-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.pmag-news-card:hover .pmag-news-image img {
  transform: scale(1.05);
}

.pmag-news-content {
  padding: 1.5rem;
  position: relative;
}

.pmag-news-date {
  position: absolute;
  top: -30px;
  left: 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.pmag-news-day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.pmag-news-month {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pmag-news-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.pmag-news-excerpt {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pmag-news-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.pmag-news-link i {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.pmag-news-link:hover {
  color: var(--primary-color);
}

.pmag-news-link:hover i {
  transform: translateX(5px);
}

.pmag-news-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.pmag-news-link:hover::after {
  width: 100%;
}

/* Event Card Styling */
.pmag-event-card {
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pmag-event-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.pmag-event-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.pmag-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.pmag-event-content {
  padding: 2rem;
  color: white;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pmag-event-date {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pmag-event-day {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.pmag-event-month {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.25rem;
  display: block;
}

.pmag-event-heading {
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.pmag-event-excerpt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pmag-event-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
}

.pmag-event-button:hover {
  background-color: transparent;
  color: white;
}

.pmag-news-footer {
  text-align: center;
  margin-top: 3rem;
}

.pmag-view-all-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pmag-view-all-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: -1;
}

.pmag-view-all-link:hover {
  color: white;
}

.pmag-view-all-link:hover::before {
  left: 0;
}

/* PMAG Footer Styles - With unique class names to avoid conflicts */
.pmag-footer {
  background-color: #001a17;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.pmag-footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.pmag-footer-top {
  padding: 5rem 0 3rem;
  position: relative;
}

.pmag-footer-brand {
  margin-bottom: 1.5rem;
  position: relative;
}

.pmag-footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 95%;
}

.pmag-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.pmag-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.pmag-social-icon:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.pmag-footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.pmag-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 40px;
  background-color: var(--secondary-color);
}

.pmag-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pmag-footer-list li {
  margin-bottom: 0.8rem;
}

.pmag-footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.pmag-footer-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.pmag-footer-list a:hover {
  color: white;
  transform: translateX(5px);
}

.pmag-footer-list a:hover::before {
  width: 8px;
  height: 8px;
  background-color: white;
}

.pmag-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pmag-contact-item {
  display: flex;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.pmag-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 15px;
  color: var(--secondary-color);
}

.pmag-contact-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.pmag-contact-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pmag-contact-text a:hover {
  color: white;
}

.pmag-newsletter-heading {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.75rem;
}

.pmag-form-group {
  position: relative;
  display: flex;
}

.pmag-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.pmag-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pmag-form-input:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
}

.pmag-form-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  background-color: var(--secondary-color);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pmag-form-button:hover {
  background-color: var(--primary-color);
}

.pmag-footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.pmag-copyright {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.pmag-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pmag-footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pmag-footer-nav a:hover {
  color: white;
}

@media (min-width: 768px) {
  .pmag-copyright {
    text-align: left;
  }

  .pmag-footer-nav {
    justify-content: flex-end;
    margin-top: 0;
  }

  .pmag-footer-nav a {
    margin: 0 0 0 30px;
  }
}

/* Membership Highlight Card Styles */
.membership-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  position: relative;
  overflow: hidden;
}

.membership-highlight::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.membership-highlight::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}

.membership-highlight .p-content-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.membership-highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.membership-highlight .btn {
  border: 2px solid white;
  color: white;
  background-color: transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.membership-highlight .btn:hover {
  background-color: white;
  color: var(--primary-color);
}

.member-count {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0 1.5rem;
}

.count-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.count-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.about-header{
  border-bottom:  2px solid var(--dark-color);
  padding-bottom:  32px;
}


.about-page-title{
  font-weight: 800;
  font-size: 2.5rem;
}

.nav-tabs{
  border-bottom:  none;
  gap:  20px;
}

.nav-tabs .nav-item{
  border: none;
  color:  white;
}
.nav-tabs .nav-item .nav-link{
  color: white;
}
.nav-tabs .nav-item .nav-link.active{
  border: none;
  border-radius:  0 !important;
}
.nav-tabs .nav-item .nav-link:hover{
  border: none;
}

.overview-content{
  position: relative;
  background-image: url('../images/pharma-page-bg.png');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.overview-content::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.788);
}
.overview-content-front{
  position: relative;
  z-index: 1;
}
.about-image{
  height: 400px;
  object-fit: cover;
}

.about-header{
  background-attachment:  fixed;
}

.leadership-image{
  height: 320px;
  object-fit: cover;
  width:  100%;
}

.timeline {
  position: relative;
  padding: 2.5rem 0;
  margin: 0 auto;
  max-width: 1000px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,black, var(--secondary-color));
  border-radius: 2px;
  z-index: 1;
}

/* Each item is full-width; children are anchored to opposite sides */
.timeline-item {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  box-sizing: border-box;
  z-index: 2;
  height: 350px;
  transition: transform .28s ease, box-shadow .28s ease;
  margin-bottom: 30px
}

/* Image and content occupy opposite sides */
.timeline-item .timeline-img,
.timeline-item .timeline-content {
  position: absolute;
  top: 0.25rem;
  width: 44%;
  box-sizing: border-box;
}

/* Image box */
.timeline-item .timeline-img {
  height: 300px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(18, 38, 63, 0.08);
  transition: transform .28s ease, box-shadow .28s ease;
  margin-bottom: 20px;
}

.timeline-item .timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

/* Content box */
.timeline-item .timeline-content {
  background: #fff;
  padding: 1rem 1.25rem;
  color: var(--primary-color);
  /* box-shadow: 0 6px 18px rgba(18, 38, 63, 0.04); */
  margin-top: 20px;
  height: 250px;
}
.timeline-content h4{
  color:  var(--secondary-color);
  font-weight: 800;
  font-size:  2rem;
}

/* Left item: image on left, text on right */
.timeline-item.left .timeline-img {
  left: 0;
}

.timeline-item.left .timeline-content {
  right: 0;
  text-align: left;
}

/* Right item: image on right, text on left */
.timeline-item.right .timeline-img {
  right: 0;
}

.timeline-item.right .timeline-content {
  left: 0;
  text-align: left;
}

/* Center marker sits on the vertical line */
.timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.18);
  border: 4px solid #fff;
  z-index: 3;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Hover effects */
.timeline-item:hover {
  transform: translateY(-6px);
}

.timeline-item:hover .timeline-img {
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(18, 38, 63, 0.12);
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.timeline-item:hover::after {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
}

/* Responsive: stack items on small screens (image left, content below/right) */
@media (max-width: 767.98px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    min-height: auto;
    padding: 1rem 0.5rem 1.5rem 0;
  }

  .timeline-item .timeline-img,
  .timeline-item .timeline-content {
    position: relative;
    width: auto;
  }

  .timeline-item .timeline-img {
    width: 90px;
    height: 70px;
    float: left;
    margin-right: 16px;
  }

  .timeline-item .timeline-content {
    margin-left: 110px;
    padding: 0.75rem;
  }

  .timeline-item::after {
    left: 20px;
    top: 32px;
    transform: translateY(0);
  }
}

.pmag-core-values{
  background-color: black;
  color: white;
}

.pmag-value-item{
  background: transparent;
  border:  1px solid rgba(255, 255, 255, 0.733);
  padding:  16px;
  height: 300px;
  transition:  all .3s ease-in-out;
}
.pmag-value-item:hover {
  box-shadow: 0 8px 24px rgba(3, 96, 86, 0.25);
}

.value-icon{
  padding:  16px;
  background: var(--secondary-color);
  margin-bottom:  30px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  all .3s ease-in-out;
}

.value-icon i{
  font-size: 2rem;
  font-weight: 800;
}

.value-content p{
  color: white;
}

.value-title{
  color:  var(--secondary-color);
}

.pmag-value-item:hover .value-icon{
  transform:  translateY(-5px);
}

/* History Timeline Styles */
.history-timeline-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.history-timeline-section .section-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.history-timeline-section .section-subtitle {
  color: var(--gray-color);
  font-size: var(--font-size-lg);
  margin-bottom: 2.5rem;
}

/* Clearfix for timeline container */
.history-timeline-section::after {
  content: "";
  display: table;
  clear: both;
}

.history-timeline-wrapper {
  position: relative;
  padding: 20px 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.history-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  z-index: -1;
}

.history-timeline-item {
  position: relative;
  margin-bottom: 80px;
  clear: both;
}

.history-timeline-item:last-child {
  margin-bottom: 0;
}

.history-timeline-badge {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  margin-left: -40px;
  z-index: 2;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 80px;
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(1, 46, 41, 0.2);
  font-family: var(--font-heading);
  transition: var(--transition);
}

.history-timeline-panel {
  position: relative;
  width: 45%;
  float: left;
  margin-top: 15px;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  z-index: 1;
}

.history-timeline-panel::before {
  content: '';
  position: absolute;
  top: 26px;
  right: -15px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid #fff;
  border-bottom: 15px solid transparent;
  z-index: 1;
}

.history-timeline-item:nth-child(odd) .history-timeline-panel {
  float: left;
  text-align: right;
}

.history-timeline-item:nth-child(even) .history-timeline-panel {
  float: right;
}

.history-timeline-item:nth-child(odd) .history-timeline-panel::before {
  left: auto;
  right: -15px;
  border-right: none;
  border-left: 15px solid #fff;
}

.history-timeline-item:nth-child(even) .history-timeline-panel::before {
  left: -15px;
  right: auto;
  border-right: 15px solid #fff;
  border-left: 0;
}

.history-timeline-heading h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.history-timeline-date {
  display: block;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.history-timeline-body p {
  margin-bottom: 15px;
  color: #444;
}

.history-timeline-body p:last-child {
  margin-bottom: 0;
}

.history-timeline-quote {
  padding: 15px;
  margin-top: 15px;
  background-color: rgba(3, 96, 86, 0.05);
  border-left: 3px solid var(--secondary-color);
  font-style: italic;
  color: #555;
}

.history-timeline-item:hover .history-timeline-badge {
  background-color: var(--secondary-color);
  box-shadow: 0 0 0 8px rgba(3, 96, 86, 0.2);
  transform: scale(1.05);
}

.history-timeline-item:hover .history-timeline-panel {
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}

/* Responsive design for the timeline */
@media (max-width: 991px) {
  .history-timeline-wrapper::before {
    left: 40px;
  }
  
  .history-timeline-badge {
    left: 40px;
    margin-left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.2rem;
  }
  
  .history-timeline-panel {
    width: calc(100% - 100px);
    float: right !important;
    text-align: left !important;
    margin-left: auto;
    margin-right: 0;
  }
  
  .history-timeline-panel::before,
  .history-timeline-item:nth-child(odd) .history-timeline-panel::before,
  .history-timeline-item:nth-child(even) .history-timeline-panel::before {
    left: -15px;
    right: auto;
    border-right: 15px solid #fff;
    border-left: 0;
  }
  
  .history-timeline-item:nth-child(odd) .history-timeline-panel,
  .history-timeline-item:nth-child(even) .history-timeline-panel {
    float: right !important;
  }
  
  .history-timeline-heading h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .history-timeline-section {
    padding: 30px 0;
  }
  
  .history-timeline-wrapper {
    padding-left: 15px;
  }
  
  .history-timeline-wrapper::before {
    left: 30px;
  }
  
  .history-timeline-badge {
    left: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1rem;
  }
  
  .history-timeline-panel {
    width: calc(100% - 70px);
    padding: 20px;
  }
  
  .history-timeline-item {
    margin-bottom: 60px;
  }
  
  .history-timeline-heading h4 {
    font-size: 1.2rem;
  }
}

.objectives-items{
  /* border: 1px solid rgba(0, 0, 0, 0.733); */
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.1);
}
.objective-item
{
  align-items: center;
}

.objectives-icon i{
  font-size: 1.5rem;
  color: #F25D00;
  margin-bottom: 10px;
}

.members-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.members-card {
  width: 350px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.members-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.members-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 25px;
  text-align: center;
  color: white;
  position: relative;
}

.members-logo-container {
  width: 200px;
  height: 200px;
  margin: 15px auto 15px;
  background: #D7D7D7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.members-logo-container:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(1, 46, 41, 0.15);
}

.members-logo{
  width:  100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.members-logo img{
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.members-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 46, 41, 0.95), rgba(3, 96, 86, 0.95));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.members-logo-container:hover .members-name {
  opacity: 1;
  visibility: visible;
}

.members-logo-container:hover .members-logo {
  transform: scale(1.05);
  filter: brightness(0.8);
}


.members-contact-info {
  list-style: none;
  margin-bottom: 25px;
}

.members-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

.members-contact-icon {
  width: 30px;
  height: 30px;
  background: #f6f8ff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  color: var(--primary-color);
}

.members-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0 10px;
  border-top: 1px solid #f1f3f9;
}

.members-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #7e8efb;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
}

.members-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(126, 142, 251, 0.4);
}

.members-social-link:nth-child(1) {
  background: #3b5998;
}

.members-social-link:nth-child(2) {
  background: #1da1f2;
}

.members-social-link:nth-child(3) {
  background: #0077b5;
}

.members-social-link:nth-child(4) {
  background: #bd081c;
}

.members-website {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--primary-color) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.members-website:hover {
  color: #a777e3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .members-card {
    width: 320px;
  }
}

 .members-website {
   display: block;
   text-align: center;
   margin-top: 20px;
   color: #6e8efb;
   text-decoration: none;
   font-weight: 500;
   font-size: 14px;
   transition: color 0.2s ease;
 }

 .members-website:hover {
   color: #a777e3;
   text-decoration: underline;
 }

 .members-pagination {
   display: flex;
   justify-content: center;
   margin-top: 40px;
   gap: 10px;
 }

 .members-page-btn {
   padding: 12px 20px;
   background: white;
   border: none;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .members-page-btn:hover {
   background: var(--primary-color);
   color: white;
 }

 .members-page-btn.active {
   background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
 }

 .members-page-nav {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .members-nav-btn {
   width: 45px;
   height: 45px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   background: white;
   border: none;
   font-weight: bold;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .members-nav-btn:hover {
   background: var(--primary-color);
   color: white;
 }

 @media (max-width: 768px) {
   .members-container {
     grid-template-columns: 1fr;
   }

   .members-pagination {
     flex-wrap: wrap;
   }

   .members-logo-container {
     width: 150px;
     height: 150px;
   }

   .members-name {
     font-size: 14px;
     letter-spacing: 0.5px;
     padding: 10px;
   }

   .members-card {
     width: 100%;
     max-width: 350px;
   }
 }

 /* Touch devices - show name on tap for mobile */
 @media (hover: none) and (pointer: coarse) {
   .members-logo-container:active .members-name {
     opacity: 1;
     visibility: visible;
   }

   .members-logo-container:active .members-logo {
     transform: scale(1.05);
     filter: brightness(0.8);
   }
 }

 /* Animation for page transitions */
 @keyframes members-fadeIn {
   from {
     opacity: 0;
     transform: translateY(20px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes members-fadeOut {
   from {
     opacity: 1;
     transform: translateY(0);
   }

   to {
     opacity: 0;
     transform: translateY(-20px);
   }
 }


 .members-card 
 {
   animation: members-fadeIn 1s ease forwards;
 }

 .members-page-transition {
   animation: members-fadeOut 1s ease forwards;
 }


 @keyframes members-spin {
   0% {
     transform: rotate(0deg);
   }

   100% {
     transform: rotate(360deg);
   }
 }

 /* Enhanced button transitions */
 .members-page-btn,
 .members-nav-btn {
   transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
 }

 .members-page-btn:hover,
 .members-nav-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
 }

/* Membership Benefits Page Styles */
.membership-benefits-header {
  background: linear-gradient(135deg, rgba(0, 26, 23, 0.651), rgba(0, 51, 46, 0.767));
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}


.membership-benefits-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pmag-background.jpg') center/cover;
  opacity: 0.1;
  z-index: -1;
}

.membership-benefits-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.membership-benefits-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.membership-benefits-breadcrumb .breadcrumb-item.active {
  color: white;
}

.membership-benefits-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.membership-benefits-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.membership-benefits-hero-image {
  text-align: center;
}

.membership-benefits-content {
  position: relative;
}

.membership-benefits-section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.membership-benefits-section-desc {
  font-size: 1.1rem;
  color: var(--gray-color);
  line-height: 1.7;
}

/* Benefits Grid */
.membership-benefit-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.membership-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
}

.membership-benefit-card:hover::before {
  opacity: 1;
}

.membership-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.membership-benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.membership-benefit-icon i {
  font-size: 2rem;
  color: white;
}

.membership-benefit-card:hover .membership-benefit-icon {
  transform: scale(1.1);
}

.membership-benefit-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.membership-benefit-desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.membership-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-benefit-list li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 20px;
}

.membership-benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Membership Tiers */
.membership-benefits-tiers {
  background-color: #f8f9fa;
}

.membership-tier-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.membership-tier-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
}

.membership-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.membership-tier-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.membership-tier-header {
  padding: 30px 25px 20px;
  text-align: center;
  position: relative;
}

.membership-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.membership-tier-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.membership-tier-subtitle {
  color: var(--gray-color);
  font-size: 0.95rem;
}

.membership-tier-features {
  padding: 0 25px 20px;
}

.membership-tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-tier-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.membership-tier-list li:last-child {
  border-bottom: none;
}

.membership-tier-list li i {
  margin-right: 12px;
  width: 16px;
}

.membership-tier-list li i.fa-check {
  color: var(--secondary-color);
}

.membership-tier-action {
  padding: 20px 25px 30px;
}

.membership-tier-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.membership-tier-btn.primary {
  background: var(--primary-color);
  color: white;
}

.membership-tier-btn.primary:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.membership-tier-btn.secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.membership-tier-btn.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Call to Action */
.membership-cta-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  padding: 50px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.membership-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.membership-cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.membership-cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.membership-cta-btn {
  background: white;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.membership-cta-btn:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 991px) {
  .membership-benefits-title {
    font-size: 2.5rem;
  }
  
  .membership-benefits-section-title {
    font-size: 2rem;
  }
  
  .membership-tier-card.featured {
    transform: none;
    margin-bottom: 30px;
  }
  
  .membership-tier-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .membership-cta-card {
    padding: 40px 30px;
    text-align: center;
  }
  
  .membership-cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .membership-benefits-header {
    padding: 40px 0;
  }
  
  .membership-benefits-title {
    font-size: 2rem;
  }
  
  .membership-benefits-subtitle {
    font-size: 1rem;
  }
  
  .membership-benefit-card {
    padding: 30px 20px;
  }
  
  .membership-cta-card {
    padding: 30px 20px;
  }
}

/* Partnership Page Styles */
.partnership-main-section {
  padding: 80px 0;
  background-color: #fff;
}

.partnership-section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partnership-section-desc {
  font-size: 1.1rem;
  color: var(--gray-color);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Partnership Cards */
.partnership-card {
  background: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #f0f0f0;
}

.partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.partnership-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.partnership-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.partnership-card:hover .partnership-image {
  transform: scale(1.05);
}

.partnership-card-content {
  padding: 30px 25px;
  position: relative;
}

.partnership-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.partnership-card-category {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partnership-card-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.partnership-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partnership-feature-tag {
  background: rgba(3, 96, 86, 0.1);
  color: var(--secondary-color);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid rgba(3, 96, 86, 0.2);
  transition: var(--transition);
}

.partnership-feature-tag:hover {
  background: var(--secondary-color);
  color: white;
}

/* Card Hover Effects */
.partnership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.partnership-card:hover::before {
  transform: scaleX(1);
}

/* Responsive Design for Partnership Cards */
@media (max-width: 991px) {
  .partnership-main-section {
    padding: 60px 0;
  }
  
  .partnership-section-title {
    font-size: 2rem;
  }
  
  .partnership-card-image {
    height: 200px;
  }
  
  .partnership-card-content {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .partnership-main-section {
    padding: 40px 0;
  }
  
  .partnership-section-title {
    font-size: 1.8rem;
  }
  
  .partnership-section-desc {
    font-size: 1rem;
  }
  
  .partnership-card-image {
    height: 180px;
  }
  
  .partnership-card-content {
    padding: 20px 15px;
  }
  
  .partnership-card-title {
    font-size: 1.2rem;
  }
  
  .partnership-feature-tag {
    padding: 4px 8px;
    font-size: 0.75rem;
  }
}

/* News & Events Page Styles */
.news-events-page-header {
  background-color: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-events-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.news-events-breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.news-events-breadcrumb .breadcrumb-item.active {
  color: var(--gray-color);
}

.news-events-page-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news-events-page-subtitle {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.news-events-hero-image {
  text-align: center;
}

/* Filter Section */
.news-events-filter-section {
  background-color: #f8f9fa;
}

.news-filter-btn {
  background: transparent;
  border: 2px solid transparent;
  color: var(--gray-color);
  font-weight: 500;
  padding: 10px 20px;
  transition: var(--transition);
}

.news-filter-btn.active,
.news-filter-btn:hover {
  background: var(--primary-color) !important;
  color: white  !important;
  border-color: var(--primary-color) !important;
}

.news-search-input {
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 0.95rem;
}

.news-search-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(3, 96, 86, 0.25);
}

.news-search-btn {
  background: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  padding: 12px 15px;
}

.news-search-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

/* News Events Cards */
.news-events-card {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.news-events-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-events-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-events-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-events-card:hover .news-events-image {
  transform: scale(1.05);
}

.news-events-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.news-events-card:hover .news-events-card-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.news-events-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-events-card-category.event {
  background: var(--secondary-color);
}

.news-events-card-category.announcement {
  background: #e74c3c;
}

.news-events-card-content {
  padding: 30px 25px;
}

.news-events-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.news-events-day {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.news-events-month,
.news-events-year {
  font-weight: 500;
}

.news-events-card-title {
  margin-bottom: 15px;
}

.news-events-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition);
}

.news-events-card-title a:hover {
  color: var(--secondary-color);
}

.news-events-card-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.news-events-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: var(--gray-color);
}

.news-events-card-link {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.news-events-card-link:hover {
  color: var(--primary-color);
}

.news-events-card-link i {
  transition: var(--transition);
}

.news-events-card-link:hover i {
  transform: translateX(3px);
}

/* Pagination */
.news-events-pagination .page-link {
  color: var(--primary-color);
  border-color: #ddd;
  padding: 10px 15px;
}

.news-events-pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.news-events-pagination .page-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* News Detail Page Styles */
.news-detail-header {
  background-color: #fff;
  padding: 80px 0 40px;
  border-bottom: 1px solid #f0f0f0;
}

.news-detail-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.news-detail-breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.news-detail-breadcrumb .breadcrumb-item.active {
  color: var(--gray-color);
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.news-detail-category {
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-detail-date,
.news-detail-author {
  color: var(--gray-color);
  font-size: 0.9rem;
}

.news-detail-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 20px;
}

.news-detail-excerpt {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.news-detail-content {
  padding: 60px 0;
}

.news-detail-featured-image {
  text-align: center;
}

.news-detail-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.news-detail-image-caption {
  text-align: center;
  font-style: italic;
}

.news-detail-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.news-detail-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.news-detail-subheading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.news-detail-list {
  margin-bottom: 25px;
}

.news-detail-list li {
  margin-bottom: 10px;
}

.news-detail-quote {
  background: #f8f9fa;
  border-left: 4px solid var(--secondary-color);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}

.news-detail-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
}

/* Social Share */
.news-detail-share {
  border-top: 1px solid #f0f0f0;
  padding-top: 30px;
}

.news-detail-social-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.news-social-btn.facebook {
  background: #3b5998;
}

.news-social-btn.twitter {
  background: #1da1f2;
}

.news-social-btn.linkedin {
  background: #0077b5;
}

.news-social-btn.whatsapp {
  background: #25d366;
}

.news-social-btn:hover {
  transform: translateY(-2px);
  color: white;
  opacity: 0.9;
}

/* Tags */
.news-detail-tags {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.news-tag {
  display: inline-block;
  background: rgba(3, 96, 86, 0.1);
  color: var(--secondary-color);
  padding: 6px 12px;
  margin: 5px 5px 5px 0;
  font-size: 0.85rem;
  border: 1px solid rgba(3, 96, 86, 0.2);
  transition: var(--transition);
}

.news-tag:hover {
  background: var(--secondary-color);
  color: white;
}

/* Sidebar */
.news-detail-sidebar {
  padding-left: 30px;
}

.news-sidebar-section {
  background: #f8f9fa;
  padding: 30px 25px;
  margin-bottom: 30px;
}

.news-sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.news-sidebar-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.news-sidebar-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-sidebar-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  overflow: hidden;
}

.news-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-sidebar-content {
  flex: 1;
}

.news-sidebar-heading a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition);
}

.news-sidebar-heading a:hover {
  color: var(--secondary-color);
}

.news-sidebar-date {
  font-size: 0.8rem;
  color: var(--gray-color);
  margin-top: 5px;
}

/* Newsletter Signup */
.news-newsletter-signup {
  background: var(--primary-color);
  color: white;
}

.news-newsletter-signup .news-sidebar-title {
  color: white;
}

.news-newsletter-signup p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.news-newsletter-btn {
  background: var(--secondary-color);
  border: none;
  color: white;
  padding: 12px 20px;
  font-weight: 500;
  transition: var(--transition);
}

.news-newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Sidebar Links */
.news-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-sidebar-links li {
  margin-bottom: 10px;
}

.news-sidebar-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.news-sidebar-links a:hover {
  color: var(--secondary-color);
  padding-left: 10px;
}

.news-sidebar-links a::before {
  content: '→';
  margin-right: 10px;
  color: var(--secondary-color);
  transition: var(--transition);
}

/* Navigation */
.news-detail-navigation {
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
}

.news-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  height: 100%;
}

.news-nav-link:hover {
  background: var(--primary-color);
  color: white;
}

.news-nav-link.next {
  justify-content: flex-end;
  text-align: right;
}

.news-nav-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-nav-label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-nav-title {
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .news-events-page-title {
    font-size: 2.5rem;
  }
  
  .news-detail-title {
    font-size: 2rem;
  }
  
  .news-detail-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .news-events-filter-section .row {
    gap: 20px;
  }
  
  .news-detail-social-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .news-events-page-header {
    padding: 40px 0;
  }
  
  .news-events-page-title {
    font-size: 2rem;
  }
  
  .news-events-page-subtitle {
    font-size: 1rem;
  }
  
  .news-events-card-content {
    padding: 20px 15px;
  }
  
  .news-detail-header {
    padding: 60px 0 30px;
  }
  
  .news-detail-title {
    font-size: 1.8rem;
  }
  
  .news-detail-excerpt {
    font-size: 1rem;
  }
  
  .news-detail-meta {
    gap: 10px;
  }
  
  .news-social-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .news-nav-link {
    padding: 15px;
  }
}

/* Industry Page Styles */
.industry-header {
  padding: 60px 0 40px;
  /* background-color: #f8f9fa; */
}

.industry-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.industry-breadcrumb .breadcrumb-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.industry-breadcrumb .breadcrumb-item.active {
  color: var(--gray-color);
}

.industry-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.industry-subtitle {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.industry-content-section {
  padding: 80px 0;
}

.industry-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.industry-section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

/* Ethical Code Cards */
.industry-ethical-card {
  background: white;
  padding: 2.5rem;
  box-shadow: var(--box-shadow-sm);
  height: 100%;
  transition: var(--transition);
  border-left: 5px solid var(--secondary-color);
}

.industry-ethical-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.industry-ethical-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.industry-ethical-icon i {
  font-size: 2rem;
  color: white;
}

.industry-ethical-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.industry-ethical-text {
  line-height: 1.7;
  margin: 0;
}

.industry-read-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.industry-read-more:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Restricted Medicines Section */
.industry-restricted-section {
  padding: 80px 0;
  background-color: white;
}

.industry-restricted-item {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  border: 2px solid #f8f9fa;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 80px;
}

.industry-restricted-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border-color: var(--secondary-color);
}

.industry-restricted-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.industry-restricted-content {
  flex: 1;
}

.industry-restricted-content h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

/* Legacy styles for hero section (kept for backwards compatibility) */
.industry-hero-section {
  padding: 120px 0 80px;
  position: relative;
  color: white;
}

.industry-hero-content {
  min-height: 300px;
}

.industry-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white !important;
}

.industry-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.industry-hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.industry-subsection-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

/* Industry Overview Section */
.industry-overview-section {
  padding: 80px 0;
}

.industry-overview-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industry-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: var(--transition);
}

.industry-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.industry-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.industry-stat-label {
  font-size: 0.9rem;
  color: var(--gray-color);
  font-weight: 500;
}

/* Capabilities Section */
.industry-capabilities-section {
  padding: 80px 0;
}

.industry-capability-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.industry-capability-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.industry-capability-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.industry-capability-icon i {
  font-size: 2rem;
  color: white;
}

.industry-capability-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.industry-capability-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.industry-capability-list {
  list-style: none;
  padding: 0;
}

.industry-capability-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 1.5rem;
}

.industry-capability-list li:last-child {
  border-bottom: none;
}

.industry-capability-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Quality Standards Section */
.industry-quality-section {
  padding: 80px 0;
}

.industry-quality-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.industry-quality-standards {
  margin-top: 2rem;
}

.industry-standard-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: var(--transition);
}

.industry-standard-item:hover {
  background: white;
  box-shadow: var(--box-shadow-sm);
}

.industry-standard-badge {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.industry-standard-badge i {
  font-size: 1.5rem;
  color: white;
}

.industry-standard-content h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.industry-standard-content p {
  margin: 0;
  color: var(--gray-color);
}

/* Market Insights Section */
.industry-market-section {
  padding: 80px 0;
}

.industry-insight-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow-sm);
  height: 100%;
  border-left: 5px solid var(--secondary-color);
}

.industry-insight-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.industry-insight-content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.industry-market-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.industry-metric {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.industry-metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.industry-metric-label {
  font-size: 0.85rem;
  color: var(--gray-color);
  font-weight: 500;
}

.industry-export-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industry-destination-tag {
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Innovation Section */
.industry-innovation-section {
  padding: 80px 0;
}

.industry-innovation-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.industry-innovation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.industry-innovation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.industry-innovation-icon i {
  font-size: 2rem;
  color: white;
}

.industry-innovation-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.industry-innovation-text {
  line-height: 1.7;
  margin: 0;
}

/* Challenges & Opportunities Section */
.industry-challenges-section {
  padding: 80px 0;
}

.industry-challenge-list,
.industry-opportunity-list {
  margin-top: 1.5rem;
}

.industry-challenge-item,
.industry-opportunity-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition);
}

.industry-challenge-item:hover,
.industry-opportunity-item:hover {
  transform: translateX(5px);
}

.industry-challenge-icon,
.industry-opportunity-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.industry-challenge-icon {
  background: #fff3cd;
  color: #856404;
}

.industry-opportunity-icon {
  background: #d1ecf1;
  color: #0c5460;
}

.industry-challenge-text h6,
.industry-opportunity-text h6 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.industry-challenge-text p,
.industry-opportunity-text p {
  margin: 0;
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* Call to Action Section */
.industry-cta-section {
  padding: 80px 0;
}

.industry-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.industry-cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry-cta-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: var(--transition);
}

.industry-cta-buttons .btn:hover {
  transform: translateY(-2px);
}

/* Responsive Design for Industry Page */
@media (max-width: 992px) {
  .industry-title {
    font-size: 2.5rem;
  }
  
  .industry-section-title {
    font-size: 2rem;
  }
  
  .industry-innovation-item {
    margin-bottom: 2rem;
    padding: 2rem;
  }
  
  .industry-innovation-content {
    padding: 0.5rem 0;
  }
  
  .industry-restricted-item {
    min-height: 70px;
    padding: 1.2rem;
  }
  
  .industry-restricted-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .industry-header {
    padding: 40px 0 30px;
  }
  
  .industry-title {
    font-size: 2rem;
  }
  
  .industry-subtitle {
    font-size: 1.1rem;
  }
  
  .industry-section-title {
    font-size: 1.8rem;
  }
  
  .industry-ethical-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .industry-innovation-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .industry-innovation-title {
    font-size: 1.5rem;
  }
  
  .industry-innovation-description {
    font-size: 1rem;
  }
  
  .industry-restricted-item {
    padding: 1rem;
    min-height: 60px;
  }
  
  .industry-restricted-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 0.8rem;
  }
  
  .industry-restricted-content h5 {
    font-size: 0.9rem;
  }
  
  /* Ensure proper spacing on mobile */
  .industry-innovations-section .row {
    margin: 0;
  }
  
  .industry-restricted-section .row {
    margin: 0;
  }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Header Styles */
.pmag-contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.pmag-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pmag-background.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.pmag-contact-hero .container {
  position: relative;
  z-index: 2;
}

.pmag-contact-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.pmag-contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #e8f5e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pmag-contact-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
}

.pmag-contact-hero-image {
  position: relative;
  z-index: 3;
}

.pmag-contact-hero-image img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transform: perspective(600px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.pmag-contact-hero-image:hover img {
  transform: perspective(600px) rotateY(0deg) scale(1.05);
}

/* Contact Info Cards */
.pmag-contact-info-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.pmag-contact-info-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pmag-contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pmag-contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pmag-contact-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.pmag-contact-info-icon::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.2; }
}

.pmag-contact-info-icon i {
  font-size: 2rem;
  color: white;
}

.pmag-contact-info-content h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.pmag-contact-info-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pmag-contact-info-content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pmag-contact-info-content a:hover {
  color: var(--primary-color);
}

.pmag-contact-info-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pmag-contact-info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 46, 41, 0.3);
  color: white;
}

/* Contact Form Section */
.pmag-contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.pmag-contact-form-wrapper {
  background: white;
  border-radius: 25px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.pmag-contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pmag-contact-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.pmag-contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pmag-contact-form-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pmag-contact-form .form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.pmag-contact-form .form-control,
.pmag-contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.pmag-contact-form .form-control:focus,
.pmag-contact-form .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(3, 96, 86, 0.1);
  background: white;
}

.pmag-contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.pmag-contact-submit-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pmag-contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.pmag-contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(1, 46, 41, 0.3);
  color: white;
}

.pmag-contact-submit-btn:hover::before {
  left: 100%;
}

/* Quick Contact Section */
.pmag-quick-contact-section {
  padding: 80px 0;
  background: white;
}

.pmag-quick-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.pmag-quick-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pmag-quick-contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.pmag-quick-contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f8f9fa;
  position: relative;
  height: 100%;
}

.pmag-quick-contact-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pmag-quick-contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.pmag-quick-contact-icon i {
  font-size: 1.8rem;
  color: white;
}

.pmag-quick-contact-card h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.pmag-quick-contact-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.pmag-quick-contact-btn {
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pmag-quick-contact-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 46, 41, 0.2);
}

.pmag-quick-contact-btn.whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.pmag-quick-contact-btn.whatsapp:hover {
  background: #25d366;
  color: white;
}

/* Map Section */
.pmag-map-section {
  position: relative;
}

.pmag-map-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.pmag-map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.pmag-map-container:hover iframe {
  filter: grayscale(0%);
}

.pmag-map-info-panel {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 60px 40px;
  position: relative;
}

.pmag-map-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pmag-background.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.pmag-map-info-panel > div {
  position: relative;
  z-index: 2;
}

.pmag-map-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.pmag-office-hours h5,
.pmag-transportation-info h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.pmag-office-hours h5 i,
.pmag-transportation-info h5 i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.pmag-office-hours ul {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}

.pmag-office-hours ul li {
  padding: 5px 0;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 15px;
  margin-bottom: 8px;
}

.pmag-transportation-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.pmag-map-info-note {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid white;
  margin-top: 20px;
}

.pmag-map-info-note small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pmag-contact-hero-title {
    font-size: 2.5rem;
  }
  
  .pmag-contact-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .pmag-contact-form-wrapper {
    padding: 40px 30px;
  }
  
  .pmag-contact-form-title {
    font-size: 2rem;
  }
  
  .pmag-quick-contact-title {
    font-size: 2rem;
  }
  
  .pmag-map-info-panel {
    padding: 40px 30px;
  }
  
  .pmag-map-info-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .pmag-contact-hero {
    padding: 60px 0 40px;
  }
  
  .pmag-contact-hero-title {
    font-size: 2rem;
  }
  
  .pmag-contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .pmag-contact-info-card {
    padding: 30px 20px;
  }
  
  .pmag-quick-contact-card {
    padding: 30px 20px;
  }
}

/* GSAP Animation Initial States */
.scrolling-values-item,
.stat-item,
.pivotal-role-item,
.pmag-news-card,
.pmag-event-card {
  transform: translateY(60px);
  opacity: 0;
}

.scrolling-values-item {
  transform: translateY(30px) scale(0.8);
  opacity: 0;
}

.marquee-inner .fa-gem {
  transform: scale(0) rotate(-180deg);
  opacity: 0;
}

.about-header-container {
  transform: translateX(-100px);
  opacity: 0;
}

.pivotal-role-header {
  transform: translateY(50px);
  opacity: 0;
}

.pmag-news-header {
  transform: translateY(50px);
  opacity: 0;
}

.word {
  display: inline-block;
  transform: translateY(50px) rotateX(-90deg);
  opacity: 0;
}

.btn,
.learn-more-button,
.member-button {
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Enhanced hover effects for animated elements */
.stat-item:hover {
  transform: translateY(-10px) scale(1.02);
  transition: all 0.3s ease;
}

.pivotal-role-item:hover {
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.pmag-news-card:hover,
.pmag-event-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Performance optimization for animations */
.stat-item,
.pivotal-role-item,
.pmag-news-card,
.pmag-event-card,
.scrolling-values-item,
.marquee-inner .fa-gem {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Mobile animation optimizations */
@media (max-width: 767px) {
  .scrolling-values-item {
    font-size: 1.5rem;
  }

  .stat-item,
  .pivotal-role-item,
  .pmag-news-card,
  .pmag-event-card {
    transform: translateY(30px) scale(0.95);
  }

  .word {
    transform: translateY(30px) rotateX(-45deg);
  }
}

/* GPU acceleration for smooth animations */
.stat-item,
.pivotal-role-item,
.pmag-news-card,
.pmag-event-card,
.scrolling-values-item,
.marquee-inner .fa-gem,
.btn,
.learn-more-button,
.member-button {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* ========================================
   LOADING SCREEN STYLES
   ======================================== */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  /* color: white; */
  max-width: 400px;
  padding: 2rem;
}

.loader-logo {
  margin-bottom: 2rem;
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo-img {
  width: 120px;
  height: auto;
  /* filter: brightness(0) invert(1); */
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.spinner-ring {
  position: absolute;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
  animation-delay: 0.2s;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
}

.spinner-ring:nth-child(3) {
  animation-delay: 0.4s;
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  animation: textFadeIn 1s ease-out 0.5s both;
}

.loader-text p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  color: white;
  animation: textFadeIn 1s ease-out 0.7s both;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fff, white);
  border-radius: 2px;
  width: 0%;
  animation: progressFill 3s ease-out 1s both;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Mobile Responsive Loader */
@media (max-width: 768px) {
  .loader-container {
    padding: 1rem;
  }

  .loader-logo-img {
    width: 100px;
  }

  .loader-spinner {
    width: 60px;
    height: 60px;
  }

  .spinner-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 7.5px;
    left: 7.5px;
  }

  .spinner-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
  }

  .loader-text h3 {
    font-size: 1.2rem;
  }

  .loader-text p {
    font-size: 0.8rem;
  }
}

/* Prevent body scroll during loading */
body.loading {
  overflow: hidden;
}

@media(max-width: 1300px) {
  .hero-header-title {
    font-size: 3rem;
  }
}

@media(max-width: 998px) {

  html {
    overflow-x: hidden;
  }

  .hero-header {
    display: flex;
    flex-direction: column;
  }

  .hero-header-container {
    width: 100%;
  }

  .hero-description-container {
    width: 100%;
    margin-bottom: 20px;
  }

  .top-bar-contact {
    display: none;
  }
}

