.header .logo a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
}
.header .menu button {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    font-weight: 600;
    border: none;
}

.main-header {
    background-color: #ea9930 !important;
}

.navbar .nav-link {
    color: #004b88;
    font-size: 16px; /* Default font size */
    font-weight: 800;
    margin: 0px 10px;
    text-transform: uppercase;
    font-family: "Rubik", serif;
}

/* Media query for smaller screens (other client size) */
@media (max-width: 768px) {
    .navbar .nav-link {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}
/* Dropdown hover effect */
.hover-dropdown:hover + .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Smooth transition for dropdown */
.dropdown-menu {
    display: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 20px;
    color: #033567;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0095d9;
    padding-left: 25px;
}

/* Remove default dropdown arrow */
.dropdown-toggle::after {
    display: none;
}

/* Add custom dropdown arrow */
.nav-link.dropdown-toggle:after {
    content: "\f107"; /* FontAwesome arrow down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle:after {
    transform: rotate(180deg);
}

.enroll-now {
    background-color: #0095d9;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0),
        0 6px 20px rgba(18, 18, 18, 0.1019607843);
    color: #ffffff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 18px;
    touch-action: manipulation;
    transition: box-shadow 0.2s;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
}

.title h3 {
    font-size: 32px;
}

.slider {
    height: auto;
}
.slider img {
    width: 100%;
    height: 100%;
}

.carrer h1 {
    color: #fff;
    font-size: 42px;
}
.carrer span {
    color: #0095d9;
    font-size: 26px;
    font-weight: 500;
    line-height: 30px;
}
.carrer-program {
    background-color: #75849d;
    border-radius: 5px;
    padding: 10px 15px;
}
.carrer-program img {
    width: 40px;
}
.carrer-program h6 {
    color: #fff;
    font-size: 15px;
    margin-top: 10px;
}

//courses Section

.courses-section {
    padding: 10px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0498cc;
    margin-bottom: 2rem;
    text-align: center;
}

.course-card {
    background-color: #ffffff;
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: auto;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .card-img-top {
    transform: scale(1.05);
}

.course-details i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.course-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.btn-enroll,
.btn-details {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-enroll {
    background-color: #033567;
    color: white;
    border: none;
}

.btn-enroll:hover {
    background-color: #2980b9;
    color: white;
}

.btn-details {
    background-color: #f1f3f5;
    color: #033567;
    border: 1px solid #dee2e6;
}

.btn-details:hover {
    background-color: #e9ecef;
    color: var(--text-color);
}

.btn-view-more {
    display: block;
    width: 10%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #fff;
    color: white;
}

#course-carousel .carousel-inner {
    padding: 1rem 0;
}

#course-carousel .carousel-control-prev,
#course-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 100%;
    transform: translateY(-50%);
}

#course-carousel .carousel-control-prev {
    left: -20px;
}

#course-carousel .carousel-control-next {
    right: -20px;
}

#course-carousel .carousel-control-prev-icon,
#course-carousel .carousel-control-next-icon {
    background-image: none;
    font-size: 1.5rem;
    color: white;
}

.carousel-footer {
    bottom: 10px; /* Keep it near the bottom */
    margin-left: 50%; /* Move it to the center horizontally */
    transform: translateX(-50%); /* Adjust for centering from its own width */
    align-items: center;
    padding: 10px;
    display: flex; /* Ensures flex properties work if needed */
    justify-content: center; /* Center content within the footer */
}

.carousel-footer button {
    margin-left: 10px;
    color: #033567;
    border-radius: 50%;
}

.carousel-footer .page-number {
    color: var(--text-color);
    font-size: 1rem;
}

.success-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f1f5f9, #e2e8f0);
}

.success-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.success-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.success-card:hover .video-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.category-badge {
    background: #e0e7ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.success-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.partners-section {
    background-color: #033567;
    padding: 50px 0;
    position: relative;
}

.glow-effect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.2) 0%,
        rgba(99, 102, 241, 0) 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: 5%;
}
.glow-2 {
    bottom: 20%;
    right: 10%;
}
.glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.header-accent {
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-carousel {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.partner-row {
    display: flex;
    gap: 30px;
    animation: slideRight 30s linear infinite;
}

.partner-row:hover {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.partner-card {
    flex: 0 0 200px;
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 80%;
    max-height: 60px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .partners-section {
        padding: 60px 0;
    }
}

.explore-courses {
    align-items: center;
    background-image: url(https://summers.upflairs.com/static/media/Banner-BG-NEW.5afa0173c0af4ca328f5.webp);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    height: 360px;
    position: relative;
}
.explore-courses:before {
    background-color: rgba(0, 51, 102, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.explore-courses h4 {
    font-size: 40px;
    margin: 0 auto;
    width: 70%;
}
.explore-courses__details {
    color: #fff;
    position: relative;
}

//Registration form
.bg-gradient-primary {
    background: linear-gradient(135deg, #ff9416, #ff7b00);
}

.form-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.step-line {
    width: 100px;
    height: 2px;
    background-color: #dee2e6;
    margin: 0 -10px;
}

.form-step.active {
    background-color: #033567 !important;
    color: white !important;
    border-color: #033567 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff9416;
    box-shadow: 0 0 0 0.25rem rgba(255, 148, 22, 0.25);
}

.registration-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #033567;
    border-color: #033567;
    padding: 0.6rem 2rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #0498cc;
    border-color: #0498cc;
}

.form-label {
    font-weight: 500;
    color: #495057;
}

.header-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

//Gallery
.gallery-item {
    cursor: pointer;
    overflow: hidden;
}
.gallery-item img {
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.modal-image {
    max-height: 80vh;
    object-fit: contain;
}

.internship-container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 4rem 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.program-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.internship-card {
    height: 100%;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    border: 1px solid #033567;
}
.card-header-internship {
    background-color: #033567;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.2rem;
    border-bottom: none;
}
.card-body-internship {
    padding: 2rem;
}
.card-heading {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
}
.card-text-internship,
.list-item-internship {
    color: #7f8c8d;
    font-weight: 300;
    list-style: none;
}
.card-text-internship li {
    margin-bottom: 10px;
    list-style: none;
}
.list-item-internship {
    list-style: none;
    border: none;
    padding: 0.5rem 0;
}
.list-item-internship i {
    color: #3498db;
    margin-right: 10px;
}
.icon-container {
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.icon-container i {
    font-size: 32px;
    color: #3498db;
}

//benifits
.benefits-section {
    padding: 80px 0;
}

.benefit-item {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    border: 1px solid #0498cc;
    padding: 20px;
    margin-left: 50px;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #033567;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.benefit-title {
    color: #033567;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.benefit-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
.highlight {
    background-color: #e9ecef;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
}
.highlight-title {
    color: #007bff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.teams__details {
    box-shadow: 0 0 16px rgba(17, 17, 26, 0.1019607843);
    -moz-column-gap: 30px;
    column-gap: 30px;
    display: flex;
    height: 100%;
    padding: 30px;
}
.teams__details .img {
    border-radius: 50%;
    height: 100px;
    overflow: hidden;
    width: 100px;
}
.teams__details .img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
}
.teams__details .description h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
}
.teams__details .description h6 {
    color: #033567;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}
.teams__details .description h6:after {
    background-color: #033567;
    bottom: -9px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 50px;
}
//Professional Teams
.pro-team-section {
    background-color: #033567 !important;
    padding: 100px 0;
    position: relative;
}
.professional-team-card {
    position: relative;
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.professional-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.professional-team-image {
    position: relative;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
}

.professional-team-info {
    position: relative;
    padding: 20px;
    margin-top: -60px;
    background: white;
    border-radius: 15px 15px 0 0;
}

.professional-team-role {
    display: inline-block;
    padding: 5px 15px;
    background: #033567;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.social-links {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #f8f9fa;
    color: #333;
    border-radius: 50%;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.faq {
    background: #fdfdfd;
}
.faq__details {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.0588235294);
}
.faq .accordion-flush .accordion-item:first-child {
    border-top: 0;
}
.faq .accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.faq button.accordion-button.collapsed {
    font-size: 17px;
    font-weight: 500;
}
.faq .accordion-item:last-child {
    border-bottom: 0px;
}

.partner-trust {
    background-color: #033567;
}
.partner-trust img {
    width: 100% !important;
    height: 140px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer {
    background-color: #fff;
    padding: 50px 0;
}
.footer img {
    width: 100%;
}
.footer .qr {
    width: 60%;
}
.footer h5 {
    color: #033567;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}
.footer ul {
    padding: 0;
}
.footer ul li {
    padding-bottom: 10px;
    list-style: none;
}
.footer ul li a {
    color: #033567;
    text-decoration: none;
    font-weight: 600;
}
.footer .footerCopyRight {
    border-top: 1px solid #033567;
    margin-top: 20px;
    padding-top: 20px;
}
.footer .CopyRight h6 {
    color: #033567;
}
.footer ul.SocialMedia li a {
    background-color: #033567;
    border-radius: 5px;
    color: #ffffff;
    font-size: 18px;
    padding: 5px 8px;
}
.footer ul.SocialMedia {
    -moz-column-gap: 20px;
    column-gap: 20px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .registeration .CounSec {
        padding: 15px 0px 15px 0px;
    }
    .registeration .form-div {
        grid-column-gap: 3rem;
        grid-row-gap: 1rem;
        -moz-column-gap: 3rem;
        column-gap: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1rem;
    }
    .teams__details {
        flex-wrap: wrap;
    }
    .testimonial__details img {
        border-radius: 50%;
        height: 100px;
        margin-bottom: 20px;
        margin-top: 0px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100px;
    }
    .title h3 {
        font-size: 20px;
        padding-top: 20px;
    }
    .text-yellow {
        margin-top: 20px;
        width: 100%;
    }
    .explore-courses h4 {
        font-size: 20px;
        margin: 0 auto;
        width: 100%;
    }
    .internship {
        background-color: #033567;
        padding: 0px 0;
    }
    .carrer h1 {
        color: #fff;
        font-size: 24px;
    }
    .carrer {
        margin-top: 20px;
    }
} /*# sourceMappingURL=style.css.map */
.course-title {
    color: #033567;
}
