/* Reset and Base Styles */
:root {
    --primary: #91d171;
    --primary-hover: #7bba5d;
    --dark: #004e41;
    --darker: #00362d;
    --light: #f4f5f6;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;

    --font-heading: 'Spectral', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-max-width: 1300px;
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

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

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

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

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.w-100 {
    width: 100%;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-block {
    display: block;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(145, 209, 113, 0.15);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--darker);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--darker);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline-dark {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-outline-dark:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.btn-link::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.btn-link:hover::after {
    margin-left: 12px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 30px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    padding: 10px 24px;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--white);
    z-index: 1001;
}

/* Hero */
.hero {
    background-color: var(--dark);
    background-image: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--white);
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 40px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Connect Experts */
.connect-experts {
    display: inline-block;
}

.experts-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.3s;
}

.experts-link:hover {
    opacity: 0.8;
}

.expert-profiles {
    display: flex;
}

.expert-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid var(--dark);
    margin-left: -15px;
    position: relative;
}

.expert-img:first-child {
    margin-left: 0;
}

.experts-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gif-cluster {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.hero-gif {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.gif-1,
.gif-2 {
    width: calc(50% - 15px);
    max-width: 280px;
}

.gif-3 {
    width: 90%;
    max-width: 500px;
}

.gif-cluster:hover .hero-gif {
    transform: translateY(-5px);
}

/* Hero Grid Background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    --grid-size: 60px;
    --spot-x: -999px;
    --spot-y: -999px;
}

.hero-grid-layer {
    position: absolute;
    inset: 0;
}

.hero-grid-base {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.45;
}

.hero-grid-spotlight {
    background-image:
        linear-gradient(rgba(145, 209, 113, 0.38) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 209, 113, 0.38) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero.is-grid-active .hero-grid-spotlight {
    opacity: 1;
}

/* Hero Slider */
.hero-slider-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-slider {
    flex: 1;
    position: relative;
    display: grid;
    overflow: visible;
}

.slide {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.slide-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.slider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

/* Stats Section */
.stats-section {
    padding-bottom: 20px;
}

.stats-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.stat-item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-left: -20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-item:first-child {
    margin-left: 0;
}

.stat-item:hover {
    z-index: 10;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(145, 209, 113, 0.4);
    transform: translateY(-5px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item:hover .stat-value {
    color: var(--primary);
}

.stat-label {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Philosophy */
.philosophy-section {
    padding-top: 20px;
}

.philosophy-container {
    max-width: 1000px;
}

.philosophy-text-reveal {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text-reveal .word {
    display: inline-block;
    color: #e0e0e0;
    transition: color 0.3s;
}

.philosophy-text-reveal .word.highlighted {
    color: var(--dark);
}

/* Advisory Features */
.empower-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.image-placeholder {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-placeholder {
    aspect-ratio: 4/5;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: transparent;
    padding: 40px 30px;
    border-top: 1px solid rgba(145, 209, 113, 0.3);
    transition: var(--transition);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.feature-card:hover {
    color: var(--dark);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(145, 209, 113, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--dark);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.feature-card:hover p {
    opacity: 1;
    color: var(--text-muted);
}

/* Expandable Vertical Cards */
.services-expandable-row {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .services-expandable-row {
        height: 650px;
    }
}

.service-expand-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-title-collapsed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    transition: opacity 0.3s;
    z-index: 2;
}

.service-content-expanded {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    transition: opacity 0.4s;
    transition-delay: 0s;
}

.service-expand-card:hover,
.service-expand-card.active {
    flex: 3;
    background: var(--primary);
}

.service-expand-card:hover .service-title-collapsed,
.service-expand-card.active .service-title-collapsed {
    opacity: 0;
    pointer-events: none;
}

.service-expand-card:hover .service-content-expanded,
.service-expand-card.active .service-content-expanded {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0.2s;
}

.service-content-expanded h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-content-expanded p {
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Team Row */
.team-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: transparent;
    border-radius: var(--border-radius);
    padding: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(145, 209, 113, 0.1);
}

.team-member .member-placeholder {
    width: 100%;
    height: 260px;
    background: #e0e0e0;
    border-radius: 16px;
    margin-bottom: -15px;
    position: relative;
    z-index: 1;
}

.team-member .member-info {
    background: var(--white);
    padding: 35px 20px 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 0;
    margin-top: -20px;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Why ValueXIR New Section (Research & Insight) */
.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.research-placeholder {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1200 / 800;
}

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

.research-placeholder:hover img {
    transform: scale(1.05);
}

.research-right {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 40px;
}

.research-vertical-line {
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.research-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.research-item::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -1px;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.research-item:last-child {
    border-bottom: none;
}

.research-item:last-child::before {
    display: none;
}

.research-bullet {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.research-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.research-item p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 90%;
}

.research-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.research-item:hover .research-icon {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.research-item:hover h3 {
    color: var(--primary);
}

.research-item:hover::before {
    background: var(--primary);
    height: 2px;
}

/* Industries Logos */
.industries-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-badge {
    padding: 15px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.industry-badge:hover {
    border-color: var(--primary);
    color: var(--dark);
    background: rgba(145, 209, 113, 0.05);
}

/* Insights */
.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.insights-see-more {
    white-space: nowrap;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
}

.insights-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.insight-main-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.insight-img-placeholder {
    width: 100%;
    height: 350px;
    background: #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
}

.insight-img-placeholder.small {
    height: 100px;
    width: 150px;
    margin-bottom: 0;
    flex-shrink: 0;
    border-radius: 8px;
}

.insight-meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.insight-main-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.insight-main-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.insight-side-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    max-height: 550px;
    overflow-y: auto;
    padding-right: 10px;
}

.insight-side-cards::-webkit-scrollbar {
    width: 6px;
}

.insight-side-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.insight-side-cards::-webkit-scrollbar-thumb {
    background: rgba(145, 209, 113, 0.4);
    border-radius: 10px;
}

.insight-side-item {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.insight-side-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(145, 209, 113, 0.3);
    transform: translateY(-3px);
}

.insight-side-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
    transition: color 0.3s;
}

.insight-side-content .insight-meta {
    margin-bottom: 5px;
}

/* Testimonials Carousel */
.testimonial-slider-wrapper {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: max-content;
}

.testi-card-wrapper {
    flex: 0 0 500px;
    width: 500px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 1;
    transform: scale(1);
}

.testi-card-wrapper.blurred {
    opacity: 0.3;
    filter: blur(4px);
    transform: scale(0.9);
    pointer-events: none;
}

.testi-card-wrapper.blurred .testi-card {
    border-color: transparent;
    background: transparent;
}

.testi-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    text-align: left;
}

.testi-card-wrapper.active .testi-card {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(145, 209, 113, 0.08);
}

.stars {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.testi-name {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.testi-role {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.8;
}

.testimonials-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.testi-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testi-btn:hover {
    background: var(--white);
    color: var(--dark);
}

.testi-prev-abs {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testi-next-abs {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testi-dots-container {
    display: flex;
    justify-content: center;
}

.testi-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-detail {
    display: flex;
    gap: 15px;
}

.contact-detail .icon {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-side {
    background: var(--light);
    padding: 50px;
    border-radius: var(--border-radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.custom-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.custom-form .form-group.has-error label {
    color: #dc2626 !important;
}

.custom-form .form-group.has-error .form-control {
    border-color: #dc2626 !important;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 0;
}

.footer-logo-img {
    height: 55px;
}

.footer-links-wrapper {
    display: block;
}

.footer-link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-link-group ul {
    column-count: 2;
    column-gap: 40px;
}

.footer-link-group ul li {
    margin-bottom: 12px;
    break-inside: avoid;
}

.footer-link-group ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-link-group ul a:hover {
    color: var(--primary);
}

.footer-address-block h4 {
    color: var(--white);
}

.footer-address-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .team-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-expandable-row {
        height: 650px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-card-wrapper {
        flex: 0 0 450px;
        width: 450px;
    }
}

@media (max-width: 992px) {

    .hero-container,
    .empower-container,
    .contact-container,
    .insights-layout,
    .research-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        max-height: none;
        overflow: visible;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-visual {
        height: auto;
        margin-top: 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-slider {
        min-height: 250px;
    }

    .services-expandable-row {
        flex-direction: column;
        height: auto;
    }

    .service-expand-card {
        min-height: 100px;
        height: auto;
        width: 100%;
        flex-direction: column;
    }

    .service-expand-card.active,
    .service-expand-card:hover {
        min-height: 300px;
        height: auto;
    }

    .service-title-collapsed {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 20px;
        position: relative;
        left: auto;
        top: auto;
    }

    .service-content-expanded {
        position: relative !important;
        display: none !important;
        padding: 25px !important;
    }

    .service-expand-card.active .service-content-expanded,
    .service-expand-card:hover .service-content-expanded {
        display: flex !important;
    }

    .service-expand-card:hover .service-title-collapsed,
    .service-expand-card.active .service-title-collapsed {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testi-card-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }

    .testimonials-carousel-container {
        padding: 0 30px;
    }

    .testimonial-slider-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .testi-prev-abs {
        left: -10px;
    }

    .testi-next-abs {
        right: -10px;
    }

    .research-right {
        padding-left: 0;
    }

    .research-vertical-line,
    .research-item::before {
        display: none;
    }

    .footer-link-group ul {
        column-gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .features-grid-2x2,
    .form-row,
    .contact-details-grid,
    .footer-links-wrapper {
        grid-template-columns: 1fr;
    }


    .team-row {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 15px;
    }

    .team-member .member-placeholder {
        height: 350px;
        background-position: top center;
        border-radius: 16px;
        margin-bottom: -15px;
        width: 100%;
        margin-right: 0;
    }

    .team-member .member-info {
        margin-top: -20px;
        text-align: center !important;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-slider {
        min-height: 250px;
    }

    .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
    }

    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 12px 25px;
        width: auto;
        white-space: nowrap;
        flex: 0 0 auto;
        display: inline-flex;
        justify-content: flex-start;
    }

    .stats-circles {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        margin-left: 0;
        margin-top: -20px;
    }

    .stat-item:first-child {
        margin-top: 0;
    }
}

@media (max-width: 991px) {

    /* Testimonials Horizontal Carousel & Bottom Right Arrows */
    .testimonials-carousel-container {
        padding: 0;
        padding-bottom: 70px;
        position: relative;
    }

    .testimonial-slider {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        width: max-content !important;
        transform: none;
        transition: transform 0.5s ease;
    }

    .testi-card-wrapper {
        flex: 0 0 calc(100vw - 40px) !important;
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        padding: 0 10px;
        box-sizing: border-box;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        margin: 0 !important;
    }

    .testi-card-wrapper.blurred {
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    .testi-card {
        padding: 30px 20px;
        min-height: 280px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .quote-text {
        white-space: normal !important;
        word-wrap: break-word;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .testi-nav-arrows {
        display: block;
    }

    .testi-prev-abs,
    .testi-next-abs {
        position: absolute !important;
        bottom: 0 !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
        display: flex !important;
    }

    .testi-prev-abs {
        right: 60px !important;
        left: auto !important;
    }

    .testi-next-abs {
        right: 10px !important;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: var(--primary);
    color: var(--dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: var(--dark);
}

/* Blog Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(145, 209, 113, 0.15);
    border-color: var(--primary);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    /* Stack two-column form fields on small screens */
    .custom-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* Clarity and trust at every step */
    .stats-circles {
        flex-direction: column !important;
    }
    .stat-item {
        width: 100% !important;
        min-width: 100% !important;
    }

    /* Problem Section */
    .problem-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        padding-bottom: 0 !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    .problem-card {
        width: 100% !important;
        min-width: 100% !important;
        padding: 25px !important;
    }

    /* Profile pictures (About Us) */
    .member-img {
        background-size: cover !important;
        background-position: top center !important;
        height: 380px !important;
    }

    /* SERVICES accordion */
    .services-expandable-row {
        flex-direction: column !important;
        height: auto !important;
    }
    .service-expand-card {
        flex: none !important;
        width: 100% !important;
        min-height: auto !important;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    .service-expand-card.active, 
    .service-expand-card:hover {
        flex: none !important;
    }
    .service-title-collapsed {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        padding: 20px !important;
        text-align: center;
        font-size: 1.1rem;
    }
    .service-content-expanded {
        position: relative !important;
        display: none !important;
        padding: 25px !important;
    }
    .service-expand-card.active .service-content-expanded,
    .service-expand-card:hover .service-content-expanded {
        display: flex !important;
    }
    .service-expand-card:hover .service-title-collapsed,
    .service-expand-card.active .service-title-collapsed {
        display: none !important;
    }

    /* YOUR JOURNEY */
    .journey-left {
        position: static !important;
        margin-bottom: 30px !important;
    }

    /* Footer services */
    .footer-links-wrapper > div {
        grid-template-columns: repeat(2, auto) !important;
        gap: 15px !important;
    }
}
.hidden {
    display: none !important;
}
.g-recaptcha {
    margin: 4px 0;
}
.notyf__toast {
    border-radius: 12px;
}
