*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.lobster-regular {
font-family: "Lobster", serif;
font-weight: 400;
font-style: normal;
}
.satisfy-regular {
font-family: "Satisfy", serif;
font-weight: 400;
font-style: normal;
}
.playfair-display-q {
font-family: "Playfair Display", serif;
font-optical-sizing: auto;
font-weight: 1000;
font-style: normal;
}

@media (max-width: 992px) {
.active{
    font-weight: bold;
}
#color {
color: #333333; 
}
.icon{
    flex-direction: column;
    justify-content: center;
}

}
#reg {
    font-family: "Staatliches", sans-serif;
  }
  
  #reg .input-group .form-control {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    border: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  
  #reg .input-group .btn {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
  
  #reg .input-group .btn i {
    font-size: 1.5rem;
  }
  
  @media (max-width: 768px) {
    #reg .input-group .form-control {
      font-size: 1rem;
      padding: 0.75rem 1rem;
    }
  
    #reg .input-group .btn {
      font-size: 1rem;
      padding: 0.5rem 1rem;
    }
  
    #reg .input-group .btn i {
      font-size: 1.2rem;
    }
  }

footer {
    background-color: #222;
    color: #fff;
    padding-top: 50px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    max-width: 100vw;
}

footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100vw;
    margin: 0 auto;
    padding: 50px;
}

footer .footer-column {
    flex: 1 1 250px;
    margin: 10px;
    min-width: 200px;
}

footer h2 {
    font-size: 2rem;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #aaa;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #fff; 
}

footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

footer .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background-color: #555;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

footer .social-icons a:hover {
    background-color: #f4511e; 
}

footer .contact-info p {
    margin: 5px 0;
}

footer .contact-info p span {
    font-weight: bold;
}

@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-column {
        margin-bottom: 20px;
    }
    footer .social-icons {
        justify-content: center;
    }
}

.footer-bottom{
    background-color: rgb(27, 26, 26);
    text-align: center;
    padding: 1px;
}



/* About Page Styles */
.about-content {
    padding: 2rem 0;
    overflow-x: hidden;
}

.about-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    margin-bottom: 3rem;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-hero p {
    font-size: 1.8rem;
    color: #666;
}

.mission-section {
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    gap: 4rem;
    background-color: white;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.values-container {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.value-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: #7d2ae8;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
}

.team-section {
    padding: 4rem 5%;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.team-member {
    padding: 1rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-member p {
    color: #666;
}

.impact-section {
    padding: 4rem 5%;
    background-color: #7d2ae8;
    color: white;
    text-align: center;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-section {
        flex-direction: column;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero p {
        font-size: 1.5rem;
    }

    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        margin: 0 1rem;
    }
}

/* Additional About Page Styles */
.founder-section {
    padding: 4rem 5%;
    background-color: white;
}

.founder-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.founder-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    flex: 0 0 300px;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-text {
    flex: 1;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.vision-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.vision-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.vision-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-card i {
    font-size: 2.5rem;
    color: #7d2ae8;
    margin-bottom: 1rem;
}

.vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.vision-card p {
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        flex: 0 0 200px;
    }

    .vision-cards {
        grid-template-columns: 1fr;
    }

    .vision-card {
        margin: 0 1rem;
    }
}

.mini-games-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.mini-games-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mini-games-highlights {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    margin-top: 2rem;
    width: 100vw;
}

.mini-game-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    width: 25vw;
    height: auto;
}

.mini-game-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.mini-games-cta .btn {
    margin-top: 2rem;
    padding: 10px 20px;
    font-size: 1.2rem;
}

