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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.welcome-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
}

.welcome-navbar.show {
    top: 0;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.navbar-logo img {
    height: 38px;
    width: auto;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-title {
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0;
}

.navbar-buttons {
    display: flex;
    gap: 15px;
}

.btn-navbar-main {
    padding: 9px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    color: white;
    letter-spacing: 0.5px;
}

.btn-navbar-main:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 163, 93, 0.3);
}

/* Hero Section */
.hero-section {
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    padding: 0;
    position: relative;
    align-items: center;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    height: 50px;
    width: auto;
    z-index: 10;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 200px;
    background: #D0D0D0;
}

.hero-title {
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 120px;
    line-height: 1;
    letter-spacing: 3px;
    margin: 0;
    text-align: center;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 80px 100px 80px;
}

.hero-box {
    max-width: 450px;
}

.hero-subtitle {
    color: #555;
    font-size: 15px;
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.btn-hero-primary {
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    color: white;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    width: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 163, 93, 0.4);
}

.btn-hero-secondary {
    background: #FFFFFF;
    color: #666;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #D8D8D8;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    display: block;
    width: 100%;
}

.btn-hero-secondary:hover {
    border-color: #C9A35D;
    color: #C9A35D;
}

/* Partner Logos Section */
.partners-section {
    padding: 60px 0;
    background: #FFFFFF;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    overflow: hidden;
}

.partners-scroll {
    width: 100%;
    overflow: visible;
    padding: 10px 0;
}

.partners-track {
    display: flex;
    gap: 110px;
    width: fit-content;
    will-change: transform;
}

/* Animation handled by GSAP */

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    padding: 10px 0;
}

.partner-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    pointer-events: none;
    display: block;
}

.partner-logo:hover img {
    transform: scale(1.15);
}

/* Section Styles */
.content-section {
    padding: 100px 60px;
    background: #FAFAFA;
}

.content-section:nth-child(odd) {
    background: #FFFFFF;
}

/* Fade In Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.section-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.section-image.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.section-image.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.section-text {
    flex: 1;
    padding: 20px;
    opacity: 0;
}

.section-text.fade-in-left {
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}

.section-text.fade-in-right {
    animation: fadeInRight 0.8s ease-out 0.2s forwards;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
}

.section-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Founders Section */
.founders-section {
    padding: 100px 60px;
    background: #F5F5F5;
}

.founders-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
}

.founders-title .text-bold {
    font-weight: 700;
    color: #2B2B2B;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.founder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #C9A35D;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 18px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 12px;
}

.founder-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #2B2B2B;
    color: white;
    padding: 70px 40px 40px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo h3 {
    background: linear-gradient(90deg, #C9A35D 0%, #B8945A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column h6 {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 16px;
    color: white;
}

.footer-column p {
    color: #B8B8B8;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-column p:hover {
    color: #C9A35D;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 100px;
    }

    .hero-left::after {
        height: 150px;
    }

    .section-row {
        gap: 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-right {
        padding: 80px 50px 80px 60px;
    }

    .hero-left {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-logo {
        left: 30px;
        top: 25px;
        height: 40px;
    }

    .hero-left {
        padding: 120px 30px 40px;
        width: 100%;
    }

    .hero-left::after {
        display: none;
    }

    .hero-right {
        padding: 40px 30px 60px;
        width: 100%;
    }

    .hero-title {
        font-size: 80px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 15px;
        text-align: center;
    }

    .hero-box {
        max-width: 100%;
    }

    .section-row {
        flex-direction: column;
        gap: 50px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

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

    .navbar-content {
        padding: 0 20px;
    }

    .navbar-center {
        display: none;
    }

    .content-section {
        padding: 70px 30px;
    }

    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .partners-container {
        gap: 30px;
        padding: 0 20px;
    }

    .partner-logo img {
        height: 40px;
    }

    .founders-section {
        padding: 70px 30px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founders-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 15px;
    }

    .btn-navbar-main {
        padding: 8px 25px;
        font-size: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 11px 0;
        font-size: 12px;
    }

    .content-section {
        padding: 50px 20px;
    }
}