/* Patliputra Skills Academy - Main Stylesheet */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #AC42C0;
    --secondary-color: #6D42C0;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --text-color: #212529;
    --border-color: #dee2e6;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --gradient-dark-purple: linear-gradient(114deg, #AC42C0 34.48%, #6D42C0 95.62%);
    --gradient-light-purple: linear-gradient(114deg, #6D42C0 34.48%, #AC42C0 95.62%);
    --gradient-horizontal: linear-gradient(90deg, #AC42C0 0%, #6D42C0 100%);
    --gradient-vertical: linear-gradient(114deg, #AC42C0 34.48%, #6D42C0 95.62%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Notification Bar */
.notification-bar {
    background: var(--gradient-horizontal);
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.notification-slider {
    display: flex;
    animation: scroll 20s linear infinite;
}

.notification-item {
    white-space: nowrap;
    padding: 0 30px;
    font-size: 14px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Modern Navigation */
.modern-navbar {
    background: var(--gradient-vertical);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.logo-text {
    width: 40px;
    height: 40px;
    background: var(--gradient-light-purple);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.logo-name {
    font-size: 16px;
    color: white;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-image {
    max-height: 90px;
    max-width: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 8px 12px;
    gap: 8px;
    flex: 0 0 auto;
    max-width: 250px;
    min-width: 200px;
    position: relative;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: white;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    margin-top: 5px;
}

.search-results.active {
    display: block;
}

.search-results-header {
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    border-radius: 10px 10px 0 0;
}

.search-result-item {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-result-image-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-vertical);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.search-result-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-meta {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #888;
}

.search-result-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-no-results,
.search-error {
    padding: 20px 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.modern-navbar .nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.modern-navbar .nav-menu li {
    position: relative;
}

.modern-navbar .nav-link {
    display: block;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.modern-navbar .nav-link:hover {
    color: rgba(255,255,255,0.8);
}

.btn-login {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-login:hover {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.5) !important;
}

.btn-login:hover {
    background: var(--gradient-vertical) !important;
    color: white !important;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 14px;
}

.dropdown-menu a i {
    width: 18px;
    color: var(--primary-color);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-apply {
    background: var(--gradient-vertical) !important;
    border-radius: 5px;
    margin-left: 10px;
    border: none;
}

.nav-highlight {
    font-weight: 600;
    position: relative;
}

.nav-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}

.nav-highlight:hover {
    color: rgba(255,255,255,0.9) !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.float-phone {
    background-color: #8B5CF6;
}

.float-phone:hover {
    background-color: #7C3AED;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp:hover {
    background-color: #1ebe5d;
}

.float-btn i {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.float-phone i {
    font-size: 20px;
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
    }
    
    .float-btn i {
        font-size: 20px;
    }
    
    .float-phone i {
        font-size: 18px;
    }
}

/* Hero Slider - Modern Split Layout */
.hero-slider {
    position: relative;
    min-height: 600px;
    background: var(--gradient-vertical);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    display: none;
    height: 100%;
    align-items: center;
    color: white;
}

.slide.active {
    display: flex;
}

.slide-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slide-text-content {
    animation: fadeInUp 0.8s;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.slide-title .highlight {
    color: #a78bfa;
    display: block;
}

.slide-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    animation: fadeInUp 1s;
}

.slide-detail {
    font-size: 16px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 1.1s;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s;
}

.slide-image-content {
    animation: fadeInRight 1s;
    text-align: center;
}

.slide-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-vertical);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(172, 66, 192, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.slide-title .highlight {
    color: #a78bfa;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: inline-block;
    background: #EEF2FF;
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-header .section-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle {
    color: #64748b;
    font-size: 16px;
    margin-top: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-horizontal);
    margin: 20px auto 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* Welcome Section */
.welcome-section {
    background: #ffffff;
    padding: 100px 0;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.banks-section {
    background: #f8fafc;
    padding: 100px 0;
}

.placements-section {
    background: #ffffff;
    padding: 100px 0;
}

.testimonials-section {
    background: #f8fafc;
    padding: 100px 0;
}

.blog-section {
    background: #ffffff;
    padding: 100px 0;
}

/* Banks Section */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bank-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(81, 31, 90, 0.15);
}

.bank-card p {
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-line;
    text-align: left;
    margin-top: 15px;
}

.bank-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.bank-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.bank-card:hover .bank-logo {
    transform: scale(1.1);
}

.bank-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.bank-card h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 18px;
}

/* Placements Section */
.placements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.placement-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.placement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(81, 31, 90, 0.15);
}

.student-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ccc;
}

.placement-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.bank-info, .position-info {
    color: #666;
    margin: 5px 0;
}

/* Placement Stats Section */
.placement-stats {
    padding: 60px 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.stat-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 16px;
}

/* Placement Info Section */
.placement-info {
    padding: 80px 0;
    background: white;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.placement-process {
    margin-top: 50px;
}

.placement-process h3 {
    text-align: center;
    color: var(--dark-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Placed Students Section */
.placed-students {
    padding: 80px 0;
    background: var(--light-color);
}

.filter-section {
    margin-bottom: 30px;
    text-align: center;
}

.filter-select {
    padding: 12px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    min-width: 250px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.placement-info-card {
    margin-top: 20px;
}

.placement-info-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.placement-info-card p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.placement-info-card .bank-name,
.placement-info-card .position,
.placement-info-card .placement-date {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.placement-info-card i {
    color: var(--primary-color);
}

.placement-info-card .testimonial {
    margin-top: 15px;
    font-style: italic;
    color: #555;
    padding: 15px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    text-align: left;
}

.no-placements {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-placements i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Partner Banks Section */
.partner-banks {
    padding: 80px 0;
    background: white;
}

.banks-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bank-logo-item {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
}

.bank-logo-item:hover {
    transform: translateY(-5px);
}

.bank-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.bank-logo-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bank-logo-item p {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-vertical);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--dark-color);
    font-weight: bold;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Page Header */
.page-header {
    background: var(--gradient-vertical);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

/* About Page */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.vm-card h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--dark-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Courses Page - Modern Design */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(81, 31, 90, 0.2);
}

.course-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image, .course-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.course-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-header {
    margin-bottom: 15px;
}

.course-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.course-content h3 {
    color: var(--dark-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.course-category {
    display: inline-block;
    background: #f0f4ff;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-rating i {
    font-size: 16px;
}

.course-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.course-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.course-detail-item i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.course-actions {
    margin-top: auto;
}

.course-actions .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* View Details Button - Different Color */
.btn-view-details {
    background: var(--gradient-vertical) !important;
    color: white !important;
    border: none;
}

.btn-view-details:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.benefits-grid, .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item, .choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.choose-item i {
    color: var(--success-color);
    font-size: 24px;
}

/* Gallery Page */
.gallery-filter {
    background: var(--light-color);
    padding: 20px 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.filter-tab {
    padding: 12px 30px;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.filter-tab.active {
    background: var(--primary-color);
    color: white;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Franchise Page */
.franchise-intro-section {
    padding: 80px 0;
    background: var(--light-color);
}

.franchise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.franchise-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.requirement-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.requirement-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
}

.requirement-card h3 {
    color: var(--dark-color);
    font-size: 20px;
    line-height: 1.5;
}

.partner-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.franchise-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 50px;
    font-size: 18px;
}

/* Admission Form Page */
.admission-form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.admission-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-section-title {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-section-title:first-child {
    margin-top: 0;
}

.admission-form .form-group input[type="file"] {
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: white;
}

.admission-form .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    background: white;
    transition: border 0.3s;
}

.admission-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    background: white;
    transition: border 0.3s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group select:hover,
.form-select:hover {
    border-color: var(--primary-color);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: var(--gradient-vertical);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(172, 66, 192, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: rgba(255,255,255,0.9);
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.footer-contact span {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #3d1a45;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

/* Course Listing Page */
.course-listing-banner {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: var(--gradient-dark-purple);
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0;
}

.banner-content .section-header {
    text-align: center;
    color: white;
}

.banner-content .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-content .section-header h2 {
    color: white;
}

.banner-content .section-description {
    color: rgba(255, 255, 255, 0.95);
}

.banner-content .underline {
    background: white;
}


.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 50px;
}

/* Recommended Courses Section on Homepage */
.recommended-courses-section {
    padding: 80px 0;
    background: white;
}

.recommended-courses-section .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.recommended-courses-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.recommended-courses-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.courses-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
    margin: 0 50px;
}

.courses-scroll-container::-webkit-scrollbar {
    display: none;
}

.courses-grid-horizontal-scroll {
    display: flex;
    gap: 30px;
    padding-bottom: 10px;
}

.courses-grid-horizontal-scroll .course-card-link-vertical {
    flex: 0 0 350px;
    min-width: 350px;
}

.course-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-vertical);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(172, 66, 192, 0.3);
    transition: all 0.3s;
}

.course-scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(172, 66, 192, 0.4);
}

.course-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.course-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.course-scroll-left {
    left: 0;
}

.course-scroll-right {
    right: 0;
}

.courses-grid-vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.course-card-link-vertical {
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card-vertical {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(81, 31, 90, 0.15);
}

.course-image-top {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.course-image-wrapper-vertical {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image-vertical {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card-vertical:hover .course-image-vertical {
    transform: scale(1.05);
}

.course-image-placeholder-vertical {
    width: 100%;
    height: 220px;
    background: var(--gradient-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.course-partner-logo-overlay-vertical {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.partner-logo-box-vertical {
    background: white;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    min-width: 100px;
}

.course-content-vertical {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-header-vertical {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.course-title-vertical {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
    padding-right: 15px;
}

.course-rating-vertical {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #f59e0b;
    font-weight: 600;
    flex-shrink: 0;
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 10px;
    border-radius: 20px;
}

.course-rating-vertical i {
    color: #f59e0b;
    font-size: 14px;
}

.course-category-vertical {
    margin-bottom: 20px;
}

.course-category-badge-vertical {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    background: rgba(81, 31, 90, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.course-details-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    flex: 1;
}

.course-detail-item-vertical {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}

.course-detail-item-vertical i {
    color: var(--success-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.course-action-vertical {
    margin-top: auto;
    padding-top: 15px;
}

.btn-explore-course-vertical {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-vertical);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore-course-vertical:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 31, 90, 0.3);
}

.recommended-courses-actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 31, 90, 0.3);
}

/* Ensure course cards are properly aligned */
.recommended-courses-section .course-card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 280px;
}

.recommended-courses-section .course-image-section {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.recommended-courses-section .course-content-horizontal {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .courses-grid-vertical {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid-horizontal-scroll .course-card-link-vertical {
        flex: 0 0 320px;
        min-width: 320px;
    }

    .courses-scroll-container {
        margin: 0 45px;
    }
}

@media (max-width: 768px) {
    .courses-grid-vertical {
        grid-template-columns: 1fr;
    }

    .courses-grid-horizontal-scroll .course-card-link-vertical {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .courses-scroll-container {
        margin: 0 40px;
    }

    .course-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .recommended-courses-section {
        padding: 60px 0;
    }
}

.course-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.course-card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 250px;
}

.course-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(81, 31, 90, 0.15);
}

.course-image-section {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.course-image-wrapper-horizontal {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.course-image-horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-image-placeholder-horizontal {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: var(--gradient-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
    position: relative;
}

.course-partner-logo-overlay {
    position: absolute;
    bottom: 60px;
    left: 20px;
    z-index: 2;
}

.partner-logo-box {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    min-width: 120px;
}

.course-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(81, 31, 90, 0.9) 0%, rgba(107, 44, 122, 0.95) 100%);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    z-index: 2;
}

.course-content-horizontal {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-header-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.course-title-horizontal {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
    padding-right: 20px;
}

.course-rating-horizontal {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #f59e0b;
    font-weight: 600;
    flex-shrink: 0;
}

.course-rating-horizontal i {
    color: #f59e0b;
}

.course-category-horizontal {
    margin-bottom: 20px;
}

.course-category-badge {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    background: rgba(81, 31, 90, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.course-details-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    flex: 1;
}

.course-detail-item-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #64748b;
}

.course-detail-item-horizontal i {
    color: var(--success-color);
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
}

.course-action-horizontal {
    margin-top: auto;
}

.btn-explore-course-horizontal {
    padding: 14px 30px;
    background: var(--gradient-vertical);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 250px;
}

.btn-explore-course-horizontal:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(81, 31, 90, 0.3);
}

/* Pagination */
.courses-pagination {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn,
.pagination-number {
    padding: 10px 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled),
.pagination-number:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-info-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
}

.pagination-info-bar select {
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

/* Course Detail Page - Hero Banner */
.course-hero-banner {
    position: relative;
    min-height: 700px;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
    display: block;
}

.course-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.banner-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.course-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0 80px;
    color: white;
    align-items: start;
    min-height: 600px;
}

.course-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    min-height: auto;
    overflow: visible;
}

.course-partner-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.course-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.course-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.btn-hero {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}

.course-hero-right {
    position: relative;
    z-index: 3;
    padding-bottom: 20px;
}

.callback-form-box {
    background: white;
    border-radius: 16px;
    padding: 30px 30px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
    max-width: 100%;
    margin: 0;
    overflow: visible;
    min-height: auto;
    height: auto;
    max-height: none;
    margin-bottom: 0;
}

.callback-form-box h4 {
    color: var(--dark-color);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    height: auto;
}

.callback-form .form-group {
    margin-bottom: 18px;
    width: 100%;
}

.callback-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.callback-form .btn-block {
    margin-top: 15px;
    margin-bottom: 0;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.callback-form input,
.callback-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.phone-prefix {
    padding: 12px 15px;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-color);
    flex-shrink: 0;
    white-space: nowrap;
}

.phone-input-group input {
    flex: 1;
    min-width: 0;
}

.checkbox-group {
    margin-bottom: 20px !important;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-block {
    width: 100%;
}

/* Course Navigation Tabs */
.course-nav-tabs {
    background: white;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 0;
    padding-top: 0;
    clear: both;
    display: block;
}

.course-tabs {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.course-tabs li {
    margin: 0;
}

.tab-link {
    display: block;
    padding: 20px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-link:hover,
.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Course Detail Layout */
.course-detail-section {
    padding: 60px 0;
    background: var(--light-color);
}

.course-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.course-detail-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.course-tab-content {
    display: none;
}

.course-tab-content.active,
.course-tab-content:first-of-type {
    display: block;
}

.course-tabs .tab-link:first-child {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.course-stat-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

.course-tab-content h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.course-tab-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.highlights-list p,
.eligibility-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
}

.highlights-list i,
.eligibility-list i {
    color: var(--success-color);
    font-size: 20px;
}

.enrollment-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.enrollment-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-color);
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.course-certificate-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.certificate-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    color: var(--primary-color);
}

.certificate-image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
}

.certificate-image-placeholder p {
    font-size: 18px;
    color: var(--text-color);
    margin: 0;
}

/* Course Sidebar */
.course-detail-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.course-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.course-fee-display {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.course-fee-display h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.course-fee-display p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.course-info-list {
    margin-bottom: 25px;
}

.course-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.course-info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 600;
}

.course-includes {
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.includes-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-color);
}

.includes-list i {
    color: var(--success-color);
    font-size: 16px;
}

.course-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.course-detail-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.course-detail-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.course-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.course-detail-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #ccc;
    margin-bottom: 30px;
}

.course-detail-image-placeholder p {
    font-size: 18px;
    margin-top: 20px;
    color: #999;
}

.course-quick-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-box:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.info-content p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

.course-detail-right {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.course-detail-title {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.course-description {
    margin-bottom: 40px;
}

.course-description h3,
.course-features h3,
.course-benefits-box h3 {
    color: var(--dark-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.course-description p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.course-features {
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success-color);
    font-size: 20px;
}

.course-benefits-box {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

/* What You'll Get Section */
.what-you-get-section {
    padding: 80px 0;
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(172, 66, 192, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-vertical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.benefits-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.benefit-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.benefit-box i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-box h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.course-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

.btn-large i {
    margin-right: 10px;
}

.related-courses-section {
    padding: 60px 0;
    background: var(--light-color);
}

/* Partner Banks Section */
.banks-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bank-logo-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.bank-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.bank-logo-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.bank-logo-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bank-logo-item p {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* Modals */
.modal, .lightbox, .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    overflow: auto;
}

/* Video Modal */
.video-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    padding: 20px;
    background: #000;
    border-radius: 10px;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background 0.3s;
}

.close-video-modal:hover {
    background: rgba(255,255,255,0.2);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-content {
    background: white;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.close-modal, .close-lightbox {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover, .close-lightbox:hover {
    color: var(--danger-color);
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 90vh;
    margin: 50px auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-search {
        max-width: 200px;
        min-width: 150px;
    }
    
    .modern-navbar .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .logo-name {
        font-size: 15px;
    }
    
    .logo-image {
        max-height: 70px;
        max-width: 260px;
    }
}

@media (max-width: 992px) {
    .nav-search {
        display: none;
    }
    
    .modern-navbar .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .search-results {
        left: -20px;
        right: -20px;
        max-width: calc(100vw - 40px);
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .logo-image {
        max-height: 55px;
        max-width: 200px;
    }

    .nav-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .modern-navbar .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--gradient-vertical);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .modern-navbar .nav-menu.active {
        display: flex;
    }

    .modern-navbar .nav-menu li {
        width: 100%;
    }

    .modern-navbar .nav-link {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: white;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-slider {
        min-height: auto;
        padding: 60px 0;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slide-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header .section-description {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .course-detail-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .what-you-get-section {
        padding: 60px 0;
    }

    .course-detail-left {
        position: static;
    }

    .course-detail-image {
        height: 300px;
    }

    .benefits-grid-small {
        grid-template-columns: 1fr;
    }

    .course-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .video-modal-content {
        width: 95%;
        padding: 10px;
        margin: 20px auto;
    }

    .close-video-modal {
        top: -30px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .banks-grid,
    .placements-grid,
    .blog-grid,
    .course-card-horizontal {
        flex-direction: column;
    }

    .course-image-section {
        flex: 0 0 auto;
        width: 100%;
    }

    .course-image-wrapper-horizontal,
    .course-image-placeholder-horizontal {
        min-height: 200px;
    }

    .course-content-horizontal {
        padding: 20px;
    }

    .course-title-horizontal {
        font-size: 20px;
    }

    .btn-explore-course-horizontal {
        max-width: 100%;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    /* Course Detail Responsive */
    .course-hero-banner {
        min-height: auto;
    }

    .course-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .course-hero-left {
        padding-top: 0;
    }

    .course-hero-title {
        font-size: 32px;
    }

    .course-hero-description {
        font-size: 16px;
    }

    .callback-form-box {
        margin-top: 20px;
    }

    .course-detail-layout {
        grid-template-columns: 1fr;
    }

    .course-detail-sidebar {
        position: static;
        margin-top: 30px;
    }

    .course-nav-tabs {
        position: static;
        overflow-x: auto;
    }

    .course-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .tab-link {
        padding: 15px 20px;
        white-space: nowrap;
    }

    .course-stats-grid {
        grid-template-columns: 1fr;
    }

    .course-card-horizontal {
        flex-direction: column;
    }

    .course-image-section {
        flex: 0 0 auto;
        width: 100%;
    }

    .course-image-wrapper-horizontal,
    .course-image-placeholder-horizontal {
        min-height: 200px;
    }

    .course-content-horizontal {
        padding: 20px;
    }

    .course-title-horizontal {
        font-size: 20px;
    }

    .btn-explore-course-horizontal {
        max-width: 100%;
    }

    .pagination-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-numbers {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

