/* 
   ACI HealthCare Limited Custom Stylesheet
   Designed to work on top of Bootstrap 5
*/

:root {
    /* Color Palette */
    --aci-green: #00A65D;
    --aci-green-dark: #008A4D;
    --aci-green-light: #CCEDDF;
    --aci-green-alpha: rgba(0, 166, 93, 0.1);
    --aci-green-glow: rgba(0, 166, 93, 0.25);
    --indigo-accent: #3645C2;
    --indigo-hover: #2633a1;
    --text-dark: rgba(0, 0, 0, 0.85);
    --text-muted: rgba(0, 0, 0, 0.55);
    
    /* Shadows */
    --card-shadow: 8px 8px 38px 0px rgba(158, 200, 255, 0.28);
    --glass-shadow: 0px 8px 38px 0px rgba(7, 129, 75, 0.15);
    
    /* Font Families */
    --font-heading: 'Oxygen', sans-serif;
    --font-body: 'Oxygen', sans-serif;
    --font-caption: 'DM Sans', sans-serif;
    --font-logo: 'Arimo', sans-serif;
    
    /* Spacing & Transitions */
    --transition-speed: 0.3s;
    --transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
    --bs-body-font-size:1.2rem;
}

/* Global Reset & Base Styling */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}
.container {
    max-width: 1440px;
    width: 100%;
}
/* Accessibility skip link */
.skip-to-content-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--aci-green);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.2s;
    text-decoration: none;
    font-weight: bold;
}

.skip-to-content-link:focus {
    top: 0;
}

/* Typography Extensions */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: 3.375rem; /* ~36px */
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    letter-spacing: -0.01em;
}

/* Gradient Header */
h2.section-title:not(.gradient-title) {
    background: linear-gradient(90deg, var(--aci-green) 0%, #40c677 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-title {
    background: linear-gradient(90deg, var(--aci-green) 0%, #40c677 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-body-text p {
    font-size: 1.125rem; /* ~18px */
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--aci-green);
    border-radius: 2px;
}

/* Header & Glass Navigation */
.header-nav {
    background: rgba(239, 248, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204, 237, 223, 0.5);
    z-index: 1030;
    transition: background var(--transition-speed);
}

.navbar-brand .brand-logo {
    height: 48px;
    width: auto;
}

.navbar-brand .brand-text {
    font-family: var(--font-logo);
    font-weight: 700;
    font-style: italic;
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.85);
    letter-spacing: -0.02em;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #00331D !important;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-speed);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--aci-green) !important;
}

.navbar-nav .nav-link-highlight {
    color: var(--aci-green) !important;
}

/* Dropdown styling */
.navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--aci-green-light);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 10px;
}

.dropdown-menu-item.dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: #00331D;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.dropdown-menu-item.dropdown-item:hover,
.dropdown-menu-item.dropdown-item.active {
    background-color: var(--aci-green-light);
    color: var(--aci-green-dark);
}

/* Header Buttons */
.btn-icon {
    color: var(--aci-green);
    font-size: 1.15rem;
    border: none;
    background: transparent;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.btn-icon:hover {
    background-color: rgba(0, 166, 93, 0.1);
    transform: scale(1.05);
}

.nav-divider {
    font-family: var(--font-caption);
    font-weight: 100;
    font-size: 1.5rem;
    color: var(--aci-green);
    opacity: 0.5;
}

.btn-products {
    background-color: var(--aci-green);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 90px;
    padding: 0.5rem 1.75rem;
    border: none;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-products:hover {
    background-color: var(--aci-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 93, 0.3);
}

/* Hero Section with Video styling */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-color: #001009;
    display: flex;
    align-items: center;
}

.hero-gradient-overlay {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 20%, rgba(0, 20, 10, 0.7) 75%),
                linear-gradient(0deg, rgba(0, 166, 93, 0.2), rgba(0, 166, 93, 0.05));
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 5.25rem;  /* ~84px matching Figma */
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.btn-video-control {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-speed);
}

.btn-video-control:hover {
    background: var(--aci-green);
    border-color: var(--aci-green);
    transform: scale(1.1);
    color: #FFFFFF;
}

/* Hero Carousel specific styles */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-section .carousel-item {
    height: 100vh;
    min-height: 600px;
}

#heroCarousel .carousel-item .animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: none !important;
}

#heroCarousel .carousel-item.active .animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-subheading {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-success-custom {
    color: var(--aci-green);
}

/* Indicators */
.hero-carousel-indicators {
    bottom: 40px !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
    width: fit-content;
    z-index: 5;
    gap: 12px;
}

.hero-carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
}

.hero-carousel-indicators button.active {
    background-color: var(--aci-green) !important;
    border-color: var(--aci-green) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-section {
        height: 100svh;
        min-height: 500px;
    }
    .hero-section .carousel-item {
        height: 100svh;
        min-height: 500px;
    }
    .hero-subheading {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }
}

/* Company Overview Section */
.overview-section {
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.py-overview {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

@media (max-width: 991px) {
    .py-overview { padding-top: 4rem; padding-bottom: 4rem; }
}

.bg-blur-decor {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 166, 93, 0.08);
    filter: blur(150px);
    border-radius: 50%;
    top: 10%;
    left: -200px;
    pointer-events: none;
    z-index: 0;
}

/* ── Left column: Typography ── */

/* Heading: "Company Overview" — gradient, top */
.overview-heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 3.375rem;    /* 54px Figma Heading style */
    line-height: 1.18;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #00A65D 0%, #40C677 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
}

/* Subtitle: "A Subsidiary of ACI PLC" — dark, below heading */
.overview-subtitle {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;        /* 24px sub-heading */
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 1.75rem;
}

.overview-body {
    position: relative;
    z-index: 1;
}

.overview-body p {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;      /* ~20px body */
    line-height: 1.8;
    text-align: justify;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 1.1rem;
}

/* ── Right column: Stacked Image Cards ── */
/* Figma canvas: 830×830. Factory at (270,80) 512×446; Corporate at (66,303) 512×453 */
/* Scale factor ≈ viewport-col-width / 830. Using proportional offsets. */

.overview-images-stack {
    position: relative;
    width: 100%;
    /* Stack height = corporate bottom edge: 303+453 = 756px scaled → 756/830*100 */
    /* At ~500px col width: 756/830*500 ≈ 455px. Use 460px. */
    height: 460px;
}

.ov-card {
    position: absolute;
    /* card width: 512/830 = 61.7% of the 830 container */
    width: 80%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

/* Factory card: top-right — Figma x:270 = 830-270-512 = 48 from right → right:0 */
.ov-card--top {
    top: 0;
    right: 0;
    z-index: 1;
}

/* Corporate card: bottom-left — Figma x:66 ≈ left:0, y:303/830 = 36.5% from top */
.ov-card--bottom {
    top: 36.5%;    /* proportional to stack height */
    left: 0;
    z-index: 2;
}

/* Card inner: rounded, shadow, NO border (Figma group has no stroke) */
.ov-card__inner {
    position: relative;
    border-radius: 30px;
    overflow: visible; /* so outer border shadows don't clip */
    background-color: #ffffff;
    /* Default shadow from Figma */
    box-shadow: 8px 8px 38px 0px rgba(158, 200, 255, 0.28);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: bring to front */
.overview-images-stack .ov-card:hover { 
    z-index: 20 !important; 
}
.overview-images-stack .ov-card--top:hover { 
    transform: translateY(-10px) scale(1.02); 
}
.overview-images-stack .ov-card--bottom:hover { 
    transform: translateY(-10px) scale(1.02); 
}

/* Exact Figma prototype hover: thick green border with white gap + shadow */
.ov-card:hover .ov-card__inner {
    /* 1. 4px solid white gap, 2. 8px green border (total 12px), 3. soft drop shadow */
    box-shadow: 0 0 0 6px #ffffff, 0 0 0 15px #00A65D, 12px 20px 50px 0px rgba(0, 166, 93, 0.20);
}

/* Green tint overlay: rgba(0,166,93,0.1) from Figma */
.ov-card__green-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 166, 93, 0.10);
    z-index: 2;
    pointer-events: none;
    border-radius: 30px;
}

/* Image */
.ov-card__img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px; /* needed since inner isn't hiding overflow anymore due to outer shadows */
}

/* Caption: DM Sans Italic, rgba(255,255,255,0.75), bottom of image */
.ov-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.60) 100%);
    border-radius: 30px;
    z-index: 3;
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */
@media (max-width: 1399px) {
    .overview-images-stack { height: 430px; }
    .ov-card__img          { height: 230px; }
    .overview-heading      { font-size: 2.9rem; }
    .overview-subtitle     { font-size: 1.7rem; }
}

@media (max-width: 1199px) {
    .overview-images-stack { height: 400px; }
    .ov-card               { width: 65%; }
    .ov-card__img          { height: 215px; }
    .overview-heading      { font-size: 2.5rem; }
    .overview-subtitle     { font-size: 1.5rem; }
}

@media (max-width: 991px) {
    .overview-images-stack { height: 350px; margin-bottom: 2rem; }
    .ov-card               { width: 65%; }
    .ov-card__img          { height: 190px; }
    .ov-card--bottom       { top: 35%; }
    .overview-heading      { font-size: 2.25rem; line-height: 1.2; }
    .overview-subtitle     { font-size: 1.3rem; }
    .overview-body p       { font-size: 1rem; }
}

@media (max-width: 576px) {
    .overview-images-stack { height: 280px; }
    .ov-card               { width: 70%; }
    .ov-card__img          { height: 155px; }
    .ov-card--bottom       { top: 34%; }
    .overview-heading      { font-size: 1.8rem; }
    .overview-subtitle     { font-size: 1.1rem; }
}


/* Mission & Vision Section */
.mission-vision-section {
    background-color: #FFFFFF;
}

.mv-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--aci-green-light);
    border-radius: 28px;
    padding: 4rem 4.5rem;
    max-width: 1440px;
    box-shadow: var(--glass-shadow);
}

/* Quote Decorative Elements */
.mv-quote {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30rem;
    color: var(--bs-secondary-bg-rgb);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.mv-quote-open {
    top: -160px;
    left: 20px;
}

.mv-quote-close {
    bottom: -350px;
    right: 20px;
}

.mv-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mv-title {
    font-family: 'Oxygen', sans-serif;
    color: #00965C;
    font-size: 3.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mv-text {
    font-family: 'Oxygen', sans-serif;
    color: #4F4F4F;
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 1440px;
    text-align: left; /* Keep text left aligned even in vision block */
}

.mv-divider {
    height: 2px;
    background-color: #EAEAEA;
    width: 100%;
    max-width: 850px;
}

@media (max-width: 991px) {
    .mv-quote { font-size: 10rem; }
    .mv-quote-close { bottom: -90px; }
}

@media (max-width: 768px) {
    .mv-card {
        padding: 2.5rem 2rem;
    }
    .mv-title { font-size: 1.8rem; }
    .mv-text { font-size: 1rem; max-width: 100%; }
}

/* Core Values Section */


.section-title.solid-title {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--aci-green) !important;
    font-weight: 700;
}

.bg-light-section {
    background-color: #F5F7FA;
}

.value-card {
    background-color: #FFFFFF;
    border: none;
    border-radius: 20px;
    height: 200px;
    max-width: 432px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-speed) var(--transition-bezier);
}

.value-card .value-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    transition: color var(--transition-speed) var(--transition-bezier);
}

.value-card .value-image-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-card .value-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--transition-speed) var(--transition-bezier);
}

/* Core Values Hover Micro-interactions */
.value-card:hover {
    background-color: var(--indigo-accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(54, 69, 194, 0.25);
}

.value-card:hover .value-title {
    color: #FFFFFF;
}

.value-card:hover .value-image-wrapper img {
    /* Retain original green color since checkmark transparency automatically adapts */
    transform: scale(1.08) translateY(-4px);
}

/* Milestone Section & Timeline Slider */
.milestone-link {
    color: var(--aci-green);
    font-family: var(--font-heading);
    font-weight: 700;
    transition: color var(--transition-speed);
}

.milestone-link:hover {
    color: var(--aci-green-dark);
}

/* Interactive Timeline styling */
.timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--aci-green-light);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-dot {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 3px solid var(--aci-green-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot:focus {
    outline: none;
}

.timeline-dot.active {
    background-color: var(--aci-green);
    border-color: var(--aci-green);
    transform: scale(1.35);
    box-shadow: 0 0 14px var(--aci-green-glow);
}

.timeline-year {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color var(--transition-speed);
}

.timeline-dot.active .timeline-year {
    color: var(--aci-green);
}

.timeline-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.825rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.timeline-dot.active .timeline-label {
    color: var(--text-dark);
}

@media (max-width: 576px) {
    .timeline-label {
        display: none !important;
    }
    .timeline-container {
        padding: 40px 0 20px 0;
    }
    .timeline-year {
        top: -26px;
        font-size: 0.85rem;
    }
}

/* Milestone Carousel styling */
.milestone-carousel-wrapper {
    max-width: 100%;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background-color: #1F2022;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Custom Dynamic HTML Timeline Bar */
.custom-timeline-bar {
    position: relative;
    background-color: #18191B;
    padding: 16px 24px 12px 24px;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-nodes-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.timeline-nodes-container::before {
    content: '';
    position: absolute;
    top: 10px; /* middle of dot-wrapper */
    left: 40px; /* offset to align with center of first dot on mobile */
    right: 40px; /* offset to align with center of last dot on mobile */
    height: 2px;
    background-color: #2D2F34;
    z-index: 1;
}

@media (min-width: 992px) {
    .timeline-nodes-container::before {
        left: 5%; /* perfect center alignment on wide screens */
        right: 5%;
    }
}

.timeline-node {
    background: none;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0;
    min-width: 80px;
    flex: 1 1 0; /* distribute evenly on desktop */
}

@media (max-width: 991px) {
    .custom-timeline-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .custom-timeline-bar::-webkit-scrollbar {
        display: none;
    }
    .timeline-node {
        flex: 0 0 auto; /* don't shrink on mobile */
    }
    .timeline-nodes-container {
        justify-content: flex-start;
        gap: 20px;
        width: max-content;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.timeline-node .dot-wrapper {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.timeline-node .node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6C727A;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-node .node-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: #8C949F;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

/* Hover States */
.timeline-node:hover .node-dot {
    background-color: #FFFFFF;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.timeline-node:hover .node-label {
    color: #FFFFFF;
}

/* Active States */
.timeline-node.active .node-dot {
    width: 14px;
    height: 14px;
    background-color: #FFFFFF;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.timeline-node.active .node-label {
    color: #FFFFFF;
    font-weight: 700;
}

/* Image Cropping Wrapper to remove baked-in black bar */
.milestone-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2832 / 1374; /* exact cropped aspect ratio */
}

.milestone-carousel-img {
    position: absolute;
    top: -13.1%; /* shift up to hide the black timeline bar */
    left: 0;
    width: 100%;
    height: 113.1%;
    object-fit: cover;
}

/* Adjust Chevron Control Vertical alignment to center inside image content area */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    top: 68px; /* Offset the timeline bar height */
    height: calc(100% - 68px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-image: none !important; /* Remove bootstrap default svg */
    padding: 0 !important;
}

.carousel-control-prev-icon::after {
    content: '\F282'; /* bootstrap-icons chevron-left */
    font-family: 'bootstrap-icons';
    font-size: 1.55rem;
    color: #FFFFFF;
}

.carousel-control-next-icon::after {
    content: '\F285'; /* bootstrap-icons chevron-right */
    font-family: 'bootstrap-icons';
    font-size: 1.55rem;
    color: #FFFFFF;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--aci-green) !important;
    border-color: var(--aci-green) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 166, 93, 0.4);
}

/* Strategic Pillars Section */
.strategic-pillars-section {
    padding-top: 5px;
    padding-bottom: 50px;
    overflow: hidden;
}

.bg-light-green {
    background-color: var(--aci-green-light);
}

.pillars-circle-decor {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 5px solid rgba(0, 166, 93, 0.15);
    border-radius: 50%;
    top: 5px;
    left: -140px;
    pointer-events: none;
    z-index: 0;
}

.pillar-card {
    background-color: #FFFFFF;
    border: none !important;
    border-radius: 32px !important;
    padding: 48px 40px !important;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) var(--transition-bezier);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #00331D;
    line-height: 1.35;
    max-width: 240px;
    margin-right: 15px;
    transition: color var(--transition-speed) var(--transition-bezier);
}

.pillar-icon-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform var(--transition-speed) var(--transition-bezier);
}

.pillar-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.65);
    margin-top: 1.25rem;
    transition: color var(--transition-speed) var(--transition-bezier);
}

/* Default Highlighted (Indigo) Card styling */
.pillar-card.highlighted {
    background-color: var(--indigo-accent);
    box-shadow: 0 16px 36px rgba(54, 69, 194, 0.22);
}

.pillar-card.highlighted .pillar-title {
    color: #FFFFFF;
}

.pillar-card.highlighted .pillar-description {
    color: rgba(255, 255, 255, 0.85);
}

/* Hover effects */
.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(54, 69, 194, 0.32);
    background-color: var(--indigo-accent);
}

.pillar-card:hover .pillar-title {
    color: #FFFFFF;
}

.pillar-card:hover .pillar-description {
    color: rgba(255, 255, 255, 0.85);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.08);
}

/* Leadership & Governance */
.leadership-section {
    background-color: #FFFFFF;
}

.leadership-circle-decor {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 5px solid rgba(129, 129, 129, 0.15);
    border-radius: 50%;
    bottom: 5px;
    right: -70px;
    pointer-events: none;
    z-index: 0;

}

.leadership-glass-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--aci-green-light) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.vertical-green-line {
    width: 3px;
    height: 100px;
    background-color: var(--aci-green);
    margin: 0 auto;
}

.btn-outline-indigo {
    color: var(--indigo-accent);
    border: 2px solid var(--indigo-accent);
    font-family: var(--font-caption);
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    transition: all var(--transition-speed);
}

.btn-outline-indigo:hover {
    background-color: var(--indigo-accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(54, 69, 194, 0.3);
}

/* Modals Premium styling */
.modal-fullscreen {
    max-width: 98%!important;
    left: 1%!important;
}

.custom-modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid var(--aci-green-light);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(7, 129, 75, 0.2);
}

.custom-modal-content .btn-close {
    background-color: #E9EBFF;
    opacity: 0.8;
    border-radius: 50%;
    padding: 10px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-modal-content .btn-close:hover {
    background-color: var(--aci-green-light);
    opacity: 1;
    transform: scale(1.1);
}

/* Founder Chairman Modal Custom Styles */
.founder-modal-body {
    background-color: #F8F9FA;
    font-family: var(--font-body);
    color: var(--text-dark);
}

.founder-modal-section {
    padding: 60px 48px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.founder-modal-section.bg-mint {
    background-color: rgba(0, 166, 93, 0.04); /* Light green/mint tint */
}

.founder-modal-section.bg-light-gray {
    background-color: #F8F9FA;
}

.founder-modal-header {
    padding: 80px 48px 60px 48px;
    background-color: #F8F9FA;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-portrait-container {
    max-width: 450px;
    margin: 0 auto;
}

.founder-portrait-img {
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.founder-modal-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--aci-green);
    line-height: 1.2;
}

.founder-modal-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 5px;
}

.founder-header-text-block {
    border-left: 4px solid var(--aci-green);
    padding-left: 24px;
    margin-top: 30px;
}

.founder-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aci-green);
    margin-bottom: 24px;
}

.founder-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
}

.founder-section-img {
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-width: 100%;
    height: auto;
}

/* Quote Box Section */
.founder-quote-block {
    margin: 40px auto;
    padding: 60px 80px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #CCEDDF;
    box-shadow: 0px 8px 38px 0px rgba(7, 129, 75, 0.08);
    position: relative;
    text-align: center;
}

.quote-decor {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.03));
}

.quote-decor-top {
    top: -25px;
    left: 40px;
}

.quote-decor-bottom {
    bottom: -25px;
    right: 40px;
}

.founder-quote-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: #3C3C3C;
    margin-bottom: 25px;
}

.founder-quote-author {
    font-family: var(--font-body);
    font-size: 2.25rem;
    font-weight: 700;
    color: #777777;
    text-align: right;
    padding-right: 20px;
}

/* Timeline Cards */
.founder-timeline-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--aci-green);
}

.founder-timeline-year {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--aci-green);
    margin-bottom: 10px;
}

/* Accent Card (Professional Foundation Right) */
.founder-accent-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--aci-green);
    margin-top: 24px;
}

/* Two Column Side-by-side Cards */
.founder-info-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--aci-green);
}

.founder-info-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #00331D;
    margin-bottom: 20px;
}

/* List Item Styles */
.founder-list {
    padding-left: 0;
    margin-bottom: 20px;
}

.founder-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.founder-list li::before {
    content: "•";
    color: var(--aci-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 10px;
}

/* Link Card */
.founder-link-card {
    max-width: 960px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--card-shadow);
}

.founder-link-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--aci-green);
    margin-bottom: 20px;
    text-align: center;
}


/* Custom Leadership Cards (Horizontal Layout matching Figma) */
.leadership-card {
    background-color: #F8FEF9 !important; /* Mint white/light green background */
    border: none !important;
    border-left: 6px solid #00A65D !important; /* Left thick green border */
    border-radius: 20px !important;
    box-shadow: 8px 10px 34px 0px rgba(95, 146, 255, 0.15) !important; /* Soft blue shadow */
    transition: all var(--transition-speed) var(--transition-bezier);
    overflow: hidden;
    min-height: 350px;
    padding: 30px 40px !important;
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: 8px 16px 40px 0px rgba(95, 146, 255, 0.3) !important;
    border-left-color: #40C677 !important; /* Lighter emerald green border on hover */
}

/* Portrait wrapper layout */
.portrait-container {
    width: 298px;
    height: 312px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Portrait background circle */
.portrait-bg-circle {
    position: absolute;
    width: 284px;
    height: 266px;
    border-radius: 50%;
    background: rgba(0, 166, 93, 0.1); /* Subtle green fill behind the person */
    z-index: 1;
    left: 7px;
    top: 23px;
}

/* Actual portrait image */
.portrait-img {
    position: absolute;
    width: 298px;
    height: 312px;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    border-radius: 20px; /* soft corners for portrait */
}

/* Card details alignment */
.card-content {
    padding-left: 20px;
    padding-top: 10px;
    z-index: 3;
}

.member-name {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2.1rem; /* matches Figma sub-heading */
    color: #000000;
    line-height: 1.2;
}

.member-role {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem; /* matches menu-footer-bold */
    color: rgba(0, 0, 0, 0.75);
}

.member-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    opacity: 1;
    width: 100%;
}

.member-bio {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.95rem; /* matches menu-footer */
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
}

/* LinkedIn icon styling */
.linkedin-btn {
    width: 31px;
    height: 31px;
    background-color: #00A65D; /* green background */
    color: #FFFFFF !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 166, 93, 0.3);
    transition: all 0.2s ease;
    z-index: 4;
}

.linkedin-btn:hover {
    background-color: #40C677;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .leadership-card {
        padding: 20px !important;
        min-height: auto;
    }
    .portrait-container {
        width: 240px;
        height: 250px;
    }
    .portrait-bg-circle {
        width: 228px;
        height: 213px;
        left: 6px;
        top: 18px;
    }
    .portrait-img {
        width: 240px;
        height: 250px;
    }
    .member-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .leadership-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
    .portrait-container {
        width: 200px;
        height: 210px;
        margin-bottom: 20px;
    }
    .portrait-bg-circle {
        width: 190px;
        height: 178px;
        left: 5px;
        top: 15px;
    }
    .portrait-img {
        width: 200px;
        height: 210px;
    }
    .card-content {
        padding-left: 0;
    }
    .linkedin-btn {
        position: relative !important;
        margin-top: 15px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        bottom: auto !important;
        end: auto !important;
    }
}

/* =====================================================
   FOOTER — Pixel-perfect Figma match
   ===================================================== */

/* Import Arimo for brand title (matches Figma: Arimo Bold Italic) */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@1,700&display=swap');

.footer-section {
    background-image: url(assets/footer-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 24px;
    min-height: 630px;
    height: auto;
}

/* Footer Wave Animations */
.footer-waves-container {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-waves-container svg {
    display: block;
    width: 100%;
    height: 100%;
}

.parallax-waves > use {
    animation: wave-slide 20s linear infinite;
}

.wave-layer-1 {
    animation: wave-slide-slow 22s linear infinite !important;
}

.wave-layer-2 {
    animation: wave-slide-mid 14s linear infinite !important;
}

.wave-layer-3 {
    animation: wave-slide-fast 8s linear infinite !important;
}

@keyframes wave-slide-slow {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

@keyframes wave-slide-mid {
    0% {
        transform: translate3d(-25%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wave-slide-fast {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-25%, 0, 0);
    }
}

/* Logo */
.footer-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

/* Brand name — Arimo Bold Italic 25px matching Figma */
.footer-brand-title {
    font-family: 'Arimo', 'Oxygen', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.56rem;          /* ≈ 25px */
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Address label — Oxygen Bold 16px */
.footer-addr-label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;             /* 16px */
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Green icon box — circular dark green, hover scaling */
.footer-icon-box {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 92, 48, 0.4);
    border-radius: 50%;          /* Completely circular */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-icon-box:hover {
    background-color: var(--aci-green-dark);
    transform: scale(1.1);
}

/* Address text — Oxygen Regular 16px, white */
.footer-addr-text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;             /* 16px */
    line-height: 1.55;
    color: #ffffff;
}

/* Navigation column heading — Oxygen Bold 16px */
.footer-nav-heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.875rem;
}

/* Navigation links — Oxygen Regular 16px */
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;               /* ~14px gap matching Figma */
    margin-bottom: 0;
}

.footer-nav-links a {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-links a:hover,
.footer-nav-links a.active {
    color: var(--aci-green-light); /* Mint light green for legibility on green background */
    transform: translateX(4px);
}

/* Social icons — vertically stacked on desktop, horizontal on mobile */
.footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;       /* Right-align on desktop */
    width: 100%;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon:hover {
    color: var(--aci-green-light);
    transform: scale(1.2);
}

/* Divider */
.footer-divider {
    border: 0;
    border-top: 2px solid rgb(255, 255, 255);
    margin: 0;
}

/* Copyright — Oxygen Regular 16px, centered */
.footer-copyright {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
}

/* Keep legacy helpers used elsewhere */
.small-text     { font-size: 0.85rem; line-height: 1.5; }
.text-light-gray { color: #BDC3C7; }

/* Animations classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal helper classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Padding spacing */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 991px) {
    .py-6 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

/* ==========================================================================
   MANUFACTURING EXCELLENCE PAGE STYLES
   ========================================================================== */

/* Hero section specific background override */
.hero-mfg {
    background-image: url('assets/images/hero_bg_clean.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Facility Overview vertical divider */
.vertical-green-divider {
    width: 7px;
    background: var(--aci-green);
    height: 100%;
    min-height: 180px;
    border-radius: 2px;
    margin: 0 auto;
}

/* Capability Cards */
.capabilities-section {    
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.capabilities-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 6vw, 110px); /* Responsive gap matching the 110px from Figma on desktop */
    flex-wrap: wrap;   
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .capabilities-container {
        flex-wrap: nowrap; /* Prevent wrapping on desktop viewports */
    }
}

.capability-card-wrapper {
    cursor: pointer;
    flex: 1 1 320px;
    max-width: 320px;
    min-width: 260px; /* Allows cards to scale down slightly on smaller tablets */
    aspect-ratio: 1 / 1; /* Match the 1:1 square ratio of the cropped images */
    border-radius: 15px; /* Smooth rounded corners matching Figma design */
    overflow: hidden; /* Clips the image zoom effect to the rounded box */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    background: transparent;
}

.capability-card-wrapper:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 20px 40px rgba(0, 166, 93, 0.15); /* Subtle brand green glow on hover */
}

.capability-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.capability-card-wrapper:hover .capability-card-img {
    transform: scale(1.08); /* Zoom effect on hover */
}

/* Capability Card Overlay Styling */
.capability-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    pointer-events: none; /* Let clicks pass through to wrapper */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0) 60%
    );
}

.capability-card-title-container {
    display: flex;
    align-items: stretch; /* Height of indicator matches the text height */
    gap: 12px; /* Spacing between indicator and text */
}

.capability-card-indicator {
    display: block;
    width: 3.5px;
    background-color: #00A65D; /* Vibrant brand green */
    border-radius: 2px;
    flex-shrink: 0;
}

.capability-card-title {
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

/* Process Card Layout */
.process-card {
    background: #fcfffd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 166, 93, 0.08);
}

.process-card-image-col {
    padding: 0;
}

.process-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.process-card-content {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.process-card-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.7);
    text-align: justify;
}

/* Integrated Systems Section Images styling */
.integrated-systems-img {
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease;
    width: 100%;
    height: 400px;
}

.integrated-systems-img:hover {
    transform: scale(1.03);
}

/* Modal cap image styling */
.modal-cap-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.modal-cap-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--aci-green);
    margin-bottom: 1rem;
}

.modal-cap-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dark);
}

/* ==========================================================================
   QUALITY MANAGEMENT PAGE STYLES
   ========================================================================== */

.hero-quality {
    background-image: url('assets/images/quality_hero_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Quality Policy & Culture */
.qpc-heading {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--aci-green);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.qpc-divider {
    margin-right: 30px;
    width: 5px;
    background: var(--aci-green);
    border-radius: 3px;
    height: 100%;
}

@media (max-width: 991px) {
    .qpc-heading {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Show a horizontal green bar on mobile instead */
    #quality-policy-culture .col-lg::before {
        content: '';
        display: block;
        width: 60px;
        height: 5px;
        background: var(--aci-green);
        border-radius: 3px;
        margin-bottom: 1.25rem;
    }
}

/* Our Quality Process styling */
.quality-process-main-card {
    background-image: url('assets/images/quality_process_main.png');
    background-size: cover;
    background-position: center;
    min-height: 520px;
}

.quality-process-main-card .card-bg-overlay {
    background: linear-gradient(180deg, rgba(0, 20, 10, 0.1) 0%, rgba(0, 20, 10, 0.8) 100%);
}

.quality-stage-img-wrapper {
    margin-left: -120px;
    margin-right: 20px;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    border: 5px solid var(--aci-green);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 166, 93, 0.1);
    transition: border-color 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.quality-stage-img-wrapper:hover {
    transform: scale(1.03);
}

.quality-stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quality-stage-img-wrapper:hover .quality-stage-img {
    transform: scale(1.1);
}

.quality-stage-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.15rem;
    margin-bottom: 0.5rem;
}

.quality-stage-desc {

    line-height: 1.6;
}

.qa-qc-banner-wrapper {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.scale-hover {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.scale-hover:hover {
    transform: scale(1.03);
}

/* Quality Operational Pillars */
.quality-pillar-card-container {
    position: relative;
    overflow: visible;
    padding-top: 15px;
    padding-bottom: 15px;
}

.quality-pillar-svg-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.quality-pillar-card {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 2px solid rgba(0, 166, 93, 0.12) !important;
    padding: 30px 24px !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.quality-pillar-card-container:hover .quality-pillar-svg-bg-wrapper {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 0.85;
}

.quality-pillar-card-container:hover .quality-pillar-card {
    transform: translateY(-10px) scale(1.03);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 20px 40px rgba(0, 166, 93, 0.18) !important;
    border-color: var(--aci-green) !important;
}

.quality-pillar-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #004d2e;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 166, 93, 0.1);
    padding-bottom: 0.5rem;
}

.quality-pillar-card-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 0;
}

/* Laboratory Systems capability cards custom green border */
.border-3\.5-green {
    border: 5px solid var(--aci-green) !important;
}

/* ==========================================================================
   RESEARCH & DEVELOPMENT PAGE STYLES
   ========================================================================== */

/* R&D Page Hero */
.hero-rd {
    background-image: url('assets/images/rd_hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-rd .hero-gradient-overlay {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 29%, rgba(11, 26, 19, 0.53) 64%, rgba(0, 16, 9, 0.55) 66%),
                linear-gradient(180deg, rgba(0, 166, 93, 0.25) 0%, rgba(0, 0, 0, 0.2) 75%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* R&D Capabilities Cards */
.rd-capability-card {
    background-color: #FBFFFD;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 10px 34px 0px rgba(95, 146, 255, 0.25);
    border: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.rd-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(95, 146, 255, 0.35);
}

.rd-capability-card-img {
    width: 100%;
    height: 473px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rd-capability-card:hover .rd-capability-card-img {
    transform: scale(1.08);
}

.rd-capability-card-content {
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.rd-capability-card-title {
    font-size: 2.25rem; /* ~36px */
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 1.5rem;
}

.rd-capability-card-text {
    font-size: 1.15rem; /* ~18.4px */
    line-height: 1.75;
    color: #4D4D4D;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .rd-capability-card-img {
        height: 300px;
    }
    .rd-capability-card-content {
        padding: 2.5rem 2rem;
    }
    .rd-capability-card-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .rd-capability-card-text {
        font-size: 1.05rem;
    }
}

/* Technology Transfer Cards (Grid of 4) */
.tech-transfer-section{
    background-color: #F8FFF9;
}
.tech-transfer-card {
    background-color: #FFFFFF;
    border-radius: 32px;
    box-shadow: 8px 10px 34px 0px rgba(95, 146, 255, 0.25);
    border-left: 9px solid #00A65D !important;
    border-top: none;
    border-bottom: none;
    border-right: none;
    padding: 3.5rem 3rem;
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s;
}

.tech-transfer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(95, 146, 255, 0.35);
    background-color: #3645C2;
    color: #ffffff!important;
}

.tech-transfer-card-text {
    font-size: 1.15rem; /* ~18.4px */
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .tech-transfer-card {
        padding: 2rem;
        min-height: auto;
    }
    .tech-transfer-card-text {
        font-size: 1.05rem;
    }
}

/* Why Partner with AHL Cards (Grid of 6) */
.why-partner-card {
    background-color: #FFFFFF;
    border-radius: 30px;
    box-shadow: 8px 8px 38px 0px rgba(158, 200, 255, 0.28);
    padding: 2.5rem;
    height: 100%;
    min-height: 344px;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s;
}

.why-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(158, 200, 255, 0.45);
    background-color: #3645c2;
    color: #ffffff;
}

.why-partner-icon-wrapper {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-partner-card:hover .why-partner-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.why-partner-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-partner-card-content {
    margin-top: 90px; /* Leave space for absolute icon */
}

.why-partner-card-title {
    font-size: 1.25rem; /* ~20px */
    font-weight: 700;    
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-partner-card-desc {
    font-size: 0.95rem; /* ~16px */
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .why-partner-card {
        min-height: auto;
        padding: 2rem;
        justify-content: flex-start;
    }
    .why-partner-icon-wrapper {
        position: static;
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    .why-partner-card-content {
        margin-top: 0;
    }
    .why-partner-card-title {
        font-size: 1.15rem;
    }
    .why-partner-card-desc {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   SUSTAINABILITY PAGE STYLES
   ========================================================================== */

/* Hero */
.hero-sustainability {
    background-image: url('assets/images/sustainability_hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-sustainability .hero-gradient-overlay {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 20%, rgba(11, 26, 19, 0.6) 65%, rgba(0, 16, 9, 0.7) 80%),
                linear-gradient(180deg, rgba(0, 166, 93, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Sustainability & Development Heading & Image */
.sustain-heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--aci-green);
    margin-bottom: 1.5rem;
}

.sustain-img-wrapper {
    position: relative;
    padding-bottom: 24px;
    padding-right: 24px;
    margin-top: 20px;
}

.sustain-img-bg-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    background-color: var(--aci-green);
    border-radius: 24px;
    z-index: 1;
}

.sustain-img-card {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 8px 12px 30px rgba(0, 166, 93, 0.15);
}

.sustain-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sustain-img-card:hover .sustain-img {
    transform: scale(1.04);
}

.sustain-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.9rem;
    z-index: 3;
}

/* Initiative Grid */
.sustain-init-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
}

.sustain-init-left {
    grid-column: span 5;
}

.sustain-init-right {
    grid-column: span 7;
    display: grid;
    gap: 24px;
}

.sustain-init-right-top {
    width: 100%;
}

.sustain-init-right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sustain-init-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 8px 10px 30px rgba(158, 200, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sustain-init-card.tall {
    height: 600px;
}

.sustain-init-card.medium {
    height: 288px;
}

.sustain-init-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 166, 93, 0.25);
}

.sustain-init-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sustain-init-card:hover .sustain-init-card-img {
    transform: scale(1.08);
}

.sustain-init-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 30, 0.45);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.sustain-init-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: left;
}

@media (max-width: 991px) {
    .sustain-init-grid {
        display: flex;
        flex-direction: column;
    }
    .sustain-init-card.tall {
        height: 380px;
    }
    .sustain-init-card.medium {
        height: 260px;
    }
    .sustain-init-right-bottom {
        grid-template-columns: 1fr;
    }
    .sustain-init-card-overlay {
        padding: 1.25rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .sustain-init-card-title {
        font-size: 1.3rem;
    }
}

/* CSR Cards */
.csr-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.csr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.csr-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.csr-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.csr-card:hover .csr-card-img {
    transform: scale(1.08);
}

.csr-card-content {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.csr-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.csr-card-btn {
    align-self: flex-start;
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--aci-green);
    background: none;
    border: 2px solid var(--aci-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.csr-card-btn:hover {
    background-color: var(--aci-green);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 166, 93, 0.25);
    transform: translateY(-2px);
}

/* ESG Protecting Our People Section */
.protect-people-section {
    background: url('assets/images/goals-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 7rem 0;
    color: #FFFFFF;
    position: relative;
}

.protect-people-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    max-width: 850px;
}

.protect-people-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .protect-people-section {
        padding: 5rem 0;
    }
    .protect-people-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    .protect-people-desc {
        font-size: 1.05rem;
    }
}

/* Policies */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none !important;
    transition: border-color 0.3s;
}

.policy-item:hover {
    border-color: var(--aci-green);
}

.policy-icon {
    font-size: 2.25rem;
    color: var(--aci-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.policy-item:hover .policy-icon {
    transform: scale(1.08);
}

.policy-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.15rem;
    color: #333333;
    margin: 0;
    transition: color 0.3s;
}

.policy-item:hover .policy-title {
    color: var(--aci-green);
    text-decoration: underline !important;
}

@media (max-width: 991px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ESG Details Card */
.esg-card {
    background-color: #FFFFFF;
    border-radius: 28px;
    border: 2px solid rgba(0, 166, 93, 0.15);
    padding: 4rem 3.5rem;
    box-shadow: 8px 12px 40px rgba(0, 16, 9, 0.08);
}

.esg-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--aci-green);
    margin-bottom: 2rem;
    text-align: center;
}

.esg-card-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .esg-card {
        padding: 2.5rem 1.5rem;
    }
    .esg-card-title {
        font-size: 1.6rem;
    }
    .esg-card-desc {
        font-size: 1rem;
        text-align: left;
    }
}

/* ==========================================================================
   360° Virtual Tour Styles
   ========================================================================== */

/* Navbar highlight line */
.navbar-nav .nav-link-highlight.active {
    position: relative;
    color: var(--aci-green) !important;
}

@media (min-width: 1200px) {
    .navbar-nav .nav-link-highlight {
        position: relative;
        padding-left: 1rem !important;
    }
    .navbar-nav .nav-link-highlight::before {
        content: "";
        position: absolute;
        left: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.15);
    }
}

/* Tour Interactive Wrapper with 3D perspective grid */
.tour-interactive-wrapper {
    position: relative;
    overflow: hidden;
    perspective: 3000px;
    z-index: 1;
    background: #FFFFFF;
}

.tour-interactive-wrapper::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -20%;
    width: 140%;
    height: 260%;
    background-image: 
        linear-gradient(rgba(0, 166, 93, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 93, 0.15) 1px, transparent 1px);
    background-size: 60px 40px;
    background-position: center top;
    transform: rotateX(-60deg);
    transform-origin: center top;
    opacity: 0.85;
    pointer-events: none;
    z-index: -1;
}

.tour-intro-section {
    position: relative;
    z-index: 2;
}

.tour-section-title {
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--aci-green);
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--aci-green);
}

.tour-section-desc {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #4B5563;
    font-family: var(--font-body);
}

/* Matterport Simulator Card */
.tour-player-card {
    height: 600px;
    background-color: #000000;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    user-select: none;
}

.tour-panning-bg {
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    transform-origin: center center;
    transition: transform 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* Play Overlay State */
.tour-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 8, 0.45);
    backdrop-filter: blur(6px);
    z-index: 5;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tour-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.overlay-room-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.tour-play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.tour-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.2), 0 12px 30px rgba(0,0,0,0.4);
}

.tour-play-btn i {
    margin-left: 4px;
}

.tracking-wider {
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 600;
}

.overlay-footer {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Drag indicator toast */
.tour-drag-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(0, 16, 9, 0.75);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.tour-drag-indicator.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hotspots overlay */
.tour-hotspots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tour-hotspot {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--aci-green);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 166, 93, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: auto;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tour-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--indigo-accent);
    box-shadow: 0 4px 15px rgba(54, 69, 194, 0.4);
}

.tour-hotspot i {
    font-size: 1.25rem;
    z-index: 2;
}

.tour-hotspot .ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid inherit;
    border-color: currentColor;
    border-radius: 50%;
    opacity: 0.75;
    animation: pingEffect 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

/* Info drawer - Glassmorphism style */
.tour-info-drawer {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 340px;
    background: rgba(0, 18, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.5rem;
    color: #FFFFFF;
    transform: translateX(-400px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 6;
}

.tour-info-drawer.open {
    transform: translateX(0);
}

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--aci-green-light);
}

.drawer-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Controls Toolbar */
.tour-controls-bar {
    position: absolute;
    right: 25px;
    bottom: 25px;
    background: rgba(0, 16, 9, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 12px;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tour-controls-bar.visible {
    opacity: 1;
    visibility: visible;
}

.btn-control-tool {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
}

.btn-control-tool:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.btn-control-tool.active {
    color: var(--aci-green);
    background: rgba(0, 166, 93, 0.15);
}

/* Tabs capsule */
.tour-tabs-capsule {
    background: #F3F4F6;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    border: 1px solid #E5E7EB;
}

.tour-tab-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: #4B5563;
    padding: 12px 24px;
    border-radius: 0 !important;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    height: 100%;
    margin: 0;
}

.tour-tab-btn:hover {
    color: #111827;
    background: rgba(0, 0, 0, 0.05);
}

.tour-tab-btn.active {
    background-color: #2B3EBD !important;
    color: #FFFFFF !important;
    box-shadow: none;
}

/* Keyframe Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0,0,0,0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 8px 25px rgba(0,0,0,0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 8px 25px rgba(0,0,0,0.3);
    }
}

@keyframes pingEffect {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .tour-player-card {
        height: 450px;
    }
    .overlay-room-name {
        font-size: 1.85rem;
    }
    .tour-play-btn {
        width: 75px;
        height: 75px;
    }
    .tour-info-drawer {
        width: calc(100% - 50px);
        left: 25px;
        right: 25px;
        bottom: 85px;
    }
    .tour-tabs-capsule {
        border-radius: 20px;
    }
}

/* ==========================================================================
   Products Page Styles
   ========================================================================== */

/* Hero Section customization */
.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 100px; /* offset sticky header */
}

/* Products Catalogue Header */
.products-catalogue-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: var(--aci-green);
    line-height: 1.15;
    text-align: left;
}

.vertical-divider {
    width: 5px;
    height: 100px;
    background-color: var(--aci-green);
    margin: 0 2.5rem;
}

.section-body-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4F4F4F;
}

/* Search and Filter Container */
.search-filter-card {
    background-color: #FFFFFF;
    border: 1px solid #ECEFF1;
    border-radius: 24px;
    padding: 2.25rem 2.5rem;
    box-shadow: 0 5px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: 3.5rem;
}

.search-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--aci-green);
    margin-bottom: 0.75rem;
    display: block;
    text-align: left;
}

.search-select {
    background-color: #FFFFFF;
    border: 1px solid #CFD8DC;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4F4F4F;
    width: 100%;
    height: 52px;
    outline: none;
    transition: all 0.2s ease;
    appearance: none; /* remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2378909C' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 12px;
}

.search-select:focus {
    border-color: var(--aci-green);
    box-shadow: 0 0 0 3px rgba(0, 166, 93, 0.12);
}

.search-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #CFD8DC;
    border-radius: 12px;
    background-color: #FFFFFF;
    overflow: hidden;
    height: 52px;
    width: 100%;
    transition: all 0.2s ease;
}

.search-input-group:focus-within {
    border-color: var(--aci-green);
    box-shadow: 0 0 0 3px rgba(0, 166, 93, 0.12);
}

.search-input-group .search-input {
    border: none;
    background-color: transparent;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333333;
    width: 100%;
    height: 100%;
    outline: none;
}

.search-input-group .search-input::placeholder {
    color: #90A4AE;
}

.search-input-group .search-btn {
    background-color: #3B3DB8; /* Violet/indigo button color from screenshot */
    color: #FFFFFF;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 2.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    height: 100%;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-input-group .search-btn:hover {
    background-color: #2F319E;
}

.or-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
}

.or-text {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #78909C;
    font-size: 1rem;
}

/* Product Cards Grid */
.products-grid-section {
    padding-bottom: 6rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-card-top {
    background: #FFFFFF;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}

.product-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-bottom {
    background: #EBF7F2; /* Light mint green bottom background from screenshot */
    padding: 1.75rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.product-category {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    color: #71887E;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.75rem;
    display: block;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.1rem;
    color: #2E3A33;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.product-generic {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #71887E;
    margin-bottom: 1.75rem;
    line-height: 1.45;
    min-height: 2.9em; /* reserve space for 2 lines */
}

.btn-prescribing {
    background-color: #FFFFFF;
    color: #00A65D;
    border: 1px solid #00A65D;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.btn-prescribing i {
    font-size: 1.1rem;
    color: #00A65D;
}

.btn-prescribing:hover {
    background-color: #EBF7F2;
    color: #00854A;
    border-color: #00854A;
    box-shadow: 0 4px 12px rgba(0, 166, 93, 0.1);
    transform: translateY(-1px);
}

/* No results state styling */
.no-results-container {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 3.5rem;
    color: #CFD8DC;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #37474F;
    margin-bottom: 0.5rem;
}

.no-results-text {
    font-family: var(--font-body);
    color: #78909C;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .vertical-divider {
        display: none;
    }
    .products-catalogue-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    .search-filter-card {
        padding: 1.5rem;
    }
    .or-text-wrapper {
        margin: 0.5rem 0;
        height: auto;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero Section */
.contact-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.contact-hero-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.contact-hero-title-wrapper {
    position: absolute;
    bottom: 380px;
    left: 0;
}

.contact-hero-icon-circle {
    width: 200px;
    height: 200px;
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.contact-hero-icon-circle i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.45);
}

.contact-hero-icon-circle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.contact-hero-icon-circle:hover i {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(180deg, #F6FAF8 0%, #FFFFFF 100%);
}

.contact-form-card {
    background: #FFFFFF;
    border: 1px solid #aadbb3;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 100, 0, 0.3);
}

.contact-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--aci-green);
    margin-bottom: 2rem;
}

/* Contact Form Inputs - bottom border style */
.contact-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--aci-green);
    background: transparent;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-input::placeholder {
    color: #90A4AE;
    font-weight: 300;
}

.contact-input:focus {
    border-bottom-color: #00854A;
}

.contact-textarea {
    resize: vertical;
    min-height: 60px;
}

/* Contact Select (Enquiry Type pill) */
.contact-select {
    border: 1.5px solid var(--aci-green);
    border-radius: 50px;
    background: transparent;
    padding: 0.5rem 2rem 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #90A4AE;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300A65D' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    transition: all 0.2s ease;
}

.contact-select:focus {
    border-color: #00854A;
    color: #333;
}

/* File Input hidden + label */
.contact-file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-file-label {
    display: block;
    width: 100%;
    border-bottom: 2px solid var(--aci-green);
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #90A4AE;
    cursor: pointer;
}

/* Send Enquiry Button (pill, outlined) */
.btn-send-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1.5px solid #3B3DB8;
    border-radius: 50px;
    background: transparent;
    color: #3B3DB8;
    padding: 0.65rem 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-send-enquiry i {
    font-size: 1.1rem;
}

.btn-send-enquiry:hover {
    background: #3B3DB8;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(59, 61, 184, 0.2);
}

/* Click to Report Button (pill, outlined) */
.btn-click-report {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #3B3DB8;
    border-radius: 50px;
    background: transparent;
    color: #3B3DB8;
    padding: 0.55rem 2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-click-report:hover {
    background: #3B3DB8;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(59, 61, 184, 0.2);
}

/* General Information Labels */
.contact-info-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #2E3A33;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #5C6F65;
    line-height: 1.65;
}

/* Adverse Effects Section */
.adverse-effects-section {
    background: #FFFFFF;
}

.adverse-effects-card {
    border: 1px solid #aadbb3;
    border-radius: 24px;
    padding: 3.5rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 100, 0, 0.3);
}

/* Adverse Modal Styles */
.adverse-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.adverse-modal-header {
    border-bottom: none;
    padding: 2rem 2.5rem 0.5rem;
}

.adverse-modal-body {
    padding: 1.5rem 2.5rem 2.5rem;
}

/* Contact Page Responsive */
@media (max-width: 991px) {
    .contact-hero-section {
        min-height: 70vh;
        padding-top: 70px;
        padding-bottom: 50px;
    }
    .contact-hero-icon-circle {
        width: 100px;
        height: 100px;
    }
    .contact-hero-icon-circle i {
        font-size: 2.5rem;
    }
    .contact-form-card {
        padding: 2rem;
    }
    .contact-section-title {
        font-size: 1.75rem;
    }
    .adverse-effects-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   Career Page Styles
   ========================================================================== */

.career-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-top: 100px;
}

.career-hero-title-wrapper {
    position: absolute;
    bottom: 120px;
    left: 1.5rem;
}

@media (min-width: 1200px) {
    .career-hero-title-wrapper {
        left: 5rem;
    }
}

.career-section-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--aci-green) 0%, #40c677 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -0.01em;
}

.career-lead {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4A5D50;
    font-weight: 500;
}

.career-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #5C6F65;
}

/* Image Card Wrapper */
.career-image-card-wrapper {
    position: relative;
    padding: 0 30px 30px 0;
}

.career-image-accent-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: var(--aci-green);
    border-radius: 48px;
    z-index: 1;
    opacity: 1;
}

.career-photo-card {
    position: relative;
    z-index: 2;
    border-radius: 48px !important;
    border: none;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.career-photo-card img {
    border-radius: 48px;
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
}

.career-photo-card:hover img {
    transform: scale(1.05);
}

.career-photo-caption-overlay {
    position: absolute;
    bottom: 24px;
    left: 28px;
    z-index: 3;
}

.career-photo-caption {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Join Our Journey Section */

.career-join-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    color: #2E3A33;
    box-shadow: 0 10px 40px rgba(0, 100, 0, 0.3);
    border: 1px solid rgba(0, 166, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.career-join-card::before {
    display: none;
}

.career-join-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--aci-green);
}

.career-join-divider {
    width: 5px;
    height: 110px;
    background-color: var(--aci-green);
    margin: 0 auto;
    opacity: 0.8;
}

.career-join-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: #333333;
}

.career-btn-openings {
    border: 1.5px solid var(--indigo-accent) !important;
    color: var(--indigo-accent) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px !important;
    padding: 0.6rem 2.2rem !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 0.95rem !important;
}

.career-btn-openings:hover {
    background-color: var(--indigo-accent) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(54, 69, 194, 0.15);
    transform: translateY(-2px);
}

/* Key Employee-Centric Initiatives Section */
.career-initiatives-section {
    background-color: #f4f7f5;
}

.max-width-md {
    max-width: 900px;
}

.btn-carousel-nav {
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    border: none !important;
    background: #e9eff1 !important;
    color: #4A5568 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    padding: 0 !important;
}

.btn-carousel-nav:hover {
    background: var(--indigo-accent) !important;
    color: #ffffff !important;
    transform: scale(1.05);
}

.initiatives-carousel-viewport {
    width: 100%;
}

.initiatives-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.career-initiative-card {
    background: rgb(189 255 226 / 10%) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(0, 166, 93, 0.05) !important;
    box-shadow: 0 15px 45px rgba(54, 69, 194, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.career-initiative-card:hover {
    border-color: rgba(0, 166, 93, 0.15) !important;
    box-shadow: 0 20px 50px rgba(54, 69, 194, 0.08) !important;
    transform: translateY(-5px);
}

.initiative-card-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a2a20;
    line-height: 1.3;
}

.initiative-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4A5568 !important;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd8ce;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--indigo-accent) !important;
}

@media (max-width: 767.98px) {
    .initiatives-carousel-viewport .card-col {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .initiatives-carousel-viewport .card-col {
        width: calc(50% - 12px);
    }
}
@media (min-width: 992px) {
    .initiatives-carousel-viewport .card-col {
        width: calc(33.333% - 16px);
    }
}

/* Career Progression & Diversity */

/* Explore Opportunities section */
.career-openings-section {
    background-color: #ffffff;
}

.btn-filter {
    background: transparent;
    border: 1.5px solid #cbd8ce;
    color: #5C6F65;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-filter:hover, .btn-filter.active {
    background: var(--aci-green);
    border-color: var(--aci-green);
    color: #ffffff;
}

.job-item-card {
    border-radius: 20px !important;
    transition: all 0.3s ease;
    background: #ffffff;
}

.job-item-card:hover {
    border-color: rgba(0, 130, 60, 0.3) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px);
}

.job-title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    color: #2E3A33;
}

.job-location {
    font-size: 0.85rem;
}

.job-summary {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
}

.job-type {
    font-size: 0.85rem;
}

.btn-apply {
    background: transparent;
    border: 1.5px solid var(--aci-green);
    color: var(--aci-green);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-apply:hover {
    background: var(--aci-green);
    color: #ffffff;
}

/* Custom form elements for Application Modal */
.form-group-custom {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-control-custom {
    width: 100%;
    border: none;
    border-bottom: 2px solid #cbd8ce;
    padding: 0.75rem 0;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-bottom-color: var(--aci-green);
}

.form-label-custom {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #7A8F83;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-control-custom:focus ~ .form-label-custom,
.form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: -12px;
    font-size: 0.8rem;
    color: var(--aci-green);
    font-weight: 600;
}

/* ==========================================================================
   MEDIA PAGE STYLES
   ========================================================================== */
.hero-media {
    background-image: url('assets/images/media_hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-media .hero-gradient-overlay {
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 20%, rgba(11, 26, 19, 0.6) 65%, rgba(0, 16, 9, 0.7) 80%),
                linear-gradient(180deg, rgba(0, 166, 93, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Figma blurred background blobs */
.media-blob {
    border-radius: 50%;
    filter: blur(250px);
    pointer-events: none;
    position: absolute;
    z-index: 2; /* background behind hero text but above base overlay */
}

.media-blob-1 {
    width: 955px;
    height: 881px;
    background: rgba(54, 69, 194, 0.05);
    top: -220px;
    left: -417px;
}

.media-blob-2 {
    width: 1877px;
    height: 1513px;
    background: rgba(0, 166, 93, 0.1);
    bottom: -10%;
    right: -20%;
}

.media-grid-section {
    background-color: #FFFFFF;
    position: relative;
}

/* Media Page Filter Buttons */
.btn-media-filter {
    background: transparent;
    border: 2px solid var(--indigo-accent);
    color: var(--indigo-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 6px 32px;
    border-radius: 20px;
    transition: all 0.3s var(--transition-bezier);
    cursor: pointer;
}

.btn-media-filter.active, .btn-media-filter:hover {
    background: var(--indigo-accent);
    border-color: var(--indigo-accent);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(54, 69, 194, 0.25);
    transform: translateY(-2px);
}

/* Media Cards Grid */
.media-grid {
    transition: all 0.4s ease;
}

.media-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 8px 8px 38px 0px rgba(158, 200, 255, 0.28);
    border: 1px solid rgba(204, 237, 223, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 530px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.media-card-img-wrapper {
    width: 100%;
    height: 303px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.media-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-card-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card-title {
    font-family: var(--font-heading);
    font-size: 2.25rem; /* ~36px */
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    height: 38px;
    border: 2px solid var(--indigo-accent);
    color: var(--indigo-accent);
    background: transparent;
    border-radius: 20px;
    font-family: var(--font-caption);
    font-weight: 400;
    font-size: 1.1rem; /* ~18px */
    transition: all 0.3s ease;
}

/* Video & Image hover overlays */
.play-overlay, .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 166, 93, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-overlay i, .gallery-overlay i {
    font-size: 4rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.media-card:hover .play-overlay,
.media-card:hover .gallery-overlay {
    opacity: 1;
}

.media-card:hover .play-overlay i,
.media-card:hover .gallery-overlay i {
    transform: scale(1.1);
}

/* Hover effects */
.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(158, 200, 255, 0.45);
    border-color: rgba(54, 69, 194, 0.3);
}

.media-card:hover .media-card-img {
    transform: scale(1.06);
}

.media-card:hover .media-card-title {
    color: var(--aci-green);
}

.media-card:hover .media-card-badge {
    background: var(--indigo-accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(54, 69, 194, 0.25);
}

/* Animations for filter items */
.media-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.media-item.filtered-out {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    padding: 0 !important;
    margin: 0 !important;
    border: none;
    overflow: hidden;
}

/* Modals detailed view styling */
.media-modal-img {
    border-radius: 16px;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-video-container iframe,
.modal-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .media-card {
        height: auto;
    }
    .media-card-title {
        font-size: 1.75rem;
    }
}

/* Fullscreen Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10010;
}

.lightbox-close:hover {
    background: var(--aci-green);
    border-color: var(--aci-green);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 166, 93, 0.4);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10010;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--aci-green);
    border-color: var(--aci-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 166, 93, 0.4);
}

.lightbox-prev:hover {
    padding-right: 4px;
}

.lightbox-next:hover {
    padding-left: 4px;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    height: auto;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.lightbox-overlay.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-image.changing {
    opacity: 0;
    transform: scale(0.98);
}

.lightbox-caption-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 32px;
    border-radius: 24px;
    margin-top: 24px;
    text-align: left;
    position: relative;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lightbox-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

#lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

#lightbox-caption {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.lightbox-counter {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--aci-green);
    background: rgba(0, 166, 93, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 93, 0.3);
}

/* Hide scrollbar when lightbox is active */
body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .lightbox-caption-container {
        padding: 16px 20px;
        margin-top: 16px;
    }
    #lightbox-title {
        font-size: 1.2rem;
    }
    #lightbox-caption {
        font-size: 0.875rem;
    }
}

/* =====================================================
   HOMEPAGE CUSTOM ADDITIONS
   ===================================================== */

.metrics-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.metric-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 166, 93, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-8px);
    background: var(--indigo-accent);
    border-color: var(--indigo-accent);
    box-shadow: 0 15px 35px rgba(54, 69, 194, 0.25);
}

.metric-icon-box {
    width: 172px;
    height: 172px;
    border-radius: 16px;
    ackground: rgba(0, 166, 93, 0.08);
    color: var(--aci-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon-box {    
    color: #00FF88 !important;
}

.metric-label-new {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-label-new {
    color: rgba(255, 255, 255, 0.8);
}

.metric-value-new {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-value-new {
    color: #FFFFFF;
}

.metric-svg {
    transition: all 0.3s ease;
}

/* Keep legacy classes for safety */
.metric-number {
    font-family: 'Oxygen', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.metric-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.metric-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #888888;
    margin-top: 0.25rem;
}

/* Facility Split Section (Capsule Redesign) */
.facility-capsule-container {
    background: #FFFFFF;
    border-radius: 32px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 45px rgba(54, 69, 194, 0.2); /* Soft indigo premium shadow */
    border: 1px solid rgba(54, 69, 194, 0.05); /* Soft premium border */
    position: relative;
    z-index: 2;
}

.capsule-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #000000;
    margin-bottom: 2rem;
    z-index: 3;
}

@media (min-width: 992px) {
    .facility-capsule-container {
        border-radius: 9999px; /* Perfect pill capsule shape */
        min-height: 420px;
        padding-left: 55%; /* Fluid padding to leave space for the video wrapper */
        padding-right: 5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        display: flex;
        align-items: center;
        margin-left: 80px; /* allow video overflow to the left */       
        position: relative; /* ensure absolute video positions relative to container */
        box-shadow: 0 5px 45px rgba(54, 69, 194, 0.2); /* Soft indigo premium shadow */
        border: 1px solid rgba(54, 69, 194, 0.05); /* Soft premium border */
    }

    .capsule-video-wrapper {
        position: absolute;
        left: -80px;
        top: 0;
        bottom: 0;
        height: 100%;
        width: auto;
        aspect-ratio: 660 / 460; /* Perfectly matches the original design's horizontal pill aspect ratio */
        border-radius: 9999px; /* Perfect horizontal capsule shape */
        margin-bottom: 0;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15); /* Sleek, elevated shadow */
    }
}

.capsule-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.4));
}

.capsule-text-content {
    width: 100%;
    margin-left: 20px;
}

.facility-block {
    position: relative;
}

.facility-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aci-green);
    margin-bottom: 0.75rem;
}

.facility-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 1.25rem;
}

.btn-know-more {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--indigo-accent);
    border: 1.5px solid var(--indigo-accent);
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-know-more:hover {
    background: var(--indigo-accent);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(54, 69, 194, 0.2);
}

/* Background concentric circles for Facility Section */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 4.5px solid;
    pointer-events: none;
    z-index: 1;
}

/* Concentric Green Circles (Top-Left) */
.circle-green-1 {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 166, 93, 0.12);
    top: -150px;
    left: -180px;
}

.circle-green-2 {
    width: 700px;
    height: 700px;
    border-color: rgba(0, 166, 93, 0.2);
    top: -210px;
    left: -240px;
}

/* Concentric Blue Circles (Bottom-Right) */
.circle-blue-1 {
    width: 380px;
    height: 380px;
    border-color: rgba(54, 69, 194, 0.08);
    bottom: -150px;
    right: -180px;
}

.circle-blue-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(54, 69, 194, 0.1);
    bottom: 50px;
    right: -50px;
}

/* Beyond The Boundaries Section */
.beyond-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--aci-green);
    margin: 0;
}

.beyond-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 1.5rem;
}

.beyond-desc:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .beyond-title-col {
        border-right: 4px solid var(--aci-green);
        padding-right: 4rem !important;
    }
}

@media (max-width: 991.98px) {
    .beyond-title-col {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 4px solid var(--aci-green);
        width: fit-content;
    }
    
    .beyond-title {
        font-size: 2.25rem;
    }
    
    .beyond-desc {
        font-size: 0.95rem;
    }
}

/* Highlights Section V2 (Redesigned per Figma node 8994:1932) */
.highlights-section-v2 {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: rgba(0, 166, 93, 0.05);
    background-image: url('assets/images/key-highlights-bg.jpg');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.highlights-v2-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Main layout: cards left, text right */
.highlights-v2-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.highlights-v2-grid-col {
    flex-shrink: 0;
}

.highlights-v2-text-col {
    flex: 1;
    min-width: 0;
}

/* 2×2 Card Grid */
.highlights-v2-grid {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    gap: 60px 60px;
}

/* Individual card */
.highlights-v2-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 196px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(65deg, rgb(186 255 211 / 75%) 0%, rgb(253 253 253 / 75%) 100%);
    box-shadow: 0 10px 25px rgba(0, 80, 40, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s ease, 
                background-color 0.4s ease,
                background 0.4s ease;
}

.highlights-v2-card:hover {
    background: #A0FBD3 !important;
    transform: translateY(-6px) scale(1.02);   
    box-shadow: 0 15px 30px rgba(0, 166, 93, 0.15);
    text-decoration: none;
}

.highlights-v2-card:active {
    transform: translateY(-2px) scale(0.99);
}

.highlights-v2-card-icon-wrapper {
    align-self: flex-end;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A65D; /* Brand green */
    transition: color 0.4s ease, transform 0.4s ease;
}

.highlights-v2-card-icon {
    width: 100%;
    height: 100%;
}

.highlights-v2-card-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0F4C3A; /* Premium high-contrast dark green */
    margin: 0;
    transition: color 0.4s ease;
}

.highlights-v2-card:hover .highlights-v2-card-title {
    color: #04251C; /* Darker tone for maximum accessibility on #A0FBD3 */
}

.highlights-v2-card:hover .highlights-v2-card-icon-wrapper {
    color: #007D46;
    transform: scale(1.08) rotate(5deg);
}

/* Right side text content */
.highlights-v2-text-content {
    padding-left: 0;
    max-width: 700px;
    margin-left: 50px;
}

.highlights-v2-title {
    font-family: 'Oxygen', serif;
    font-size: 3.375rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00A65D 0%, #40C677 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.18;
    margin-bottom: 1.75rem;
}

.highlights-v2-desc {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.25rem;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
    max-width: 700px;
}

/* ========= Responsive: Tablet ========= */
@media (max-width: 1199.98px) {
    .highlights-v2-layout {
        gap: 40px;
    }

    .highlights-v2-grid {
        grid-template-columns: repeat(2, 210px);
        gap: 28px 24px;
    }

    .highlights-v2-card {
        height: 165px;
        padding: 20px;
        border-radius: 24px;
    }

    .highlights-v2-card-title {
        font-size: 1.1rem;
    }

    .highlights-v2-card-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .highlights-v2-title {
        font-size: 2.75rem;
    }

    .highlights-v2-desc {
        font-size: 1.05rem;
    }
}

@media (max-width: 991.98px) {
    .highlights-v2-layout {
        flex-direction: column;
        gap: 2.5rem;
    }

    .highlights-v2-grid-col {
        width: 100%;
    }

    .highlights-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        justify-items: center;
        gap: 24px;
    }

    .highlights-v2-card {
        width: 100%;
        max-width: 290px;
        height: 210px;
        padding: 22px;
    }

    .highlights-v2-card-title {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .highlights-v2-card-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .highlights-v2-text-col {
        width: 100%;
        order: -1; /* Display text above the cards on mobile/tablet */
    }

    .highlights-v2-text-content {
        text-align: center;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .highlights-v2-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }

    .highlights-v2-desc {
        max-width: 100%;
        font-size: 1.05rem;
    }
}

/* ========= Responsive: Mobile ========= */
@media (max-width: 575.98px) {
    .highlights-section-v2 {
        padding: 3.5rem 0;
    }

    .highlights-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        max-width: 100%;
    }

    .highlights-v2-card {
        height: 160px;
        border-radius: 20px;
        padding: 16px 14px;
    }

    .highlights-v2-card-title {
        font-size: 0.95rem;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .highlights-v2-card-icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .highlights-v2-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .highlights-v2-desc {
        font-size: 0.95rem;
    }
}

/* Accreditations */
.accreditation-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 166, 93, 0.08);
    border-color: rgba(0, 166, 93, 0.15);
}

/* ====== GMP Accreditations Timeline ====== */
.gmp-timeline-section {
     padding: 5.5rem 0 6.5rem;
    overflow: hidden;
}

.gmp-timeline-title {
    font-family: 'Oxygen', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00A65D;
    text-align: center;
    margin-bottom: 3.5rem;
}

.gmp-timeline-wrapper {
    position: relative;
    padding: 0 3.5rem;
}

/* Timeline track – horizontal grid of items */
.gmp-timeline-track {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

/* Each timeline item: 3 rows – above-content, circle node, below-content */
.gmp-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Content areas */
.gmp-tl-content {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 4px;
}

.gmp-tl-below-content {
    justify-content: flex-start;
    height: 180px;
}

/* Hide unused above/below content */
.gmp-tl-above .gmp-tl-below-content:empty,
.gmp-tl-below .gmp-tl-content:first-child:empty,
.gmp-tl-empty .gmp-tl-content:empty {
    visibility: hidden;
}

/* Vertical column dividers */
.gmp-tl-divider-up::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 50%;
    width: 1px;
    background: rgba(45, 43, 85, 0.12);
    z-index: 1;
}

.gmp-tl-divider-down::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: 0;
    width: 1px;
    background: rgba(45, 43, 85, 0.12);
    z-index: 1;
}

/* Text styling */
.gmp-tl-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #444444;
    line-height: 1.6;
    margin: 8px 0;
}

/* Logo images */
.gmp-tl-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.gmp-tl-below-content .gmp-tl-logos {
    margin-bottom: 0;
    margin-top: 4px;
}

.gmp-tl-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.gmp-tl-logo:hover {
    transform: scale(1.1);
}

.gmp-tl-logo-sm {
    width: 32px;
    height: 32px;
}

/* Circle node (year marker) */
.gmp-tl-node {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.gmp-tl-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oxygen', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 166, 93, 0.15);
    position: relative;
    z-index: 2;
}

.gmp-tl-circle span {
    position: relative;
    z-index: 2;
}

.gmp-tl-circle-2018 { background: linear-gradient(135deg, #0a5231 0%, #063d24 100%); }
.gmp-tl-circle-2020 { background: linear-gradient(135deg, #0c6c3f 0%, #08512e 100%); }
.gmp-tl-circle-2022 { background: linear-gradient(135deg, #0f864e 0%, #0a653a 100%); }
.gmp-tl-circle-2023 { background: linear-gradient(135deg, #12a15c 0%, #0d7c47 100%); }
.gmp-tl-circle-2024 { background: linear-gradient(135deg, #16bc6c 0%, #109756 100%); }
.gmp-tl-circle-2025 { background: linear-gradient(135deg, #1ad87c 0%, #13b366 100%); }
.gmp-tl-circle-2026 { background: linear-gradient(135deg, #1ef28b 0%, #17cb74 100%); }

/* Horizontal timeline line */
.gmp-tl-line {
    position: absolute;
    top: 50%;
    left: 3.5rem;
    right: 3.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.gmp-tl-line-bar {
    flex-grow: 1;
    height: 8px;
    background: #2D2B55;
    border-radius: 4px;
}

.gmp-tl-arrow {
    margin-left: -2px;
    display: flex;
    align-items: center;
}

/* Responsive: tablet */
@media (max-width: 991.98px) {
    .gmp-timeline-section {
        padding: 3rem 0 4rem;
        overflow: scroll;
    }

    .gmp-timeline-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .gmp-timeline-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .gmp-timeline-track {
        min-width: 900px;
    }

    .gmp-tl-text {
        font-size: 0.65rem;
    }

    .gmp-tl-logo {
        width: 30px;
        height: 30px;
    }

    .gmp-tl-logo-sm {
        width: 24px;
        height: 24px;
    }

    .gmp-tl-circle {
        width: 60px;
        height: 60px;
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .gmp-timeline-title {
        font-size: 1.65rem;
    }

    .gmp-tl-content,
    .gmp-tl-below-content {
        height: 180px;
    }

    .gmp-tl-text {
        font-size: 0.6rem;
    }
}

/* Featured Products V2 (Text + Image Showcase) */
.featured-products-v2 {
    background: #FFFFFF;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.fpv2-text-content {
    padding-right: 1rem;
}

.fpv2-product-name {
    font-family: 'Oxygen', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fpv2-product-desc {
    font-family: 'DM Sans', sans-serif;
    color: #444444;
    margin-bottom: 1.25rem;
}

.fpv2-product-desc:last-of-type {
    margin-bottom: 2rem;
}

.fpv2-btn-more {
    display: inline-block;
    padding: 0.6rem 2rem;
    border: 1.5px solid #333333;
    border-radius: 50px;
    color: #333333;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fpv2-btn-more:hover {
    background: var(--aci-green, #00A65D);
    border-color: var(--aci-green, #00A65D);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 166, 93, 0.2);
}

/* Image area with decorative circles */
.fpv2-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 2rem;
    background-image: url(assets/images/carousal-bg.jpg);
    background-repeat: no-repeat;
    background-position-x: 100px;
}

.fpv2-product-img {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

/* Concentric decorative circles */
.fpv2-decor-circles {
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 360px;
    height: 360px;
    z-index: 1;
}

.fpv2-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 166, 93, 0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fpv2-circle-1 {
    width: 220px;
    height: 220px;
    border-color: rgba(0, 166, 93, 0.22);
}

.fpv2-circle-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 166, 93, 0.14);
}

.fpv2-circle-3 {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 166, 93, 0.08);
}

/* Side-mounted navigation arrows */
.fpv2-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #888888;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.fpv2-nav-prev {
    left: -60px;
}

.fpv2-nav-next {
    right: -60px;
}

.fpv2-nav-arrow:hover {
    color: var(--aci-green, #00A65D);
    background: rgba(0, 166, 93, 0.06);
}

/* Responsive adjustments */
@media (max-width: 1399px) {
    .fpv2-nav-prev {
        left: -20px;
    }
    .fpv2-nav-next {
        right: -20px;
    }
}

@media (max-width: 1199px) {
    .fpv2-nav-prev {
        left: 0;
    }
    .fpv2-nav-next {
        right: 0;
    }
    .fpv2-text-content {
        padding-left: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .featured-products-v2 {
        padding: 4rem 0;
    }

    .fpv2-text-content {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .fpv2-product-name {
        font-size: 1.85rem;
    }

    .fpv2-product-img {
        max-height: 280px;
    }

    .fpv2-decor-circles {
        right: 0;
        bottom: 0;
        width: 280px;
        height: 280px;
    }

    .fpv2-circle-1 {
        width: 160px;
        height: 160px;
    }

    .fpv2-circle-2 {
        width: 220px;
        height: 220px;
    }

    .fpv2-circle-3 {
        width: 280px;
        height: 280px;
    }

    .fpv2-nav-arrow {
        top: auto;
        bottom: -50px;
        transform: none;
    }

    .fpv2-nav-prev {
        left: calc(50% - 50px);
    }

    .fpv2-nav-next {
        right: calc(50% - 50px);
    }
}

@media (max-width: 575.98px) {
    .fpv2-image-area {
        background-size: 360px;
        background-position-x: 55px;
    }
    .fpv2-product-name {
        font-size: 1.65rem;
    }

    .fpv2-product-desc {
        font-size: 0.88rem;
    }

    .fpv2-image-area {
        min-height: 220px;
        padding: 1rem;
    }

    .fpv2-product-img {
        max-height: 200px;
    }
}

/* Who We Are Section styling */
.who-we-are-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(90deg, #FFFFFF 70%, rgba(0, 166, 93, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--aci-green);
    line-height: 1.1;
    margin: 0;
}

.who-we-are-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A4A4A;
    font-weight: 400;
}

@media (min-width: 992px) {
    .who-we-are-divider-col {
        position: relative;
    }
    .who-we-are-divider-col::after {
        content: '';
        position: absolute;
        right: 0;
        top: 5%;
        bottom: 5%;
        width: 3px;
        background-color: var(--aci-green);
    }
}

@media (max-width: 991px) {
    .who-we-are-title {
        font-size: 2.75rem;
    }
    .who-we-are-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}




