:root {
    --primary-black: #1a1a1a;
    --accent-green: #0b3026;
    /* Inspired by the reference image */
    --text-gray: #4a4a4a;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--primary-black);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}


.section-container {
    width: 86%;
    max-width: 1400px;
    margin: auto;
}


.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}







/* header */
.header {
    color: var(--text-dark);
    transition: all 0.5s;
    z-index: 1;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    /* height: 100px; */
    z-index: 100;
    background: #ffffff;
    padding: 10px 0px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.navmenu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navmenu ul li {
    list-style: none;
    font-size: 17px;
    font-weight: 600;
}

.navmenu ul li a {
    text-decoration: none;
    color: #2c2c2c;
}

.navmenu .active {
    border-bottom: 2px solid #757575;
    font-weight: bold;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 21px;
    background: #fff;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
}












/* --- Hero Section --- */
.hero {
    padding-top: 140px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h2 {
    font-size: 16px;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 50px;
    line-height: 1.2;
    /* margin-top: 10px; */
    margin-bottom: 10px;
    color: var(--primary-black);
}

.hero-content p {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    /* max-width: 550px; */
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-green);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 48, 38, 0.2);
}

.btn-secondary {
    border: 1px solid #ddd;
    color: var(--primary-black);
    background: white;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

/* --- Hero Visuals --- */
.hero-visual {
    position: relative;
}

.main-img-card {
    width: 100%;
    height: 400px;
    background: var(--accent-green);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.main-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    bottom: -20px;
    left: -50px;
    max-width: 250px;
}

.floating-card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.floating-card p {
    font-size: 16px;
    color: var(--text-gray);
}

.stat-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}










/* --- Trusted By Section Styles --- */
.trusted-by {
    width: 100%;
    min-height: 120px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    margin-top: 60px;
    background: #0B3026;
}

.trusted-by .section-container {
    display: flex;
}

.trusted-label {
    background-color: #f4f4f4;
    color: var(--primary-black);
    width: 30%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: left;
}

.logos-container {
    background-color: var(--accent-green);
    width: 70%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px 5%;
}

.logo-item {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
}

.logo-item img {
    width: 100px;
}

.logo-item:hover {
    opacity: 1;
}













/* --- About Section Styles --- */
.about-section {
    margin-top: 60px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    /* margin-top: 300px; */
}

.about-image-bg {
    border-radius: 20px;
    /* width: 90%; */
    /* height: 300px; */
    position: relative;
}

.about-image-bg img {
    width: 100%;
    /* height: 200%; */
    object-fit: cover;
    /* position: absolute; */
    /* bottom: 0; */
    /* left: -20px; */
    border-radius: 20px;
}

/* Content Side */
.sub-heading {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 3rem;
    margin: 4px 0 10px;
}

.main-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-content h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cap-list {
    list-style: none;
}

.cap-list li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: var(--primary-black);
    position: relative;
    padding-left: 20px;
}

.cap-list li::before {
    content: "•";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.about-box {
    background: #dadada;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

.about-content h4 {
    margin-top: 20px;
    font-size: 20px;
    color: #0b3026;
}











/* --- Vision & Mission Styles --- */
.vision-mission-section {
    margin-top: 80px;
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    padding: 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vision-card .card-label {
    color: var(--accent-green);
}

.vision-card p {
    color: var(--text-gray);
}

.mission-card {
    background-color: #0b3026;
    color: white;
    border: 1px solid #eee;
}

.mission-card .card-label {
    color: rgba(255, 255, 255, 0.6);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
}

.card-label {
    display: block;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.vm-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.card-icon {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Hover Effect */
.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}











/* --- What We Do Styles --- */
.what-we-do {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.positioning-header {
    margin-bottom: 40px;
}

.positioning-header h2 {
    font-size: 2.5rem;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background-color: #eeeeee;
    border: 1px solid #eeeeee;
}

.bridge-card {
    background-color: var(--white);
    padding: 50px 40px;
    text-align: left;
    transition: 0.4s ease;
    position: relative;
}

.bridge-card:hover {
    background-color: #f9f9f9;
}

.bridge-connector {
    width: 40px;
    height: 2px;
    background-color: var(--accent-green);
    margin-bottom: 25px;
}

.bridge-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.bridge-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.positioning-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.footer-tagline {
    max-width: 800px;
    padding: 10px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-green);
    font-size: 1.1rem;
    color: var(--primary-black);
    text-align: left;
    line-height: 1.8;
}









/* --- Services Section Styles --- */
.services-section {
    margin-top: 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-top: 6px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}


.service-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0b3026;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 3.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card ul li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    opacity: 0.8;
}

.service-card ul li::before {
    content: "→";
    position: absolute;
    left: -6px;
    color: var(--accent-green);
}

.service-card.dark ul li::before {
    color: white;
}

/* Card Footer & Buttons */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.service-card.dark .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.read-more-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.legal-disclaimer {
    margin-top: 0px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
}





.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.services-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    user-select: none;
}










/* --- Who We Serve Styles --- */
.who-we-serve {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.serve-header {
    margin-bottom: 40px;
}

.serve-header h2 {
    font-size: 30px;
}

.serve-header p {
    color: var(--text-gray);
    margin-top: 5px;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.serve-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.serve-icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(1);
    transition: 0.3s;
}

.serve-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
}

.serve-item:hover {
    background: var(--white);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.serve-item:hover .serve-icon-box {
    filter: grayscale(0);
    transform: scale(1.1);
}












/* --- Why Choose Us Styles --- */
.why-choose-us {
    margin-top: 60px;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.why-intro h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 20px 0;
}

.text-highlight {
    color: var(--accent-green);
}

.experience-badge {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Feature Items */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-check {
    width: 32px;
    height: 32px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}













/* --- Our Approach Styles --- */
.our-approach {
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.approach-header {
    text-align: center;
    margin-bottom: 40px;
}

.approach-header h2 {
    font-size: 30px;
}

.approach-pipeline {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-green);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pipe-arrow {
    opacity: 0.5;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    position: relative;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: 0.3s;
}

.step-card:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    position: relative;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.approach-cta {
    margin-top: 30px;
    text-align: center;
}

.approach-cta p {
    font-size: 1.3rem;
    color: var(--primary-black);
    font-style: italic;
}












/* --- Trust & Compliance Styles --- */
.trust-compliance {
    margin-top: 60px;
}

.compliance-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}

.compliance-sidebar h3 {
    font-size: 2.2rem;
    margin: 20px 0;
    line-height: 1.2;
}

.shield-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.compliance-badge {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.compliance-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.comp-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.comp-text h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--primary-black);
}

.comp-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.compliance-footer-note {
    margin-top: 60px;
    padding: 25px;
    background: rgba(11, 48, 38, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
    text-align: center;
}

.compliance-footer-note p {
    font-size: 0.9rem;
    color: var(--accent-green);
    max-width: 900px;
    margin: 0 auto;
}













/* --- Impact Section Styles --- */
.impact-section {
    margin-top: 40px;
    background-color: var(--primary-black);
    color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}

.impact-container {
    margin: 0 auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.impact-item {
    border-left: 2px solid #30977b;
    padding-left: 20px;
}

.impact-status {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #30977b;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.impact-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.anonymized-note {
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-style: italic;
}












/* --- Leadership Section Styles --- */
.leadership-section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.leadership-header h2 {
    font-size: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-category {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cat-header {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-green);
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.member-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.3s ease;
    height: 100%;
}

.member-card:hover {
    background: var(--white);
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.member-card.main {
    background: var(--accent-green);
    color: white;
}

.member-card.main h4 {
    color: white;
}

.member-card.main p {
    color: rgba(255, 255, 255, 0.8);
}

.member-info h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.member-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
}










/* --- Team Profiles Styles --- */
.team-profiles-section {
    margin-top: 40px;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.profile-card {
    background: #d3d3d3;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
}

.profile-img-container {
    position: relative;
    width: 100%;
    /* aspect-ratio: 4/5; */
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.profile-socials {
    display: flex;
    gap: 15px;
}

.profile-socials a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.profile-socials a:hover {
    background: var(--primary-black);
    color: white;
}

/* Hover States */
.profile-card:hover .profile-img-container img {
    transform: scale(1.1);
}

.profile-card:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    padding: 20px 10px;
}

.profile-info h4 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
}











/* --- Testimonial Styles --- */
.testimonial-section {
    overflow: hidden;
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header h2 {
    font-size: 30px;
}

.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.testimonial-slider-container:active {
    cursor: grabbing;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    user-select: none;
}

.stars {
    color: #ffcc00;
    /* Yellow stars from image */
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    min-height: 150px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: crop;
}

.user-info h4 {
    font-size: 0.95rem;
    color: var(--primary-black);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}











/* --- FAQ Section Styles --- */
.faq-section {
    margin-top: 40px;
    padding-bottom: 20px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side */
.faq-label-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.accent-line {
    width: 30px;
    height: 1px;
    background: var(--accent-green);
}

.faq-sub {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-green);
}

.faq-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.faq-image-wrapper img {
    width: 100%;
    display: block;
}

.faq-socials p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a i {
    color: #000;
    font-size: 40px;
}

/* Right Side Accordion */
.faq-content-side h2 {
    font-size: 34px;
    margin-bottom: 50px;
    line-height: 1.1;
}

.accordion {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-black);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 25px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .icon {
    color: var(--accent-green);
}













/* --- Contact Section Styles --- */
.contact-section {
    margin-top: 40px;
    padding: 40px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin: 10px 0;
    line-height: 60px;
}

.info-items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.info-icon {
    font-size: 1.5rem;
    background: #f0f4f3;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-card small {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.info-card p {
    font-weight: 600;
    color: var(--primary-black);
}


.contact-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}


.contact-btns .btn {
    padding: 10px 20px;
    border-radius: 8px;
}


/* Form Styling */
.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fcfcfc;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-green);
    outline: none;
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--primary-black);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 20px;
    text-align: center;
}











/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 40px 0 20px;
}

footer p {
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-top-left {
    width: 50%;
}

.footer-logo img {
    width: 160px;
}

.footer-top-left p {
    margin-top: 20px;
    opacity: 0.9;
    width: 70%;
    line-height: 1.4;
}

.footer-com-detail {
    margin-top: 10px;
}


.footer-top-right {
    display: flex;
    justify-content: space-between;
    width: 50%;
    gap: 20px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: all 0.2s ease;
    color: #fff;
    text-decoration: none;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #9c9c9c;
}

.footer-col ul li a i {
    margin-right: 10px;
    color: #fff;
}

.social-box {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom p {
    margin-bottom: 0;
}










/* privacy page */

.policy-header-bg {
    background-color: #f1f3f2;
    padding: 150px 8% 40px;
    display: flex;
    justify-content: center;
}

.policy-header-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 1400px;
    margin: auto;
    width: 100%;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.breadcrumb a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.breadcrumb a.active {
    color: #0b3026;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 10px;
    color: #ccc;
}

.policy-header-card h1 {
    font-size: 50px;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.policy-header-card p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-container {
    padding: 80px 8%;
    background-color: #fcfcfc;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-col section {
    margin-bottom: 45px;
}

.policy-col h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
}

.policy-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.policy-col strong {
    color: #000;
}










/* cppv page */
.cppv-container {
    text-align: center;
}