/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #282c2f;
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Navigation Bar */
/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #111;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ff5f3c;
}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(17, 17, 17, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem;
        text-align: center;
    }

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

    .nav-links li {
        display: block;
        padding: 10px 0;
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: url('images/hero_background.jpg') no-repeat center center/cover;
    position: relative;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    background-color: #c10d20;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

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

/* Features Section */
.features {
    padding: 4rem 2rem;
    text-align: center;
    width:100%;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 2px rgba(255, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item img {
    max-width: 100px;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #000;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.testimonial-slide {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Signup & Contact Sections Alignment Fix */
.signup, .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.signup h2, .contact h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact form {
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 1);
}

.contact label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-align: left;
}

.contact input, 
.contact textarea {
    width: calc(100% - 20px);
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact button {
    width: 100%;
    padding: 1rem;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact button:hover {
    background: #c10d20;
}
.cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.4rem;
}
/* Footer */
/* Footer Styling */
footer {
    background-color: #111;
    padding: 3rem 2rem;
    color: white;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap;
    text-align: left;
}

.footer-column {
    flex: 1;
    margin: 0 1rem;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c10d20;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #c10d20;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c10d20;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    text-decoration: none;
    z-index: 999;
}

/* Hover Effect */
.fixed-cta:hover {
    background: #c1272d;
    transform: scale(1.05);
}




/* Investors Section */
.investors-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
}

.investors-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #c10d20;
}

.investors-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.investor-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c10d20;
}

.highlight p {
    font-size: 1rem;
    line-height: 1.5;
}

.cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #c10d20;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .investor-highlights {
        flex-direction: column;
        align-items: center;
    }
}


/* Mobile Optimization */
@media (max-width: 768px) {
    .fixed-cta {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Social Icons */
.social-icons i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }
}


.coaches-parents {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #222;
    border-radius: 10px;
    color: white;
    width: 100%;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab-button {
    background: #444;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.tab-button.active, .tab-button:hover {
    background: #c10d20;
}

.tab-content {
    max-width: 600px;
    margin: auto;
    padding: 1.5rem;
    background: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Fix Coaches & Parents Section */
.coaches-parents {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #282c2f;
    border-radius: 10px;
    color: white;
    max-width: 100%; /* Limit width */
    margin: auto; /* Center the section */
}

/* Grid Layout - Adjust for Smaller Screens */
.coaches-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 80%;
    margin: auto;
}

/* Fix Individual Boxes */
.coach-parent-item {
    background-color: #282c2f;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
    text-align: center;
    width: 45%; /* Reduce width */
    min-width: 280px; /* Prevent from getting too small */
    transition: transform 0.3s ease-in-out;
}

.coach-parent-item:hover {
    transform: scale(1.05);
}

/* Responsive Fixes for Smaller Screens */
@media (max-width: 768px) {
    .coaches-grid {
        flex-direction: column;
        align-items: center;
    }

    .coach-parent-item {
        width: 100%;
        padding: 1.5rem;
    }
}

i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c10d20;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: url('images/hero-image.jpg') no-repeat center center/cover;
    position: relative;
}

.feature-item img {
    width: 60px;
    margin-bottom: 1rem;
}

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

.hero-content, .feature-item, .coach-parent-item {
    animation: fadeIn 1s ease-in-out;
}

.why-we-help {
    text-align: center;
    padding: 6rem 2rem;
    background: #111;
    color: white;
    width:100%;
}

.why-we-help h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.why-container {
    max-width: 800px;
    margin: auto;
    background: #222;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 4cap rgba(255, 0, 0, 0.2);
    text-align: left;
}

.why-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.why-text strong {
    color: #e63946;
}

/* Integration Section Styles */
.integration {
    padding: 6rem 2rem;
    text-align: center;
    background: #f9f9f9;
    color: #282c2f;
    width:100%
}

.integration h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.integration-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.integration-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

/* Pricing Section Styles */
.pricing {
    padding: 6rem 2rem;
    text-align: center;
    background: #fff;
    color: #000;
    width:100%
}

.pricing h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.pricing-content ul {
    list-style-type: none;
    padding: 0;
}

.pricing-content ul li {
    background: #f0f0f0;
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 5px;
}


/* Adjust grid layouts for smaller screens */
@media (max-width: 768px) {
    .feature-grid,
    .coaches-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature-item,
    .coach-parent-item {
        width: 100%;
        padding: 1.5rem;
    }

    .why-we-help,
    .integration,
    .pricing {
        padding: 4rem 1.5rem;
    }

    .testimonial-slide {
        max-width: 100%;
    }

    .cta-button {
        padding: 1rem;
        font-size: 1.2rem;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    nav .logo {
        font-size: 1.8rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .feature-item,
    .coach-parent-item {
        padding: 1rem;
    }

    .pricing h2,
    .why-we-help h2 {
        font-size: 2rem;
    }
}