/* â”€â”€â”€ Custom Premium Stylesheet for India Pharma Global Expo 2027 starts â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --primary-blue: #214081;
  --primary-green: #028f43;
  --dark-navy: #1e2c37;
  --light-gray: #f4f6f9;
  --accent-gold: #f5b800;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

/* MATERIAL ICONS OVERRIDE */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-navy);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT & UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-small {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.align-center {
  align-items: center;
}

.margin-top-40 {
  margin-top: 40px;
}

/* BUTTONS & ACTIONS */
.btn-primary,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-green);
  color: var(--text-light);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
}

.btn-gold:hover {
  background-color: var(--dark-navy);
  color: var(--text-light);
}

.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-actions-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ALERTS */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
}

.alert-success {
  background-color: rgba(2, 143, 67, 0.08);
  border-color: rgba(2, 143, 67, 0.2);
  color: var(--primary-green);
}

.alert-success span {
  color: var(--primary-green);
}

.alert-error {
  background-color: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.alert-error span {
  color: #ef4444;
}

/* SECTION BADGE & HEADER */
.section-badge {
  background-color: rgba(2, 143, 67, 0.08);
  color: var(--primary-green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid rgba(2, 143, 67, 0.15);
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: #555555;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-light {
  background-color: var(--light-gray);
}

.section-mid {
  background-color: #eef2f6;
}

/* BUTTONS */
.btn-primary-custom {
  background-color: var(--primary-blue);
  color: var(--text-light);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(33, 64, 129, 0.3);
}

.btn-primary-custom:hover {
  background-color: var(--dark-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 64, 129, 0.4);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary-blue);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  display: inline-block;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.btn-gold:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.btn-transparent {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-transparent:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* HERO BANNER */
.hero-banner {
  position: relative;
  height: calc(100vh - 80px);
  max-height: 800px;
  min-height: 560px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 44, 55, 0.9) 0%, rgba(21, 64, 129, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.hero-badge {
  background-color: var(--primary-green);
  color: var(--text-light);
  border: 1px solid var(--primary-green);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-title span.accent-glow {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(245, 184, 0, 0.4);
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(245, 184, 0, 0.25);
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.btn-hero-primary {
  background-color: var(--primary-green);
  color: var(--text-light);
  padding: 11px 30px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(2, 143, 67, 0.4);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
  background-color: #027a39;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 33px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* COUNTDOWN */
.countdown-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: rgba(30, 44, 55, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.countdown-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* STATS BAR */
.stats-bar-section {
  background-color: var(--dark-navy);
  padding: 40px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: 12px 12px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.stat-icon-wrapper {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.stat-icon-wrapper span {
  font-size: 32px;
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT SUMMARY */
.about-summary-section {
  background-color: #ffffff;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.btn-text-arrow {
  color: var(--primary-blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.btn-text-arrow span {
  transition: var(--transition-smooth);
}

.btn-text-arrow:hover span {
  transform: translateX(5px);
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 143, 67, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.exp-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.exp-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* HIGHLIGHTS SECTION */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(2, 143, 67, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.highlight-icon span {
  font-size: 24px;
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

/* SEGMENTS */
.segments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.segment-pill {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.segment-pill:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* MARQUEE PARTNERS */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.marquee-track {
  display: flex;
  animation: marquee 50s linear infinite;
  gap: 40px;
  width: max-content;
}

.partner-logo {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  color: #888888;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* CTA BANNER */
.cta-banner-section {
  background-color: var(--primary-blue);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* INNER PAGES COMMON */
.page-header-banner {
  background-color: var(--dark-navy);
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
  border-bottom: 2px solid rgba(2, 143, 67, 0.2);
}

.page-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-breadcrumbs a {
  color: var(--primary-green);
}

/* ABOUT PAGE DETAILS */
.about-desc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 18px;
}

.about-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.about-card-stat {
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--primary-green);
}

.about-card-stat.delay-1 {
  border-left-color: var(--accent-gold);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.collage-img-main {
  border-radius: 12px;
  width: 100%;
  margin-top: 10px;
}

/* AUDIENCE PROFILE / WHY SHOULD ATTEND */
.targets-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.target-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.target-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
}

.target-icon {
  font-size: 36px !important;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.target-card h3 {
  font-size: 16px;
}

/* ORGANIZER */
.organizer-main-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.contact-card-mini {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
}

.contact-card-mini h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-card-mini p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555555;
}

.contact-card-mini .btn-primary {
  margin-top: 15px;
}

/* WHY EXHIBIT PAGE */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.benefit-card {
  background: linear-gradient(145deg, #ffffff, #f4f7fb);
  border: 1px solid rgba(13, 71, 161, 0.08);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 71, 161, 0.12);
  border-color: rgba(13, 71, 161, 0.2);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover::after {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
}

.benefit-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.benefit-icon-box span {
  font-size: 32px !important;
}

.benefit-card:hover .benefit-icon-box {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.benefit-card h3 {
  font-size: 20px;
}

.benefit-card p {
  font-size: 14px;
  color: #666666;
}

.value-list {
  list-style: none;
  margin-top: 25px;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.check-icon {
  color: var(--primary-green);
  font-size: 22px !important;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-list li div {
  font-size: 15px;
  color: #555555;
}

.value-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.cta-actions-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* EXHIBITOR PROFILE */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.profile-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(33, 64, 129, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.card-icon-box span {
  font-size: 24px;
}

.profile-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.profile-card ul {
  list-style: none;
  font-size: 13.5px;
  color: #555555;
}

.profile-card ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

.profile-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-green);
}

.who-attend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.attendee-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.attendee-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  font-weight: 800;
  color: rgba(21, 64, 129, 0.1);
}

.attendee-card h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.attendee-card p {
  font-size: 13px;
  color: #666666;
}

/* REGISTRATION FORM STYLES */
.pharma-form {
  margin-top: 15px;
}

.form-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: #666666;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-main);
  transition: var(--transition-smooth);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-button-wrapper {
  margin-top: 30px;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(2, 143, 67, 0.2);
}

.btn-submit:hover {
  background-color: #027a39;
}

/* EVENT AGENDA */
.agenda-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.agenda-tab-btn {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 15px 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.agenda-tab-btn.active {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

.agenda-tab-btn .day-num {
  font-size: 18px;
  font-weight: 800;
}

.agenda-tab-btn .day-date {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.8;
}

.agenda-day-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.agenda-day-panel.active {
  display: flex;
}

.agenda-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.agenda-time {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
}

.agenda-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.session-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.label-blue {
  background-color: rgba(33, 64, 129, 0.08);
  color: var(--primary-blue);
}

.label-green {
  background-color: rgba(2, 143, 67, 0.08);
  color: var(--primary-green);
}

.label-purple {
  background-color: rgba(147, 51, 234, 0.08);
  color: #9333ea;
}

.label-gold {
  background-color: rgba(245, 184, 0, 0.08);
  color: #c48f00;
}

.agenda-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.agenda-details p {
  font-size: 14px;
  color: #666666;
}

/* SPEAKERS & COMMITTEE */
.speakers-grid,
.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.speaker-card,
.member-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.speaker-card:hover,
.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.speaker-avatar-wrapper,
.member-avatar-wrapper {
  padding: 30px 30px 10px;
  display: flex;
  justify-content: center;
}

.speaker-avatar,
.member-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}

.speaker-info,
.member-info {
  padding: 20px 25px 30px;
}

.speaker-info h3,
.member-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.speaker-designation,
.member-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
}

.speaker-company,
.member-org {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-top: 2px;
  margin-bottom: 12px;
}

.speaker-bio {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.member-contact {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
}

/* AWARDS GRAPHICS */
.awards-intro {
  background-color: #ffffff;
}

.awards-trophy-wrapper {
  display: flex;
  justify-content: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.cat-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(245, 184, 0, 0.08);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cat-icon span {
  font-size: 24px;
}

.category-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13px;
  color: #666666;
}

/* FLOOR LAYOUT */
.floor-map-wrapper {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.legend-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
}

.color-premium {
  background-color: rgba(33, 64, 129, 0.8);
  border: 1px solid var(--primary-blue);
}

.color-standard {
  background-color: rgba(2, 143, 67, 0.8);
  border: 1px solid var(--primary-green);
}

.color-booked {
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.color-available {
  background-color: rgba(33, 64, 129, 0.8);
}

.floor-map-svg {
  background-color: #fafbfc;
  border-radius: 8px;
}

/* CONTACT PAGE */
.contact-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-items {
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  font-size: 28px !important;
  color: var(--primary-green);
  background-color: rgba(2, 143, 67, 0.08);
  padding: 10px;
  border-radius: 10px;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14.5px;
  color: #555555;
}

.map-embed-section iframe {
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

/* FOOTER styling */
.footer {
  background-color: #f8fafc;
  color: var(--text-color);
  padding: 80px 0 0;
  border-top: 4px solid var(--primary-green);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo-wrapper {
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 20px;
}

.footer-col h3.footer-title {
  color: var(--dark-navy);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-green);
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.footer-dates,
.footer-badge,
.footer-venue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-navy);
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-icon {
  color: var(--primary-green);
  font-size: 18px !important;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--text-color);
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.footer-links li a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 15px;
}

.footer-contact-info li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 13.5px;
}

.footer-contact-info li a:hover {
  color: var(--primary-green);
}

.footer-contact-info li a span {
  color: var(--primary-green);
}

.footer-social-wrapper {
  margin-top: 25px;
}

.footer-social-title {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--dark-navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  color: var(--dark-navy);
  transition: var(--transition-smooth);
}

.footer-socials a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-socials a:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-color);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-legal-links a {
  color: var(--text-color);
}

.footer-legal-links a:hover {
  color: var(--primary-green);
}

.separator {
  color: rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1199px) {

  .container,
  .container-small,
  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .grid-two-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-banner {
    height: auto;
    padding: 100px 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .targets-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-attend-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .speakers-grid,
  .committee-grid,
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 34px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .countdown-number {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-bar-section {
    margin-top: 0;
    border-radius: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .agenda-tabs-nav {
    flex-direction: column;
    align-items: center;
  }

  .agenda-tab-btn {
    width: 100%;
    max-width: 300px;
  }

  .speakers-grid,
  .committee-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .targets-grid-six {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .who-attend-grid {
    grid-template-columns: 1fr;
  }
}

/* --- CINEMATIC CIRCLE REVEAL (PATTERN B) --- */
:root {
  --teal-accent: #0A6E5C;
  --off-white: #F5F7F5;
}

.title-serif {
  font-family: 'Playfair Display', serif !important;
}

/* --- HUB & SPOKE STATIC SECTION --- */
.hub-spoke-section {
  background-color: var(--off-white);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.hub-spoke-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1500px;
  margin: 80px auto 60px;
  gap: 50px;
}

.hub-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px; /* Adjusted gap */
}

.center-col {
  flex: 0 0 400px; /* Fixed width for the graphic so text columns get the rest */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Graphic */
.hub-graphic {
  position: relative;
  width: 400px; /* Medium sizing */
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hub-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.outer-ring {
  width: 380px; /* Medium sizing */
  height: 380px;
  border: 10px solid var(--teal-accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ring-text-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  animation: rotateSlow 40s linear infinite;
}

.ring-text {
  font-family: var(--font-heading);
  font-size: 16px; /* Medium sizing */
  font-weight: 800;
  fill: var(--teal-accent);
  letter-spacing: 5px;
  text-transform: uppercase;
}

@keyframes rotateSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.middle-ring {
  width: 240px; /* Medium sizing */
  height: 240px;
  background: rgba(10, 110, 92, 0.05);
  border: 2px dashed rgba(10, 110, 92, 0.2);
}

.inner-ring {
  width: 140px; /* Medium sizing */
  height: 140px;
  background: linear-gradient(135deg, var(--teal-accent) 0%, #064035 100%);
  box-shadow: 0 15px 35px rgba(10, 110, 92, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.center-pill-icon {
  font-size: 60px; /* Medium sizing */
  color: white;
}

/* Features */
.hub-feature {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hub-feature.reverse {
  flex-direction: row;
}

.hub-icon {
  flex-shrink: 0;
  width: 75px; /* Medium sizing */
  height: 75px;
  background: linear-gradient(135deg, var(--teal-accent) 0%, #064035 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(10, 110, 92, 0.2);
  transition: transform 0.3s ease;
}

.hub-feature:hover .hub-icon {
  transform: scale(1.1);
}

.hub-icon span {
  font-size: 32px; /* Medium sizing */
  color: white;
}

.hub-text {
  flex: 1;
}

.hub-text.text-right {
  text-align: right;
}

.hub-text h3 {
  color: var(--teal-accent);
  font-size: 20px; /* Medium sizing */
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hub-text p {
  color: #555; /* Reverted to slightly lighter */
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; /* Medium sizing */
  line-height: 1.6;
  margin: 0;
}

/* Bottom Feature */
.hub-bottom-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.bottom-feature {
  flex-direction: column;
  max-width: 500px; /* Increased width to balance larger text */
  text-align: center;
}

.bottom-feature .hub-icon {
  margin: 0 auto 25px;
}

/* Responsive */
@media (max-width: 1200px) {
  .hub-spoke-wrapper {
    flex-direction: column;
  }
  
  .hub-column {
    width: 100%;
    align-items: center;
    gap: 40px;
  }
  
  .hub-feature {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .hub-feature.reverse {
    flex-direction: row-reverse;
  }
  
  .hub-text.text-right {
    text-align: left;
  }
}


@media (max-width: 600px) {
  .hub-graphic {
    transform: scale(0.6);
  }
  
  .hub-feature {
    flex-direction: column !important;
    text-align: center;
  }
  
  .hub-text.text-right {
    text-align: center;
  }
}

/* EXHIBITOR PROFILE PAGE: GRID & FORM */
.profile-main-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.profile-grid-col {
  flex: 1 1 65%;
  min-width: 300px;
}

.profile-form-col {
  flex: 1 1 25%;
  min-width: 300px;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
}

.icon-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transition: all 0.2s ease;
}

.icon-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(10, 110, 92, 0.08);
  transform: translateY(-2px);
}

.icon-card-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  background-color: rgba(10, 110, 92, 0.05);
  border-radius: 8px;
}

.icon-card-icon span {
  font-size: 24px;
}

.icon-card-text {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  text-align: left;
}

.quick-reg-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 100px;
  color: #334155;
}

.quick-reg-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f172a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-reg-form .form-group {
  margin-bottom: 15px;
}

.quick-reg-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-main);
  transition: all 0.2s ease;
  background-color: #f8fafc;
  color: #334155;
}

.quick-reg-form .form-control::placeholder {
  color: #94a3b8;
}

.quick-reg-form .form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(10, 110, 92, 0.1);
}

.quick-reg-form select option {
  background-color: #ffffff;
  color: #334155;
}

.quick-reg-form label {
  color: #475569 !important;
}

.btn-outline-primary {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background-color: var(--primary-green);
  color: #ffffff;
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
  background-color: #027a39;
  color: #ffffff;
}

.btn-read-more {
  background-color: #f1f5f9;
  color: #475569;
  border-radius: 6px;
  padding: 10px 25px;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.btn-read-more:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

/* â”€â”€â”€ Custom Premium Stylesheet for India Pharma Global Expo 2027 ends â”€â”€â”€ */



/* â”€â”€â”€ BENTO GRID: WHY ATTEND SECTION â”€â”€â”€ */
.bento-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.bento-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(37,211,102,0.05) 0%, transparent 40%),
              radial-gradient(circle at 0% 100%, rgba(10,110,92,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(10, 110, 92, 0.08);
  border-color: rgba(10, 110, 92, 0.2);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-accent), var(--primary-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.bento-card:hover::before {
  transform: scaleX(1);
}

.bento-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(10, 110, 92, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-accent);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-icon-wrapper {
  background: var(--teal-accent);
  color: #ffffff;
}

.bento-icon-wrapper span {
  font-size: 32px;
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.bento-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Span classes */
.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }

@media (max-width: 991px) {
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
}

