/* ==========================================================================
   Base Styles and Variables
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #FFD700;
    --color-secondary: #EFA32F;
    --color-dark: #18181B;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray-100: #F3F4F6;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-border: #3F3F46;
    --color-accent: #F5A524;
    --color-dark-bg: #1A1A1A;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 36px;
    --spacing-2xl: 50px;
    --spacing-section: 80px;

    /* Typography */
    --font-family: 'Avenir LT Std', sans-serif;
    --font-size-sm: 18px;
    --font-size-base: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 36px;
    --font-size-4xl: 64px;
    --font-size-5xl: 84px;
    --font-size-hero: 110px;

    /* Layout */
    --container-max-width: 1600px;
    --container-width-lg: 1440px;
    --card-height-sm: 300px;
    --card-height-lg: 620px;
}

/* Typography */
@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/Avenir LT Std 45 Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    font-family: var(--font-family);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #131313;
    color: var(--color-white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    line-height: 20px;
}

/* .video-background {
    position: absolute;

    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
} */

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top,
            rgba(19, 19, 19, 1) 0%,
            rgba(19, 19, 19, 0.8) 30%,
            rgba(19, 19, 19, 0) 100%);

    z-index: -5;
}

.hero-content {
    position: relative;
    height: 100%;
}

.center-text {
    position: absolute;
    font-size: var(--font-size-hero);
    line-height: 1.1;
    bottom: 180px;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    color: var(--color-white);
    width: 90%;
    max-width: var(--container-max-width);
}

.center-text p {
    margin: 0;
    padding: 0;
}

.center-text-subtitle {
    position: absolute;
    font-size: var(--font-size-lg);
    line-height: 1.2;
    bottom: 160px;
    padding-left: var(--spacing-xl);
    color: var(--color-white);
    width: 90%;
}

.image-container {
    position: absolute;
    height: 58px;
    bottom: 60px;
    padding-left: var(--spacing-xl);
}

.center-image {
    position: relative;
    padding-right: 10px;
    height: 58px;
}

.center-image-newsletter {
    position: relative;
    height: 58px;
}

/* ==========================================================================
   Headline Section
   ========================================================================== */

.headline-section-two {
    padding: var(--spacing-2xl) 0;
    background-color: var(--color-dark);
}

.headline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.headline-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.subtitle-counter {
    color: var(--color-gray-500);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--color-white);
    text-align: center;
}

.counter-text {
    font-size: var(--font-size-4xl);
    color: var(--color-white);
    text-align: center;
    margin: var(--spacing-md) 0;
}

.headline-card-two {
    padding: 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
}

.headline-card-two h1 {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 100;
    margin-bottom: -18px;
}

.counter {
    color: var(--color-secondary);
    font-size: 80px;
    margin: 40px auto 0px;
    font-weight: 800;
    text-align: center;
}

.headline-card-two.middle-border {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.headline-card-two.left-border {
    border-left: 1px solid var(--color-border);
}

/* ==========================================================================
   Masonry Grid
   ========================================================================== */

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    grid-row: span 2;
}

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

.card.small-square {
    grid-row: span 1;
    height: var(--card-height-sm);
}

.card.large {
    grid-column: span 2;
    grid-row: span 2;
    height: var(--card-height-lg);
}

.card.medium {
    grid-column: span 2;
    grid-row: span 1;
    height: var(--card-height-sm);
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.category {
    position: absolute;
    top: 50px;
    left: var(--spacing-xl);
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: 500;
    text-transform: uppercase;
}

.card-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 2;
    padding-right: 40px;
}

.logo-card {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 150px;
    height: auto;
}

.card h2 {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    margin: 0;
    font-weight: 500;
}

.date {
    position: absolute;
    bottom: var(--spacing-xl);
    left: var(--spacing-xl);
    color: var(--color-white);
    font-size: var(--font-size-base);
    opacity: 0.8;
}

.card {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    z-index: 1;
}

.card .category,
.card .logo-card {
    position: absolute;
    z-index: 2;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    position: relative;
    margin-top: 60px;
}

.newsletter-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-title {
    color: var(--color-white);
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin: 0 0 12px;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.pitch-form {
    background: rgba(39, 39, 42, 0.75);
    padding: 60px;
    border-radius: 40px;
    margin: 40px auto;
    max-width: 1200px;
}

.pitch-form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.pitch-form-intro {
    top: 20px;
}

.pitch-form-intro h2 {
    color: white;
    font-size: var(--font-size-2xl);
    margin-bottom: 24px;
}

.pitch-form-intro .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Form Controls */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Form Input Styles */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: var(--font-size-base);
    ;
    width: 100%;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Custom Select Styles */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Button Styles */
.btn-cancel {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: var(--font-size-base);
    ;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    padding: 0.75rem 2rem;
    background: white;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    font-size: var(--font-size-base);
    ;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Message Input Height */
textarea[name="message"] {
    min-height: 120px;
    resize: vertical;
}

/* Form Labels */
label {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.required {
    color: var(--color-primary);
    margin-left: 4px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}




/* File Input Styles */
.file-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-button {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: var(--font-size-base);
    ;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

#file-chosen {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-base);
    ;
}

input[type="file"] {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.show {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) brightness(0.8);
    -webkit-backdrop-filter: blur(20px) brightness(0.8);
}

.modal-content {
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1300px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 40px;
}

.modal-close {
    position: absolute;
    border: none;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Form Input Styles */
.form-group input,

.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: var(--font-size-base);
    ;

}

.form-group select {
    width: 109%;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Custom Select Styles */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Button Styles */
.btn-cancel {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: var(--font-size-base);
    ;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    padding: 0.75rem 2rem;
    background: white;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    font-size: var(--font-size-base);
    ;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Message Input Height */
textarea[name="message"] {
    min-height: 120px;
    resize: vertical;
}

/* Scrollbar Styles for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Adjust pitch form styles for modal */
.modal .pitch-form {
    margin: 0;
    max-width: none;
}


/* Founder Carousel Section */
.founder-carousell-section {
    background: transparent;
    padding: var(--spacing-section) 0;
    color: var(--color-white);
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
}

.section-title {
    position: absolute;
    top: var(--spacing-section);
    font-size: var(--font-size-5xl);
    font-weight: 300;
    color: var(--color-white);
    z-index: 2;
    margin: 0;
}

.founder-carousel-container {
    max-width: var(--container-width-lg);
    margin: 0 auto;
    padding: 60px var(--spacing-xl) 0;
    position: relative;
}

.carousel-slides {
    position: relative;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-section);
}

.founder-image {
    position: relative;
    width: 435px;
    /* Reduced by 20% from 544px */
    height: 435px;
    /* Reduced by 20% from 544px */
    margin: 0 auto;
    background: transparent;
}

.image-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.image-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    border-radius: 50%;
    z-index: 1;
}

.founder-photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    background: transparent;
}

.slide-text {
    flex: 1;
    max-width: 600px;
    padding-top: 60px;
    position: relative;
}

.amartha-logo {
    margin-bottom: 30px;
}

.amartha-logo img {
    height: 116px;
    width: auto;
}

.slide-text h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.slide-text p {
    font-size: var(--font-size-xl);
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.carousel-controls {
    position: absolute;
    bottom: -30px;
    left: 720px;
    z-index: 10;
}

.carousel-navigation {
    display: flex;
    gap: 12px;
    margin-bottom: var(--spacing-md);
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
}

.hero-masonry-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: white;
    padding-top: 80px;
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Left (text + buttons) */
.hero-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;

    line-height: 1.15;
    /* rapetin jarak baris */
    margin: 0 0 .5rem 0;
    /* kecilkan jarak ke elemen berikutnya */

    text-wrap: balance;
    /* baris seimbang (browser modern) */
    overflow-wrap: anywhere;
    /* jaga-jaga kalau ada kata panjang */
    word-break: normal;
    /* hindari pecah huruf aneh */
    hyphens: auto;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: justify;
    /* biar rata kanan-kiri */
    word-break: break-word;
    /* pecah kata kalau kepanjangan */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.button-image {
    max-width: 150px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.button-image:hover {
    transform: scale(1.05);
}

/* Right (masonry) */
.masonry-grid-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 kolom */
    gap: 1rem;
}

/* Card pertama full width */
.masonry-grid-hero .card:nth-child(1) {
    grid-column: span 2;
    min-height: 300px;
    /* biar lebih besar */
}

/* Card kedua & ketiga bagi 2 kolom */
.masonry-grid-hero .card:nth-child(2),
.masonry-grid-hero .card:nth-child(3) {
    min-height: 200px;
}

.masonry-grid-hero .card.half-card h2 {
    font-size: 14px;
    line-height: 1.3;
}

.card {
    border-radius: 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    position: relative;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Override masonry grid jadi 1 kolom */
    .masonry-grid-hero {
        grid-template-columns: 1fr !important;
    }

    /* Reset card kedua & ketiga agar tidak dipaksa 2 kolom */
    .masonry-grid-hero .card:nth-child(2),
    .masonry-grid-hero .card:nth-child(3) {
        grid-column: span 2;
        min-height: 300px;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 768px) {
    .center-text {
        font-size: 50px;
        bottom: 240px;
        width: 90%;
    }

    .counter {
        margin: 40px auto 0px;
        font-size: 50px;
    }

    .headline-grid-two {
        grid-template-columns: repeat(1, 1fr);

    }

    .headline-card-two.left-border {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-top: 40px;
    }

    .carousel-controls {
        position: static;
        margin-top: var(--spacing-xl);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        left: auto;
        bottom: auto;
    }

    .carousel-navigation {
        justify-content: center;
        margin-bottom: var(--spacing-md);
    }

    .carousel-dots {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        border-radius: 24px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .headline-grid,
    .pitch-form-grid {
        grid-template-columns: 1fr;
    }

    .headline-card-two.middle-border {
        border: none;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        padding: var(--spacing-lg) 0;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    /* Featured Investees Mobile Styles */
    .founder-carousell-section {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        position: relative;
        top: 0;
        left: 0;
        font-size: var(--font-size-3xl);
        text-align: center;
        margin-bottom: 10px;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 15px;
    }

    .headline-grid {
        padding: 0 15px;
    }

    .headline-grid-two {
        padding: 0 15px;
    }

    .card.large {
        grid-column: span 2;
    }

    .video-background {
        width: auto;
        min-width: 100%;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-section h1 {
        font-size: 48px;
    }

    .category {
        font-size: 20px;
        top: 20px;
        left: 20px;
    }

    .card h2 {
        font-size: 20px;
    }

    /* Carousel Mobile Styles */
    .founder-carousell-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .founder-carousel-container {
        padding: 0;
    }

    .carousel-slide .slide-content {
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .founder-image {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .image-circle {
        width: 240px;
        height: 240px;
    }

    .slide-text {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .amartha-logo img {
        max-width: 120px;
        margin: 0 auto var(--spacing-md);
    }

    .slide-text h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-md);
    }

    .slide-text p {
        font-size: var(--font-size-base);
        line-height: 1.5;
    }

    .carousel-controls {
        margin: 0;
    }

    .carousel-navigation button {
        width: 35px;
        height: 35px;
    }

    .amartha-logo img {
        max-width: 240px;
        height: auto;
    }

}