﻿:root {
    --primary-green: #08664b;
    --primary-green-dark: #054834;
    --primary-orange: #f59120;
    --primary-orange-light: #f7a950;
    
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow-green: 0 10px 25px -5px rgba(8, 102, 75, 0.4);
    --shadow-glow-orange: 0 10px 25px -5px rgba(245, 145, 32, 0.4);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark); /* text-dark */
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* --- Glassmorphism Navbar --- */
.navbar-custom {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 45px;
    object-fit: contain;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

/* Modern Dropdown */
.dropdown-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    margin-top: 15px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark); /* text-dark */
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(8, 102, 75, 0.05);
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Futuristic Buttons */
.btn-futuristic {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow-green);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-futuristic:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(8, 102, 75, 0.5);
}

.btn-futuristic:hover::before {
    opacity: 1;
}

.btn-futuristic-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e67e22 100%);
    box-shadow: var(--shadow-glow-orange);
}
.btn-futuristic-orange::before {
    background: linear-gradient(135deg, #e67e22 0%, var(--primary-orange) 100%);
}
.btn-futuristic-orange:hover {
    box-shadow: 0 15px 30px -5px rgba(245, 145, 32, 0.5);
}

/* ── Custom Dropdown Arrow ── */
.navbar-nav .nav-link.dropdown-toggle::after { display: none; }
.navbar-nav .nav-link.dropdown-toggle .dd-arrow { display: inline-flex; align-items: center; margin-left: 5px; transition: transform 0.28s ease; }
.navbar-nav .nav-link.dropdown-toggle .dd-arrow svg { width: 12px; height: 12px; stroke: currentColor; fill: none;  }
.navbar-nav .nav-item.dropdown.show > .nav-link .dd-arrow { transform: rotate(180deg); }

/* ── Underline for Solutions & Regulation ── */
.navbar-nav .nav-item.dropdown > .nav-link.dropdown-toggle { position: relative; }
.navbar-nav .nav-item.dropdown > .nav-link.dropdown-toggle::before { content:''; position:absolute; bottom:0;  background-color:#f39223; transform:scaleX(0); transition:transform 0.3s; }
.navbar-nav .nav-item.dropdown:hover > .nav-link.dropdown-toggle::before,
.navbar-nav .nav-item.dropdown.show  > .nav-link.dropdown-toggle::before { transform: translateX(-50%) scaleX(1); }
/* --- Futuristic Hero Section --- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1579532537598-459ecdaf39cc?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(8, 102, 75, 0.9) 0%, rgba(5, 72, 52, 0.95) 100%);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(8, 102, 75, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(8, 102, 75, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-dark); /* text-dark */
    margin-bottom: 1.5rem;
}
.hero-title span {
    display: inline-block;
    overflow: visible;
    background: linear-gradient(to right, var(--primary-green), var(--primary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 3px;
    margin-left: -3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted); /* text-muted */
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* --- Floating Action Cards --- */
.action-section {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding-bottom: 80px;
}

.action-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.action-card.orange-theme::before {
    background: var(--primary-orange);
}

.action-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    box-shadow: 15px 25px 30px -5px rgba(0, 0, 0, 0.1),
               -10px -10px 20px -5px rgba(255, 255, 255, 0.8);
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(8, 102, 75, 0.05);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(30px);
}

.action-card.orange-theme .action-card-icon {
    background: rgba(245, 145, 32, 0.05);
    color: var(--primary-orange);
}

.action-card:hover .action-card-icon {
    background: var(--primary-green);
    color: white;
    transform: translateZ(40px) scale(1.1);
}
.action-card.orange-theme:hover .action-card-icon {
    background: var(--primary-orange);
    color: white;
    transform: translateZ(40px) scale(1.1);
}

.action-card h5 {
    color: var(--text-dark); /* text-dark */
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    transform: translateZ(20px);
}

.action-card p {
    color: var(--text-muted); /* text-muted */
    font-size: 0.95rem;
    margin: 0;
    transform: translateZ(10px);
}

/* Action Box with Orange Bottom Border */
.action-box {
    display: block;
    padding: 30px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--primary-orange);
    position: relative;
    color: inherit;
}

.action-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.action-box h5 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-decoration: none;
}

.action-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
}

.action-box .action-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

/* Minimal Action Box - Clean Design */
.action-box-minimal {
    display: block;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--primary-orange);
    position: relative;
    color: inherit;
    backdrop-filter: blur(10px);
}

.action-box-minimal:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.9);
}

.action-box-minimal h5 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-decoration: none;
}

.action-box-minimal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted); /* text-muted */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    padding: 30px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.feature-item:hover {
    background: var(--bg-white);
    transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(2deg);
    box-shadow: 10px 20px 25px -5px rgba(0,0,0,0.08);
}
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-glow-green);
    transform: translateZ(25px);
    transition: transform 0.4s ease;
}
.feature-item:hover .feature-icon-wrapper {
    transform: translateZ(45px);
}
.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transform: translateZ(15px);
}
.feature-item p {
    color: var(--text-muted); /* text-muted */
    font-size: 0.95rem;
    transform: translateZ(10px);
}

/* --- Dynamic Stats Section --- */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Abstract shapes for background */
.stats-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -100px; right: -100px;
}
.stats-section::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(245, 145, 32, 0.1);
    bottom: -150px; left: 10%;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.stat-box:hover {
    transform: translateY(-10px) rotateX(-5deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.08);
}
.stat-number {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
    line-height: 1;
    transform: translateZ(30px);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateZ(15px);
}

/* --- Newsletter & Testimonial --- */
.newsletter-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.newsletter-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background: var(--primary-orange);
}

.form-control-custom {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
}
.form-control-custom:focus {
    box-shadow: none;
    border-color: var(--primary-green);
    background: var(--bg-white);
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark); /* text-dark */
    font-style: italic;
    position: relative;
}
.testimonial-text::before {
    content: '"';
    position: absolute;
    font-size: 6rem;
    color: rgba(8, 102, 75, 0.1);
    top: -40px; left: -30px;
    font-family: serif;
}

/* --- 3D Glass Cards (Country Pages) --- */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.glass-card-3d {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}
.glass-card-3d::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.glass-card-3d:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-2deg);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 15px 25px 40px -5px rgba(0, 0, 0, 0.1);
}
.glass-card-3d:hover::before {
    transform: scaleX(1);
}
.glass-card-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(8,102,75,0.1), rgba(245,145,32,0.1));
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transform: translateZ(30px);
    transition: all 0.5s ease;
}
.glass-card-3d:hover .glass-card-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    color: white;
    transform: translateZ(40px) scale(1.1);
}
.glass-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark); /* text-dark */
    margin-bottom: 15px;
    transform: translateZ(20px);
}
.glass-card-body {
    color: var(--text-muted); /* text-muted */
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

/* --- Sleek Unique Footer --- */
.footer {
    background-color: var(--primary-green);
    color: #94a3b8;
    padding: 0 0 30px;
    font-size: 0.95rem;
    margin-top: 100px;
    border-top: none;
}
.footer-wave {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}
.footer-heading {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
}
.footer-link:hover {
    color: var(--primary-orange);
    transform: translateX(8px);
}
.footer-contact {
    color: #cbd5e1;
}
.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: var(--primary-green);
}
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.footer-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    padding: 12px 20px;
    padding-right: 55px;
}
.footer-input:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(8, 102, 75, 0.25);
}
.footer-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footer-submit-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: var(--shadow-glow-green);
}
.social-icons-modern {
    display: flex;
    gap: 15px;
}
.social-icons-modern a {
    width: 45px; height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
}
.social-icons-modern a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: var(--shadow-glow-orange);
    border-color: transparent;
}
.footer-bottom-bar {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: #64748b;
}
.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .action-section { margin-top: 40px; padding-bottom: 40px; }
    .navbar-custom { background: var(--bg-white); }
}
/* --- Unified Page Hero Styles --- */
.page-hero, .hero-banner, .contact-hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
    background-color: var(--primary-green);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(10, 107, 79, 0.85), rgba(5, 72, 52, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1, .hero-banner .hero-title, .contact-hero .contact-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.hero-breadcrumb, .breadcrumb-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}

.hero-breadcrumb a, .breadcrumb-text a {
    color: white;
    text-decoration: none;
}

/* Common Section Styles */
.section-padding { padding: 80px 0; }
.section-title { font-weight: 800; font-size: 1.6rem; margin-top: 30px; margin-bottom: 20px; color: var(--primary-green); }
.sub-heading { color: var(--primary-green); font-weight: 700; font-size: 1.4rem; margin-top: 30px; margin-bottom: 15px; }
.content-body p { font-size: 1rem; color: var(--text-muted); /* text-muted */ line-height: 1.8; margin-bottom: 15px; }
.content-body ul.bullet-list { list-style-type: none; padding-left: 0; margin-bottom: 20px; }
.content-body ul.bullet-list li { position: relative; padding-left: 25px; margin-bottom: 10px; color: var(--text-muted); /* text-muted */ }
.content-body ul.bullet-list li::before { content: '�'; color: var(--primary-orange); font-weight: bold; position: absolute; left: 0; }

/* Custom Accordion */
.custom-accordion .accordion-item { border: 1px solid var(--glass-border); border-radius: 8px !important; margin-bottom: 15px; overflow: hidden; border-bottom: none; }
.custom-accordion .accordion-button { background-color: var(--bg-white); color: var(--text-dark); /* text-dark */ font-weight: 600; padding: 18px 20px; box-shadow: var(--shadow-sm) !important; }
.custom-accordion .accordion-button:not(.collapsed) { background-color: rgba(8, 102, 75, 0.05); color: var(--primary-green); border-bottom: 1px solid var(--glass-border); }
.custom-accordion .accordion-button::after { display: none; }
.custom-accordion .accordion-button .icon-toggle { margin-right: 15px; font-weight: bold; color: var(--primary-orange); font-size: 1.2rem; display: inline-block; width: 15px; text-align: center; }
.accordion-body { padding: 25px 30px; background-color: var(--bg-white); font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); /* text-muted */ }

/* Custom Forms (Contact Page) */
.contact-info-box { display: flex; align-items: center; margin-top: 30px; }
.contact-info-box i { font-size: 1.5rem; margin-right: 15px; color: white; }
.contact-info-box h6 { margin: 0; font-weight: 600; font-size: 0.95rem; color: white; }
.contact-info-box p { margin: 0; font-size: 0.85rem; opacity: 0.9; color: white; }

.custom-form { background: transparent; }
.custom-input { background-color: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.4); color: #ffffff; border-radius: 0; padding: 12px; font-size: 0.9rem; }
.custom-input::placeholder { color: rgba(255, 255, 255, 0.8); }
.custom-input:focus { background-color: rgba(255, 255, 255, 0.3); color: #ffffff; box-shadow: none; border-color: #ffffff; }
select.custom-input option { background-color: #ffffff; color: #333333; }
.btn-submit { background-color: var(--primary-green); color: #ffffff; font-weight: 600; border: none; padding: 12px; width: 100%; border-radius: 0; text-transform: uppercase; font-size: 0.9rem; }
.btn-submit:hover { background-color: var(--primary-green-dark); color: #ffffff; }
/* Overrides for Home Banner and Footer */
.footer {
    background-color: var(--primary-green) !important;
}
.footer-wave path {
    fill: var(--primary-green) !important;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(8, 102, 75, 0.9) 0%, rgba(5, 72, 52, 0.95) 100%) !important;
}
.hero-title {
    color: #ffffff !important;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}
.hero-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}


/* =========================================
   CONXORA THEME STYLES 
   ========================================= */

/* Top Bar */
.top-bar {
    background-color: #0b1120;
    color: #94a3b8;
    padding: 10px 0;
    font-size: 0.85rem;
}
.top-info { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
.top-info i { color: var(--primary-orange); margin-right: 8px; }
.top-social a { color: #94a3b8; margin-left: 15px; transition: 0.3s; }
.top-social a:hover { color: var(--primary-orange); }

/* Custom Buttons */
.btn-conxora {
    display: inline-block;
    background-color: var(--primary-green);
    color: white !important;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-decoration: none;
    border: 2px solid var(--primary-green);
}
.btn-conxora:hover { background-color: transparent; color: var(--primary-green) !important; }

.btn-orange { background-color: var(--primary-orange); border-color: var(--primary-orange); }
.btn-orange:hover { color: var(--primary-orange) !important; }

.btn-outline { background-color: transparent; border-color: white; color: white !important; }
.btn-outline:hover { background-color: white; color: var(--primary-green) !important; }

/* Hero Adjustments */
.hero-section {
    min-height: 90vh;
    padding: 150px 0 250px 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-title { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; max-width: 600px; line-height: 1.8; margin-bottom: 40px; }
.text-orange { color: var(--primary-orange) !important; -webkit-text-fill-color: var(--primary-orange) !important; background: none !important; -webkit-background-clip: unset !important; background-clip: unset !important; display: inline-block; overflow: visible; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Conxora Service Cards (Overlapping) */
.action-section { margin-top: -120px; position: relative; z-index: 10; padding-bottom: 80px; }
.conxora-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border-bottom: 4px solid var(--primary-orange);
}
.conxora-card:hover, .conxora-card.active-card {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-orange);
}
.conxora-card .card-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    transition: 0.4s;
}
.conxora-card:hover .card-icon { color: var(--primary-orange); transform: scale(1.1); }
.conxora-card h4 { font-weight: 800; font-size: 1.3rem; margin-bottom: 15px; }
.conxora-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.7; }
.read-more { font-weight: 700; color: var(--primary-green); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
.read-more i { margin-left: 5px; transition: 0.3s; }
.read-more:hover { color: var(--primary-orange); }
.read-more:hover i { transform: translateX(5px); }
.card-bg-icon { position: absolute; right: -20px; bottom: -20px; font-size: 8rem; color: rgba(0,0,0,0.03); z-index: 0; transition: 0.4s; }
.conxora-card:hover .card-bg-icon { transform: scale(1.2) rotate(-10deg); color: rgba(8, 102, 75, 0.05); }

/* About Company Section */
.section-padding { padding: 100px 0; }
.section-heading { margin-bottom: 30px; }
.sub-title { color: var(--primary-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.section-heading .title { font-weight: 800; font-size: 2.5rem; line-height: 1.2; color: var(--text-dark); }
.about-image-wrapper { position: relative; padding-right: 30px; padding-bottom: 30px; }
.experience-badge { position: absolute; bottom: 0; right: 0; background: var(--primary-green); color: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 20px 40px rgba(8, 102, 75, 0.3); }
.experience-badge h2 { font-size: 3.5rem; font-weight: 800; margin: 0; line-height: 1; }
.experience-badge p { margin: 0; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-top: 10px; }
.bg-green { background-color: var(--primary-green) !important; }

/* Homepage Image Section */
.homepage-image-section { background: white; }
.homepage-image-wrapper { position: relative; }
.homepage-image-wrapper img { 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.homepage-image-wrapper:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.feature-list { margin-top: 30px; }
.feature-item-inline {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.feature-item-inline span {
    color: var(--text-dark);
}

/* Transfer Pricing Implementation Steps Section */
.tp-implementation-section { background: var(--bg-light); }
.tp-image-wrapper { position: relative; }
.tp-image-wrapper img { 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.tp-image-wrapper:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.tp-steps-content { }
.tp-steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.tp-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}
.tp-step-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-orange);
}
.step-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(8, 102, 75, 0.25);
    flex-shrink: 0;
}
.tp-step-item:hover .step-badge-small {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    box-shadow: 0 6px 15px rgba(245, 145, 32, 0.25);
}
.step-content { flex: 1; }
.step-title-small {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 0;
}
.step-desc-small {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.tp-step-item:hover .step-title-small {
    color: var(--primary-green);
}

/* Solution Databases Section */
.solution-databases-section { background: white; }
.solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: 4px solid var(--primary-green);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-orange);
}
.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(8, 102, 75, 0.3);
    transition: all 0.4s ease;
}
.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    box-shadow: 0 10px 25px rgba(245, 145, 32, 0.3);
    transform: scale(1.1);
}
.solution-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.solution-card:hover .solution-title {
    color: var(--primary-green);
}
.solution-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}
.solution-link {
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.solution-link:hover {
    color: var(--primary-orange);
}
.solution-link i {
    transition: transform 0.3s ease;
}
.solution-card:hover .solution-link i {
    transform: translateX(5px);
}

/* Solution Databases Section - About Page */
.solution-image-wrapper { position: relative; }
.solution-image-wrapper img { 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.solution-image-wrapper:hover img {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.solution-content { }
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(8, 102, 75, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}
.solution-item:hover {
    background: rgba(8, 102, 75, 0.08);
    transform: translateX(8px);
    border-left-color: var(--primary-orange);
}
.solution-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(8, 102, 75, 0.25);
    transition: all 0.3s ease;
}
.solution-item:hover .solution-item-icon {
    background: linear-gradient(135deg, var(--primary-orange), #e67e22);
    box-shadow: 0 6px 15px rgba(245, 145, 32, 0.25);
    transform: scale(1.1);
}
.solution-item-content { flex: 1; }
.solution-item-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 0;
    transition: color 0.3s ease;
}
.solution-item:hover .solution-item-title {
    color: var(--primary-green);
}
.solution-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.solution-item-link {
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.solution-item-link:hover {
    color: var(--primary-orange);
}
.solution-item-link i {
    transition: transform 0.3s ease;
}
.solution-item:hover .solution-item-link i {
    transform: translateX(5px);
}

/* Services Overview */
.service-block { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; height: 100%; position: relative; }
.service-block:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-img { position: relative; overflow: hidden; }
.service-img img { transition: 0.8s; }
.service-block:hover .service-img img { transform: scale(1.1); }
.service-content { padding: 30px; position: relative; }
.service-content h4 { font-weight: 800; margin-bottom: 15px; }
.service-content h4 a { color: var(--text-dark); text-decoration: none; transition: 0.3s; }
.service-content h4 a:hover { color: var(--primary-green); }
.service-content p { color: var(--text-muted); margin-bottom: 0; }
.service-link { position: absolute; right: 30px; top: -25px; width: 50px; height: 50px; background: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.4s; box-shadow: 0 10px 20px rgba(8, 102, 75, 0.3); }
.service-block:hover .service-link { background: var(--primary-orange); color: white; box-shadow: 0 10px 20px rgba(245, 145, 32, 0.3); }

/* Fun Facts Section */
.fun-facts-section { padding: 80px 0; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed; position: relative; }
.fun-facts-section::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(8, 102, 75, 0.9); }
.fact-item { position: relative; z-index: 10; color: white; }
.fact-item i { font-size: 3rem; color: var(--primary-orange); margin-bottom: 20px; }
.fact-item .counter { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; }
.fact-item p { font-size: 1.1rem; font-weight: 600; margin: 0; }

/* Global Fix for Image Overlapping / Collapsing */
main img, 
section img, 
.content-block img, 
.content-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



/* --- Process Steps Section --- */
.process-steps-section {
    background: white;
    padding: 100px 0;
}

.process-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.process-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(8, 102, 75, 0.15);
    transform: translateY(-8px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(8, 102, 75, 0.3);
    transition: all 0.4s ease;
}

.process-card:hover .step-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 15px 35px rgba(8, 102, 75, 0.4);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-connector {
    position: absolute;
    right: -20px;
    top: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    transform: translateY(-50%);
}

.step-connector:last-child {
    display: none;
}

@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* --- Why Choose GulfTP Section --- */
.why-choose-section {
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-orange);
    transform: scale(1.1) rotate(-10deg);
}

/* --- Our Services Section --- */
.our-services-section {
    background: var(--bg-light);
}

.service-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(8, 102, 75, 0.15);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(8, 102, 75, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 15px 35px rgba(8, 102, 75, 0.4);
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}


/* --- Our Values Section --- */
.our-values-section {
    background: white;
}

.value-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(8, 102, 75, 0.12);
    transform: translateY(-12px);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0a5f47 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(8, 102, 75, 0.25);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-15deg);
    box-shadow: 0 15px 40px rgba(8, 102, 75, 0.35);
}

.value-card h5 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
