/* General Styling */
.header .nav-toggle {
    display: none;
    /* Hidden by default */
    cursor: pointer;
}

.header .nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
}

.nav-menus-wrapper {
    display: flex;
    /* Default display for desktop */
    justify-content: flex-start;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding-top: 24px;
    margin: 0;
    padding-left: 460px;
    gap: 20px;
}

.nav-menu li {
    margin-right: 20px;
    /* Add spacing between items */
}

.nav-menu-social {
    margin-left: 20px;
}

/* Mobile View */
@media (max-width: 768px) {

    /* Hide menu items on mobile and show toggle button */
    .nav-brand img {
        max-width: 120px;
        position: relative;
        top: -2px;
    }

    .header .nav-toggle {
        display: block;
        /* Show the toggle button on mobile */
    }

    .nav-menus-wrapper {
        display: none;
        /* Hide menu by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1000;
        flex-direction: column;
        border-top: 1px solid #ddd;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menus-wrapper.active {
        display: flex;
        /* Show menu when 'active' class is added */
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .nav-menu li {
        /* padding: 10px 20px; */
        /* border-bottom: 1px solid #ddd; Separate menu items with a line */
        text-align: center;
        /* Center align text */
    }

    .nav-menu-social {
        margin-top: 20px;
        padding: 10px 20px;
    }
}


.courses-section {
    text-align: center;
    padding: 50px 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* .courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
} */

.course-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    /* Set default transparent border */
}

.course-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #0294ec;
    /* Border color change on hover */
    background-color: #f9f9f9;
    /* Light background change on hover */
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
    /* Slight zoom on image hover */
}

.course-info {
    padding: 20px;
}

.course-info h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.course-info p {
    font-size: 16px;
    color: #555;
}

/* Add Animation for Hover */
.course-card {
    animation: fadeIn 0.5s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* mission and vision */
.mission-vision-container {
    padding: 60px 20px;
    background-color: #f4f6f9;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.mission-vision-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision-content {
    padding: 20px;
}

.mission-vision-title {
    font-size: 28px;
    font-weight: 600;
    color: #0294ec;
    margin-bottom: 20px;
}

.mission-vision-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.mission-vision-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision-card img {
    border-radius: 8px 8px 0 0;
    height: 200px;
    /* Adjust image height */
}

@media (max-width: 768px) {
    .mission-vision-container {
        padding: 40px 10px;
    }

    .mission-vision-card {
        flex-direction: column;
    }

    .mission-vision-title {
        font-size: 24px;
    }

    .mission-vision-description {
        font-size: 14px;
    }
}


/* mission and vision // */
/* Why choice institute */
.why-choose-us-container {
    background-color: #f7f9fc;
    padding: 60px 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.why-choose-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 20px;
}

.icon {
    font-size: 40px;
    color: #0294ec;
    margin-bottom: 15px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-us-container {
        padding: 40px 10px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }
}

/* Why choice institute // */

/* technologies section */
/* Tech Card Styling */
/* Technologies Section Styling */
.tech-scroll-wrapper {
    /* overflow-x: auto; */
    white-space: nowrap;
    padding: 20px 0;
}

.tech-scroll {
    display: inline-flex;
    gap: 20px;
}

.tech-card {
    display: inline-block;
    width: 150px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
}

.tech-card-body {
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
}

.tech-card h5 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}


/* technologies section // */
/* Gallery  */
/* Gallery Section Styling */
.gallery-container {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.gallery-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Gallery Item Styling */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    display: block;
    height: 200px;
    /* Set a fixed height */
    object-fit: cover;
}


/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-container h2 {
        font-size: 28px;
    }
}

/* Gallery  // */

/* team section  */
.team-section {
    background-color: #f4f7fc;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

.card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-15px);
    /* Card lifting effect */
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
    /* Strong shadow on hover */
}

.card-body {
    padding: 20px;
}

.card-body h5 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.card-body p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

.team-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #fff;
    transition: transform 0.3s ease-in-out;
}

.card:hover .team-image {
    transform: scale(1.1);
    /* Slight zoom effect on image */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding-top: 10px;
}

.social-icon:hover {
    background-color: #007bff;
    /* Blue on hover */
    transform: scale(1.1);
    /* Icon zoom effect */
}

.social-icon i {
    pointer-events: none;
}

@media (max-width: 768px) {
    .card-body h5 {
        font-size: 1.2rem;
    }

    .card-body p {
        font-size: 0.95rem;
    }
}

/* team section  // */