/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ac2f3;
    --secondary-color: #0009b5;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1001;
    transition: width 0.2s ease-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.section-nav.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-animation: fadeIn 0.3s ease-out;
    -moz-animation: fadeIn 0.3s ease-out;
    -ms-animation: fadeIn 0.3s ease-out;
    -o-animation: fadeIn 0.3s ease-out;
    animation: fadeIn 0.3s ease-out;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50%) translateX(20px);
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
        -moz-transform: translateY(-50%) translateX(20px);
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
    }
}

@-ms-keyframes fadeIn {
    from {
        opacity: 0;
        -ms-transform: translateY(-50%) translateX(20px);
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(-50%) translateX(0);
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.section-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
    .section-nav-btn {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* For browsers that support backdrop-filter */
@supports ((backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))) {
    .section-nav-btn {
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background: rgba(255, 255, 255, 0.9);
    }
}

.section-nav-btn:hover {
    background: white;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: var(--primary-color);
}

.section-nav-btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(42, 194, 243, 0.3);
    -moz-box-shadow: 0 0 0 3px rgba(42, 194, 243, 0.3);
    box-shadow: 0 0 0 3px rgba(42, 194, 243, 0.3);
}

.section-nav-btn i {
    font-size: 1.2rem;
    line-height: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

@media (max-width: 768px) {
    .section-nav {
        right: 1rem;
    }
    
    .section-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Adjust position when WhatsApp button is present */
@media (max-width: 480px) {
    .section-nav {
        right: 0.8rem;
        bottom: 120px; /* Place above WhatsApp button */
        top: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    .section-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 250%;
    width: auto;
    object-fit: contain;
    transform: translateY(-5px);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Images/Hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
}

.cta-button:hover {
    background: #0009b5;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #f1fcff;
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Drivers Section */
.drivers {
    padding: 5rem 5%;
}

.drivers h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.driver-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.driver-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.driver-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: var(--transition);
}

.button:hover {
    background: #0009b5;
}

/* Yango Partner Section */
.yango-partner {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.yango-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.yango-logo {
    max-width: 300px;
    padding: 1rem;
}

.yango-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.yango-logo img:hover {
    transform: scale(1.05);
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    margin: 1rem auto;
}

.qr-placeholder img{
        width: 100%;
        height: auto;
        object-fit: contain;
        transition: var(--transition);
    }

/* Business Section */
.business {
    padding: 5rem 5%;
}

.business h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.business-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #f1fcff;
}

.business-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.business-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.business-form {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.business-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.business-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.business-form input,
.business-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.business-form textarea {
    height: 150px;
    resize: vertical;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icon:hover {
    color: #0009b5;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #0009b5;
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem;
        font-size: 1rem;
    }

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

    .yango-content {
        flex-direction: column;
    }

    .yango-logo {
        max-width: 250px;
    }

    .business-form {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .features-grid,
    .drivers-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }
}

/* Driver Forms */

.driver-form {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.driver-form.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}
.slick-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
}

.slick-form input,
.slick-form select,
.slick-form textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.slick-form input:focus,
.slick-form select:focus,
.slick-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 194, 243, 0.1);
}

.slick-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.slick-form textarea {
    min-height: 100px;
    resize: vertical;
}

.slick-form button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-form button[type="submit"]:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.toggle-form {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.slick-form input:required,
.slick-form select:required {
    border-left: 3px solid var(--primary-color);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: left;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

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

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .carousel {
        height: 250px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }
}

/* Business Carousel Specific Styles */
.business-carousel {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.business-carousel .carousel-slide img {
    filter: brightness(0.9);
}

.business-carousel .slide-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    padding: 2rem;
}

.business-carousel .slide-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.business-carousel .slide-content p {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.6;
}

.business-carousel .carousel-button {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.business-carousel .carousel-button:hover {
    background-color: #fff;
}

.business-carousel .carousel-dot {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #333;
}

.business-carousel .carousel-dot.active {
    background-color: #333;
}

@media (max-width: 768px) {
    .business-carousel .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .business-carousel .slide-content p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.partners h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.partner-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.partner-card img {
    max-width: 85%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-card:hover img {
    transform: scale(0.95);
    filter: grayscale(0%);
}

.partner-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transition: var(--transition);
    opacity: 0.95;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.partner-card:hover .partner-overlay {
    bottom: 0;
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #FFF;
    transform: translateY(-3px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Responsive WhatsApp Button */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Investors Section */
.investors {
    padding: 5rem 5%;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.investors h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.investors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.investors-text {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.investors-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.investors-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.investors-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background-color: #f1fcff;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .investors-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investors-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .investors-stats {
        grid-template-columns: 1fr;
    }

    .investors-text {
        padding: 1.5rem;
    }

    .investors-text h3 {
        font-size: 1.5rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Social Media Buttons */
.social-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.social-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.social-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.social-button:hover::before {
    transform: translateX(0);
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter {
    background: #1da1f2;
}

.tiktok {
    background: #000000;
}

.linkedin {
    background: #0077b5;
}

/* Animation for social buttons */
.social-button i {
    transition: transform 0.3s ease;
}

.social-button:hover i {
    transform: scale(1.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.social-button:hover {
    animation: pulse 1s infinite;
}

/* Responsive design for social buttons */
@media screen and (max-width: 768px) {
    .social-buttons {
        left: 10px;
    }

    .social-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .social-buttons {
        left: 5px;
    }

    .social-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

#investor-form {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    border: 1px solid #ddd;
}

#investor-form.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.5s ease-out forwards;
} 