/* Custom CSS */
:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --font-body: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: "Sora", "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title,
.navbar-brand,
.nav-link {
    font-family: var(--font-heading);
}

.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Navbar styles */
.navbar {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar-brand {
    font-weight: 700;
}

.nav-shell {
    min-height: 74px;
}

.site-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 500;
    padding: 0.65rem 0.95rem !important;
    color: #004c97;
}

.nav-main-link {
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-main-link:hover,
.nav-main-link:focus-visible {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
}

.register-btn,
.portal-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .dropdown-menu {
    display: none;
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 8px 16px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 0;
    top: 14px;
}

.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
}

.category-icon {
    width: 24px;
    text-align: center;
    margin-right: 8px;
    color: #0d6efd;
}

.course-counter {
    font-size: 0.75rem;
    color: #6c757d;
    margin-left: 5px;
}

.featured-course {
    background-color: #f8f9fa;
    border-left: 3px solid #0d6efd;
}

.dropdown-header {
    font-weight: 600;
    color: #0d6efd;
}

/* Popular courses section */
.popular-courses-section {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    overflow: hidden;
}

.popular-courses-section .section-head {
    max-width: 760px;
}

.section-kicker {
    display: inline-block;
    background: #e7f0ff;
    color: #0a4ea3;
    border: 1px solid #cfe0ff;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.42rem 0.9rem;
    margin-bottom: 1rem;
}

.popular-course-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.popular-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.16);
}

.popular-course-media {
    position: relative;
    overflow: hidden;
}

.popular-course-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.popular-course-card:hover .popular-course-image {
    transform: scale(1.05);
}

.course-category-pill {
    position: absolute;
    right: 14px;
    top: 14px;
    background: rgba(13, 110, 253, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(3px);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    max-width: calc(100% - 28px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-course-body {
    padding: 1.25rem 1.35rem 1rem;
}

.course-price {
    color: #0d6efd;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.course-rating {
    background: #fff6e8;
    color: #b56900;
    border-radius: 999px;
    padding: 0.25rem 0.68rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.course-rating i {
    margin-right: 0.28rem;
}

.course-title {
    font-size: 1.58rem;
    font-weight: 800;
    color: #1e2530;
    line-height: 1.28;
    margin-bottom: 0;
    min-height: 80px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid #e9eef8;
    padding-top: 0.85rem;
}

.course-meta-item {
    color: #4d5f7a;
    font-size: 1rem;
    font-weight: 500;
}

.course-meta-item i {
    color: #0d6efd;
}

.popular-course-footer {
    padding: 0 1.35rem 1.35rem;
}

.course-detail-btn {
    height: 48px;
    font-size: 1.05rem;
    font-weight: 700;
    border-width: 2px;
}

.popular-all-btn {
    min-height: 54px;
    font-weight: 700;
}

/* Carousel styles */
.carousel-item {
    height: 620px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 53%;
    transform: translateY(-50%);
    bottom: auto;
}

/* Custom button styles */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
}

/* Card styles */
.card {
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Image styles */
.rounded-4 {
    border-radius: 1rem;
}

/* Footer styles */
footer a:hover {
    color: var(--primary) !important;
}

/* Form styles */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-shell {
        min-height: auto;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .site-logo {
        height: 54px;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 0.75rem;
    }

    .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Disable hover effects on mobile */
    .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown-menu.show {
        display: block;
    }

    .navbar-nav .btn {
        display: block;
        width: 100%;
        margin-top: 0.5rem;
    }

    .course-title {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 500px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .carousel-caption {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 400px;
    }

    .display-4 {
        font-size: 2rem;
    }

    .carousel-caption .btn {
        margin-bottom: 10px;
    }

    .carousel-caption .d-flex {
        flex-direction: column;
    }

    .popular-course-image {
        height: 200px;
    }

    .course-price {
        font-size: 1.5rem;
    }

    .course-title {
        font-size: 1.4rem;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.55rem;
    }
}

/* partners section */
.partners-section {
    background-color: #044b86;
    padding: 50px 0;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .partners-section {
        padding: 60px 0;
    }
}
/* Base Styles */
.feature-section {
    background-color: #f9fafb;
    color: #333;
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(66, 133, 244, 0.1),
        rgba(66, 133, 244, 0)
    );
    border-radius: 50%;
    z-index: 0;
}

/* Typography */
.text-badge {
    display: inline-block;
    background-color: #4285f4;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.title-separator {
    position: relative;
    margin: 1.5rem 0;
    height: 2px;
}

.title-separator span {
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #4285f4;
    border-radius: 2px;
    left: 0;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #555;
    max-width: 700px;
}

/* Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 2rem;
}

/* Image Panel */
.feature-image-panel {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.overlay-badge span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.overlay-badge strong {
    font-size: 1.5rem;
}

.stats-container {
    display: flex;
    margin-top: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #eee;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285f4;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
}

/* Features Panel */
.feature-cards-panel {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    background: #f5f7f9;
    border-right: 1px solid #eee;
}

.feature-tab {
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    color: #888;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-tab.active {
    color: #4285f4;
    position: relative;
}

.feature-tab.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background-color: #4285f4;
}

.feature-content {
    flex: 1;
    padding: 2.5rem;
    position: relative;
}

.feature-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.feature-tab-content.active {
    display: block;
}

.feature-tab-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
}

/* Tab-specific content */
.instructor-avatars,
.tech-stack,
.company-logos,
.schedule-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.avatar-bubble {
    width: 40px;
    height: 40px;
    background-color: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.tech-badge {
    background-color: #f0f4ff;
    color: #4285f4;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.logo-placeholder {
    background-color: #f5f7f9;
    color: #888;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-size: 0.8rem;
    text-align: center;
}

.schedule-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f5f7f9;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.schedule-icon {
    color: #4285f4;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-cards-panel {
        flex-direction: column;
    }

    .feature-tabs {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0;
        overflow-x: auto;
    }

    .feature-tab {
        padding: 1rem;
        white-space: nowrap;
    }

    .feature-tab.active::after {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%);
        width: 30px;
        height: 3px;
    }

    .feature-content {
        padding: 1.5rem;
    }
}
.hover-lift {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition-300 {
    transition: all 0.3s ease;
}

.rounded-lg {
    border-radius: 0.8rem !important;
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    background: #044b86;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-section .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.cta-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.cta-icon {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--background);
    padding: 5rem 0;
    max-height: 600px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    top: 30%;
    transform: translateY(-50%);
    opacity: 0.7;
}

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

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

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .carousel-item,
    .carousel-item .hero-overlay {
        min-height: 600px;
    }
}

@media (max-width: 767.98px) {
    .carousel-item,
    .carousel-item .hero-overlay {
        min-height: 500px;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* Success stories redesigned section */
.success-showcase {
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.success-showcase-head {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.success-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    border: 1px solid #cfe0ff;
    background: #e9f1ff;
    color: #09438d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.38rem 0.9rem;
}

.success-feature-card {
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 32px rgba(13, 42, 87, 0.12);
}

.success-feature-media {
    height: 300px;
    overflow: hidden;
}

.success-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-feature-content {
    position: relative;
    padding: 1.5rem 1.6rem 1.7rem;
}

.success-quote-icon {
    position: absolute;
    top: -20px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.success-feature-text {
    color: #1f2a3b;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.success-feature-content h4 {
    font-weight: 800;
    color: #1a2130;
}

.success-feature-content p {
    color: #4f6078;
}

.success-mini-card {
    height: 100%;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e4ebf7;
    padding: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.success-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(20, 46, 88, 0.12);
}

.success-mini-avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
}

.success-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-mini-content h6 {
    color: #162132;
    font-weight: 700;
}

.success-mini-role {
    font-size: 0.86rem;
    color: #0d6efd;
    font-weight: 600;
}

.success-mini-text {
    font-size: 0.92rem;
    color: #5a6b83;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .success-feature-media {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .success-feature-content {
        padding: 1.2rem 1.1rem 1.25rem;
    }

    .success-feature-text {
        font-size: 1rem;
    }

    .success-mini-card {
        padding: 0.85rem;
    }
}
/* top courses */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* student voice section */
.student-voice-section {
    background-color: #044b86;
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.student-voice-card {
    background-color: #fff;
    color: #000;
    border-left: 4px solid white;
    border-radius: 8px;
    height: 100%;
}

.quote-icon {
    opacity: 0.2;
}
/* placement partners */

.placement-network {
    padding: 5rem 0;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 3rem;
    justify-items: center;
    align-items: center;
}

.logo-item {
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
/* breadcumb */
.breadcrumb-section {
    background-color: #044b86;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-title {
    color: var(--text-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.breadcrumb-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

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

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 2.5rem;
    }
    .breadcrumb-subtitle {
        font-size: 1rem;
    }
}

/* advanced search */
/* Advanced Search Styling */
.search-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-container:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.filter-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    font-size: 0.95rem;
}

.filter-options {
    padding-left: 0.5rem;
}

.filter-divider {
    margin: 1.5rem 0;
    opacity: 0.1;
}

.price-slider {
    padding: 0 0.5rem;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary);
}

.form-range::-moz-range-thumb {
    background: var(--primary);
}

.form-range::-ms-thumb {
    background: var(--primary);
}

.page-link {
    color: var(--primary);
    border-color: #dee2e6;
    margin: 0 3px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary);
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: transparent;
}

/* =========================================================
   Homepage Professional Training Refresh (Global Overrides)
   ========================================================= */
body {
    background: #f6f8fc;
}

.academy-section {
    position: relative;
}

.section-kicker-light {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.academy-hero-carousel .carousel-overlay {
    background: linear-gradient(100deg, rgba(4, 20, 48, 0.75) 10%, rgba(9, 39, 88, 0.5) 60%, rgba(2, 117, 216, 0.35) 100%);
}

.academy-hero-carousel .display-3 {
    font-size: clamp(2.2rem, 6.1vw, 5.2rem);
    line-height: 1.08;
    margin-bottom: 1.15rem !important;
}

.academy-hero-carousel .lead {
    font-size: clamp(1rem, 2vw, 1.12rem);
    margin-bottom: 1.05rem !important;
}

.hero-badge {
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
    margin-bottom: 0.9rem !important;
}

.hero-search-box {
    max-width: 700px;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.96) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(6, 24, 60, 0.28) !important;
    backdrop-filter: blur(2px);
    padding: 6px;
}

.hero-search-form {
    align-items: stretch;
    gap: 6px;
}

.hero-search-box .searchInput.form-control {
    border: 0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    height: 50px;
    padding: 0.45rem 0.9rem;
    color: #273247;
    background: #f7f9fd;
    box-shadow: inset 0 0 0 1px rgba(25, 60, 124, 0.08);
}

.hero-search-box .searchInput.form-control::placeholder {
    color: #6f7c91;
    font-weight: 600;
}

.hero-search-box .searchInput.form-control:focus {
    background: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(29, 107, 255, 0.25);
}

.hero-search-box .searchButton {
    min-width: 82px;
    height: 50px;
    border-radius: 12px !important;
    border: 0;
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(10, 85, 228, 0.34);
}

.hero-search-box .searchButton:hover,
.hero-search-box .searchButton:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.hero-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.25rem !important;
}

.hero-trust-points span {
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.34rem 0.8rem;
    font-size: 0.84rem;
}

.popular-courses-section,
.top-course-section,
.registration-form,
.success-showcase,
.placement-network,
.feature-section {
    border-top: 1px solid #e8edf7;
    border-bottom: 1px solid #e8edf7;
}

.top-course-section {
    background: #ffffff;
}

.top-course-card {
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(17, 33, 60, 0.08);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.top-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(17, 33, 60, 0.14);
}

.top-course-price {
    font-weight: 800;
    color: #0d6efd;
}

.top-course-badge {
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid #c9dcff;
    background: #eff5ff;
    color: #11458f;
    padding: 0.25rem 0.55rem;
    max-width: 58%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-section {
    background: #ffffff;
}

.partners-section {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-name {
    font-size: 0.82rem;
    margin-top: 0.55rem;
    color: #d7e7ff;
    text-align: center;
    min-height: 34px;
}

.student-voice-section {
    background: linear-gradient(120deg, #023b76 0%, #0756a4 100%);
}

.student-voice-card {
    border-left: 4px solid #5ba5ff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.registration-form .form-control,
.registration-form .form-select {
    border-color: #d7e2f6;
}

.cta-section {
    background: linear-gradient(130deg, #023c7c 0%, #0d6efd 55%, #21a4df 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cta-proof span {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.38rem 0.88rem;
    font-size: 0.85rem;
}

.placement-network {
    background: #ffffff;
}

.logo-item {
    text-align: center;
}

.placement-logo-card {
    width: 120px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid #e2e8f5;
    background: #f8fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.placement-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(18, 43, 84, 0.12);
}

.placement-company-name {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    color: #5c6a82;
    font-weight: 600;
}

@media (max-width: 992px) {
    .nav-shell {
        min-height: 66px;
    }

    .site-logo {
        height: 50px;
    }

    .carousel-item {
        height: 560px;
    }

    .academy-hero-carousel .display-3 {
        font-size: clamp(1.8rem, 5vw, 3.6rem);
    }

    .academy-hero-carousel .lead {
        font-size: 1rem;
    }

    .hero-trust-points {
        gap: 0.6rem;
    }

    .hero-trust-points span {
        font-size: 0.78rem;
        padding: 0.3rem 0.64rem;
    }

    .hero-search-box {
        max-width: 100%;
        padding: 6px;
        border-radius: 14px !important;
    }

    .hero-search-box .searchInput.form-control {
        font-size: 0.95rem;
        height: 46px;
    }

    .hero-search-box .searchButton {
        min-width: 72px;
        height: 46px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding-top: 0.18rem;
        padding-bottom: 0.18rem;
    }

    .nav-shell {
        min-height: 58px;
    }

    .site-logo {
        height: 44px;
    }

    .carousel-item {
        height: 500px;
    }

    .carousel-caption {
        top: 52%;
    }

    .academy-hero-carousel .display-3 {
        font-size: 2.05rem;
        line-height: 1.1;
    }

    .academy-hero-carousel .lead {
        font-size: 0.95rem;
    }

    .top-course-badge {
        max-width: 100%;
    }

    .cta-proof {
        gap: 0.55rem;
    }

    .cta-proof span {
        font-size: 0.76rem;
        padding: 0.28rem 0.6rem;
    }

    .hero-search-form {
        gap: 6px;
    }

    .hero-search-box .searchInput.form-control {
        font-size: 0.9rem;
        height: 42px;
        padding: 0.4rem 0.7rem;
    }

    .hero-search-box .searchButton {
        min-width: 58px;
        height: 42px;
        font-size: 0.95rem;
    }
}

/* Success stories carousel behavior */
.success-carousel-panel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.success-carousel-controls .btn {
    min-width: 44px;
    min-height: 44px;
}

.success-story-trigger {
    width: 100%;
    border: 1px solid #e4ebf7;
    text-align: left;
    cursor: pointer;
}

.success-story-trigger.active {
    border-color: #8fb8ff;
    box-shadow: 0 12px 24px rgba(13, 78, 176, 0.16);
    background: #f5f9ff;
}

.success-story-trigger:focus-visible {
    outline: 3px solid rgba(13, 110, 253, 0.22);
    outline-offset: 2px;
}

/* Success stories - impact layout */
.impact-stories-section {
    background: #eef1f6;
}

.impact-copy-block {
    padding: 1.5rem 0.5rem 1rem 0.2rem;
}

.impact-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    color: #1d2430;
    margin-bottom: 1.4rem;
}

.impact-title span {
    display: block;
    color: #ff4b14;
}

.impact-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 2px solid rgba(27, 37, 52, 0.35);
    padding-left: 1rem;
    margin-bottom: 1.25rem;
    color: #353d48;
    font-size: 1.04rem;
    line-height: 1.6;
    font-weight: 600;
}

.impact-note-icon {
    font-size: 1.8rem;
    color: #1c4fb6;
    margin-top: -0.2rem;
}

.impact-read-link {
    color: #0f60d2;
    font-size: 1.75rem;
    font-weight: 500;
    text-decoration: none;
}

.impact-read-link:hover {
    color: #0b4ba3;
}

.impact-story-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    min-height: 410px;
    box-shadow: 0 10px 26px rgba(20, 32, 52, 0.08);
    padding: 6.5rem 1.6rem 1.6rem;
}

.impact-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -82px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #eef1f6;
    background: #d6dbe4;
}

.impact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-story-content {
    text-align: center;
}

.impact-story-content h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #232a34;
    margin-bottom: 0.55rem;
}

.impact-role {
    font-size: 1.08rem;
    color: #6a737f;
    margin-bottom: 1.55rem;
}

.impact-story-content h6 {
    font-size: 0.95rem;
    color: #1e2430;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
}

.impact-description {
    font-size: 1.1rem;
    color: #3f4650;
    line-height: 1.6;
    margin-bottom: 0;
}

.impact-indicators [data-bs-target] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 0;
    background: #cfd4db;
    opacity: 1;
    margin: 0 0.35rem;
}

.impact-indicators .active {
    width: 56px;
    border-radius: 999px;
    background: #0d6efd;
}

@media (max-width: 1199px) {
    .impact-story-content h4 {
        font-size: 1.7rem;
    }

    .impact-story-card {
        min-height: 390px;
    }
}

@media (max-width: 991px) {
    .impact-copy-block {
        padding: 0 0 1rem;
    }

    .impact-read-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .impact-story-card {
        min-height: auto;
        padding-top: 5.8rem;
    }

    .impact-avatar {
        width: 145px;
        height: 145px;
        top: -68px;
    }
}

/* Success stories - outcomes studio (original layout) */
.outcomes-studio {
    background: radial-gradient(circle at top right, #e8f0ff 0%, #f5f8ff 45%, #f8fbff 100%);
}

.outcomes-head {
    max-width: 780px;
    margin-inline: auto;
}

.outcomes-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.38rem 0.92rem;
    border: 1px solid #c7dcff;
    background: #edf5ff;
    color: #114b9d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.outcomes-head p {
    color: #5a6781;
}

.outcomes-aside {
    background: #102a4f;
    color: #fff;
    border-radius: 18px;
    padding: 1.7rem 1.35rem;
    box-shadow: 0 14px 26px rgba(13, 34, 68, 0.25);
}

.outcomes-aside h3 {
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.9rem;
}

.outcomes-aside p {
    color: #d2ddef;
    margin-bottom: 1rem;
}

.outcome-highlights {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.outcome-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
    font-size: 0.92rem;
}

.outcome-highlight-item i {
    color: #7eb7ff;
}

.outcomes-link {
    color: #7ec2ff;
    text-decoration: none;
    font-weight: 700;
}

.outcomes-link:hover {
    color: #b1d6ff;
}

.outcome-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe9fa;
    box-shadow: 0 10px 28px rgba(19, 36, 68, 0.12);
    min-height: 360px;
}

.outcome-card-media {
    position: relative;
}

.outcome-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 34, 68, 0.08) 0%, rgba(14, 34, 68, 0.28) 100%);
}

.outcome-card-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.outcome-card-body {
    height: 100%;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcome-role-label {
    display: inline-block;
    align-self: flex-start;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-transform: uppercase;
    color: #0e4ba3;
    background: #edf4ff;
    margin-bottom: 0.7rem;
}

.outcome-card-body h4 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1a2433;
    margin-bottom: 0.3rem;
}

.outcome-position {
    font-size: 1.05rem;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 1rem;
}

.outcome-story {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5870;
    margin-bottom: 0;
}

.outcomes-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: #c8d4e9;
    margin: 0 0.3rem;
    opacity: 1;
}

.outcomes-indicators .active {
    width: 34px;
    border-radius: 999px;
    background: #0d6efd;
}

@media (max-width: 991px) {
    .outcome-card {
        min-height: auto;
    }

    .outcome-card-media img {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    .outcome-card-body h4 {
        font-size: 1.55rem;
    }

    .outcome-story {
        font-size: 0.98rem;
    }
}

/* Outcomes card compact variant */
.outcome-card {
    min-height: 250px;
}

.outcome-card-body {
    padding: 1.2rem 1.25rem;
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
}

.outcome-avatar-sm {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 78px;
    border: 3px solid #e4eeff;
    background: #d6dbe4;
}

.outcome-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outcome-card-body h4 {
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.outcome-position {
    font-size: 0.98rem;
    margin-bottom: 0;
}

.outcome-story {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .outcome-avatar-sm {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .outcome-card-body h4 {
        font-size: 1.2rem;
    }
}

/* Outcomes compact professional tune */
.outcomes-carousel {
    width: 100%;
}

.outcomes-carousel .carousel-item {
    padding-block: 0.2rem;
}

.outcome-card {
    max-width: 700px;
    min-height: 220px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(21, 37, 65, 0.1);
}

.outcome-card-body {
    padding: 1rem 1.1rem;
    justify-content: flex-start;
}

.outcome-header {
    margin-bottom: 0.65rem;
}

.outcome-avatar-sm {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-width: 2px;
}

.outcome-role-label {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    padding: 0.2rem 0.52rem;
}

.outcome-card-body h4 {
    font-size: 1.25rem;
    margin-bottom: 0.1rem;
}

.outcome-position {
    font-size: 0.94rem;
}

.outcome-story {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-top: 0.15rem;
}

@media (max-width: 991px) {
    .outcome-card {
        max-width: 100%;
    }
}

/* Fix: success stories carousel should not inherit hero carousel height */
.outcomes-carousel,
.outcomes-carousel .carousel-inner,
.outcomes-carousel .carousel-item {
    height: auto !important;
    min-height: 0 !important;
}

.outcomes-carousel .carousel-item {
    display: block;
}

.outcomes-carousel .outcome-card {
    margin: 0;
}

/* Clean compact visual balance */
.outcomes-carousel .outcome-card-body {
    gap: 0.35rem;
}

.outcomes-carousel .outcome-story {
    margin-bottom: 0;
}

/* Success stories - mosaic redesign */
.success-mosaic {
    background: linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
}

.mosaic-intro {
    background: #0f2e5c;
    color: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.3rem;
    box-shadow: 0 16px 30px rgba(10, 31, 65, 0.24);
}

.mosaic-chip {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.34rem 0.74rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.mosaic-intro h3 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.mosaic-intro p {
    color: #d4e1f5;
}

.mosaic-highlights {
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0 1.2rem;
}

.mosaic-highlight-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.6rem 0.72rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mosaic-highlight-item strong {
    color: #89c6ff;
}

.mosaic-highlight-item span {
    color: #e8f1ff;
    font-size: 0.9rem;
}

.mosaic-link {
    color: #89c6ff;
    text-decoration: none;
    font-weight: 700;
}

.mosaic-link:hover {
    color: #bedfff;
}

.mosaic-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dfe9fa;
    box-shadow: 0 10px 24px rgba(18, 42, 83, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mosaic-card-head {
    display: flex;
    gap: 0.72rem;
    align-items: center;
}

.mosaic-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 56px;
    background: #d6dbe4;
    border: 2px solid #dbe7fb;
}

.mosaic-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mosaic-card-head h4 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    font-weight: 800;
    color: #1d2735;
}

.mosaic-card-head p {
    margin: 0;
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.9rem;
}

.mosaic-card-text {
    margin: 0;
    color: #495a77;
    font-size: 0.95rem;
    line-height: 1.52;
}

.mosaic-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    color: #244981;
    background: #edf4ff;
    border-radius: 999px;
    padding: 0.28rem 0.56rem;
    border: 1px solid #d3e3ff;
}

@media (max-width: 767px) {
    .mosaic-intro h3 {
        font-size: 1.55rem;
    }
}

.tech-stack-section {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.tech-stack-card {
    background: #fff;
    border: 1px solid #dfe8f8;
    border-radius: 18px;
    padding: 1.3rem 1.25rem;
    box-shadow: 0 8px 22px rgba(17, 45, 87, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tech-stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(17, 45, 87, 0.14);
}

.tech-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ecf3ff;
    color: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
}

.tech-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.45rem;
}

.tech-description {
    color: #59667d;
    line-height: 1.6;
}

.blog-card {
    background: #fff;
    border: 1px solid #e4ecf9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(17, 45, 87, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(17, 45, 87, 0.14);
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1rem 1rem 1.1rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: #6b7a92;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-title a {
    color: #1f2937;
    text-decoration: none;
}

.blog-title a:hover {
    color: #0d6efd;
}

.blog-excerpt {
    color: #5b6980;
    line-height: 1.6;
}

.blog-single-card {
    background: #fff;
    border: 1px solid #e4ecf9;
    border-radius: 16px;
    padding: 1.15rem;
    box-shadow: 0 10px 24px rgba(17, 45, 87, 0.08);
}

.blog-single-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    max-height: 420px;
    object-fit: cover;
}

.blog-single-excerpt {
    font-size: 1.05rem;
    color: #44516a;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.blog-single-content {
    color: #273444;
    line-height: 1.8;
}

.blog-sidebar-card {
    background: #fff;
    border: 1px solid #e4ecf9;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(17, 45, 87, 0.08);
}

.related-blog-item {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid #edf2fb;
    text-decoration: none;
}

.related-blog-item:last-child {
    border-bottom: 0;
}

.related-blog-title {
    color: #1f2937;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.related-blog-item:hover .related-blog-title {
    color: #0d6efd;
}

.faq-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.academy-faq-accordion .accordion-item {
    border: 1px solid #dfebff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 8px 20px rgba(17, 45, 87, 0.06);
}

.academy-faq-accordion .accordion-button {
    font-weight: 700;
    color: #1f2d3d;
    background: #fff;
    box-shadow: none;
    padding: 1rem 1.1rem;
}

.academy-faq-accordion .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background: #f0f6ff;
}

.academy-faq-accordion .accordion-body {
    color: #50607a;
    line-height: 1.75;
    background: #fff;
}
