:root {
    --primary-color: #FFA500;
    --text-color: #333;
    --background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 1000;
}

.logo {
    position: static;
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.swiper {
    width: 100vw;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-slide {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    color: white;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-content img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.ceo-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Button styling */
.get-started-btn, 
.revenue-btn,
button[type="submit"] {
    background-color: #FFC439;
    border-color: #FFC439;
    color: black;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
}

.get-started-btn:hover, 
.revenue-btn:hover,
button[type="submit"]:hover {
    background-color: #e6b033; /* Slightly darker shade for hover */
    border-color: #e6b033;
    color: black;
}

/* Remove any conflicting button styles */
.btn-primary {
    background-color: #FFC439 !important;
    border-color: #FFC439 !important;
    color: black !important;
}

.btn-primary:hover {
    background-color: #e6b033 !important;
    border-color: #e6b033 !important;
    color: black !important;
}

.capital-raised {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
}

.capital-raised h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.funder-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 2rem;
}

.funder-logos img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-height: 60px;
}

.funder-logos img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .funder-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .funder-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .funder-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .ceo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.entrepreneurs {
    padding: 4rem 2rem;
    text-align: center;
    background: white;
}

.entrepreneurs h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.entrepreneur-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    padding: 2rem;
}

.entrepreneur-logos img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-height: 60px;
}

.entrepreneur-logos img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .entrepreneur-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .entrepreneur-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .entrepreneur-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.testimonials {
    padding: 4rem 2rem;
    background: #f8f8f8;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.testimonials-swiper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    width: 1200px;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Swiper navigation customization */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-color);
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    text-align: center;
}

.revenue-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.revenue-btn {
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hidden {
    display: none;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.close-btn:hover {
    color: #333;
}

#exit-popup .modal-content {
    position: relative;
    padding-top: 3rem;
}

#exit-popup iframe {
    margin-top: 1rem;
    max-width: 100%;
}

/* Video section styling */
.video-section {
    padding: 2rem 0;
}

.video-section ul {
    margin: 1rem 0 2rem 0;
    padding-left: 0;
    list-style: none;
}

.video-section li {
    margin-bottom: 0.5rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} 