/* AILH Custom Light Theme Overrides */

/* Import Additional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Modern Playful Theme Variables */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #F0F2F5;
  --text-dark: #2C3E50;
  --text-gray: #6C757D;
  --text-light: #95A5A6;
  
  /* Vibrant Accent Colors */
  --accent-red: #E74C3C;
  --accent-blue: #003366;
  --accent-yellow: #FFD700;
  --accent-orange: #FF6B35;
  
  /* Shape Colors */
  --shape-red: #E74C3C;
  --shape-blue: #003366;
  --shape-yellow: #FFD700;
  --shape-shadow: rgba(0, 0, 0, 0.1);
}

/* Body and Base Styles */
html {
  height: auto !important;
  min-height: 100%;
}

body {
  background: var(--bg-primary) !important;
  color: var(--text-dark) !important;
  font-family: "Inter", "Manrope", Helvetica, Arial, sans-serif !important;
  font-display: swap;
  position: relative;
  overflow-x: hidden;
  height: auto !important;
  min-height: 100vh;
}

/* Ensure animated background shows through */
body.path-frontpage,
body.page-node-type-landing-page {
  background: transparent !important;
}

.layout-content {
  background: transparent;
}

#wrapper {
  background: transparent;
}

/* Fix layout container to prevent extra space */
.layout-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.layout-container > main {
  flex: 1;
}

/* Ensure footer doesn't create extra space */
footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Slimmer header/nav overrides */
/* Desktop header: tighter padding and smaller logo */
header .branding .wrapper { padding: 0 !important; margin: 0 !important; }
header #header-desktop .site-header-content { padding: 0 !important; margin: 0 !important; min-height: auto !important; height: auto !important; }
header #main-menu .main-menu { padding: 0 !important; margin: 0 !important; min-height: auto !important; height: auto !important; }
header .main-menu { padding: 0 !important; margin: 0 !important; min-height: auto !important; height: auto !important; }
header .combined-logo img { max-height: 90px !important; height: 90px !important; }
header .menu-lists > li { margin: 0 8px !important; }
header .menu-lists > li > a { padding: 0 10px !important; line-height: 1.3 !important; font-size: 1.5rem !important; font-weight: bold !important; }
header .header-data-pc { padding: 0 !important; margin: 0 !important; min-height: auto !important; height: auto !important; }
header .site-header-content { padding: 0 !important; margin: 0 !important; min-height: auto !important; height: auto !important; }
header .department-name { padding: 0 !important; margin: 0 !important; line-height: 1.2 !important; }
header .site-profile { padding: 0 !important; margin: 0 !important; }
header .site-info { padding: 0 !important; margin: 0 !important; }
header .combined-logo { padding: 0 !important; margin: 0 !important; }
header #main-menu { min-height: auto !important; height: auto !important; padding: 0 !important; margin: 0 !important; }
header .main-menu .site-profile { padding: 0 !important; margin: 0 !important; }
header .main-menu .menu { padding: 0 !important; margin: 0 !important; }
header .main-menu .menu-lists { padding: 0 !important; margin: 0 !important; }
header .main-menu .clearfix { padding: 0 !important; margin: 0 !important; }
header .header-data-pc.fade-bg { padding: 0 !important; margin: 0 !important; }
header .main-menu.clearfix { padding: 0 !important; margin: 0 !important; }
header .site-header-content.clearfix { padding: 0 !important; margin: 0 !important; }
header .main-menu { display: flex !important; align-items: center !important; justify-content: space-between !important; }
header .main-menu .site-profile { display: flex !important; align-items: center !important; }
header .main-menu .menu { display: flex !important; align-items: center !important; margin-left: auto !important; }
header .main-menu .menu-lists { display: flex !important; align-items: center !important; }
header .combined-logo { display: flex !important; align-items: center !important; }
header .combined-logo img { display: block !important; }

/* Mobile logo slightly reduced */
header .combined-logo-mobile img { max-height: 100px !important; height: 100px !important; }

/* When minimized on scroll, keep it very compact */
header.minimized #main-menu .main-menu { padding: 0 !important; }
header.minimized .branding .wrapper { padding: 0 !important; }
header.minimized .combined-logo img { max-height: 75px !important; }

/* Playful Background Shapes - Removed */
/* Background shapes will be replaced with animated background */

/* Global override to hide any remaining background shapes */
body::before,
body::after,
#section-hero::before,
#section-hero::after {
  display: none !important;
  content: none !important;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p, .lead {
  font-family: "Inter", Helvetica, Arial, sans-serif !important;
  line-height: 1.6;
  font-weight: 400;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
}



@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25% { transform: translateY(-30px) translateX(15px); }
  50% { transform: translateY(-50px) translateX(0px); }
  75% { transform: translateY(-30px) translateX(-15px); }
}


/* Section Styling - Opaque since shapes are now on top */
section {
  background: white;
  color: var(--text-dark);
  padding: 80px 0 100px 0;
  position: relative;
  z-index: 1;
}

/* Section content should be above shapes */
section .container,
section .row,
section .col-lg-6,
section .col-lg-12 {
  position: relative;
  z-index: 3;
}

/* Alternate section backgrounds for visual separation */
section:nth-child(even) {
  background: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark) !important;
}

h1 {
  color: var(--accent-blue) !important;
}

.subtitle {
  color: var(--text-gray) !important;
}

/* Links */
a {
  color: var(--accent-blue);
}

a:hover {
  color: var(--accent-light-blue);
}

/* Buttons - Moved to Enhanced Button Styles below */

/* Navigation */
#mainmenu li a {
  color: var(--text-dark) !important;
}

#mainmenu li a:hover {
  color: var(--accent-blue) !important;
}

#mainmenu li.active a {
  color: var(--accent-blue) !important;
}

/* Playful Marquee Styling with Proper Layering */
.bg-color {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%) !important;
  color: white !important;
  border: none !important;
  position: relative;
  z-index: 1000; /* Much higher than Jarallax */
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
  margin-top: -50px; /* Overlap the hero section */
  overflow: visible; /* Ensure banners are not clipped */
}

.bg-color-2 {
  background: linear-gradient(135deg, #FFB366 0%, #FF8C42 50%, #FF6B35 100%) !important;
  color: white !important;
  border: none !important;
  position: relative;
  z-index: 999; /* Higher than Jarallax */
  box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.3);
  margin-top: -2px; /* Slight overlap to prevent gap */
  overflow: visible; /* Ensure banners are not clipped */
}

.de-marquee-list-1,
.de-marquee-list-2 {
  color: white !important;
  position: relative;
  z-index: 1001; /* Ensure text is on top of everything */
  overflow: visible; /* Ensure text is not clipped */
}

.de-marquee-list-1 span,
.de-marquee-list-2 span {
  color: white !important;
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.de-marquee-list-1 span:hover,
.de-marquee-list-2 span:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.de-marquee-list-1 .op-2,
.de-marquee-list-2 .op-2 {
  opacity: 0.6 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400 !important;
}

/* Add playful shapes to marquee sections */
/* Background shapes on .bg-color and .bg-color-2 removed */
/* These were small decorative shapes on marquee banners */
.bg-color::before,
.bg-color::after,
.bg-color-2::before,
.bg-color-2::after {
  display: none !important;
}

/* Playful Hero Section */
#section-hero {
  background: linear-gradient(to top, #F3C11B 0%, #FFFFFF 50%, #FFFFFF 100%) !important;
  color: black !important;
  position: relative;
  overflow: visible; /* Allow banners to extend beyond section */
  margin-bottom: 0; /* Remove bottom margin to allow banner overlap */
  padding-bottom: 80px; /* Add extra padding to account for banner overlap */
  z-index: 1; /* Lower z-index to allow banners to appear on top */
}

/* Override any dark section styles */
#section-hero.section-dark {
  background: linear-gradient(to top, #F3C11B 0%, #FFFFFF 50%, #FFFFFF 100%) !important;
  color: black !important;
}

/* Remove all overlays and gradients from hero section */
#section-hero .gradient-edge-bottom,
#section-hero .gradient-edge-top,
#section-hero .sw-overlay {
  display: none !important;
}

/* Keep Jarallax but ensure banners are on top */
#section-hero .jarallax-container-0,
#section-hero .jarallax-container {
  z-index: 1 !important; /* Lower than banners */
}

/* Ensure hero section background is visible */
#section-hero {
  background: linear-gradient(to top, #F3C11B 0%, #FFFFFF 50%, #FFFFFF 100%) !important;
}

/* Background shapes removed - will be replaced with animated background */
/* #section-hero::before, #section-hero::after, and all shape elements removed */

/* Animated Background Styles - Shapes appear OVER sections */
.animated-background-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

.animated-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.animated-shape-circle {
  border-radius: 50%;
  opacity: 0.35 !important;
}

.animated-shape-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.35 !important;
}

.animated-shape-squiggle {
  opacity: 0.35 !important;
  width: 80px !important;
  height: auto !important;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* Keyframe animations for shapes */
@keyframes floatShape1 {
  0% { transform: translate(10vw, 15vh); }
  100% { transform: translate(85vw, 20vh); }
}

@keyframes floatShape2 {
  0% { transform: translate(80vw, 60vh); }
  100% { transform: translate(15vw, 65vh); }
}

@keyframes floatShape3 {
  0% { transform: translate(50vw, 80vh); }
  100% { transform: translate(45vw, 10vh); }
}

@keyframes floatShape4 {
  0% { transform: translate(20vw, 40vh); }
  100% { transform: translate(75vw, 45vh); }
}

@keyframes floatShape5 {
  0% { transform: translate(70vw, 25vh); }
  100% { transform: translate(25vw, 30vh); }
}

@keyframes floatShape6 {
  0% { transform: translate(5vw, 50vh) rotate(45deg) scale(1); }
  100% { transform: translate(70vw, 60vh) rotate(225deg) scale(1.2); }
}

@keyframes floatShape7 {
  0% { transform: translate(75vw, 50vh); }
  100% { transform: translate(10vw, 55vh); }
}

@keyframes floatShape8 {
  0% { transform: translate(30vw, 10vh); }
  100% { transform: translate(60vw, 85vh); }
}

#section-hero .container {
  position: relative;
  z-index: 2;
}

/* Fix button text vertical alignment */
#section-hero .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 15px 35px !important;
  min-height: 50px;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 5px !important;
  transition: all 0.3s ease;
}

#section-hero .btn-main span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  vertical-align: middle;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

/* Primary button - same style as secondary button */
#section-hero .hero-btn-primary {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 3px solid #003366 !important;
  color: #003366 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.4);
}

#section-hero .hero-btn-primary:hover {
  background: #003366 !important;
  border-color: #003366 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.5);
}

/* Secondary button - outline with blue border and text for better visibility */
#section-hero .hero-btn-secondary.btn-line {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 3px solid #003366 !important;
  color: #003366 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.4);
}

#section-hero .hero-btn-secondary.btn-line:hover {
  background: #003366 !important;
  border-color: #003366 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.5);
}

/* Hover effects removed */
/* #section-hero .btn-main.btn-line:hover {
  background-color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: white !important;
}

#section-hero .btn-main.btn-line:hover span {
  line-height: 1.2;
} */

#section-hero .text-light {
  color: black !important;
}

/* Testimonial Section Styling */
.testimonial-one {
  background: white !important;
  padding: 80px 2rem;
  position: relative;
}

.testimonial-one__btn-box {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-one__btn {
  background: var(--accent-orange) !important;
  color: white !important;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .testimonial-one__btn:hover {
  background: var(--accent-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
} */

.section-title__tagline {
  color: var(--accent-orange) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title__title {
  color: var(--text-dark) !important;
  font-weight: 700;
}

.section-title__title span {
  color: var(--accent-orange) !important;
}

.testimonial-one__single {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

/* Modern Quote Testimonial Cards */
.testimonial-quote {
  position: relative;
  padding: 2rem;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  z-index: 3;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-image: url('/images/icons/quote-23-double-close.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
  transform: rotate(180deg);
  transform-origin: center;
}

.quote-text {
  font-size: var(--font-size-xl);
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
  padding-top: 1rem;
  font-style: italic;
}

.quote-text .highlight {
  color: var(--accent-orange);
  font-weight: 600;
  font-style: normal;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
  .testimonial-quote {
    padding: 1.5rem;
    min-height: 160px;
  }
  
  .quote-mark {
    width: 45px;
    height: 45px;
    top: -8px;
    left: 15px;
  }
  
  .quote-text {
    font-size: var(--font-size-base);
  }
}

.testimonial-one__single:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-orange);
}

.testimonial-one__client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-one__client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-one__client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-one__name {
  color: var(--text-dark) !important;
  /* font-size: 18px; */
  font-weight: 600;
  margin: 0;
}

.testimonial-one__sub-title {
  color: var(--accent-orange) !important;
  /* font-size: 14px; */
  margin: 0;
  font-weight: 500;
}

.testimonial-one__title {
  color: var(--text-dark) !important;
  /* font-size: 16px; */
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.testimonial-one__text {
  color: var(--text-gray) !important;
  /* font-size: 14px; */
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-one__icon-and-ratting {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-one__icon {
  color: var(--accent-orange) !important;
  font-size: 20px;
}

.testimonial-one__ratting {
  color: var(--accent-orange) !important;
  font-weight: 600;
}

.testimonial-one__ratting .icon-star {
  color: #FFD700 !important;
}

/* Global Button Styling - Aligned with Hero Section */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 15px 30px !important;
  min-height: 50px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-main span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

/* Primary Button (Solid) */
.btn-main:not(.btn-line) {
  background: var(--accent-orange) !important;
  color: white !important;
  border-color: var(--accent-orange) !important;
}

/* Hover effects removed */
/* .btn-main:not(.btn-line):hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 75, 0, 0.3);
} */

/* Secondary Button (Outline) */
.btn-main.btn-line {
  background: transparent !important;
  border-color: var(--accent-orange) !important;
  color: var(--accent-orange) !important;
}

/* Hover effects removed */
/* .btn-main.btn-line:hover {
  background: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-main.btn-line:hover span {
  line-height: 1.2;
} */

/* Testimonial Button Styling */
.testimonial-one__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 15px 30px !important;
  min-height: 50px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-orange);
  background: var(--accent-orange) !important;
  color: white !important;
}

/* Hover effects removed */
/* .testimonial-one__btn:hover {
  background: var(--accent-blue) !important;
  border-color: var(--accent-blue);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
} */

/* Search Button Styling */
.button.js-form-submit.form-submit {
  background: var(--accent-orange) !important;
  color: white !important;
  border: 2px solid var(--accent-orange) !important;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .button.js-form-submit.form-submit:hover {
  background: var(--accent-blue) !important;
  border-color: var(--accent-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
} */

/* Modal Close Button */
.btn-close {
  background: var(--accent-orange) !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .btn-close:hover {
  background: var(--accent-blue) !important;
  transform: scale(1.1);
} */

/* Play Button Styling */
.play-button {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-button i {
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .play-button:hover {
  background: var(--accent-orange);
  transform: scale(1.1);
}

.play-button:hover i {
  color: white;
  transform: scale(1.1);
} */

#section-hero h1 {
  color: black !important;
  font-weight: 800;
}

/* Hero carousel title should be white */
#section-hero .hero-carousel .hero-title,
#section-hero .hero-title {
  color: #003366 !important;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 51, 102, 0.3);
}

#section-hero h2 {
  color: black !important;
}

#section-hero .subtitle {
  color: black !important;
  font-weight: 600;
}

#section-hero .id-color {
  color: #F3C11B !important;
}

#section-hero h4 {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#section-hero .d-flex {
  color: white !important;
}

#section-hero i {
  color: var(--accent-yellow) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Cards and Content Areas */
.card, .relative {
  background: var(--bg-light-1) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-light-1) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}

/* Footer */
footer {
  background: var(--bg-light-3) !important;
  color: var(--text-dark) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
  color: var(--accent-blue) !important;
}

footer a:hover {
  color: var(--accent-light-blue) !important;
}

/* Form Elements */
input, textarea, select {
  background: var(--bg-light-1) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  color: var(--text-dark) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2) !important;
}

/* Social Icons */
.social-icons i {
  color: var(--accent-blue) !important;
}

.social-icons i:hover {
  color: var(--accent-light-blue) !important;
}

/* Preloader */
#de-loader {
  background: var(--bg-light-1) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light-2);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    background: var(--bg-light-1) !important;
  }
  
  .btn-main {
    width: 100%;
    margin: 10px 0;
  }
}

/* Animation Enhancements */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom AILH Branding */
.ailh-logo {
  max-height: 50px;
  width: auto;
}

/* Playful Visual Design */
.hero-section {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 50%, var(--accent-yellow) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -50px;
  width: 100px;
  height: 100px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -30px;
  width: 60px;
  height: 60px;
  background: white;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite reverse;
}

.initiative-card {
  background: var(--bg-primary);
  border: 3px solid var(--accent-yellow);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.initiative-card-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.initiative-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.initiative-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent-red);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.initiative-card::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background: var(--accent-yellow);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite reverse;
}

.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-orange);
}

/* Increase button size in initiative cards */
.initiative-card .btn-main,
.initiative-card .btn-main.btn-line {
  padding: 18px 36px !important;
  font-size: 1.1rem !important;
  min-height: 56px !important;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 3px solid var(--accent-blue);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: var(--accent-yellow);
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-yellow);
}

.testimonial-card:hover::before {
  transform: scale(1.3);
  opacity: 0.4;
}

/* Playful Button Styles */
.btn-main {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%) !important;
  color: white !important;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

/* Hover effects removed */
/* .btn-main:hover::before {
  left: 100%;
}

.btn-main:hover {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%) !important;
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
  text-decoration: none;
} */

.btn-line {
  background: transparent !important;
  border: 3px solid var(--accent-orange) !important;
  color: var(--accent-orange) !important;
  border-radius: 25px;
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.4s ease;
  z-index: -1;
}

/* Hover effects removed */
/* .btn-line:hover::before {
  width: 100%;
}

.btn-line:hover {
  background: var(--accent-orange) !important;
  color: white !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
  text-decoration: none;
} */

/* Playful Section Design with Proper Spacing */
section {
  /* margin: 50px 0; */
  position: relative;
  overflow: visible; /* Changed to visible to allow decorative shapes to show */
}

/* Hero section needs more top padding */
#section-hero {
  padding: 140px 0 120px 0;
}


/* Specific section padding adjustments */


section:nth-of-type(even) {
  background: white;
}

/* Section decorative shapes - matching template */
/* Blue circle only on home and about pages - exclude hero sections and special sections */
body.path-frontpage #wrapper > section:nth-of-type(even):not(#section-hero):not(.page-hero):not(.newsletter-section)::before,
body.path-frontpage section:nth-of-type(even):not(#section-hero):not(.page-hero):not(.newsletter-section)::before,
body.path-frontpage #section-testimonials::before,
body.about-page section:nth-of-type(even):not(.page-hero):not(.about-hero):not(.newsletter-section)::before {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 14rem;
  height: 14rem;
  background: var(--accent-blue);
  box-shadow: 0px 18px 56px 0px #00000019, 0px 10px 18px 0px #0000000D, 0px 4px 6px 0px #0000000A;
  border-radius: 50%;
  opacity: 0.9;
  animation: float 13s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
}

/* Hide blue circle on all page-hero sections and special sections */
section.page-hero::before,
section.about-hero::before,
section.newsletter-section::before {
  display: none !important;
  content: none !important;
}

/* Spring shape only on home and about pages - exclude hero sections and special sections */
body.path-frontpage #wrapper > section:nth-of-type(odd):not(#section-hero):not(.page-hero):not(.newsletter-section)::after,
body.path-frontpage section:nth-of-type(odd):not(#section-hero):not(.page-hero):not(.newsletter-section)::after,
body.path-frontpage #section-about::after,
body.path-frontpage #section-initiatives::after,
body.path-frontpage #section-contact::after,
body.about-page section:nth-of-type(odd):not(.page-hero):not(.about-hero):not(.newsletter-section)::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 12rem;
  height: 12rem;
  background-image: url('/images/shapes/spring.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  animation: float 23s ease-in-out infinite reverse;
  z-index: 2;
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
}

/* Hide decorative shapes on mobile */
@media (max-width: 768px) {
  /* Hide spring shape on mobile */
  body.path-frontpage #wrapper > section:nth-of-type(odd):not(#section-hero):not(.page-hero):not(.newsletter-section)::after,
  body.path-frontpage section:nth-of-type(odd):not(#section-hero):not(.page-hero):not(.newsletter-section)::after,
  body.path-frontpage #section-about::after,
  body.path-frontpage #section-initiatives::after,
  body.path-frontpage #section-contact::after,
  body.about-page section:nth-of-type(odd):not(.page-hero):not(.about-hero):not(.newsletter-section)::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }
  
  /* Hide blue circle on mobile */
  body.path-frontpage #wrapper > section:nth-of-type(even):not(#section-hero):not(.page-hero):not(.newsletter-section)::before,
  body.path-frontpage section:nth-of-type(even):not(#section-hero):not(.page-hero):not(.newsletter-section)::before,
  body.path-frontpage #section-testimonials::before,
  body.about-page section:nth-of-type(even):not(.page-hero):not(.about-hero):not(.newsletter-section)::before {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }
}

/* Hide spring shape on all page-hero sections and special sections */
section.page-hero::after,
section.about-hero::after,
section.newsletter-section::after,
section.newsletter-section::before {
  display: none !important;
  content: none !important;
}

/* Hide spring shape on CTA sections (orange sections) */
section[style*="FF6B35"]::after,
section[style*="FF6B35"]::before {
  display: none !important;
  content: none !important;
}

/* Hide decorative shapes on detail pages */
body.page-blog-details section::before,
body.page-blog-details section::after,
body.page-initiative section::before,
body.page-initiative section::after,
body.page-research-details section::before,
body.page-research-details section::after {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
}

/* Hide spring shape on Initiatives page sections */
#ongoing-initiatives::after,
#past-initiatives::after {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
}

/* Hide section-title decorative shapes on detail pages */
body.page-blog-details .section-title::before,
body.page-blog-details .section-title .subtitle::after,
body.page-blog-details .section-title h2::before,
body.page-blog-details .section-title h2::after,
body.page-initiative .section-title::before,
body.page-initiative .section-title .subtitle::after,
body.page-initiative .section-title h2::before,
body.page-initiative .section-title h2::after,
body.page-research-details .section-title::before,
body.page-research-details .section-title .subtitle::after,
body.page-research-details .section-title h2::before,
body.page-research-details .section-title h2::after {
  display: none !important;
  content: none !important;
  visibility: hidden !important;
}

/* Add top padding to page-title sections on detail pages to prevent nav bar overlap */
body.page-blog-details .page-title,
body.page-initiative .page-title,
body.page-research-details .page-title {
  padding-top: 140px !important;
  padding-bottom: 80px !important;
}

.section-title {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  padding: 0 2rem;
}

/* Section title decorative shapes - matching template */
.section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow), var(--accent-blue));
  border-radius: 2px;
}

.section-title .subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: 1px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 14rem;
  height: 14rem;
  background: #D53C45;
  box-shadow: 0px 18px 56px 0px #00000019, 0px 10px 18px 0px #0000000D, 0px 4px 6px 0px #0000000A;
  border-radius: 50%;
  opacity: 0.9;
  animation: float 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.section-title h2::after {
  content: '';
  position: absolute;
  top: -100%;
  right: -10%;
  transform: translateY(-50%);
  width: 12rem;
  height: 12rem;
  background-image: url('/images/shapes/triangle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
  animation: float 12s ease-in-out infinite;
  animation-direction: alternate;
  z-index: -6;
}

.section-title .subtitle {
  color: var(--accent-red);
  /* font-size: 1.1rem; */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

/* Featured Initiative - Large Layout Styles */
.featured-initiative {
  margin-bottom: 40px;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 3px solid white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-initiative::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent-red);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.featured-initiative::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background: var(--accent-yellow);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite reverse;
}

.featured-initiative:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-orange);
}

.featured-initiative-left {
  padding: 1rem 0;
}

.featured-initiative-title-box {
  margin-bottom: 2rem;
}

.featured-initiative-tagline {
  color: var(--accent-orange) !important;
  /* font-size: 1rem; */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.featured-initiative-title-box h3 {
  color: var(--text-dark);
  /* font-size: 2.5rem; */
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.featured-initiative-text {
  color: var(--text-gray);
  /* font-size: 1.1rem; */
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-initiative-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.featured-initiative-points li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.featured-initiative-points li:hover {
  transform: translateX(5px);
}

.featured-initiative-points li .icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.featured-initiative-points li .icon i {
  color: white;
  /* font-size: 0.9rem; */
}

.featured-initiative-points li .text {
  flex: 1;
}

.featured-initiative-points li .text p {
  color: var(--text-dark);
  /* font-size: 1rem; */
  line-height: 1.6;
  margin: 0;
}

.featured-initiative-btn-box {
  margin-top: 2rem;
}

.featured-initiative-btn-box .btn-main {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 700;
}

.featured-initiative-btn-box .btn-main i {
  margin-left: 10px;
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .featured-initiative-btn-box .btn-main:hover i {
  transform: translateX(5px);
} */

.featured-initiative-right {
  padding: 1rem 0;
}

.featured-initiative-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.featured-initiative-img-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured-initiative-img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.featured-initiative-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.featured-initiative-img-box:hover .featured-initiative-img img {
  transform: scale(1.1);
}

/* Enhanced Grid Layouts with Better Spacing */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  padding: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

/* Container spacing improvements */
.container {
  padding: 0 2rem;
}

/* Gallery Styles */
.launch-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transform: translateZ(0);
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.launch-gallery .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.launch-gallery .gallery-item:hover img {
    transform: scale(1.1) translateZ(0);
}

.launch-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.launch-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.launch-gallery .gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

/* Video Wrapper */
.video-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact One Section - Light Theme */
.contact-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-top: 140px;
    margin-right: 80px;
}

.contact-one__left-content {
    position: relative;
    display: block;
}

.contact-one__title-box {
    position: relative;
    display: block;
    margin-bottom: 49px;
}

.contact-one__title-box h2 {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-one__title-box p {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.contact-one__contact-list {
    position: relative;
    display: block;
}

.contact-one__contact-list li {
    position: relative;
    display: flex;
}

.contact-one__contact-list li+li {
    margin-top: 22px;
}

.contact-one__contact-list li .icon {
    position: relative;
    display: inline-block;
    top: 8px;
}

.contact-one__contact-list li .icon span,
.contact-one__contact-list li .icon i {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: var(--accent-orange);
}

.contact-one__contact-list li .text {
    margin-left: 40px;
}

.contact-one__contact-list li .text p {
    font-size: var(--font-size-2xl);
    line-height: 34px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-one__contact-list li .text p a {
    position: relative;
    display: flex;
    color: var(--text-dark);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__contact-list li .text p a:hover {
    color: var(--accent-orange);
}

.contact-one__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 34px;
}

.contact-one__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 25px;
    color: var(--accent-blue);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__social a:hover {
    color: var(--accent-orange);
}

.contact-one__social a+a {
    margin-left: 25px;
}

.contact-one__right {
    position: relative;
    display: block;
    margin-left: 0;
}

.contact-one__form-box {
    position: relative;
    display: block;
    background-color: white;
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    padding: 93px 65px 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.contact-one__form-title {
    font-size: 2.5rem !important;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 34px;
}

.contact-one__form-box .form-group {
    position: relative;
    display: block;
}

.contact-one__form-box .form-group+.form-group {
    margin-top: 30px;
}

.contact-one__form-label {
    color: var(--text-gray);
    margin-bottom: 7px;
    font-size: var(--font-size-sm);
}

.contact-one__form-box .form-group input[type="text"],
.contact-one__form-box .form-group input[type="email"],
.contact-one__form-box .form-group textarea {
    height: 56px;
    width: 100%;
    background-color: #F8F9FA;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    outline: none;
    padding: 15px 20px 15px 50px;
    font-size: var(--font-size-md);
    color: var(--text-dark);
    font-weight: 400;
    transition: all 0.3s ease;
}

.contact-one__form-box .form-group input[type="text"]:focus,
.contact-one__form-box .form-group input[type="email"]:focus,
.contact-one__form-box .form-group textarea:focus {
    border-color: var(--accent-orange);
    background-color: white;
}

.contact-one__form-icon {
    position: absolute;
    top: 59px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
}

.contact-one__form-icon i {
    font-size: 15px;
    color: var(--accent-orange);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
}

.contact-one__form-box .form-group textarea {
    height: 144px;
    padding: 15px 20px;
}

.contact-one__form-box .form-group.text-message-box {
    height: 148px;
}

.contact-one__form-box .button-box {
    position: relative;
    display: block;
    padding-top: 30px;
}

.contact-one__btn {
    width: 100%;
    padding: 15px 30px 15px;
    font-size: var(--font-size-md);
    background: var(--accent-orange) !important;
    color: white !important;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover effects removed */
/* .contact-one__btn:hover {
    background: var(--accent-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
} */

/* Row spacing improvements */
.row {
  margin: 0 -1rem;
}

.row > * {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

/* Video Section Styling */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.play-button {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.play-button i {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

/* Hover effects removed */
/* .video-container:hover .play-button {
  transform: scale(1.1);
  opacity: 1;
}

.video-container:hover .play-button i {
  color: var(--accent-blue) !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
} */

/* Modal Styling */
.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  background: var(--bg-light-2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px 12px 0 0;
}

.modal-title {
  color: var(--text-dark);
  font-weight: 600;
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Hover effects removed */
/* .btn-close:hover {
  opacity: 1;
} */

/* Playful Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes wiggle {
  0%, 7%, 14% {
    transform: rotate(0deg);
  }
  3.5% {
    transform: rotate(3deg);
  }
  10.5% {
    transform: rotate(-3deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Interactive Elements */
.initiative-card:hover {
  animation: bounce 0.6s ease;
}

.testimonial-card:hover {
  animation: wiggle 0.5s ease;
}

/* Hover effects removed */
/* .btn-main:hover {
  animation: pulse 0.3s ease;
} */

/* Enhanced Responsive Design with Proper Spacing */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .initiatives-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }

  /* Featured Initiative Responsive Adjustments */
  .featured-initiative {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .featured-initiative-left,
  .featured-initiative-right {
    padding: 1rem 0;
  }

  .featured-initiative-title-box h3 {
    font-size: 2rem;
  }

  .featured-initiative-text {
    font-size: 1rem;
  }

  .featured-initiative-points li .text p {
    font-size: 0.95rem;
  }
  
  /* Mobile section padding adjustments */
  section {
    padding: 100px 0;
  }
  
  #section-hero {
    padding: 120px 0 100px 0;
  }
  
  /* Sections maintain consistent padding on tablet */
  #section-about,
  #section-testimonials,
  #section-partners,
  #section-research,
  #section-contact {
    padding: 80px 0 100px 0;
  }
  
  /* Reduce gap between AILH Launch section and Initiatives section on tablet */
  #section-about {
    padding-bottom: 50px !important;
    /* Performance optimizations for smooth scrolling */
    transform: translateZ(0);
    will-change: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  /* Optimize photo gallery for better scroll performance */
  #section-about .launch-gallery {
    transform: translateZ(0);
    will-change: auto;
  }
  
  #section-about .launch-gallery .gallery-item {
    transform: translateZ(0);
    will-change: auto;
  }
  
  #section-about .launch-gallery .gallery-item img {
    transform: translateZ(0);
    will-change: transform;
  }
  
  /* Optimize video wrapper for better scroll performance */
  #section-about .video-wrapper {
    transform: translateZ(0);
    will-change: auto;
  }
  
  #section-about .video-wrapper iframe {
    transform: translateZ(0);
  }
  
  /* Optimize animated background container */
  #section-about #animated-bg-container {
    transform: translateZ(0);
    will-change: auto;
  }
  
  #section-initiatives {
    padding-top: 50px !important;
    padding-bottom: 100px;
  }
  
  /* Reduce margin-bottom of section-title in AILH Launch section on tablet */
  #section-about .section-title {
    margin-bottom: 2.5rem !important;
  }
  
  .initiative-card,
  .testimonial-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .video-container {
    margin-top: 2rem;
  }
  
  .section-title {
    margin-bottom: 4rem;
    padding: 0 1rem;
  }
  
  .section-title h2::before,
  .section-title h2::after {
    display: none;
  }
  
  .initiative-card::before,
  .initiative-card::after {
    display: block;
  }
  
  .testimonial-card::before {
    display: none;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .btn-main,
  .btn-line {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .initiative-card,
  .testimonial-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Small mobile section padding */
  section {
    padding: 80px 0;
  }
  
  #section-hero {
    padding: 100px 0 80px 0;
  }
  
  /* Sections maintain consistent padding on mobile */
  #section-about,
  #section-testimonials,
  #section-partners,
  #section-research,
  #section-contact {
    padding: 80px 0 100px 0;
  }
  
  /* Reduce gap between AILH Launch section and Initiatives section on mobile */
  #section-about {
    padding-bottom: 40px !important;
  }
  
  #section-initiatives {
    padding-top: 40px !important;
    padding-bottom: 100px;
  }
  
  /* Reduce margin-bottom of section-title in AILH Launch section on mobile */
  #section-about .section-title {
    margin-bottom: 2rem !important;
  }
  
  .section-title {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
  }
  
  .initiatives-grid,
  .testimonials-grid {
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  /* Contact Section - Align form labels and inputs with contact info text on mobile */
  .contact-one__left-content {
    padding-left: 0 !important;
  }
  
  .contact-one__contact-list li {
    align-items: flex-start;
  }
  
  .contact-one__contact-list li .icon {
    flex-shrink: 0;
    width: 28px;
    margin-right: 12px;
    top: 0;
  }
  
  /* Remove margin-left so contact info text aligns with form text */
  .contact-one__contact-list li .text {
    margin-left: 0 !important;
    flex: 1;
  }
  
  .contact-one__form-box {
    padding: 40px 15px !important;
  }
  
  .contact-one__form-title {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Align form labels with contact info text */
  .contact-one__form-label {
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
  
  /* Align form input text with contact info text - both start at same position */
  /* Contact info text starts after icon (28px) + margin (12px) = 40px */
  /* Form input text should also start at 40px from container edge */
  .contact-one__form-box .form-group input[type="text"],
  .contact-one__form-box .form-group input[type="email"] {
    padding-left: 40px !important;
  }
  
  /* Adjust icon position to match */
  .contact-one__form-icon {
    left: 15px !important;
    top: 59px !important;
  }
  
  .contact-one__form-box .form-group textarea {
    padding-left: 15px !important;
  }
  
  /* Ensure contact info text and form labels align */
  .contact-one__contact-list li .text p {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* Small mobile featured initiative */
  .featured-initiative {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .featured-initiative-left,
  .featured-initiative-right {
    padding: 0.5rem 0;
  }

  .featured-initiative-title-box h3 {
    font-size: 1.75rem;
  }

  .featured-initiative-text {
    font-size: 0.95rem;
  }

  .featured-initiative-btn-box .btn-main {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  /* Ensure Sign Up and Learn More/Know More buttons are same size on mobile */
  .featured-initiative-btn-box .btn-main,
  .featured-initiative-btn-box .btn-main.btn-line {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    height: auto !important;
  }
  
  /* Ensure icons in buttons don't affect alignment */
  .featured-initiative-btn-box .btn-main i {
    margin-left: 6px !important;
    font-size: 0.85rem !important;
    line-height: 1 !important;
    vertical-align: middle !important;
  }
  
  /* Initiative card buttons - ensure same size on mobile */
  .initiative-card .btn-main,
  .initiative-card .btn-main.btn-line {
    padding: 16px 28px !important;
    font-size: 1rem !important;
    min-height: 52px !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    margin: 0 4px !important;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Hero Video Container - Ensure crisp video rendering */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-video-container video,
.hero-video-container .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

/* Hero Carousel Section - Override existing hero styles */
.hero-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 2; /* 5:2 aspect ratio for desktop */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-content {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-carousel .hero-title {
  font-size: 10rem;
  font-weight: 900;
  color: #003366 !important;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 51, 102, 0.3);
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #003366 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 2px 6px rgba(0, 51, 102, 0.3);
}

.hero-carousel .hero-description {
  font-size: 1.8rem;
  font-weight: 800;
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Dots */
.hero-carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.hero-dot.active {
  background: white;
  width: 14px;
  height: 14px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Tablet & Mobile: 1:1 aspect ratio (<=1024px) */
@media (max-width: 1024px) {
  .hero-carousel {
    aspect-ratio: 1 / 1; /* 1:1 aspect ratio for tablet & mobile */
  }
}

/* Mobile-specific tweaks (<=768px) */
@media (max-width: 768px) {
  .hero-carousel-container {
    margin-top: 80px; /* Reduced margin for mobile navbar */
  }
  
  .hero-carousel .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem !important;
    letter-spacing: 1px !important;
  }
  
  .hero-carousel .hero-description {
    font-size: 1.4rem;
    font-weight: 800;
  }
  
  /* Page hero and about hero descriptions - match hero description on mobile */
  .page-hero-subtitle,
  .about-hero-description,
  .page-title__text {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
  }
  
  .hero-slide-content {
    padding: 1rem;
  }
}

/* Mobile Menu Wrapper - Slide-in from right */
.header-data-mobile {
  position: relative;
  z-index: 1000;
}

.header-data-mobile .content {
  position: relative;
}

/* Mobile Menu Overlay (background) - Hidden when menu is full width */
.responsive-menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 99998;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.responsive-menu-wrapper.active {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-shown {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

body.mobile-menu-shown header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Mobile Menu Drawer (slides in from right) - Full Width */
.responsive-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  padding: 0;
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.responsive-menu-wrapper.active .responsive-menu {
  right: 0 !important;
}

.responsive-menu .scrollable-wrapper {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box;
}

/* Menu header - full width with proper alignment */
.responsive-menu .scrollable-wrapper > div:first-child {
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid #eee !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
}

.responsive-menu .menu-lists {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  width: 100% !important;
  flex: 0 0 auto;
}

.responsive-menu .menu-lists li {
  border-bottom: none;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  width: 100% !important;
}

.responsive-menu .menu-lists li:last-child {
  border-bottom: none;
}

.responsive-menu .menu-lists li:last-child a {
  border-bottom: 1px solid #f0f0f0 !important;
}

.responsive-menu .menu-lists li a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #333 !important;
  text-decoration: none;
  font-size: 1.5rem !important;
  font-weight: 500;
  padding: 1rem 1.5rem !important;
  width: 100% !important;
  height: auto !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  margin: 0;
  text-align: left !important;
}

.responsive-menu .menu-lists li a:hover,
.responsive-menu .menu-lists li a:active {
  background-color: #f8f8f8;
  color: #FF6B35 !important;
}

/* Hide hamburger icon X transformation - we use drawer close button instead */
.responsive-menu-toggle .menus-bar.is_show,
.responsive-menu-toggle .menus-bar .fa-times,
.responsive-menu-toggle .menus-bar.is_show .fa-bars,
.responsive-menu-toggle .menus-bar.is_show .fa-times,
.responsive-menu-toggle .menus-bar .fa-x,
.responsive-menu-toggle .menus-bar .fa-close,
.responsive-menu-toggle .menus-bar .fa-xmark {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Ensure hamburger icon always shows bars, never X */
.responsive-menu-toggle .menus-bar .fa {
  display: inline-block !important;
}

.responsive-menu-toggle .menus-bar .fa-bars {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Hide any ghosted X icons that might appear */
.responsive-menu-wrapper .fa-times,
.responsive-menu-wrapper .fa-x,
.responsive-menu-wrapper .fa-close,
.responsive-menu-wrapper .fa-xmark,
.responsive-menu .fa-times,
.responsive-menu .fa-x,
.responsive-menu .fa-close,
.responsive-menu .fa-xmark {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Global Font Size Standardization - Apply About Page Standard (1.8rem) Across All Pages */
/* Blog Cards */
.blog-card__excerpt {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Blog Detail Pages */
.blog-details__text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.blog-details__text .lead {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.blog-details__points p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.blog-details__quote blockquote p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.blog-details__num-list li {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.blog-details__num-list li p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Initiative Cards */
.initiative-card p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.initiative-card .text-center {
  font-size: 1.8rem !important;
}

/* Featured Initiative */
.featured-initiative-points li .text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Research Cards */
.research-card .blog-card__excerpt,
.blog-card .blog-card__excerpt {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Research Detail Pages */
.blog-details__text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Prevent links from overflowing in research details */
.blog-details__content {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.blog-details__text a,
.blog-details__text a:link,
.blog-details__text a:visited {
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
  display: inline-block;
}

/* Fix date padding/overflow issues on detail pages - restore top-right positioning with orange style */
.blog-details__content .blog-card__date,
.blog-details .blog-card__date {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  left: auto !important;
  bottom: auto !important;
  background: var(--accent-orange) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  z-index: 10 !important;
  max-width: calc(100% - 4rem) !important; /* Ensure it doesn't overflow container, accounting for positioning and padding */
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

.blog-details__content .blog-card__date i,
.blog-details .blog-card__date i {
  color: #0066CC !important;
}

/* Ensure date containers have relative positioning for absolute date placement */
.blog-details__content {
  position: relative !important; /* Required for absolute positioning of dates */
  overflow: visible; /* Allow dates to be positioned */
}

/* Remove relative positioning from flex containers so dates position relative to blog-details__content */
.blog-details__content .d-flex.flex-column,
.blog-details .d-flex.flex-column {
  max-width: 100%;
  position: static; /* Don't create new positioning context */
}

.blog-details__content .d-flex.justify-content-between,
.blog-details .d-flex.justify-content-between {
  max-width: 100%;
  position: static; /* Don't create new positioning context */
}

/* Design Thinking Content */
.dd-main-tab-panel .blog-details__text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.dd-main-tab-panel .blog-details__points p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.dd-main-tab-panel .blog-details__num-list li {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.dd-main-tab-panel .blog-details__num-list li p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Design Thinking Stage Descriptions */
.dd-stage-description p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.dd-stage-description h3 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}

/* Design Thinking Tool Card Descriptions */
.dd-tool-card-desc {
  font-size: 1.4rem !important;
  line-height: 1.6 !important;
}

/* Design Thinking Instructor's Guide */
.dd-guidebook-card .blog-details__text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.dd-guidebook-card h2 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}

/* Design Thinking Tab Buttons */
.dd-main-tab {
  font-size: 1.8rem !important;
}

/* Home Page Sections */
#section-about p,
#section-initiatives p,
section p:not(.hero-subtitle):not(.page-hero-subtitle) {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Contact Page */
.contact-one__contact-list li .text p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.contact-one__title-box p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* General Paragraph Text - More specific to avoid affecting meta/UI elements */
section p:not(.hero-subtitle):not(.page-hero-subtitle):not(.lead):not(.blog-card__meta *):not(.blog-details__meta *):not(.blog-details__date-info *):not(.blog-details__author-info *):not(.recent-post-content *):not(.category-item *):not(.tag):not(.blog-card__category):not(.blog-card__read-time):not(.post-date):not(.category-count):not(.impact-stat-desc):not(.advisory-card-title):not(.advisory-card-name):not(.advisory-card-job) {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Initiative Detail Pages */
.rich-text-content p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.rich-text-content .blog-details__points p {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

.rich-text-content .blog-details__num-list li {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* Page Title Text */
.page-title__text {
  font-size: 1.8rem !important;
  line-height: 1.8 !important;
}

/* About Page - Our Approach Section Subheadings */
.about-approach-section h3 {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
}

/* About Page - Impact Stat Cards - Match Our Approach Section */
.impact-stat-label {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
}

.impact-stat-desc {
  font-size: 1.8rem !important;
}

/* Blog Card Titles - Match Description Font Size */
.blog-card__title {
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
}

/* Blog Card Tags - Slightly smaller than main content */
.tag {
  font-size: 1.2rem !important;
}

.blog-card__tags .tag,
.blog-details__tags .tag {
  font-size: 1.2rem !important;
}

/* Initiative Detail Page Headings - Match Description Font Size */
.blog-details__text h3,
.rich-text-content h3 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
}
