/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

h1, h2, h3 {
    line-height: 1.2;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1BD761;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 10px;
    transition: all 0.3s linear;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
    }
    
    nav ul li a {
        padding: 15px;
        display: block;
    }
}

/* Hero Section */
.hero {
    background-color: #1BD761;
    color: white;
    padding: 60px 0;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-button {
    background-color: #FFB31A;
    color: #333;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 15px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #E6A118;
}

.watch-button {
    background-color: #FF974D;
    color: white;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.watch-button:hover {
    background-color: #E68745;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.social-icon i {
    color: white;
    font-size: 16px;
}

/* Clients Section */
.clients {
    padding: 60px 0;
    text-align: center;
}

.clients-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.client-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logos img:hover {
    opacity: 1;
}

.testimonial-small {
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    font-style: normal;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.8rem;
    color: #666;
    font-style: normal;
}

/* Project Mamba Section */
.project-mamba {
    background-color: #F0F9FF;
    padding: 60px 0;
    text-align: center;
}

.led-by {
    color: #666;
    margin-bottom: 10px;
}

.project-mamba h2 {
    color: #6246EA;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.mamba-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mamba-image {
    flex: 1;
    text-align: right;
}

.mamba-image img {
    max-width: 80%;
    border-radius: 10px;
}

.mamba-button-container {
    margin-top: 30px;
}

.mamba-button {
    background-color: #1BD761;
    color: white;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.mamba-button:hover {
    background-color: #18BF57;
}

/* Mental Health Stats Section */
.mental-health-stats {
    padding: 60px 0;
}

.stats-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stats-image {
    flex: 1;
}

.stats-text {
    flex: 1;
}

.stats-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.stats-text ul {
    margin-bottom: 25px;
}

.stats-text ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.stats-text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #1BD761;
    border-radius: 50%;
}

.stats-highlight {
    color: #E63946;
    font-weight: bold;
    margin-bottom: 15px;
}

.download-button {
    background-color: #1BD761;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #18BF57;
}

/* Win Mental Game Section */
.win-mental-game {
    background-color: #F8F9FA;
    padding: 60px 0;
}

.win-mental-game h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.win-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.win-text {
    flex: 1;
}

.win-text ul {
    margin-bottom: 25px;
}

.win-text ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.win-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1BD761;
    font-weight: bold;
}

.win-button {
    background-color: #1BD761;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.win-button:hover {
    background-color: #18BF57;
}

.win-image {
    flex: 1;
    text-align: right;
}

.win-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Help Teams Section */
.help-teams {
    padding: 60px 0;
    text-align: center;
}

.help-teams h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.help-teams ul {
    max-width: 600px;
    margin: 0 auto 20px;
}

.help-teams ul li {
    padding: 5px 0;
    color: #1BD761;
    font-weight: bold;
}

.help-teams p {
    margin-bottom: 25px;
}

.book-call {
    background-color: #1BD761;
    color: white;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.book-call:hover {
    background-color: #18BF57;
}

/* Testimonials Section */
.testimonials, .testimonials-2 {
    padding: 60px 0;
    background-color: #F8F9FA;
    text-align: center;
}

.testimonial-slider, .testimonial-slider-2 {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-slide p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-navigation {
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #1BD761;
}

/* Book Section */
.book-section {
    padding: 60px 0;
}

.book-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.book-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.book-image {
    flex: 1;
    text-align: center;
}

.book-image img {
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.book-text {
    flex: 1;
}

.book-text p {
    margin-bottom: 15px;
}

.book-button {
    background-color: #1BD761;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #18BF57;
}

/* Resources Section */
.resources {
    padding: 60px 0;
    text-align: center;
}

.resources h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.resource-item {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-item img {
    width: 100%;
}

.resource-item h3 {
    padding: 15px;
    font-size: 1.2rem;
}

.resource-item p {
    padding: 0 15px 15px;
    color: #666;
}

.resource-link {
    display: inline-block;
    color: #1BD761;
    font-weight: bold;
    padding: 10px 15px 15px;
}

.resources-navigation {
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-nav ul li {
    margin: 0 15px;
}

.footer-nav ul li a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #1BD761;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .client-logos {
        gap: 15px;
    }
    
    .client-logos img {
        height: 20px;
    }
    
    .mamba-content, 
    .stats-content, 
    .win-content, 
    .book-content {
        flex-direction: column;
    }
    
    .win-image, .stats-image {
        margin-bottom: 30px;
    }
    
    .book-image {
        margin-bottom: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav ul li {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button, .watch-button {
        width: 100%;
        margin: 10px 0;
    }
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
