* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* overflow-x: hidden; */
    /* background-color: gray; */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

nav {
    /* overflow-x: visible; */
}

.section-break {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #4a6cf7 20%,
            #4a6cf7 50%,
            #4a6cf7 80%,
            transparent 100%);
    margin: 40px 0;
    position: relative;
}

.section-break::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #4a6cf7;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 15px rgba(74, 108, 247, 0.5);
}

.custom-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
}

/* About Section Custom Styles */
.about-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.know-more-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

/* App Download Section Custom Styles */
.app-download {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
}

.app-download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-download img {
    max-width: 100px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.app-download .app-download-item:nth-child(3) img {
    max-width: 70px;
}

.app-download img:hover {
    transform: scale(1.1);
}

.video-section {
    text-align: center;
    margin: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 56.25%;
    /* Default aspect ratio for smaller screens (16:9) */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 1024px) {
    .video-container {
        width: 560px;
        /* Fixed width for larger screens */
        height: 315px;
        /* Fixed height for larger screens */
        padding-top: 0;
        /* No padding for fixed size */
    }

    .video-container iframe {
        width: 560px;
        height: 315px;
    }
}


.app_image_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app_image_container img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }

    .app-download {
        flex-direction: column;

    }

    .app-download h3 {
        font-size: 15px;
    }

    .app-download img {
        max-width: 50px;
    }

    .app-download .app-download-item:nth-child(3) img {
        max-width: 30px;
    }

    .app-download-item {
        margin-bottom: 30px;
    }

    .video-section video {
        max-width: 100%;
    }

    .app_image_container {
        flex-direction: column;
        /* Stack images vertically on smaller screens */
        align-items: center;
        /* Center the images */
    }

    .app_image_container img {
        width: 90%;
        /* Adjust image width on small screens */
        max-width: none;
        /* Remove the max-width constraint */
        margin-bottom: 15px;
        /* Add space between stacked images */
    }
}

/* Team Section Custom Styles */
.team-section {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: #f8f9fa;
    /* Light background */
}

.team-section h2 {
    margin-bottom: 30px;
    color: #333;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    max-width: 300px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease; */
}

/* .team-member:hover {
    transform: scale(1.05);
} */
.team-member img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007bff;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.team-member p {
    margin: 5px 0;
    color: #555;
}

.social_contact {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.social_contact li {
    margin: 0 10px;
}

.social_contact li a {
    font-size: 18px;
    color: #555;
    transition: color 0.3s ease;
}

.social_contact li a:hover {
    color: #007bff;
}


@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 100px;
}

.sponsor_heading {
    text-align: center;
}





.footer {
    background-color: inherit;
    padding: 40px 20px;
    color: #333;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

.copyright {
    text-align: center;
    padding: 20px;
    background-color: #e9ecef;
    color: #666;
    margin-top: 50px;
}

@media screen and (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-logo {
        grid-column: span 3;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo {
        grid-column: span 2;
    }
}

@media screen and (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        display: none;
    }
}

.section-break {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #4a6cf7 20%,
            #4a6cf7 50%,
            #4a6cf7 80%,
            transparent 100%);
    margin: 40px 0;
    position: relative;
}

.section-break::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #4a6cf7;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, 0 0 15px rgba(74, 108, 247, 0.5);
}

.contact-container {

    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.contact-card {
    background: white;
    border-radius: 16px;
    width: 350px;
    max-width: 95%;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: #4a6cf7;
    transform: translateY(-10px);
}

.contact-title {
    font-size: 1.5rem;
    color: #1d2b4f;
    margin-bottom: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.contact-details {
    text-align: center;
    color: #4a6cf7;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: #4a6cf7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3a5bf0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 90%;
        max-width: 400px;
    }

}


.card-slider {
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;

}

.card-container {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.card-inner {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-inner:hover {
    transform: scale(1.05);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-description {
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 992px) {
    .card {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}