/* 
    Jivandhara-Navjivan Custom CSS
    Aesthetics: Modern, Premium, Deep Green and White 
*/

:root {
    /* Color Palette */
    --primary-green: #10b981;
    /* Emerald Green */
    --primary-green-dark: #059669;
    --deep-green: #022c22;
    /* Very dark green, nearly black */
    --dark-green-surface: #064e3b;
    /* Surface dark green */

    --light-bg: #f8fafc;
    --white: #ffffff;
    --gold: #fbbf24;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #f8fafc;
    --text-white-muted: #cbd5e1;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--deep-green);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--primary-green);
}

.text-green-light {
    color: #34d399;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--text-white);
}

.text-white-muted {
    color: var(--text-white-muted);
}

.text-muted {
    color: var(--text-muted);
}

.font-medium {
    font-weight: 500;
}

.bg-light {
    background-color: var(--light-bg);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--deep-green);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(2, 44, 34, 0.95);
    /* Deep green with opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-green);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background image will be set inline later when generated */
    background: var(--deep-green) url('images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    padding-top: 80px;
    /* Offset for navbar */
    padding-bottom: 120px;
    /* Prevent overlap with absolute promise bar */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for readability */
    background: linear-gradient(to right, rgba(2, 44, 34, 0.9) 0%, rgba(2, 44, 34, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.promise-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    z-index: 2;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
}

.promise-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.promise-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-image-card {
    width: 100%;
    height: 100%;
    background: var(--dark-green-surface) url('images/about-bg.jpg') center/cover;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 44, 34, 0.3);
    /* Subtle dark overlay */
}

.glass-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--deep-green);
    animation: float 6s ease-in-out infinite;
}

.glass-float-card i {
    font-size: 2rem;
    color: var(--primary-green);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-green);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Certifications */
.certifications-section {
    background-color: var(--deep-green);
    position: relative;
    overflow: hidden;
}

.certifications-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.cert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.cert-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cert-card p {
    color: var(--text-white-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Offerings section */
.premium-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.1);
    /* light gold bg */
    border-radius: 50px;
    color: var(--deep-green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--deep-green);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag i {
    color: var(--primary-green);
}

.specs-table-wrapper {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--primary-green);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--deep-green);
    background-color: var(--light-bg);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr {
    transition: var(--transition-smooth);
}

.specs-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.trust-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(16, 185, 129, 0.2);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-smooth);
}

.trust-item:hover .trust-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.trust-item h5 {
    font-size: 1.125rem;
    color: var(--deep-green);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-green-surface) 100%);
    position: relative;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h10v10H10z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
}

/* Footer */
.footer {
    background-color: #011812;
    /* Even darker green */
    color: white;
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--text-white-muted);
}

.footer-contact i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-white-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active,
.animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.delay-1 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {

    .cert-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2-col,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding-bottom: 260px;
        /* Make more room for the taller promise bar in column mode */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        /* simple mobile hide for now, needs JS toggle ideally */
    }

    .mobile-toggle {
        display: block;
    }

    .promise-bar {
        flex-direction: column;
        border-radius: 0;
        bottom: 0;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .promise-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}

/* --- VERSION 2 (index2.html) STYLES --- */

.landing-v2 {
    background-color: var(--light-bg);

    /* Override palette for V2 with Logo Colors (Purple & Orange) */
    --primary-green: #F2A93B;
    /* Orange */
    --primary-green-dark: #D89028;
    --deep-green: #2B1F42;
    /* Deep Purple */
    --dark-green-surface: #423166;
    /* Lighter Purple */
    --gold: #F2A93B;
    /* Orange */
}

/* Hardcoded color overrides for V2 */
.landing-v2 .text-green-light {
    color: #F7BF66;
    /* Lighter Orange */
}

.landing-v2 .shadow-green {
    box-shadow: 0 10px 25px rgba(242, 169, 59, 0.4);
    /* Orange shadow */
}

.landing-v2 .premium-crescent {
    box-shadow: 0 20px 40px rgba(43, 31, 66, 0.4);
    /* Purple shadow */
}

.dual-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    object-fit: contain;
}

.secondary-logo {
    height: 40px;
    /* Navjivan logotype is wider and shorter */
    filter: brightness(0) invert(1);
    /* Assuming default logo is dark, we need it white for the navbar */
}

/* Specific class to reverse invert if the image is actually white already and our filter hides it,
   or if it needs a dark background. Will adjust if user feedback dictates. */
.logo-white-bg {
    background: white;
    padding: 5px;
    border-radius: 4px;
    filter: none;
}

.logo-dark-bg {
    background: var(--deep-green);
    padding: 10px;
    border-radius: 8px;
    filter: brightness(0) invert(1);
}

.logo-divider {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 300;
}

.navbar-v2 {
    background-color: rgba(43, 31, 66, 0.95);
    /* Deep Purple */
}

.landing-v2 .navbar.scrolled {
    background-color: rgba(43, 31, 66, 0.98);
}

/* Split Hero */
.hero-split {
    min-height: 100vh;
    display: flex;
    padding-top: 100px;
    background-color: var(--deep-green);
    overflow: hidden;
}

.hero-split-content {
    flex: 1;
    padding: 60px 5% 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-badge-img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.hero-split-visual {
    flex: 1;
    background: url('hero-bg.jpg') center/cover;
    position: relative;
    min-height: 500px;
    clip-path: polygon(10vw 0, 100% 0, 100% 100%, 0% 100%);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--deep-green) 0%, transparent 100%);
}

.shadow-green {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.stats-row {
    display: flex;
    gap: 30px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Values Bar */
.values-bar {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-50px);
    position: relative;
    z-index: 10;
}

.value-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #eee;
}

.value-item:last-child {
    border-right: none;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.negative-margin-top {
    margin-top: -50px;
}

.pt-0 {
    padding-top: 0;
}

/* V2 About */
.inline-badge {
    width: 100px;
    margin: 0 auto;
    display: block;
}

.about-card-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    text-align: left;
}

.about-card-text {
    flex: 1;
    padding: 50px;
}

.about-card-images {
    flex: 1;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px;
    border-left: 1px solid #eee;
}

.card-logo {
    max-width: 250px;
    height: auto;
}

/* Check list */
.check-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    margin-right: 10px;
}

.giant-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.premium-crescent {
    background: linear-gradient(145deg, var(--deep-green), var(--dark-green-surface));
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(2, 44, 34, 0.4);
    border: 5px solid var(--gold);
}

/* Footer V2 */
.footer-v2 {
    background-color: #1F1630;
    /* Very Dark Purple */
}

.footer-badge {
    width: 80px;
    opacity: 0.9;
}

.logo-img-small {
    height: 35px;
    object-fit: contain;
}

/* Responsive V2 */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-split-content {
        padding: 40px 5%;
    }

    .hero-split-visual {
        clip-path: none;
        min-height: 300px;
    }

    .values-bar {
        flex-direction: column;
        gap: 30px;
        transform: translateY(-20px);
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

    .about-card-container {
        flex-direction: column;
    }

    .about-card-images {
        border-left: none;
        border-top: 1px solid #eee;
    }
}
/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.process-card:hover .process-img {
    transform: scale(1.05);
}

.process-num {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--deep-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Global Banner */
.global-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1542281286-9e0a16bb7366?q=80&w=1600&auto=format&fit=crop') center/cover fixed;
}

.global-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 66, 0.85); /* Deep Purple overlay */
}

.relative { position: relative; }
.z-2 { z-index: 2; }
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1.5rem; }
.bg-white { background-color: white; }
.p-2 { padding: 0.5rem; }
.rounded { border-radius: 8px; }

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Showcase (Deep Dive Section) */
.image-showcase {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.showcase-img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.showcase-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--deep-green);
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(242, 169, 59, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(242, 169, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-box h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .showcase-badge {
        bottom: -15px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
    }
}

/* Sustainability Section */
.border-green {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.border-green:hover {
    background-color: var(--primary-green);
    color: white;
}

/* Global Reach (Testimonials) */
.reach-container {
    display: flex;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

.reach-image {
    flex: 1;
    min-height: 400px;
}

.reach-content {
    flex: 1.2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-quote {
    font-size: 3rem;
    opacity: 0.3;
}

.reach-content h3 {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--deep-green);
    font-weight: 500;
}

.font-weight-bold {
    font-weight: 700;
}

.border-top {
    border-top: 1px solid #eaeaea;
}

.pt-4 {
    padding-top: 1.5rem;
}

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.object-cover { object-fit: cover; }
.text-left { text-align: left; }

@media (max-width: 992px) {
    .reach-container {
        flex-direction: column;
    }
}
