/* General Styles */
/*  */

/* body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
} */

/* navbar */


h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Classes Section */
.classes-section {
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    /* background-color: #111; */
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 83px;
    background: linear-gradient(225deg, #232526, #414345);
    /* background: linear-gradient(60deg, #f83600, #f9d423); */


}

.class-item {
    margin: 10px 0;
    padding: 20px;
    /* background-color: #222; */
    border-radius: 5px;
    border-bottom: 2px solid white;
    background: linear-gradient(120deg, #360033, #0b8793);

}

.book-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #d9534f;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.book-btn:hover {
    background-color: #c9302c;
}

#date{
margin-top: 10px;
width: 100px;
    height: 36px;
    box-shadow: 2px 0px 11px 1px white;
    border: blue;
    border: 0.5px solid blue;
    border-radius: 5px;
    margin-left: 75px;
    
}

.date{
    color: orange;
    font-size: 25px;
}
.time{
    color: orange;
    font-size: 25px;
}
.duration{
    color: orange;
    font-size: 25px;
}
#time{
margin-top: 10px;
width: 100px;
    height: 36px;
    box-shadow: 2px 0px 11px 1px white;
    border: blue;
    border: 0.5px solid blue;
    border-radius: 5px;
    margin-left: 61px;
}
#duration{
margin-top: 10px;
width: 100px;
    height: 36px;
    box-shadow: 2px 0px 11px 1px white;
    border: blue;
    border: 0.5px solid blue;
    border-radius: 5px;
    
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    text-align: left;
    color: #fff;
}

.modal-content h2 {
    margin-top: 0;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    float: right;
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.back-btn, .proceed-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
}

.back-btn {
    background-color: #555; /* Gray color for "Back to Classes" button */
}

.proceed-btn {
    background-color: #d9534f; /* Red color for "Proceed to Payment" button */
}

.proceed-btn:hover {
    background-color: #c9302c;
}


/* General Styles */
/* body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 20px;
} */

.activities-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    /* background-color: #f5f5f5; */
}

.activities-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background-color: #e8e8e8;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.activity-number {
    background-color: #7e57c2;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 10px;
}

.activity-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: black;
}

.activity-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.learn-more {
    font-size: 0.9rem;
    color: #7e57c2;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* footer */
footer {
   
    background-color:#0f1f50;
    color: #fff;
    padding: 20px 0;
    margin-top: 28px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.footer-left,
.footer-middle,
.footer-right {
    width: 22%;
}

.footer-left h2 {
    color: white;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-left button {
    background-color: #7c8ec7;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
}

.footer-middle h3,
.footer-right h3 {
    margin-bottom: 10px;
    /* color:white; */
    color: blueviolet;
    font-size: 30px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a,
.footer-right ul li a {
    color: #fff;
    text-decoration: none;
    font-size: bold;
    font-size: 20px;
}

.footer-right p {
    margin: 5px 0;
}

.footer-right .social-media a {
    margin-right: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding: 10px 50px;
    background-color: #0f1f50;
    text-align: center;
    
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .payment-icons img {
    margin-right: 10px;
}
.link{
    width: 11%;
    height: 100%;
}
.face{
    width: 11%;
    height: 100%;
}
.social{
    width: 12%;
    height: 100%;
}
.twitt{
    width: 11%;
    height: 100%;
}
.youtube{
    width: 11%;
    height: 100%;
}
.visa{
    width: 19%;
    height: 42%;
}
.master{
    width: 30%;
    height: 42%;
}
.discover{
    width: 40px;
    object-fit: contain;
}
.paypal{
   /* width: 19%;
    height: 42%;*/
    width: 31%;
    height: 42%;
    padding-top: 13px;
}
.payment-icons{
    display: flex;
    width: 20%;
    height: 20%;
}
.email{
    width: 8%;
    display: none;
}
.tele{
    width: 8%;
    display: none;
}
.clock{
    width: 8%;
    display: none;
}
.accept{
    padding-top: 18px;
    padding-left: 424px;
}
.crystal{
    padding-top: 20px;
}
.Emailfirst{
    
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.clockthird{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.telephonesecond{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.li{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.li img{
   
    border-radius: 30px;
    box-shadow: 10px ;
}
.li1{
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.li1 img{
    width: 80%;
    height: 200%;
    border-radius: 30px;
    box-shadow: 10px ;
}
.li img{
    width: 80%;
    height: 200%;
} 
.block{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.aboutus{
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
    margin: 0px;
}
.outer-section{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 3px 0px;
}

/* Mobile View for Footer */
@media (max-width: 768px) {
    footer {
        padding: 10px 0;
        transform: translateY(346PX);
    }

    .footer-container {
        flex-direction: column; /* Stacks sections vertically */
        padding: 10px 20px;
        align-items: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%; /* Full width for better spacing */
        margin-bottom: 20px; /* Adds spacing between sections */
        text-align: center; /* Centers content */
    }

    .footer-left h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-left p {
        font-size: 12px;
    }

    .footer-left button {
        width: 80%; /* Adjusts button width for smaller screens */
        padding: 8px;
        font-size: 14px;
    }

    .footer-middle h3,
    .footer-right h3 {
        font-size: 24px;
    }

    .footer-middle ul,
    .footer-right ul {
        padding: 0;
        text-align: center;
    }

    .footer-middle ul li,
    .footer-right ul li {
        margin-bottom: 8px;
    }

    .footer-middle ul li a,
    .footer-right ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column; /* Stacks elements vertically */
        padding: 10px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .payment-icons {
        justify-content: center; /* Centers payment icons */
        width: 100%;
        margin-top: 10px;
    }

    .payment-icons img {
        width: 40px;
        height: auto; /* Maintains aspect ratio */
        margin-right: 5px;
    }

    .social-media a {
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    /* Adjustments for additional sections */
    .block {
        width: 100%;
        margin-bottom: 10px;
    }

    .aboutus {
        font-size: 24px;
        text-align: center;
    }

    .outer-section {
        height: auto;
        flex-direction: column;
    }
}