:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(img/background.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/background.[]) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}
.partner-card,
.partner-logo {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}
.partner-card:hover,
.partner-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.partner-card img,
.partner-logo img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
}

/* Slider */
.partner-slider {
    overflow: hidden;
    position: relative;
}
.partner-track {
    display: flex;
    gap: 30px;
    animation: scrollLeft 40s linear infinite;
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

<style>
/* Funding Partner Cards */
.funding-partner-card {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.funding-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}




/* Funding Partner Cards */
.funding-partner-card {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.funding-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
    background: #fff;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.funding-partner-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Partner Slider Styles */
.partner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partner-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #28a745;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partner-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-logo {
        width: 150px;
        height: 100px;
        margin: 0 15px;
    }
    
    .funding-partner-card {
        height: 120px;
    }
    
    .logo-wrapper img,
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 130px;
        height: 90px;
        margin: 0 10px;
    }
    
    .funding-partner-card {
        height: 100px;
        padding: 15px;
    }
}

/* Remove grayscale filter from any existing styles */
.partner-logo img,
.funding-partner-card img {
    filter: none !important;
}


/* Testimonial Section */
.bg-primary-gradient {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
}

/* Testimonial Cards */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.testimonial-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.testimonial-content {
    padding-left: 20px;
    position: relative;
}

.testimonial-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0d6efd, #0dcaf0);
    border-radius: 3px;
}

/* Rating Stars */
.small-stars i {
    font-size: 0.9rem;
    margin: 0 2px;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.testimonial-dots {
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #dee2e6;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: #0d6efd;
    transform: scale(1.3);
}

/* Hover Effects */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-content:before {
        display: none;
    }
    
    .testimonial-content {
        padding-left: 0;
        padding-top: 30px;
        border-top: 2px solid #f8f9fa;
        margin-top: 30px;
    }
    
    .testimonial-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}
/* Skills Marquee Section */
.skills-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    margin: 20px 0;
}

.skills-marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
    gap: 20px;
    padding: 15px 0;
}

/* Skill Pill Design */
.skill-pill {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    height: 70px;
}

.skill-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.1) 0%,
        rgba(13, 202, 240, 0.1) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-pill:hover::before {
    opacity: 1;
}

.skill-pill i {
    font-size: 1.4rem;
    color: #0d6efd;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(13, 110, 253, 0.2));
}

.skill-pill .skill-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.skill-pill:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(13, 110, 253, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 0 0 2px rgba(13, 110, 253, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}



.skill-pill:hover .skill-name {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(13, 110, 253, 0.1);
}

/* Glowing Effect on Hover */
.skill-pill:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        #0d6efd 0%, 
        #0dcaf0 25%, 
        #0d6efd 50%, 
        #0dcaf0 75%, 
        #0d6efd 100%);
    background-size: 400% 400%;
    border-radius: 52px;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
    opacity: 0.7;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.skills-marquee-wrapper:hover .skills-marquee-track {
    animation-play-state: paused;
}

/* Floating Animation for Some Items */
.skill-pill:nth-child(3n) {
    animation: float 3s ease-in-out infinite;
}

.skill-pill:nth-child(3n+1) {
    animation: float 3.5s ease-in-out infinite 0.5s;
}

.skill-pill:nth-child(3n+2) {
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .skill-pill {
        padding: 15px 20px;
        min-width: 180px;
        height: 65px;
    }
    
    .skill-pill i {
        font-size: 1.2rem;
    }
    
    .skill-pill .skill-name {
        font-size: 1rem;
    }
    
    .skills-marquee-track {
        gap: 15px;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .skill-pill {
        padding: 12px 18px;
        min-width: 160px;
        height: 60px;
        gap: 10px;
    }
    
    .skills-marquee-track {
        gap: 12px;
        animation-duration: 35s;
    }
    
    h2.fw-bold {
        font-size: 1.8rem;
    }
}

/* Gradient Background for Section */
.bg-light {
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #ffffff 30%, 
        #e8f4ff 70%, 
        #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}




.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.7s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(13, 110, 253, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}



/* Section Heading Enhancement */
.text-center.mb-4 h6 {
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: inline-block;
}

.text-center.mb-4 h2 {
    position: relative;
    padding-bottom: 15px;
}

.text-center.mb-4 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        #0d6efd 0%, 
        #0dcaf0 50%, 
        #0d6efd 100%);
    border-radius: 3px;
}
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("../img/background.webp") center center no-repeat;
  background-size: cover;
}

.back-to-top {
    box-shadow: none !important;
    /* Remove any inset shadows */
    box-shadow: inset 0 0 0 rgba(0,0,0,0) !important;
}