@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;family=Spartan:wght@400;500;600;700;800&amp;display=swap);


.filter-buttons-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #28a745;
    background: white;
    color: #28a745;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    text-decoration: none;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 100%;
}

.course-count {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.course-count span {
    color: #28a745;
    font-weight: 600;
}

.course-row {
    transition: all 0.3s ease;
}

.course-row.hidden {
    display: none;
}

.course-row.visible {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-card.hidden {
    display: none;
}

.course-card.visible {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.course-table-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
}

.course-table-container::before {
    display: none;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.course-table th {
    background: #1a7f37;
    color: #fff;
    padding: 18px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    text-shadow: none;
    transition: none;
}

.course-table th::before {
    display: none;
}

.course-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #f1f3f4;
    color: #222;
    font-size: 14px;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}

.course-table tr {
    transition: background 0.2s;
    border-left: none;
}

.course-table tr:hover {
    background: #f6f8fa;
    box-shadow: none;
    transform: none;
}

.course-table tr:hover td {
    color: #1a7f37;
    font-weight: 600;
    background: #f6f8fa;
}

.course-name {
    font-weight: 600;
    color: #222;
    font-size: 15px;
    transition: color 0.2s;
}

.course-table tr:hover .course-name {
    color: #1a7f37;
    text-shadow: none;
    transform: none;
}

.course-type {
    color: #1a7f37;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: #f1f3f4;
    border-radius: 12px;
    display: inline-block;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.course-table tr:hover .course-type {
    color: #fff;
    background: #1a7f37;
    border: none;
    box-shadow: none;
    transform: none;
}

.course-duration {
    color: #666;
    font-weight: 500;
    position: relative;
    font-size: 14px;
}

.course-table tr:hover .course-duration {
    color: #1a7f37;
    text-shadow: none;
}

.course-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.apply-btn,
.read-more-btn-d {
    padding: 9px 18px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    font-size: 13px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: none;
}

.apply-btn {
    background: #1a7f37;
    color: #fff;
}

.apply-btn:hover {
    background: #145c2a;
    color: #fff;
}

.read-more-btn-d {
    background: #f1f3f4;
    color: #1a7f37;
    border: 1px solid #1a7f37;
}

.read-more-btn-d:hover {
    background: #1a7f37;
    color: #fff;
}

/* Remove all keyframes and extra animations */
@keyframes slideInUp {}

@keyframes pulse {}

@keyframes bounce {}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 1024px) {
    .course-table-container {
        border-radius: 10px;
        margin-bottom: 24px;
    }

    .course-table th,
    .course-table td {
        padding: 14px 10px;
        font-size: 13px;
    }

    .course-name {
        font-size: 14px;
    }

    .course-buttons {
        gap: 7px;
    }

    .apply-btn,
    .read-more-btn-d {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .course-table-container {
        border-radius: 8px;
        overflow-x: auto;
    }

    .course-table {
        min-width: 600px;
    }

    .course-table th,
    .course-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .course-name {
        font-size: 13px;
    }

    .course-type {
        padding: 4px 8px;
        font-size: 11px;
    }

    .course-buttons {
        gap: 5px;
    }

    .apply-btn,
    .read-more-btn-d {
        padding: 7px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .course-table-container {
        margin: 0 4px 12px 4px;
        border-radius: 6px;
    }

    .course-table {
        min-width: 400px;
    }

    .course-table th,
    .course-table td {
        padding: 7px 4px;
        font-size: 11px;
    }

    .course-name {
        font-size: 12px;
    }

    .course-type {
        padding: 3px 6px;
        font-size: 10px;
    }

    .course-duration {
        font-size: 11px;
    }

    .apply-btn,
    .read-more-btn-d {
        padding: 5px 8px;
        font-size: 10px;
        border-radius: 12px;
    }
}


@media (max-width: 600px) {
    .course-table-container {
        overflow: visible;
    }

    .course-table {
        display: none;
    }

    .course-table-mobile {
        display: block;
        padding: 0 4px 12px 4px;
        background: linear-gradient(135deg, #f8fafc 60%, #e0f7fa 100%);
        border-radius: 18px;
    }

    .course-card {
        background: #fff;
        border-radius: 18px;
        padding: 18px 14px 14px 14px;
        margin-bottom: 22px;
        box-shadow: 0 6px 24px rgba(32, 201, 151, 0.15), 0 2px 8px rgba(30, 41, 59, 0.10);
        border: none;
        position: relative;
        animation: cardStaggerIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        transition: box-shadow 0.2s, transform 0.2s;
    }

    .course-card:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        background: linear-gradient(90deg, #1a7f37 0%, #20c997 60%, #5f6fff 100%);
    }

    .course-card.visible {
        animation: cardStaggerIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes cardStaggerIn {
        0% {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
        }

        80% {
            opacity: 1;
            transform: translateY(-8px) scale(1.03);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .course-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .course-card-name {
        font-weight: 800;
        font-size: 17px;
        color: #1a7f37;
        margin-bottom: 6px;
        line-height: 1.4;
        letter-spacing: 0.2px;
        animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .course-card-type {
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        padding: 5px 16px;
        background: linear-gradient(90deg, #1a7f37 0%, #20c997 60%, #5f6fff 100%);
        border-radius: 14px;
        border: none;
        box-shadow: 0 1px 4px rgba(32, 201, 151, 0.10);
        margin-left: 8px;
        animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    }

    .course-card-duration {
        color: #5f6fff;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 12px;
        animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    }

    .course-card-buttons {
        display: flex;
        gap: 12px;
        margin-top: 8px;
    }

    .course-card-btn {
        flex: 1;
        padding: 14px 0;
        border-radius: 22px;
        font-weight: 800;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
        box-shadow: 0 1px 4px rgba(32, 201, 151, 0.08);
        cursor: pointer;
    }

    .course-card-apply {
        background: linear-gradient(90deg, #1a7f37 0%, #20c997 60%, #5f6fff 100%);
        color: #fff;
        border: none;
    }

    .course-card-apply:active,
    .course-card-apply:focus,
    .course-card-apply:hover {
        background: linear-gradient(90deg, #5f6fff 0%, #20c997 60%, #1a7f37 100%);
        color: #fff;
        box-shadow: 0 4px 16px rgba(32, 201, 151, 0.13);
        transform: translateY(-1px) scale(1.04);
    }

    .course-card-read {
        background: #f1f3f4;
        color: #5f6fff;
        border: 2px solid #5f6fff;
    }

    .course-card-read:active,
    .course-card-read:focus,
    .course-card-read:hover {
        background: #5f6fff;
        color: #fff;
        border-color: #20c997;
        box-shadow: 0 4px 16px rgba(95, 111, 255, 0.13);
        transform: translateY(-1px) scale(1.04);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


.edu-course .thumbnail img,
.course-img-float,
.course-img-glow {
    border-radius: 0;
    box-shadow: 0 6px 32px #4f8cff22;
    border: 3px solid #a0e9ff;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    clip-path: polygon(25% 6%, 75% 6%,
            100% 50%, 75% 94%,
            25% 94%, 0% 50%);
    background: #fff;
}

.edu-course .thumbnail {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}

.edu-course .thumbnail::after {
    display: none;
}

.edu-course:hover .thumbnail img,
.course-anim-float .edu-course:hover .course-img-float,
.course-anim-glow .edu-course:hover .course-img-glow {
    box-shadow: 0 16px 48px #4f8cff33;
    border: 3px solid #ffd700;
    transform: scale(1.07) rotate(-2deg);
}

@media (min-width: 992px) {
    .hero-flex-row {
        flex-direction: row-reverse;
        /* image right, text left */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
    }

    .hero-flex-img {
        flex: 0 0 380px;
        max-width: 380px;
        min-width: 220px;
    }

    .hero-flex-content {
        flex: 1 1 0%;
        min-width: 260px;
        text-align: left;
    }
}

@media (max-width: 991px) {
    .hero-flex-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .hero-flex-img,
    .hero-flex-content {
        width: 100%;
        max-width: 420px;
        text-align: center;
    }
}

.hero-flex-img {
    position: relative;
    z-index: 2;
}

.hero-blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
}

.floating-hero-icon {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 4px 16px #4f8cff22);
}

.floating-icon-1 {
    top: 10%;
    right: 80%;
    width: 48px;
    animation: float1 4.5s ease-in-out infinite;
}

.floating-icon-2 {
    top: 60%;
    right: 90%;
    width: 40px;
    animation: float2 6s ease-in-out infinite;
}

.floating-icon-3 {
    bottom: 10%;
    right: 70%;
    width: 44px;
    animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px) scale(1.04) rotate(-2deg);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(-16px) rotate(8deg);
    }

    100% {
        transform: translateY(0) rotate(-8deg);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0) rotate(8deg);
    }

    50% {
        transform: translateY(-20px) rotate(-8deg);
    }

    100% {
        transform: translateY(0) rotate(8deg);
    }
}

.hero-bubble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bubble {
    position: absolute;
    bottom: -60px;
    background: rgba(160, 233, 255, 0.4);
    border-radius: 50%;
    animation: heroBubbleUp 7s linear infinite;
}

@keyframes heroBubbleUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-600px) scale(1.3);
        opacity: 0;
    }
}

.hero-wavy-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    animation: wavyMove 10s ease-in-out infinite alternate;
}

@keyframes wavyMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(60px);
    }
}

.edu-btn,
.btn,
.btn-medium,
.btn-large {
    transition: background 0.3s, box-shadow 0.3s, color 0.3s;
    box-shadow: 0 2px 12px #4f8cff22;
}

.edu-btn:hover,
.btn:hover,
.btn-medium:hover,
.btn-large:hover {
    background: linear-gradient(90deg, #4f8cff, #a0e9ff);
    color: #fff;
    box-shadow: 0 4px 24px #4f8cff44;
}

.hero-img-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.hero-img-bubble {
    position: absolute;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    opacity: 0.38;
    border-radius: 50%;
    filter: blur(0.5px);
    animation: heroImgBubbleFloat 7s linear infinite, heroImgBubbleParallax 8s ease-in-out infinite;
}

.hero-img-bubble.b1 {
    left: 10%;
    top: 12%;
    width: 22px;
    height: 22px;
    animation-delay: 0.2s;
}

.hero-img-bubble.b2 {
    left: 70%;
    top: 8%;
    width: 16px;
    height: 16px;
    animation-delay: 1.1s;
}

.hero-img-bubble.b3 {
    left: 80%;
    top: 60%;
    width: 18px;
    height: 18px;
    animation-delay: 2.2s;
}

.hero-img-bubble.b4 {
    left: 20%;
    top: 80%;
    width: 14px;
    height: 14px;
    animation-delay: 1.7s;
}

.hero-img-bubble.b5 {
    left: 50%;
    top: 90%;
    width: 20px;
    height: 20px;
    animation-delay: 0.8s;
}

.hero-img-bubble.b6 {
    left: 85%;
    top: 30%;
    width: 12px;
    height: 12px;
    animation-delay: 2.7s;
}

.hero-img-bubble.b7 {
    left: 40%;
    top: 60%;
    width: 15px;
    height: 15px;
    animation-delay: 1.3s;
}

.hero-img-bubble.b8 {
    left: 60%;
    top: 40%;
    width: 10px;
    height: 10px;
    animation-delay: 2.1s;
}

@keyframes heroImgBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-18px) scale(1.1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}

@keyframes heroImgBubbleParallax {
    0% {
        transform: translateY(0) scale(1);
    }

    25% {
        transform: translateY(-6px) scale(1.04);
    }

    50% {
        transform: translateY(4px) scale(0.98);
    }

    75% {
        transform: translateY(-4px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes heroImgBubblePulse {

    0%,
    100% {
        opacity: 0.7;
        filter: blur(0.5px);
    }

    50% {
        opacity: 1;
        filter: blur(1.2px);
    }
}

.hero-animated-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-animated-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    opacity: 0.13;
    animation: heroWavyLineMove 12s ease-in-out infinite alternate;
}

.hero-animated-line.line1 {
    top: 18%;
    animation-delay: 0s;
}

.hero-animated-line.line2 {
    top: 60%;
    animation-delay: 3s;
}

@keyframes heroWavyLineMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(60px);
    }
}

/* --- Background Sparkles/Particles --- */
.hero-sparkle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 60%, #ffd700 100%);
    border-radius: 50%;
    opacity: 0.7;
    animation: heroSparkleAnim 5s linear infinite;
}

.hero-sparkle.s1 {
    left: 12%;
    top: 22%;
    animation-delay: 0.2s;
}

.hero-sparkle.s2 {
    left: 38%;
    top: 12%;
    animation-delay: 1.1s;
}

.hero-sparkle.s3 {
    left: 80%;
    top: 18%;
    animation-delay: 2.2s;
}

.hero-sparkle.s4 {
    left: 60%;
    top: 70%;
    animation-delay: 1.7s;
}

.hero-sparkle.s5 {
    left: 25%;
    top: 80%;
    animation-delay: 0.8s;
}

.hero-sparkle.s6 {
    left: 75%;
    top: 40%;
    animation-delay: 2.7s;
}

@keyframes heroSparkleAnim {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.3);
    }

    60% {
        opacity: 0.8;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* --- Animated Gradient for Wavy Lines --- */
.hero-animated-line line1 path {
    stroke: url(#wavyLineGrad1);
}

.hero-animated-line line2 path {
    stroke: url(#wavyLineGrad2);
}

/* --- Floating Icons Animation --- */
.floating-hero-icon {
    transition: transform 0.4s;
}

.floating-icon-1 {
    animation: float1 4.5s ease-in-out infinite, iconSpin 12s linear infinite;
}

.floating-icon-2 {
    animation: float2 6s ease-in-out infinite, iconScale 7s ease-in-out infinite;
}

.floating-icon-3 {
    animation: float3 5.5s ease-in-out infinite, iconSpin 10s linear infinite reverse;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

/* --- Full Hero Section Bubbles --- */
.hero-bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-bubble {
    position: absolute;
    bottom: -60px;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    border-radius: 50%;
    opacity: 0.32;
    animation: heroBgBubbleUp 9s linear infinite;
}

.hero-bg-bubble.b1 {
    left: 8%;
    width: 32px;
    height: 32px;
    animation-delay: 0s;
}

.hero-bg-bubble.b2 {
    left: 18%;
    width: 40px;
    height: 40px;
    animation-delay: 1.2s;
}

.hero-bg-bubble.b3 {
    left: 30%;
    width: 28px;
    height: 28px;
    animation-delay: 2s;
}

.hero-bg-bubble.b4 {
    left: 42%;
    width: 36px;
    height: 36px;
    animation-delay: 0.7s;
}

.hero-bg-bubble.b5 {
    left: 50%;
    width: 24px;
    height: 24px;
    animation-delay: 1s;
}

.hero-bg-bubble.b6 {
    left: 60%;
    width: 38px;
    height: 38px;
    animation-delay: 2.5s;
}

.hero-bg-bubble.b7 {
    left: 70%;
    width: 30px;
    height: 30px;
    animation-delay: 3s;
}

.hero-bg-bubble.b8 {
    left: 78%;
    width: 34px;
    height: 34px;
    animation-delay: 1.7s;
}

.hero-bg-bubble.b9 {
    left: 90%;
    width: 28px;
    height: 28px;
    animation-delay: 1.5s;
}

.hero-bg-bubble.b10 {
    left: 95%;
    width: 22px;
    height: 22px;
    animation-delay: 2.8s;
}

.hero-bg-bubble.b11 {
    left: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 3.5s;
}

.hero-bg-bubble.b12 {
    left: 55%;
    width: 26px;
    height: 26px;
    animation-delay: 4.1s;
}

@keyframes heroBgBubbleUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    40% {
        opacity: 0.5;
    }

    60% {
        transform: translateY(-320px) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-600px) scale(1.2);
        opacity: 0;
    }
}

.hero-bg-bubble.b3,
.hero-bg-bubble.b7,
.hero-bg-bubble.b10 {
    animation: heroBgBubbleUp 9s linear infinite, heroBgBubblePulse 3.2s ease-in-out infinite;
}

@keyframes heroBgBubblePulse {

    0%,
    100% {
        opacity: 0.7;
        filter: blur(0.5px);
    }

    50% {
        opacity: 1;
        filter: blur(1.2px);
    }
}

/* --- Animated Horizontal Lines --- */
.hero-horizontal-lines-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-horizontal-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 48px;
    opacity: 0.18;
    animation: heroHorizLineMove 14s ease-in-out infinite alternate;
}

.hero-horizontal-line.l1 {
    top: 22%;
    animation-delay: 0s;
}

.hero-horizontal-line.l2 {
    top: 48%;
    animation-delay: 2.5s;
}

.hero-horizontal-line.l3 {
    top: 74%;
    animation-delay: 5s;
}

@keyframes heroHorizLineMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(60px);
    }
}

/* --- Animated Gradient Background --- */
.hero-banner.hero-style-2.bg-image.position-relative.overflow-hidden {
    background: linear-gradient(120deg, #e0f7fa 0%, #f8fdff 50%, #e0e7ff 100%);
    background-size: 200% 200%;
    animation: heroBgGradientMove 16s ease-in-out infinite;
}

@keyframes heroBgGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Bubble Trails (blurred shadow) --- */
.hero-bg-bubble.trail {
    box-shadow: 0 24px 48px 12px #4f8cff33, 0 0 24px 8px #a0e9ff44;
    filter: blur(0.5px);
}

/* --- Entry Animation --- */
.hero-bg-bubble,
.hero-horizontal-line,
.hero-flex-content,
.hero-flex-img {
    opacity: 0;
    transform: translateY(32px);
    animation: heroEntryFadeIn 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.hero-bg-bubble {
    animation-delay: 0.2s;
}

.hero-bg-bubble.b2 {
    animation-delay: 0.4s;
}

.hero-bg-bubble.b3 {
    animation-delay: 0.6s;
}

.hero-bg-bubble.b4 {
    animation-delay: 0.8s;
}

.hero-bg-bubble.b5 {
    animation-delay: 1.0s;
}

.hero-bg-bubble.b6 {
    animation-delay: 1.2s;
}

.hero-bg-bubble.b7 {
    animation-delay: 1.4s;
}

.hero-bg-bubble.b8 {
    animation-delay: 1.6s;
}

.hero-bg-bubble.b9 {
    animation-delay: 1.8s;
}

.hero-bg-bubble.b10 {
    animation-delay: 2.0s;
}

.hero-bg-bubble.b11 {
    animation-delay: 2.2s;
}

.hero-bg-bubble.b12 {
    animation-delay: 2.4s;
}

.hero-horizontal-line.l1 {
    animation-delay: 0.7s;
}

.hero-horizontal-line.l2 {
    animation-delay: 1.1s;
}

.hero-horizontal-line.l3 {
    animation-delay: 1.5s;
}

.hero-flex-img {
    animation-delay: 1.2s;
}

.hero-flex-content {
    animation-delay: 1.4s;
}

@keyframes heroEntryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Horizontal Lines Glow --- */
.hero-horizontal-line-glow {
    position: absolute;
    left: 0;
    width: 100%;
    height: 48px;
    opacity: 0.13;
    filter: blur(8px);
    pointer-events: none;
    animation: heroHorizLineMove 14s ease-in-out infinite alternate;
    z-index: 3;
}

/* Remove previous horizontal lines */
.hero-horizontal-lines-bg,
.hero-horizontal-line,
.hero-horizontal-line-glow {
    display: none !important;
}

/* Single full-width line, centered in hero section */
.hero-single-line-bg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-50%);
}

.hero-single-line {
    width: 100%;
    height: 8px;
    opacity: 0.12;
    display: block;
    animation: heroSingleLineMove 10s ease-in-out infinite alternate;
}

@keyframes heroSingleLineMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(40px);
    }
}

/* Hero image float/scale/rotate animation */
.main-hero-illustration {
    transition: transform 0.18s cubic-bezier(.4, 0, .2, 1);
    animation: heroImgFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes heroImgFloat {
    0% {
        transform: scale(1) rotate(-2deg) translateY(0);
    }

    50% {
        transform: scale(1.04) rotate(2deg) translateY(-12px);
    }

    100% {
        transform: scale(1) rotate(-2deg) translateY(0);
    }
}

/* --- Animated Gradient Text for Hero Headline --- */
.hero-gradient-text {
    background: linear-gradient(90deg, #4f8cff 0%, #ffd700 50%, #4f8cff 100%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradientTextMove 3.5s linear infinite alternate;
}

@keyframes heroGradientTextMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* --- Pulse/Glow Animation for CTA Button --- */
.hero-cta-animate {
    box-shadow: 0 0 0 0 #ffd70088;
    animation: heroCtaPulse 2.2s cubic-bezier(.66, 0, .34, 1) infinite;
    position: relative;
    z-index: 3;
}

@keyframes heroCtaPulse {
    0% {
        box-shadow: 0 0 0 0 #ffd70088;
    }

    70% {
        box-shadow: 0 0 0 16px #ffd70011;
    }

    100% {
        box-shadow: 0 0 0 0 #ffd70000;
    }
}

/* --- Floating Icons Enhancement --- */
.floating-hero-icon {
    opacity: 0.92;
    filter: drop-shadow(0 4px 16px #4f8cff22);
    transition: transform 0.4s, filter 0.3s;
}

.floating-icon-1 {
    top: 10%;
    right: 80%;
    width: 48px;
    animation: float1 4.5s ease-in-out infinite, iconSpin 12s linear infinite;
}

.floating-icon-2 {
    top: 60%;
    right: 90%;
    width: 40px;
    animation: float2 6s ease-in-out infinite, iconScale 7s ease-in-out infinite;
}

.floating-icon-3 {
    bottom: 10%;
    right: 70%;
    width: 44px;
    animation: float3 5.5s ease-in-out infinite, iconSpin 10s linear infinite reverse;
}

/* --- Fade/Slide-in Animation for Hero Content --- */
.hero-flex-content,
.hero-flex-img {
    opacity: 0;
    transform: translateY(32px);
    animation: heroEntryFadeIn 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.hero-flex-img {
    animation-delay: 0.7s;
}

.hero-flex-content {
    animation-delay: 1.1s;
}

@keyframes heroEntryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.custom-course-section {
    font-family: inherit;
}

.course-filter-btn {
    border: 1.5px solid #e0e7ff;
    background: #fff;
    color: #4f8cff;
    font-weight: 600;
    border-radius: 8px;
    padding: 7px 22px;
    margin: 0 2px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #4f8cff11;
    cursor: pointer;
}

.course-filter-btn.active,
.course-filter-btn:hover {
    background: linear-gradient(90deg, #4f8cff, #ffd700);
    color: #fff;
    box-shadow: 0 4px 16px #4f8cff22;
}

.course-card-wrap {
    display: flex;
}

.course-card {
    background: var(--card-bg, #fff);
    border-radius: 18px;
    box-shadow: 0 4px 32px #4f8cff18;
    padding: 28px 18px 22px 18px;
    position: relative;
    overflow: hidden;
    min-width: 240px;
    width: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: transform 0.25s cubic-bezier(.4, 0, .2, 1), box-shadow 0.25s, background 0.3s;
    animation: cardFadeInUp 0.8s cubic-bezier(.4, 0, .2, 1) both;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 32px #ffd70044, 0 2px 12px #4f8cff22;
    background: linear-gradient(120deg, var(--card-bg), #fffbe6 90%);
}

.course-card-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.18;
    z-index: 0;
}

.course-card-badge {
    background: #e0f7fa;
    color: #4f8cff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 3px 12px;
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
}

.course-card-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(0, 0, 0, 0.13);
    border-radius: 8px;
    padding: 8px 24px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px #4f8cff22;
    z-index: 2;
    position: relative;
    text-align: center;
    align-self: center;
}

.course-card-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
    z-index: 2;
    position: relative;
}

.course-card-meta {
    display: flex;
    gap: 18px;
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
}

.course-card-meta i {
    color: #4f8cff;
    margin-right: 4px;
}

.course-card-wishlist {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #ffd70022;
    color: #ffd700;
    font-size: 1.2rem;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.course-card-wishlist:hover {
    background: #ffd700;
    color: #fff;
}

@keyframes cardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 991px) {
    .course-card {
        min-width: 220px;
        min-height: 260px;
    }
}

.course-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px #4f8cff22;
    z-index: 2;
    position: relative;
    background: #fff;
}

/* --- About Area Bubble Animation --- */
.about-bg-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    animation: aboutBubbleFloat 8s linear infinite, aboutBubblePulse 3.5s ease-in-out infinite, aboutBubbleRotate 7s linear infinite;
}

.about-bg-bubble.b1 {
    left: 8%;
    top: 18%;
    width: 38px;
    height: 38px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.about-bg-bubble.b2 {
    left: 22%;
    top: 70%;
    width: 28px;
    height: 28px;
    animation-delay: 1.2s, 0.8s, 0.5s;
}

.about-bg-bubble.b3 {
    left: 60%;
    top: 12%;
    width: 32px;
    height: 32px;
    animation-delay: 2.1s, 1.1s, 0.3s;
}

.about-bg-bubble.b4 {
    left: 80%;
    top: 60%;
    width: 24px;
    height: 24px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

.about-bg-bubble.b5 {
    left: 45%;
    top: 85%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s, 0.5s, 0.2s;
}

.about-bg-bubble.b6 {
    left: 75%;
    top: 35%;
    width: 20px;
    height: 20px;
    animation-delay: 2.7s, 1.3s, 0.6s;
}

@keyframes aboutBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }

    50% {
        transform: translateY(-24px) scale(1.13);
        opacity: 0.32;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }
}

@keyframes aboutBubblePulse {

    0%,
    100% {
        filter: blur(0.5px);
    }

    50% {
        filter: blur(1.2px);
    }
}

@keyframes aboutBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- About Content Fade-in Animation --- */
.about-fade-in {
    opacity: 0;
    transform: translateY(32px);
    animation: aboutFadeIn 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.about-image-gallery.about-fade-in {
    animation-delay: 0.3s;
}

.about-content.about-fade-in {
    animation-delay: 0.6s;
}

@keyframes aboutFadeIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- About Main Image Hover Animation --- */
.about-image-gallery .main-img-1 {
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1), box-shadow 0.3s;
    will-change: transform;
}

.about-image-gallery:hover .main-img-1 {
    transform: scale(1.06) rotate(-2deg) perspective(600px) rotateY(8deg);
    box-shadow: 0 8px 32px #4f8cff33, 0 2px 12px #ffd70033;
}

/* --- Author Box & Award Badge Animation --- */
.about-image-gallery .author-box {
    opacity: 0;
    transform: translateX(-32px);
    animation: aboutSlideInLeft 1.1s 0.7s cubic-bezier(.4, 0, .2, 1) forwards;
}

.about-image-gallery .award-status {
    opacity: 0;
    transform: scale(0.8);
    animation: aboutBounceIn 1.1s 1.1s cubic-bezier(.4, 0, 0.2, 1.4) forwards;
}

@keyframes aboutSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-32px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    60% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Animated Wavy SVG Line --- */
.about-wavy-line-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    z-index: 1;
    pointer-events: none;
}

.about-wavy-line {
    width: 100%;
    height: 48px;
    opacity: 0.13;
    display: block;
    animation: aboutWavyLineMove 12s ease-in-out infinite alternate;
}

@keyframes aboutWavyLineMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(60px);
    }
}

.edu-empower-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.edu-empower-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.edu-empower-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    animation: empowerBubbleFloat 8s linear infinite, empowerBubblePulse 3.5s ease-in-out infinite, empowerBubbleRotate 7s linear infinite;
}

.edu-empower-bubble.b1 {
    left: 12%;
    top: 22%;
    width: 38px;
    height: 38px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.edu-empower-bubble.b2 {
    left: 28%;
    top: 80%;
    width: 28px;
    height: 28px;
    animation-delay: 1.2s, 0.8s, 0.5s;
}

.edu-empower-bubble.b3 {
    left: 70%;
    top: 18%;
    width: 32px;
    height: 32px;
    animation-delay: 2.1s, 1.1s, 0.3s;
}

.edu-empower-bubble.b4 {
    left: 85%;
    top: 70%;
    width: 24px;
    height: 24px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

@keyframes empowerBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.18;
    }

    50% {
        transform: translateY(-24px) scale(1.13);
        opacity: 0.28;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.18;
    }
}

@keyframes empowerBubblePulse {

    0%,
    100% {
        filter: blur(0.5px);
    }

    50% {
        filter: blur(1.2px);
    }
}

@keyframes empowerBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.empower-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px #4f8cff18;
    padding: 32px 20px 28px 20px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(.4, 0, .2, 1), box-shadow 0.25s;
    animation: empFadeInUp 0.9s cubic-bezier(.4, 0, .2, 1) both;
}

.empower-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px #ffd70044, 0 2px 12px #4f8cff22;
}

.empower-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    border-radius: 50%;
    box-shadow: 0 2px 12px #4f8cff22;
    padding: 10px;
    transition: background 0.3s;
}

.empower-card:hover .empower-icon {
    background: linear-gradient(135deg, #ffd700 60%, #4f8cff 100%);
}

.empower-icon img {
    width: 38px;
    height: 38px;
    display: block;
}

.empower-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #4f8cff;
    margin-bottom: 10px;
}

.empower-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

.emp-anim {
    opacity: 0;
    transform: translateY(32px);
    animation: empFadeInUp 0.9s cubic-bezier(.4, 0, .2, 1) forwards;
}

.emp-anim[style*="animation-delay:0.18s"] {
    animation-delay: 0.18s;
}

.emp-anim[style*="animation-delay:0.36s"] {
    animation-delay: 0.36s;
}

@keyframes empFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.edu-blog-area.position-relative {
    overflow: hidden;
}

.blog-bg-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-bg-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.13;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    animation: blogBubbleFloatUp 8s linear infinite, blogBubblePulse 3.5s ease-in-out infinite, blogBubbleRotate 7s linear infinite;
}

.blog-bg-bubble.color2 {
    background: linear-gradient(135deg, #fffbe6 60%, #ffd700 100%);
}

.blog-bg-bubble.color3 {
    background: linear-gradient(135deg, #e0f7fa 60%, #a0e9ff 100%);
}

.blog-bg-bubble.b1 {
    left: 10%;
    top: 18%;
    width: 32px;
    height: 32px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.blog-bg-bubble.b2 {
    left: 22%;
    top: 80%;
    width: 22px;
    height: 22px;
    animation-delay: 1.2s, 0.8s, 0.5s;
}

.blog-bg-bubble.b3 {
    left: 70%;
    top: 12%;
    width: 28px;
    height: 28px;
    animation-delay: 2.1s, 1.1s, 0.3s;
}

.blog-bg-bubble.b4 {
    left: 85%;
    top: 60%;
    width: 18px;
    height: 18px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

.blog-bg-bubble.b5 {
    left: 50%;
    top: 90%;
    width: 24px;
    height: 24px;
    animation-delay: 1.5s, 0.5s, 0.2s;
}

.blog-bg-bubble.b6 {
    left: 35%;
    top: 30%;
    width: 20px;
    height: 20px;
    animation-delay: 2.5s, 1.2s, 0.4s;
    animation-name: blogBubbleFloatDown, blogBubblePulse, blogBubbleRotate;
}

.blog-bg-bubble.b7 {
    left: 60%;
    top: 75%;
    width: 26px;
    height: 26px;
    animation-delay: 1.8s, 0.6s, 0.6s;
    animation-name: blogBubbleFloatSide, blogBubblePulse, blogBubbleRotate;
}

.blog-bg-bubble.b8 {
    left: 80%;
    top: 30%;
    width: 16px;
    height: 16px;
    animation-delay: 2.9s, 1.4s, 0.8s;
}

.blog-bg-bubble.b9 {
    left: 15%;
    top: 60%;
    width: 19px;
    height: 19px;
    animation-delay: 1.1s, 0.9s, 0.2s;
    animation-name: blogBubbleFloatDown, blogBubblePulse, blogBubbleRotate;
}

.blog-bg-bubble.b10 {
    left: 75%;
    top: 85%;
    width: 21px;
    height: 21px;
    animation-delay: 2.2s, 1.1s, 0.5s;
    animation-name: blogBubbleFloatSide, blogBubblePulseBig, blogBubbleRotate;
}

@keyframes blogBubbleFloatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateY(-18px) scale(1.11);
        opacity: 0.22;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes blogBubbleFloatDown {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateY(18px) scale(1.09);
        opacity: 0.19;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes blogBubbleFloatSide {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateX(18px) scale(1.13);
        opacity: 0.19;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes blogBubblePulse {

    0%,
    100% {
        filter: blur(0.5px);
    }

    50% {
        filter: blur(1.2px);
    }
}

@keyframes blogBubblePulseBig {

    0%,
    100% {
        filter: blur(0.5px);
        transform: scale(1);
    }

    50% {
        filter: blur(1.5px);
        transform: scale(1.25);
    }
}

@keyframes blogBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.edu-footer.position-relative {
    overflow: hidden;
}

.footer-bg-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.footer-bg-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.10;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    animation: footerBubbleFloat 10s linear infinite, footerBubblePulse 4s ease-in-out infinite, footerBubbleRotate 9s linear infinite;
}

.footer-bg-bubble.b1 {
    left: 8%;
    top: 30%;
    width: 32px;
    height: 32px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.footer-bg-bubble.b2 {
    left: 22%;
    top: 80%;
    width: 22px;
    height: 22px;
    animation-delay: 1.2s, 0.8s, 0.5s;
}

.footer-bg-bubble.b3 {
    left: 70%;
    top: 18%;
    width: 28px;
    height: 28px;
    animation-delay: 2.1s, 1.1s, 0.3s;
}

.footer-bg-bubble.b4 {
    left: 85%;
    top: 60%;
    width: 18px;
    height: 18px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

.footer-bg-bubble.b5 {
    left: 50%;
    top: 90%;
    width: 24px;
    height: 24px;
    animation-delay: 1.5s, 0.5s, 0.2s;
}

@keyframes footerBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.10;
    }

    50% {
        transform: translateY(-16px) scale(1.09);
        opacity: 0.16;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.10;
    }
}

@keyframes footerBubblePulse {

    0%,
    100% {
        filter: blur(0.5px);
    }

    50% {
        filter: blur(1.1px);
    }
}

@keyframes footerBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.hero-banner .hero-bg-title-anim {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
    font-size: clamp(2.5rem, 10vw, 8rem);
    font-weight: 900;
    color: #4f8cff;
    opacity: 0.13;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 4px 32px #4f8cff33, 0 2px 12px #fff;
    animation: heroBgTitleFadeIn 1.8s cubic-bezier(.4, 0, .2, 1) 0.5s both, heroBgTitleFloat 7s ease-in-out infinite;
}

@keyframes heroBgTitleFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        opacity: 0.13;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes heroBgTitleFloat {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -54%) scale(1.04) rotate(-1deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.course-card-link-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 20px;
    background: linear-gradient(90deg, #4f8cff, #ffd700);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px #4f8cff22;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

.course-card-link-btn:hover {
    background: linear-gradient(90deg, #ffd700, #4f8cff);
    color: #222;
    box-shadow: 0 4px 16px #ffd70022;
}

.course-card-link-full {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.course-card-link-full:hover .course-card {
    box-shadow: 0 8px 32px #ffd70044, 0 2px 12px #4f8cff22;
    background: linear-gradient(120deg, var(--card-bg), #fffbe6 90%);
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
}

.edu-breadcrumb-area.position-relative {
    overflow: hidden;
}

.about-hero-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-hero-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.13;
    background: linear-gradient(135deg, #a0e9ff 60%, #e0f7fa 100%);
    filter: blur(1.2px);
    animation: aboutHeroBubbleFloatUp 10s linear infinite, aboutHeroBubblePulse 5s ease-in-out infinite, aboutHeroBubbleRotate 13s linear infinite;
}

.about-hero-bubble.color2 {
    background: linear-gradient(135deg, #fff 60%, #e0f7fa 100%);
}

.about-hero-bubble.color3 {
    background: linear-gradient(135deg, #e0f7fa 60%, #a0e9ff 100%);
}

.about-hero-bubble.b1 {
    left: 7%;
    top: 16%;
    width: 38px;
    height: 38px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.about-hero-bubble.b2 {
    left: 20%;
    top: 80%;
    width: 28px;
    height: 28px;
    animation-delay: 1.2s, 0.8s, 0.5s;
    animation-name: aboutHeroBubbleFloatDown, aboutHeroBubblePulse, aboutHeroBubbleRotate;
}

.about-hero-bubble.b3 {
    left: 62%;
    top: 10%;
    width: 32px;
    height: 32px;
    animation-delay: 2.1s, 1.1s, 0.3s;
    animation-name: aboutHeroBubbleFloatSide, aboutHeroBubblePulse, aboutHeroBubbleRotate;
}

.about-hero-bubble.b4 {
    left: 82%;
    top: 62%;
    width: 24px;
    height: 24px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

.about-hero-bubble.b5 {
    left: 42%;
    top: 88%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s, 0.5s, 0.2s;
    animation-name: aboutHeroBubbleFloatDown, aboutHeroBubblePulse, aboutHeroBubbleRotate;
}

.about-hero-bubble.b6 {
    left: 78%;
    top: 32%;
    width: 20px;
    height: 20px;
    animation-delay: 2.7s, 1.3s, 0.6s;
    animation-name: aboutHeroBubbleFloatSide, aboutHeroBubblePulse, aboutHeroBubbleRotate;
}

.about-hero-bubble.b7 {
    left: 28%;
    top: 38%;
    width: 18px;
    height: 18px;
    animation-delay: 1.9s, 0.7s, 0.4s;
}

.about-hero-bubble.b8 {
    left: 68%;
    top: 72%;
    width: 26px;
    height: 26px;
    animation-delay: 2.3s, 1.2s, 0.8s;
    animation-name: aboutHeroBubbleFloatSide, aboutHeroBubblePulseBig, aboutHeroBubbleRotate;
}

.about-hero-bubble.b9 {
    left: 88%;
    top: 22%;
    width: 22px;
    height: 22px;
    animation-delay: 1.6s, 0.9s, 0.5s;
    animation-name: aboutHeroBubbleFloatUp, aboutHeroBubblePulse, aboutHeroBubbleRotate;
}

/* Glow effect */
.about-hero-bubble.glow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #fff 60%, #a0e9ff 100%);
    border-radius: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.7);
    animation: aboutHeroBubbleGlow 2.5s linear infinite;
    pointer-events: none;
}

@keyframes aboutHeroBubbleFloatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateY(-22px) scale(1.13);
        opacity: 0.19;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes aboutHeroBubbleFloatDown {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateY(22px) scale(1.09);
        opacity: 0.16;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes aboutHeroBubbleFloatSide {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateX(22px) scale(1.13);
        opacity: 0.16;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 0.13;
    }
}

@keyframes aboutHeroBubblePulse {

    0%,
    100% {
        filter: blur(1.2px);
    }

    50% {
        filter: blur(2.2px);
    }
}

@keyframes aboutHeroBubblePulseBig {

    0%,
    100% {
        filter: blur(1.2px);
        transform: scale(1);
    }

    50% {
        filter: blur(2.5px);
        transform: scale(1.25);
    }
}

@keyframes aboutHeroBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes aboutHeroBubbleGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.7);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* --- About Hero Section Content Animation --- */
.hero-anim-fadein {
    opacity: 0;
    transform: translateY(32px);
    animation: heroFadeInUp 1.2s cubic-bezier(.4, 0, .2, 1) 0.2s forwards;
}

.hero-anim-title {
    opacity: 0;
    transform: translateY(32px);
    animation: heroFadeInUp 1.2s cubic-bezier(.4, 0, .2, 1) 0.4s forwards;
}

.hero-anim-desc {
    opacity: 0;
    transform: translateY(32px);
    animation: heroFadeInUp 1.2s cubic-bezier(.4, 0, .2, 1) 0.7s forwards;
}

@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-bgtext {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.25);
    font-size: 8vw;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #fff 10%, #a0e9ff 60%, #4f8cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #a0e9ff;
    opacity: 0.38;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    animation: aboutHeroBgTextAnim 7s ease-in-out infinite alternate;
    text-shadow:
        0 2px 32px #4f8cff88,
        0 0 18px #fff,
        2px 2px 0 #4f8cff,
        -2px -2px 0 #fff,
        0 0 8px #a0e9ff;
    filter: drop-shadow(0 0 24px #a0e9ffcc);
}

@keyframes aboutHeroBgTextAnim {
    0% {
        opacity: 0.10;
        transform: translate(-50%, -50%) scale(1.1) skewX(-2deg);
    }

    50% {
        opacity: 0.18;
        transform: translate(-50%, -52%) scale(1.22) skewX(2deg);
    }

    100% {
        opacity: 0.13;
        transform: translate(-50%, -50%) scale(1.1) skewX(-2deg);
    }
}

/* About Area Bubble Animation */
.about-bg-bubbles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.22;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    animation: aboutBubbleFloat 8s linear infinite, aboutBubblePulse 3.5s ease-in-out infinite, aboutBubbleRotate 7s linear infinite;
}

.about-bg-bubble.b1 {
    left: 8%;
    top: 18%;
    width: 38px;
    height: 38px;
    animation-delay: 0s, 0.2s, 0.1s;
}

.about-bg-bubble.b2 {
    left: 22%;
    top: 70%;
    width: 28px;
    height: 28px;
    animation-delay: 1.2s, 0.8s, 0.5s;
}

.about-bg-bubble.b3 {
    left: 60%;
    top: 12%;
    width: 32px;
    height: 32px;
    animation-delay: 2.1s, 1.1s, 0.3s;
}

.about-bg-bubble.b4 {
    left: 80%;
    top: 60%;
    width: 24px;
    height: 24px;
    animation-delay: 0.7s, 1.7s, 0.7s;
}

.about-bg-bubble.b5 {
    left: 45%;
    top: 85%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s, 0.5s, 0.2s;
}

.about-bg-bubble.b6 {
    left: 75%;
    top: 35%;
    width: 20px;
    height: 20px;
    animation-delay: 2.7s, 1.3s, 0.6s;
}

@keyframes aboutBubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }

    50% {
        transform: translateY(-24px) scale(1.13);
        opacity: 0.32;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }
}

@keyframes aboutBubblePulse {

    0%,
    100% {
        filter: blur(0.5px);
    }

    50% {
        filter: blur(1.2px);
    }
}

@keyframes aboutBubbleRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* About Area Content Fade-in Animation */
.about-fade-in {
    opacity: 0;
    transform: translateY(32px);
    animation: aboutFadeIn 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.about-image-gallery.about-fade-in {
    animation-delay: 0.3s;
}

.about-content.about-fade-in {
    animation-delay: 0.6s;
}

@keyframes aboutFadeIn {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Reusable Bubble Animation for All Sections --- */
.bubble-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    background: linear-gradient(135deg, #a0e9ff 60%, #4f8cff 100%);
    filter: blur(1.2px);
    animation: bubbleFloat 12s linear infinite, bubblePulse 6s ease-in-out infinite;
}

.bubble.b1 {
    left: 7%;
    top: 16%;
    width: 38px;
    height: 38px;
    animation-delay: 0s, 0.2s;
}

.bubble.b2 {
    left: 20%;
    top: 80%;
    width: 28px;
    height: 28px;
    animation-delay: 1.2s, 0.8s;
}

.bubble.b3 {
    left: 62%;
    top: 10%;
    width: 32px;
    height: 32px;
    animation-delay: 2.1s, 1.1s;
}

.bubble.b4 {
    left: 82%;
    top: 62%;
    width: 24px;
    height: 24px;
    animation-delay: 0.7s, 1.7s;
}

.bubble.b5 {
    left: 42%;
    top: 88%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s, 0.5s;
}

.bubble.b6 {
    left: 78%;
    top: 32%;
    width: 20px;
    height: 20px;
    animation-delay: 2.7s, 1.3s;
}

.bubble.b7 {
    left: 28%;
    top: 38%;
    width: 18px;
    height: 18px;
    animation-delay: 1.9s, 0.7s;
}

.bubble.b8 {
    left: 68%;
    top: 72%;
    width: 26px;
    height: 26px;
    animation-delay: 2.3s, 1.2s;
}

.bubble.b9 {
    left: 88%;
    top: 22%;
    width: 22px;
    height: 22px;
    animation-delay: 1.6s, 0.9s;
}

.bubble.b10 {
    left: 55%;
    top: 55%;
    width: 20px;
    height: 20px;
    animation-delay: 2.9s, 1.5s;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }

    25% {
        transform: translateY(-18px) scale(1.13);
        opacity: 0.22;
    }

    50% {
        transform: translateY(-32px) scale(1.18);
        opacity: 0.28;
    }

    75% {
        transform: translateY(-18px) scale(1.13);
        opacity: 0.22;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
}

@keyframes bubblePulse {

    0%,
    100% {
        filter: blur(1.2px);
    }

    50% {
        filter: blur(2.2px);
    }
}

.brand-slider-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.brand-slider-track {
    display: flex;
    width: calc(12 * 180px);
    animation: brandSliderScroll 18s linear infinite;
}

.brand-grid {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.brand-grid img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(0.2) brightness(1.1);
    transition: filter 0.2s;
}

.brand-grid:hover img {
    filter: none;
}

@keyframes brandSliderScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .brand-slider-track {
        width: calc(12 * 120px);
    }

    .brand-grid {
        flex-basis: 120px;
        padding: 10px 8px;
    }

    .brand-grid img {
        max-width: 80px;
        max-height: 40px;
    }
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vw;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: transparent;
    background: linear-gradient(90deg, #00b4ff 30%, #6ec6ff 70%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.18;
    z-index: 0;
    white-space: nowrap;
    text-align: center;
    filter: drop-shadow(0 2px 16px #00b4ff88) drop-shadow(0 0px 2px #fff) drop-shadow(0 0px 8px #00b4ff44);
    text-shadow: 2px 2px 8px #00b4ff, 0 0 2px #fff, 0 0 12px #00b4ff;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .hero-bg-text {
        font-size: 12vw;
    }
}

.bubble-hero-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2ff 0%, #ffffff 100%);
}

.bubble-hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bubble-hero-bubbles .bubble {
    position: absolute;
    bottom: -120px;
    background: rgba(0, 180, 255, 0.15);
    border-radius: 50%;
    opacity: 0.7;
    animation: bubble-float 16s linear infinite;
}

.bubble-hero-bubbles .bubble:nth-child(1) {
    left: 10%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.bubble-hero-bubbles .bubble:nth-child(2) {
    left: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.bubble-hero-bubbles .bubble:nth-child(3) {
    left: 40%;
    width: 80px;
    height: 80px;
    animation-delay: 4s;
}

.bubble-hero-bubbles .bubble:nth-child(4) {
    left: 55%;
    width: 50px;
    height: 50px;
    animation-delay: 1s;
}

.bubble-hero-bubbles .bubble:nth-child(5) {
    left: 70%;
    width: 70px;
    height: 70px;
    animation-delay: 3s;
}

.bubble-hero-bubbles .bubble:nth-child(6) {
    left: 85%;
    width: 30px;
    height: 30px;
    animation-delay: 5s;
}

.bubble-hero-bubbles .bubble:nth-child(7) {
    left: 15%;
    width: 50px;
    height: 50px;
    animation-delay: 7s;
}

.bubble-hero-bubbles .bubble:nth-child(8) {
    left: 35%;
    width: 30px;
    height: 30px;
    animation-delay: 9s;
}

.bubble-hero-bubbles .bubble:nth-child(9) {
    left: 60%;
    width: 60px;
    height: 60px;
    animation-delay: 11s;
}

.bubble-hero-bubbles .bubble:nth-child(10) {
    left: 80%;
    width: 40px;
    height: 40px;
    animation-delay: 13s;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-600px) scale(1.2);
        opacity: 0;
    }
}

.breadcrumb-inner,
.edu-breadcrumb-area .container {
    position: relative;
    z-index: 1;
}

.college-table-section {
    padding: 60px 0 40px 0;
    background: #f8fbff;
}

.styled-table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px #e0f2ff44;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.styled-table thead tr {
    background: #219653;
}

.styled-table th {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 12px;
    border: none;
}

.styled-table td {
    background: #fff;
    color: #222;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 18px 12px;
    border-top: 1px solid #e0e0e0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.styled-table tbody tr:not(:last-child) td {
    border-bottom: 1.5px solid #e0e0e0;
}

.apply-btn {
    background: #219653;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 10px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #21965322;
    display: inline-block;
    text-decoration: none;
}

.apply-btn:hover {
    background: #176c3a;
    color: #fff;
}

.read-more-bubble.bubble-outline {
    background: #fff;
    color: #219653;
    border: 2px solid #219653;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px #21965311;
    display: inline-block;
    text-decoration: none;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.read-more-bubble.bubble-outline:hover {
    background: #219653;
    color: #fff;
    border-color: #219653;
}

.bubble-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.bubble-effect .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(33, 150, 83, 0.18);
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(1) {
    left: 10%;
    top: 50%;
    width: 10px;
    height: 10px;
    animation: bubble-pop 0.7s linear;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(2) {
    left: 50%;
    top: 10%;
    width: 8px;
    height: 8px;
    animation: bubble-pop 0.8s 0.1s linear;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(3) {
    left: 80%;
    top: 60%;
    width: 12px;
    height: 12px;
    animation: bubble-pop 0.9s 0.2s linear;
}

@keyframes bubble-pop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    30% {
        opacity: 1;
        transform: scale(1.2);
    }

    70% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5) translateY(-20px);
    }
}

@media (max-width: 768px) {
    .college-table-section {
        padding: 30px 0 20px 0;
    }

    .styled-table th,
    .styled-table td {
        padding: 10px 6px;
        font-size: 0.95rem;
    }

    .apply-btn,
    .read-more-bubble.bubble-outline {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

/* Popup Modal Custom Styles */
.enquiry-modal-wrapper {
    background: linear-gradient(120deg, #e0f7fa 0%, #f8fdff 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px #4f8cff22, 0 2px 12px #ffd70022;
    overflow: hidden;
    padding: 0;
}

.enquiry-modal-left {
    background: linear-gradient(135deg, #8badec 60%, #a0e9ff 100%);
    color: #111;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.enquiry-modal-left h4 {
    font-weight: 700;
    margin-bottom: 18px;
}

.enquiry-modal-left ul {
    padding-left: 18px;
    font-size: 1rem;
}

.enquiry-modal-right {
    background: #fff;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 32px 24px;
}

.enquiry-modal-right .modal-title {
    font-weight: 700;
    color: #4f8cff;
}

.enquiry-modal-right .form-label {
    font-weight: 600;
    color: #222;
}

.enquiry-modal-right .form-control {
    border-radius: 8px;
    border: 1.5px solid #e0e7ff;
    box-shadow: 0 2px 8px #4f8cff11;
    margin-bottom: 10px;
}

.enquiry-modal-right .form-control:focus {
    border-color: #4f8cff;
    box-shadow: 0 0 0 2px #4f8cff22;
}

.btn.btn-submit {
    background: linear-gradient(90deg, #4f8cff, #ffd700);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px #4f8cff22;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn.btn-submit:hover {
    background: linear-gradient(90deg, #ffd700, #4f8cff);
    color: #222;
    box-shadow: 0 4px 16px #ffd70022;
}

@media (max-width: 991px) {
    .enquiry-modal-left {
        border-radius: 18px 18px 0 0;
        min-height: 180px;
        padding: 24px 12px;
    }

    .enquiry-modal-right {
        border-radius: 0 0 18px 18px;
        padding: 24px 12px;
    }
}


.popup-bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.8vw;
    font-weight: 900;
    color: #fff;
    opacity: 0.13;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 32px #4f8cff33, 0 2px 12px #fff;
}

.popup-bubbles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.popup-bubble {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    opacity: 0.13;
    animation: popup-bubble-float 7s infinite ease-in-out;
}

.popup-bubble.b1 {
    width: 38px;
    height: 38px;
    left: 12%;
    top: 22%;
    animation-delay: 0s;
}

.popup-bubble.b2 {
    width: 24px;
    height: 24px;
    left: 70%;
    top: 18%;
    animation-delay: 1.2s;
}

.popup-bubble.b3 {
    width: 18px;
    height: 18px;
    left: 60%;
    top: 70%;
    animation-delay: 2.4s;
}

.popup-bubble.b4 {
    width: 28px;
    height: 28px;
    left: 30%;
    top: 80%;
    animation-delay: 3.6s;
}

.popup-bubble.b5 {
    width: 20px;
    height: 20px;
    left: 50%;
    top: 60%;
    animation-delay: 4.8s;
}

@keyframes popup-bubble-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }

    50% {
        transform: translateY(-18px) scale(1.11);
        opacity: 0.22;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.13;
    }
}

.enquiry-modal-left,
.enquiry-modal-left h4,
.enquiry-modal-left ul,
.enquiry-modal-left li,
.enquiry-modal-left a {
    color: #111 !important;
}

/* Popup Modal Submit Button Improvements */
.btn.btn-submit {
    min-width: 180px;
    height: 52px;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px #4f8cff22;
}

.btn.btn-submit:active {
    transform: scale(0.97);
}

.course-table-mobile {
    display: none;
}

@media (max-width: 600px) {
    .course-table-mobile {
        display: block;
        padding: 0 0 18px 0;
        background: linear-gradient(135deg, #f8fafc 60%, #e0f7fa 100%);
        border-radius: 18px;
    }

    .mobile-courses-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 10px 6px 0 6px;
    }

    .mobile-course-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(32, 201, 151, 0.10), 0 2px 8px rgba(30, 41, 59, 0.08);
        padding: 16px 14px 14px 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-course-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2px;
    }

    .mobile-course-type {
        font-weight: 700;
        font-size: 13px;
        padding: 4px 14px;
        border-radius: 12px;
        color: #fff;
        background: #1a7f37;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-course-type.ug {
        background: #1a7f37;
    }

    .mobile-course-type.pg {
        background: #5f6fff;
    }

    .mobile-course-type.diploma {
        background: #20c997;
    }

    .mobile-course-type.certificate {
        background: #ffd700;
        color: #222;
    }

    .mobile-course-duration {
        font-size: 13px;
        color: #5f6fff;
        font-weight: 700;
    }

    .mobile-course-title {
        font-size: 15px;
        font-weight: 800;
        color: #1a7f37;
        margin-bottom: 2px;
        line-height: 1.4;
        letter-spacing: 0.2px;
    }

    .mobile-course-actions {
        display: flex;
        gap: 10px;
        margin-top: 4px;
    }

    .mobile-btn {
        flex: 1;
        padding: 12px 0;
        border-radius: 22px;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
        box-shadow: 0 1px 4px rgba(32, 201, 151, 0.08);
        cursor: pointer;
        border: none;
        outline: none;
        display: inline-block;
    }

    .mobile-btn.apply {
        background: linear-gradient(90deg, #1a7f37 0%, #20c997 60%, #5f6fff 100%);
        color: #fff;
    }

    .mobile-btn.read {
        background: #f1f3f4;
        color: #5f6fff;
        border: 2px solid #5f6fff;
    }

    .mobile-btn.apply:active,
    .mobile-btn.apply:focus,
    .mobile-btn.apply:hover {
        background: linear-gradient(90deg, #5f6fff 0%, #20c997 60%, #1a7f37 100%);
        color: #fff;
        box-shadow: 0 4px 16px rgba(32, 201, 151, 0.13);
        transform: translateY(-1px) scale(1.04);
    }

    .mobile-btn.read:active,
    .mobile-btn.read:focus,
    .mobile-btn.read:hover {
        background: #5f6fff;
        color: #fff;
        border-color: #20c997;
        box-shadow: 0 4px 16px rgba(95, 111, 255, 0.13);
        transform: translateY(-1px) scale(1.04);
    }
}

.course-link {
    display: block;
    padding: 10px 15px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.course-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-color: #ffffff;
}

ul.mainmenu li.active>a {
    color: #1ab69d;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: -400px;
    padding: 15px 25px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 0.5s ease-in-out;
}

.flash-message.success {
    background-color: #4CAF50;
    /* Green */
}

.flash-message.error {
    background-color: #F44336;
    /* Red */
}

.flash-message.show {
    right: 20px;
}


.college-table-section {
    padding: 60px 0 40px 0;
    background: #f8fbff;
}

.styled-table {
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 2px 16px #e0f2ff44;
    border-collapse: collapse;
    width: 100%;
}

.styled-table th,
.styled-table td {
    border: 2px solid #219653;
    background-clip: padding-box;
}

.styled-table thead tr {
    background: #219653;
}

.styled-table th {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 12px;
    border: none;
}

.styled-table td {
    background: #fff;
    color: #222;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 18px 12px;
    border-top: 1px solid #e0e0e0;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.styled-table tbody tr:not(:last-child) td {
    border-bottom: 1.5px solid #e0e0e0;
}

.apply-btn {
    background: #219653;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 10px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #21965322;
    display: inline-block;
    text-decoration: none;
}

.apply-btn:hover {
    background: #176c3a;
    color: #fff;
}

.read-more-bubble.bubble-outline {
    background: #fff;
    color: #219653;
    border: 2px solid #219653;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px #21965311;
    display: inline-block;
    text-decoration: none;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

.read-more-bubble.bubble-outline:hover {
    background: #219653;
    color: #fff;
    border-color: #219653;
}

.bubble-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.bubble-effect .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(33, 150, 83, 0.18);
    opacity: 0;
    pointer-events: none;
    animation: none;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(1) {
    left: 10%;
    top: 50%;
    width: 10px;
    height: 10px;
    animation: bubble-pop 0.7s linear;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(2) {
    left: 50%;
    top: 10%;
    width: 8px;
    height: 8px;
    animation: bubble-pop 0.8s 0.1s linear;
}

.read-more-bubble:hover .bubble-effect .bubble:nth-child(3) {
    left: 80%;
    top: 60%;
    width: 12px;
    height: 12px;
    animation: bubble-pop 0.9s 0.2s linear;
}

@keyframes bubble-pop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    30% {
        opacity: 1;
        transform: scale(1.2);
    }

    70% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.5) translateY(-20px);
    }
}

.visit-website-btn {
    background: #fff;
    color: #176c3a;
    border: 2px solid #219653;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px #21965311;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.visit-website-btn:hover {
    background: #219653;
    color: #fff;
    border-color: #219653;
}

.college-filter-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 18px;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

/* Hide radio buttons */
.college-filter-group input[type="radio"] {
    display: none;
}

/* Style filter labels as buttons */
.college-filter-group label {
    background: #fff;
    color: #219653;
    border: 2px solid #219653;
    border-radius: 30px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 2px 8px #21965311;
    user-select: none;
}

.college-filter-group input[type="radio"]:checked+label {
    background: #219653;
    color: #fff;
    border-color: #219653;
}

/* Table row filtering logic */
#filter-all:checked~.table-responsive table tr[data-type] {
    display: table-row;
}

#filter-central:checked~.table-responsive table tr[data-type] {
    display: none;
}

#filter-central:checked~.table-responsive table tr[data-type="central"] {
    display: table-row;
}

#filter-deemed:checked~.table-responsive table tr[data-type] {
    display: none;
}

#filter-deemed:checked~.table-responsive table tr[data-type="deemed"] {
    display: table-row;
}

#filter-private:checked~.table-responsive table tr[data-type] {
    display: none;
}

#filter-private:checked~.table-responsive table tr[data-type="private"] {
    display: table-row;
}

#filter-state:checked~.table-responsive table tr[data-type] {
    display: none;
}

#filter-state:checked~.table-responsive table tr[data-type="state"] {
    display: table-row;
}

.college-name-tooltip {
    display: inline-block;
    max-width: 160px;
    /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

/* Optional: Custom tooltip on hover (for better style than default title) */
.college-name-tooltip:hover::after {
    content: attr(data-fullname);
    position: absolute;
    left: 0;
    top: 120%;
    background: #222;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: pre-line;
    z-index: 10;
    font-size: 1rem;
    min-width: 180px;
    box-shadow: 0 2px 8px #0002;
    pointer-events: none;
}

@media (max-width: 768px) {
    .college-table-section {
        padding: 30px 0 20px 0;
    }

    .styled-table th,
    .styled-table td {
        padding: 10px 6px;
        font-size: 0.95rem;
    }

    .apply-btn,
    .read-more-bubble.bubble-outline {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .college-name-tooltip {
        max-width: 90px;
    }

    /* Filter buttons full width and stacked */
    .college-filter-group {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 18px;
    }

    .college-filter-group label {
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
        padding: 12px 0;
        border-radius: 8px;
    }

    /* Table as cards */
    .styled-table,
    .styled-table thead,
    .styled-table tbody,
    .styled-table th,
    .styled-table td,
    .styled-table tr {
        display: block;
        width: 100%;
    }

    .styled-table thead {
        display: none;
    }

    .styled-table tr {
        margin-bottom: 18px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 8px #21965322;
        padding: 16px 10px;
        border: 1.5px solid #e0e0e0;
    }

    .styled-table td {
        border: none;
        padding: 6px 0;
        font-size: 1rem;
        position: relative;
    }

    .styled-table td:before {
        content: attr(data-label) ': ';
        font-weight: 600;
        color: #219653;
        display: inline-block;
        min-width: 110px;
    }

    /* Action buttons stacked and full width */
    .styled-table td[data-label="Action"] {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        align-items: stretch;
    }

    .apply-btn,
    .read-more-bubble.bubble-outline,
    .visit-website-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin: 0;
    }
}