:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Header Styles */
.top-bar {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.offcanvas-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 9999 !important;
    position: absolute !important;
    min-width: 220px;
    transform: none !important;
}

.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-section h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Mobile Offcanvas Menu Styles */
.offcanvas {
    width: 350px !important;
}

.mobile-nav-menu {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.mobile-nav-link.active:hover {
    background-color: #1d4ed8;
    color: white;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-submenu {
    background-color: #f8fafc;
    margin: 0;
}

.mobile-submenu .mobile-nav-link {
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.mobile-cta {
    border-top: 1px solid #e2e8f0;
}

.mobile-social a {
    transition: transform 0.3s ease;
}

.mobile-social a:hover {
    transform: scale(1.2);
}

/* Desktop Navigation Adjustments */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        white-space: nowrap;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .offcanvas {
        width: 320px !important;
    }
}

@media (max-width: 576px) {
    .offcanvas {
        width: 70% !important;
    }
}

/* Enhanced Modern Footer */
.footer-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #581c87 50%, #7c3aed 75%, #8b5cf6 100%);
    color: white;
    position: relative;
    padding: 4rem 0 0;
    padding-bottom: 0;
    margin-top: 0rem;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 30%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%, transparent 75%, rgba(59, 130, 246, 0.03) 75%);
    background-size: 100px 100px, 150px 150px, 200px 200px, 50px 50px, 50px 50px;
    background-position: 0 0, 50px 50px, 100px 100px, 0 0, 25px 25px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.footer-column {
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    position: relative;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Enhanced Address Section */
.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.address-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.address-item i {
    color: #3b82f6;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    font-size: 1.1rem;
}

.address-item span {
    flex: 1;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Enhanced Social Links */
.social-section {
    text-align: center;
}

.social-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-social-link.facebook:hover { background: linear-gradient(135deg, #1877f2, #42a5f5); }
.footer-social-link.twitter:hover { background: linear-gradient(135deg, #1da1f2, #42a5f5); }
.footer-social-link.linkedin:hover { background: linear-gradient(135deg, #0077b5, #42a5f5); }
.footer-social-link.instagram:hover { background: linear-gradient(135deg, #e4405f, #f093fb); }
.footer-social-link.youtube:hover { background: linear-gradient(135deg, #ff0000, #ff6b6b); }

/* Footer Divider */

/* Enhanced Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-policy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-policy-link:hover {
    color: white;
}

.footer-policy-link:hover::after {
    width: 100%;
}

/* Floating Animation Removed */

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 0;
    }
    
    .footer-content {
        padding-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-column {
        margin-bottom: 0;
        text-align: left;
    }

    .footer-social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-section {
        padding: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        text-align: center;
        padding: 2rem 0 1rem;
    }
    
    .address-item {
        text-align: left;
    }

    .footer-title {
        justify-content: center;
    }

    .footer-social-links {
        gap: 0.75rem;
    }

    .footer-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Courses Section */
.courses-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.course-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15) !important;
    border-color: rgba(37, 99, 235, 0.2);
}

.course-image-wrapper {
    overflow: hidden;
    position: relative;
}

.course-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    transition: all 0.3s ease;
}

.course-card:hover .course-gradient-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.course-content-overlay {
    z-index: 2;
}

.course-category .badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.icon-mini, .icon-large {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.course-card:hover .icon-mini,
.course-card:hover .icon-large {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3) !important;
}

.course-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.course-card:hover .course-image-wrapper::after {
    opacity: 1;
}

.course-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
}

.course-title {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.course-card:hover .course-title {
    color: #2563eb;
}

.stars i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.course-card:hover .stars i {
    transform: scale(1.1);
}

.current-price {
    color: #059669 !important;
    font-size: 1.5rem !important;
}

.original-price {
    font-size: 1.1rem;
    position: relative;
}

.course-card .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.course-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.course-card .btn:hover::before {
    left: 100%;
}

.course-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Our Story Section */
.our-story-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.story-media-container {
    position: relative;
}

.office-main-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-main-img:hover {
    transform: scale(1.02);
}

.office-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.office-label {
    position: absolute;
    top: 15px;
    left: 15px;
}

.video-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
}

.video-thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-play-btn {
    background: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}


.group-photo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.group-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.group-photo-wrapper:hover .group-photo {
    transform: scale(1.05);
}

.group-label {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Story Content */
.story-content {
    padding: 2rem 0;
}

/* Enhanced Section Header */
.section-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3495dc, transparent);
    max-width: 80px;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.section-title {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #ff045a, #3b5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3495dc, #dc3545);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.tracking-wide {
    letter-spacing: 0.8px;
}

/* Enhanced Statistics Cards */
.enhanced-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(52, 149, 220, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.enhanced-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 149, 220, 0.15) !important;
    border-color: rgba(52, 149, 220, 0.3);
}

/* Featured Card Styles */
.stat-card-featured {
    background: linear-gradient(135deg, #3495dc 0%, #2c3e50 100%) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card-featured:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 50px rgba(52, 149, 220, 0.25) !important;
}

.featured-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    border-radius: inherit;
}

.stat-icon-bg-large {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(52, 149, 220, 0.2);
}

.stat-card-featured:hover .stat-icon-bg-large {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(52, 149, 220, 0.3);
}

.stat-number-large {
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Large Video Section Styles */
.video-wrapper-large {
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
}

.video-thumbnail-large {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-wrapper-large:hover .video-thumbnail-large {
    transform: scale(1.05);
}

.video-play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-wrapper-large:hover .video-play-btn-large {
    background: rgba(220, 53, 69, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
}

/* Small Images Styles */
.office-img-small, .group-photo-small {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.office-image-wrapper-small, .group-photo-wrapper-small {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.office-image-wrapper-small:hover .office-img-small,
.group-photo-wrapper-small:hover .group-photo-small {
    transform: scale(1.05);
}

.office-label-small, .group-label-small {
    position: absolute;
    top: 10px;
    left: 10px;
}

/* Row Statistics Cards */
.stat-card-row {
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 149, 220, 0.08);
    backdrop-filter: blur(5px);
}

.stat-card-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(52, 149, 220, 0.15) !important;
    border-color: rgba(52, 149, 220, 0.2);
}

.card-bg-pattern-row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(52, 149, 220, 0.03) 0%, transparent 70%);
    border-radius: inherit;
}

.stat-icon-row {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-row:hover .stat-icon-row {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.stat-card-row:hover .stat-icon-row::before {
    left: 100%;
}

.stat-number-row {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-label-row {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Compact Card Styles */
.stat-card-compact {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.card-bg-pattern-small {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(52, 149, 220, 0.03) 0%, transparent 70%);
    border-radius: inherit;
}

.stat-number-compact {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
}

.stat-plus-compact {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

/* Original Card Styles */
.card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(52, 149, 220, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    border-radius: inherit;
}

.stat-icon-bg {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.enhanced-card:hover .stat-icon-bg::before {
    left: 100%;
}

.enhanced-card:hover .stat-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.stat-plus {
    display: inline-block;
    animation: pulse 2s infinite;
}

.stat-label {
    font-weight: 600;
    font-size: 0.75rem;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter {
    animation: countUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Button */
.btn-enhanced {
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    position: relative;
}

.btn-enhanced:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    border-radius: inherit;
}

.btn-enhanced:hover .btn-shine {
    left: 100%;
}

/* CTA Button */
.story-cta .btn {
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.story-cta .btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

/* Course Hero Section */
.course-hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.course-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(29, 78, 216, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.course-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(59, 130, 246, 0.8), transparent),
        radial-gradient(4px 4px at 40px 70px, rgba(30, 58, 138, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(29, 78, 216, 0.9), transparent),
        radial-gradient(3px 3px at 130px 80px, rgba(59, 130, 246, 0.7), transparent),
        radial-gradient(5px 5px at 160px 30px, rgba(30, 58, 138, 0.5), transparent),
        radial-gradient(2px 2px at 180px 60px, rgba(29, 78, 216, 0.8), transparent);
    background-repeat: repeat;
    background-size: 250px 150px;
    animation: particleMove 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Excel-themed hero section - MUST come after default styles */
.course-hero-section.excel-theme {
    background: linear-gradient(135deg, #185c37 0%, #217346 50%, #0e5c2f 100%) !important;
}

.course-hero-section.excel-theme::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(24, 92, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(33, 115, 70, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(14, 92, 47, 0.15) 0%, transparent 50%) !important;
}

.course-hero-section.excel-theme::after {
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(33, 115, 70, 0.8), transparent),
        radial-gradient(4px 4px at 40px 70px, rgba(24, 92, 55, 0.6), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(14, 92, 47, 0.9), transparent),
        radial-gradient(3px 3px at 130px 80px, rgba(33, 115, 70, 0.7), transparent),
        radial-gradient(5px 5px at 160px 30px, rgba(24, 92, 55, 0.5), transparent),
        radial-gradient(2px 2px at 180px 60px, rgba(14, 92, 47, 0.8), transparent) !important;
}

/* Excel theme stat icons */
.course-hero-section.excel-theme .stat-icon {
    background: linear-gradient(135deg, #217346, #0e5c2f) !important;
}

.course-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Course Badges */
.course-badge-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.course-badge.featured {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.course-badge.category {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.course-badge:hover {
    transform: translateY(-2px);
}

/* Course Hero Title */
.course-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.course-hero-title .text-gradient {
    background: linear-gradient(135deg, #3b82f6, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #dc2626);
    border-radius: 2px;
}

/* Course Description */
.course-hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* Course Stats Row */
.course-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.course-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.course-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.course-stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.course-stat-item .stat-content {
    display: flex;
    flex-direction: column;
}

.course-stat-item .stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.course-stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Course Pricing */
.course-pricing {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    position: relative;
}

.discount-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Course Actions */
.course-actions {
    display: flex;
}
.course-actions  .btn-enroll {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.course-actions  .btn-enroll:hover {
    background: linear-gradient(135deg, #c82333, #b21e2f);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.4);
}

.btn-demo {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Course Hero Visual */
.course-hero-visual {
    position: relative;
    z-index: 2;
}

.course-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.course-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.course-image-container:hover .image-overlay {
    opacity: 1;
}

.course-image-container:hover .course-hero-image {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-element i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: -15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    right: -10%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 4.5s;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

/* Particle Animation */
@keyframes particleMove {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-100px) translateX(50px);
    }
    66% {
        transform: translateY(-200px) translateX(-50px);
    }
    100% {
        transform: translateY(-300px) translateX(0px);
    }
}

@keyframes particleFade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Additional Particle Layers */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(30, 58, 138, 0.9);
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.6);
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 80%;
    animation-delay: 2s;
    background: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.particle:nth-child(3) {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
    background: rgba(29, 78, 216, 0.7);
    box-shadow: 0 0 20px rgba(29, 78, 216, 0.4);
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 70%;
    animation-delay: 6s;
    background: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 50%;
    animation-delay: 8s;
    background: rgba(30, 58, 138, 0.8);
    box-shadow: 0 0 14px rgba(30, 58, 138, 0.5);
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 90%;
    animation-delay: 10s;
    background: rgba(29, 78, 216, 0.9);
    box-shadow: 0 0 8px rgba(29, 78, 216, 0.7);
}

.particle:nth-child(7) {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 60%;
    animation-delay: 1s;
    background: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.particle:nth-child(8) {
    width: 9px;
    height: 9px;
    top: 45%;
    left: 85%;
    animation-delay: 3s;
    background: rgba(30, 58, 138, 0.7);
    box-shadow: 0 0 18px rgba(30, 58, 138, 0.5);
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    top: 75%;
    left: 15%;
    animation-delay: 5s;
    background: rgba(29, 78, 216, 0.9);
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.7);
}

.particle:nth-child(10) {
    width: 7px;
    height: 7px;
    top: 35%;
    left: 25%;
    animation-delay: 7s;
    background: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 14px rgba(59, 130, 246, 0.6);
}

.particle:nth-child(11) {
    width: 8px;
    height: 8px;
    top: 55%;
    left: 75%;
    animation-delay: 9s;
    background: rgba(30, 58, 138, 0.8);
    box-shadow: 0 0 16px rgba(30, 58, 138, 0.5);
}

.particle:nth-child(12) {
    width: 4px;
    height: 4px;
    top: 85%;
    left: 45%;
    animation-delay: 11s;
    background: rgba(29, 78, 216, 0.9);
    box-shadow: 0 0 8px rgba(29, 78, 216, 0.7);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) translateX(30px) scale(1.2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-hero-title {
        font-size: 2.5rem;
    }
    
    .course-stats-row {
        gap: 1rem;
    }
    
    .course-stat-item {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        padding: 0.75rem 1rem;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .btn-enroll, .btn-demo {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        text-align: center;
    }
    
    .floating-element {
        display: none;
    }
    
    .course-hero-image {
        height: 300px;
    }
    
    .particle {
        display: none;
    }
}

@media (max-width: 576px) {
    .course-hero-title {
        font-size: 2rem;
    }
    
    .course-hero-description {
        font-size: 1rem;
    }
    
    .course-stat-item {
        min-width: 100%;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .original-price {
        font-size: 1.2rem;
    }
}

/* Course Details Card */
.course-details-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.course-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Course Card Header */
.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.course-level-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-rating {
    text-align: right;
}

.course-rating .stars {
    color: #f59e0b;
    margin-bottom: 0.25rem;
}

.course-rating .stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.rating-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* Course Card Pricing */
.course-card-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    text-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}

.original-price-large {
    font-size: 1.5rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.discount-percent {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limited-time {
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Course Features List */
.course-features-list {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    width: 20px;
    font-size: 1.1rem;
}

.feature-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-title {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-value {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 600;
}

/* Course Highlights */
.course-highlights {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.highlights-title {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(3px);
}

.highlight-item i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Course Card Actions */
.course-card-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-enroll-card {
    flex: 2;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-enroll-card:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-demo-card {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #374151;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.btn-demo-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Course Card Footer */
.course-card-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.footer-item i {
    color: #3b82f6;
}

/* Color Classes */
.text-purple {
    color: #8b5cf6 !important;
}

/* Responsive Design for Course Card */
@media (max-width: 768px) {
    .course-details-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .course-card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .current-price-large {
        font-size: 2rem;
    }
    
    .course-features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card-actions {
        flex-direction: column;
    }
    
    .course-card-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Course Overview Section - New Layout */
.course-overview-section {
    background: #ffffff;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Overview Content */
.overview-content {
    padding-right: 2rem;
}

.overview-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    color: #1e3a8a;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.overview-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.2;
}
.overview-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Stats Row */
.overview-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(
        135deg, rgb(71 124 210 / 96%), rgb(29 78 216 / 97%));
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Overview Features */
.overview-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
}

/* Overview Visual */
.overview-visual {
    position: relative;
}

.visual-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 2;
}

.visual-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.visual-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card .card-icon i {
    font-size: 1.2rem;
    color: white;
}

.visual-card h5 {
    color: #1e3a8a;
    font-weight: 700;
    margin: 0;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(3px);
}

.skill-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon i {
    font-size: 0.9rem;
    color: white;
}

.skill-item span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 600;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: -10px;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    left: -20px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: -10px;
    right: 20px;
    animation-delay: 2s;
}

.floating-badge i {
    color: #3b82f6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Course Benefits Section */
.course-benefits-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.course-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes subtleMove {
    0%, 100% { 
        background-position: 0 0, 100% 100%, 0 0, 20px 20px;
        opacity: 1;
    }
    50% { 
        background-position: 50px 50px, calc(100% - 50px) calc(100% - 50px), 20px 20px, 40px 40px;
        opacity: 0.8;
    }
}

.benefits-section {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 2px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 16px 16px 0 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 25px rgba(0, 0, 0, 0.1),
        0 10px 10px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

/* Image-based Layout Styles */
.benefits-image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
}
.benefits-image-wrapper img{
    width:100%;
}

/* Vertical Benefits List */
.benefits-content {
    padding-left: 20px;
}

.benefit-item-vertical {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.benefit-item-vertical:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.benefit-content-vertical h6 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

.benefit-content-vertical p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Pre-Curriculum CTA Section */
.pre-curriculum-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pre-curriculum-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.cta-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    animation: whatsappZoom 1.5s ease-in-out infinite;
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Icon Zoom Animation */
@keyframes whatsappZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

.benefit-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border: 2px solid #ffffff;
    z-index: 10;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563eb;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.benefit-card h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Alternative Layout Styles */

/* Option 2: 2x2 Grid Layout */
.benefit-card-large {
    padding: 3rem 2rem;
    min-height: 280px;
}

.benefit-card-large .benefit-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.benefit-card-large h6 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.benefit-card-large p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Option 3: Horizontal List Layout */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item-content {
    flex: 1;
}

.benefit-item-content h6 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Option 4: Split Layout with Featured Benefit */
.benefit-card-featured {
    padding: 3rem 2.5rem;
    min-height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #cbd5e1;
}

.benefit-card-featured h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.benefit-card-featured p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.benefit-number-large {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    top: -20px;
    right: -20px;
}

.benefit-icon-large {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-card-compact {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    min-height: auto;
}

.benefit-card-compact .benefit-number {
    position: static;
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.benefit-icon-small {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0;
    flex-shrink: 0;
}

.benefit-card-compact h6 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.benefit-card-compact p {
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive adjustments for alternative layouts */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-card-featured {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .overview-main-title {
        font-size: 1.8rem;
    }
    
    .overview-stats-row {
        justify-content: center;
        gap: 1rem;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        position: static;
        margin: 0.5rem 0;
        animation: none;
    }
    
    .benefits-section {
        padding: 2rem 1rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
}

/* What You'll Learn Section */
.what-youll-learn-section {
    background: #f8fafc;
}

/* Section Background Variations */
.bg-light {
    background: #f8fafc !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
}

.testimonials-section.bg-light {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
}

.faq-section.bg-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.skill-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-icon i {
    font-size: 1.3rem;
    color: white;
}

.skill-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.skill-list li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Course Pages Mobile Optimizations */
@media (max-width: 768px) {
    /* Course Hero Section Mobile */
    .course-hero-section {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .course-hero-content {
        padding: 2rem 0;
    }

    .course-hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .course-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .course-stats-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

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

    .course-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .course-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .course-details-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    /* Course Overview Mobile */
    .overview-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .overview-main-title {
        font-size: 1.8rem;
    }

    .overview-stats-row {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .overview-visual {
        text-align: center;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Benefits Section Mobile */
    .benefits-image-wrapper {
        margin-bottom: 2rem;
    }

    .benefit-item-vertical {
        padding: 1.5rem;
    }

    /* What You'll Learn Mobile */
    .skill-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .skill-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    /* Curriculum Mobile */
    .curriculum-accordion-button {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .curriculum-week-badge {
        align-self: flex-start;
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .curriculum-title-content h4 {
        font-size: 1.1rem;
    }

    .curriculum-accordion-body {
        padding: 0 1.5rem 1.5rem;
    }

    /* Features Section Mobile */
    .feature-benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* CTA Sections Mobile */
    .cta-main-title {
        font-size: 2rem;
        text-align: center;
    }

    .cta-main-subtitle {
        text-align: center;
    }

    .cta-features {
        margin-bottom: 2rem;
    }

    .cta-features .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .pricing-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pricing-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* General Section Improvements */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .overview-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .highlights-wrapper {
        padding: 2rem;
    }

    .highlight-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    /* Floating Elements - Hide on mobile for better UX */
    .floating-element,
    .floating-badge {
        display: none !important;
    }

    /* Hero Particles - Hide on mobile for performance */
    .hero-particles {
        display: none;
    }

    /* Background Circles - Reduce opacity on mobile */
    .bg-circle {
        opacity: 0.3;
    }
}

/* Curriculum Section */
.curriculum-section {
    background: #f8fafc;
}

.curriculum-accordion {
    max-width: 100%;
}

.curriculum-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.curriculum-accordion-item:last-child {
    margin-bottom: 0;
}

.curriculum-accordion-button {
    background: #ffffff;
    border: none;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
    border-radius: 20px !important;
    box-shadow: none;
    transition: all 0.3s ease;
}

.curriculum-accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.05));
    color: #1e3a8a;
    box-shadow: none;
}

.curriculum-accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    border-color: transparent;
}

.curriculum-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b82f6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.curriculum-week-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.curriculum-title-content {
    flex: 1;
}

.curriculum-title-content h4 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.curriculum-title-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
}

.curriculum-accordion-body {
    padding: 0 2rem 2rem;
    background: #ffffff;
}

.curriculum-topics h6 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.curriculum-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-topics li {
    padding: 0.75rem 0;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.curriculum-topics li:last-child {
    border-bottom: none;
}

.curriculum-topics li:hover {
    background: rgba(59, 130, 246, 0.02);
    padding-left: 0.5rem;
    border-radius: 8px;
}

.curriculum-topics li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Hover Effects */
.curriculum-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.curriculum-accordion-button:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(29, 78, 216, 0.03));
}

.curriculum-accordion-button:hover .curriculum-week-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .curriculum-accordion-button {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .curriculum-week-badge {
        align-self: flex-start;
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .curriculum-title-content h4 {
        font-size: 1.1rem;
    }
    
    .curriculum-accordion-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .curriculum-accordion-button::after {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        margin-left: 0;
    }
}

/* Instructor Section */
.instructor-section {
    background: #f8fafc;
}

.instructor-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.instructor-image {
    position: relative;
    display: inline-block;
}

.instructor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3b82f6;
}

.instructor-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.instructor-name {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.instructor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.stat-item i {
    color: #3b82f6;
}

.instructor-bio {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.instructor-credentials h6 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.instructor-credentials ul {
    list-style: none;
    padding: 0;
}

.instructor-credentials li {
    color: #374151;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.instructor-credentials li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
}

.testimonials-slider {
    position: relative;
    margin: 0 -15px;
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    min-height: 80px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.2);
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(59, 130, 246, 0.2);
}

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

.author-info h6 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Slick Slider Customization for Testimonials */
.testimonials-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.testimonials-slider .slick-arrow:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.testimonials-slider .slick-prev {
    left: -25px;
}

.testimonials-slider .slick-next {
    right: -25px;
}

.testimonials-slider .slick-arrow:before {
    display: none;
}

.testimonials-slider .slick-arrow i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-slider {
        margin: 0;
    }
    
    .testimonial-slide {
        padding: 0;
    }
    
    .testimonials-slider .slick-arrow {
        display: none !important;
    }
}

/* Download Syllabus Button */
.btn-download-syllabus {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
}

.btn-download-syllabus:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Syllabus Download Modal */
.syllabus-modal .modal-header {
    background: linear-gradient(135deg, #3b4c7a, #2d3748);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.syllabus-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.syllabus-modal .btn-close {
    background: none;
    border: none;
    color: white;
    opacity: 0.8;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.syllabus-modal .btn-close:hover {
    opacity: 1;
    color: white;
}

.syllabus-modal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.syllabus-modal .modal-body {
    padding: 2rem;
    background: #f8fafc;
}

.syllabus-form-input {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.syllabus-form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    background: white;
}

.syllabus-form-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.btn-download-now {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border: none;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-download-now:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

/* Course Features Section */
.course-features-section {
    background: #f8fafc;
}

.feature-benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-benefit-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-benefit-card .feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-benefit-card h5 {
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

.accordion-item {
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    border: none;
    color: #1e3a8a;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.05));
    color: #1e3a8a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-pricing {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.price-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
}

.price-original {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-save {
    background: #dc2626;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.price-note {
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-cta-main {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background: linear-gradient(135deg, #c82333, #b21e2f);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.guarantee-item i {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .curriculum-timeline::before {
        left: 15px;
    }
    
    .curriculum-number {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        margin-right: 1rem;
    }
    
    .curriculum-content {
        padding: 1.5rem;
    }
    
    .instructor-card {
        padding: 2rem;
    }
    
    .instructor-image img {
        width: 120px;
        height: 120px;
    }
    
    .instructor-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .price-highlight {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Course Categories Section */
.categories-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-section .section-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.categories-section .label-line {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.categories-section .section-label {
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.categories-section h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    margin-bottom: 1rem;
}

.category-icon .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:nth-child(1) .icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.category-card:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.category-card:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #2c3e50;
}

.category-card:nth-child(4) .icon-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-card:nth-child(5) .icon-wrapper {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.category-card:nth-child(6) .icon-wrapper {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.category-card:nth-child(7) .icon-wrapper {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.category-card:nth-child(8) .icon-wrapper {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.category-card:hover .icon-wrapper {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: rotate(5deg);
}

.category-icon .icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.category-card:hover .icon-wrapper::before {
    left: 100%;
}

.category-title {
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-title {
    color: #feca57;
    transform: scale(1.05);
}

.category-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-count {
    color: white;
}

/* Slick Slider Styles */
.categories-slider {
    margin: 0 -15px;
    padding: 20px 0;
}

.category-slide {
    padding: 20px 15px;
    outline: none;
}

/* Custom Slick Navigation */
.categories-section .slick-prev,
.categories-section .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.categories-section .slick-prev:hover,
.categories-section .slick-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.categories-section .slick-prev {
    left: -25px;
}

.categories-section .slick-next {
    right: -25px;
}

.categories-section .slick-prev:before,
.categories-section .slick-next:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

/* Slick Dots */
.categories-section .slick-dots {
    bottom: -50px;
}

.categories-section .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.categories-section .slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

/* Add more gradient variations */
.category-card:nth-child(9) .icon-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-card:nth-child(10) .icon-wrapper {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .office-main-img {
        height: 200px;
    }
    
    .video-thumbnail,
    .group-photo {
        height: 100px;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .category-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Course Hero Section Small Mobile */
    .course-hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .course-hero-description {
        font-size: 0.95rem;
    }

    .course-stat-item .stat-number {
        font-size: 1rem;
    }

    .course-stat-item .stat-label {
        font-size: 0.8rem;
    }

    .course-details-card {
        padding: 1rem;
    }

    .current-price-large {
        font-size: 2rem;
    }

    .original-price-large {
        font-size: 1.2rem;
    }

    /* Course Overview Small Mobile */
    .overview-main-title {
        font-size: 1.5rem;
    }

    .overview-description {
        font-size: 0.95rem;
    }

    .stat-box .stat-number {
        font-size: 1.5rem;
    }

    .stat-box .stat-label {
        font-size: 0.75rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits Section Small Mobile */
    .benefit-item-vertical {
        padding: 1rem;
    }

    .benefit-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .benefit-content-vertical h6 {
        font-size: 16px;
    }

    .benefit-content-vertical p {
        font-size: 0.9rem;
    }

    /* What You'll Learn Small Mobile */
    .skill-card h5 {
        font-size: 1.1rem;
    }

    .skill-list li {
        font-size: 0.85rem;
    }

    /* Curriculum Small Mobile */
    .curriculum-accordion-button {
        padding: 1rem;
    }

    .curriculum-title-content h4 {
        font-size: 1rem;
    }

    .curriculum-title-content p {
        font-size: 0.85rem;
    }

    /* Features Section Small Mobile */
    .feature-benefit-card h5 {
        font-size: 1.1rem;
    }

    .feature-benefit-card p {
        font-size: 0.9rem;
    }

    /* CTA Sections Small Mobile */
    .cta-main-title {
        font-size: 1.8rem;
    }

    .cta-main-subtitle {
        font-size: 0.95rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .course-includes li {
        font-size: 0.85rem;
    }

    /* General Small Mobile */
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }

    .office-main-img {
        height: 180px;
    }

    .video-thumbnail,
    .group-photo {
        height: 80px;
    }

    .video-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Hide decorative elements on very small screens */
    .title-decoration,
    .bg-circle {
        display: none;
    }
}

.category-icon .icon-wrapper i{
    font-size:1.5rem;
}

/* Professional Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3b4d8c 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-label {
    position: relative;
}

.label-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.label-text::before,
.label-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.label-text::before {
    left: -80px;
}

.label-text::after {
    right: -80px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Student Images */
.student-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.student-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.student-img:hover {
    transform: scale(1.05);
}

/* Button Styles */
.btn-lg {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-radius: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .label-text::before,
    .label-text::after {
        width: 40px;
    }
    
    .label-text::before {
        left: -60px;
    }
    
    .label-text::after {
        right: -60px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-bottom: 0;
        padding-top: 1.5rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .label-text::before,
    .label-text::after {
        display: none;
    }
    
    .btn-lg {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

/* Video Courses Section */
.video-courses-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Video Courses Section - Custom Label Styling */
.video-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3495dc, transparent);
    max-width: 80px;
}

.video-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(135deg, #1c88e4, #0961e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Courses Section - Custom Label Styling */
.courses-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.courses-label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3495dc, transparent);
    max-width: 80px;
}

.courses-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(135deg, #1c88e4, #0961e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Journey Section - Custom Label Styling */
.journey-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-label-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3495dc, transparent);
    max-width: 80px;
}

.journey-label {
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(135deg, #1c88e4, #0961e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.video-courses-slider {
    margin: 0 -15px;
    padding: 20px 0;
}

.video-slide {
    padding: 0 15px;
    outline: none;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 400px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button i {
    font-size: 24px;
    color: #333;
    margin-left: 3px;
}

.video-card:hover .play-button {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video Slider Navigation */
.video-courses-section .slick-prev,
.video-courses-section .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-courses-section .slick-prev:hover,
.video-courses-section .slick-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-courses-section .slick-prev {
    left: -25px;
}

.video-courses-section .slick-next {
    right: -25px;
}

.video-courses-section .slick-prev:before,
.video-courses-section .slick-next:before {
    font-size: 20px;
    color: white;
    opacity: 1;
}

/* Video Slider Dots */
.video-courses-section .slick-dots {
    bottom: -50px;
}

.video-courses-section .slick-dots li button:before {
    color: #ccc;
    font-size: 12px;
}

.video-courses-section .slick-dots li.slick-active button:before {
    color: #333;
    opacity: 1;
}

/* Responsive Video Cards */
@media (max-width: 768px) {
    .video-card {
        height: 300px;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
}

.social-section .social-title{
    text-align:left !important;
}

/* Syllabus CTA Section */
.syllabus-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.syllabus-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.syllabus-cta-content h4 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.syllabus-cta-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-syllabus-cta {
    background: linear-gradient(135deg, #E91E63 0%, #E91E63 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-syllabus-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #E91E63 0%, #E91E63 100%);
}

/* Syllabus Download Modal Styles */
.syllabus-modal .modal-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

.syllabus-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.syllabus-modal .btn-close {
    filter: brightness(0) invert(1);
}

.syllabus-modal .modal-body {
    padding: 2rem;
    background: #f8fafc;
}

.syllabus-modal .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.syllabus-modal .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.syllabus-modal .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.syllabus-modal .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.syllabus-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Final CTA Section - Modern Geometric Design */
.final-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: geometricMove 20s linear infinite;
}

@keyframes geometricMove {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
    }
}

/* Alternative Background Options - Uncomment to use */

/* Option 1: Blue Tech Gradient with Dots */
/*
.final-cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: dotMove 15s linear infinite;
}

@keyframes dotMove {
    0% { background-position: 0 0; }
    100% { background-position: 20px 20px; }
}
*/

/* Option 2: Purple Cosmic Gradient */
/*
.final-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
}
*/

/* Option 3: Dark Green Tech */
/*
.final-cta-section {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 25%, #047857 50%, #059669 75%, #10b981 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}
*/

/* Option 4: Orange Sunset Gradient */
/*
.final-cta-section {
    background: linear-gradient(135deg, #7c2d12 0%, #ea580c 25%, #f97316 50%, #fb923c 75%, #fed7aa 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
}
*/

/* Left Content Styles */
.cta-left-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.cta-main-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-main-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-features {
    margin-bottom: 2rem;
}

.final-cta-section .cta-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.final-cta-section .cta-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.final-cta-section .feature-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.final-cta-section .feature-icon i {
    color: white !important;
    font-size: 1.2rem;
}

.final-cta-section .feature-content h5 {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.final-cta-section .feature-content p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.guarantee-badges-left {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.final-cta-section .guarantee-badges-left .guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981 !important;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    flex: 1;
    min-width: 0;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.final-cta-section .guarantee-badges-left .guarantee-item:hover {
    background: rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.final-cta-section .guarantee-badges-left .guarantee-item i {
    font-size: 1.1rem;
    color: #10b981 !important;
}

/* Right Pricing Card Styles */
.cta-pricing-card-right {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.pricing-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.pricing-header h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.countdown-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.pricing-body {
    padding: 2rem;
}

.price-display-right {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

.price-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.original-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.discount-percent {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.savings-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #fbbf24;
}

.course-includes {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.course-includes h6 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-includes h6::before {
    content: '✨';
    font-size: 1.2rem;
}

.course-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.course-includes li {
    color: #475569;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #10b981;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.course-includes li:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    background: #f0fdf4;
}

.course-includes li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 0.25rem;
    flex-shrink: 0;
}

.pricing-actions {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.btn-cta-primary-right {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    width: 100%;
}

.btn-cta-primary-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
}

.btn-cta-secondary-right {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-cta-secondary-right:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.trust-indicators {
    background: #f8fafc;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-item i {
    color: #fbbf24;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .final-cta-section .cta-left-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .final-cta-section .cta-main-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .final-cta-section .cta-main-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        min-height: auto;
    }
    
    .final-cta-section .cta-main-title {
        font-size: 1.8rem;
            line-height: 3rem;
    }
    
    .final-cta-section .cta-features .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1rem;
    }
    
    .final-cta-section .feature-content {
        text-align: center;
    }
    
    .final-cta-section .guarantee-badges-left {
        flex-direction: column;
        align-items: stretch;
    }
    
    .final-cta-section .guarantee-badges-left .guarantee-item {
        flex: none;
        justify-content: flex-start;
        text-align: left;
    }
    
    .final-cta-section .amount {
        font-size: 2.8rem;
    }
    
    .final-cta-section .trust-indicators {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Floating Button */
.quick-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.quick-btn:hover {
    background: #0355d0;
}

/* Popup Overlay */
.enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    backdrop-filter: blur(8px);
    z-index: 999999;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.enquiry-modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Popup Box */
.enquiry-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    max-width: 450px;
    margin: 40px auto;
    padding: 0;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0,0,0,0.15),
        0 15px 35px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Popup Header */
.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px 20px;
    position: relative;
    text-align: center;
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

/* Animation */
.animate-popup {
    animation: popupScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupScale {
    from {
        transform: scale(0.7) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    color: white;
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Title */
.popup-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.popup-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
}
/* Form Container */
#quickEnquiryForm {
    padding: 30px;
}

/* Input Styles */
.form-group-floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group-floating input,
.form-group-floating textarea {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-family: 'Inter', sans-serif;
}

.form-group-floating input:focus,
.form-group-floating textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0,0,0,0.08);
    background: #fefefe;
}

.form-group-floating textarea {
    resize: vertical;
    min-height: 80px;
}

/* Input Icons */
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group-floating input:focus + .input-icon,
.form-group-floating textarea:focus + .input-icon {
    color: #667eea;
    transform: translateY(-50%) scale(1.1);
}

/* Validation Styles */
.form-group-floating input.invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group-floating input.invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.validation-message {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.validation-message:empty {
    display: none;
}

.validation-message.error {
    color: #dc2626;
}

.validation-message.success {
    color: #059669;
}

/* Submit Button */
.btn-submit-gradient {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit-gradient:hover::before {
    left: 100%;
}

.btn-submit-gradient:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-submit-gradient:active {
    transform: translateY(0);
}

/* Response Message */
.response-msg {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.response-msg.success {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.response-msg.error {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Loader */
.enquiry-loader {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

.enquiry-loader p {
    color: #64748b;
    font-weight: 500;
    margin: 10px 0 0;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 4px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .enquiry-modal {
        padding: 15px;
    }

    .enquiry-card {
        max-width: 100%;
        margin: 20px auto;
        border-radius: 20px;
    }

    .popup-header {
        padding: 20px;
    }

    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .popup-title {
        font-size: 24px;
    }

    .popup-subtitle {
        font-size: 13px;
    }

    #quickEnquiryForm {
        padding: 20px;
    }

    .form-group-floating input,
    .form-group-floating textarea {
        padding: 14px 14px 14px 45px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .input-icon {
        left: 14px;
        font-size: 14px;
    }

    .btn-submit-gradient {
        padding: 14px 20px;
        font-size: 15px;
    }

    .close-btn {
        right: 15px;
        top: 15px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .enquiry-card {
        margin: 10px auto;
    }

    .popup-header {
        padding: 15px;
    }

    .popup-title {
        font-size: 20px;
    }

    #quickEnquiryForm {
        padding: 15px;
    }

    .form-group-floating {
        margin-bottom: 25px;
    }

    .validation-message {
        font-size: 11px;
        margin-top: 3px;
    }
}

/* Enrollment Modal Validation Styles */
.enroll-modal .form-group-floating input.invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.enroll-modal .form-group-floating input.invalid:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.enroll-modal .validation-message {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    min-height: 16px;
    transition: all 0.3s ease;
}

.enroll-modal .validation-message.error {
    color: #dc2626;
}

.enroll-modal .validation-message.success {
    color: #059669;
}

.enroll-modal .form-group-floating input:focus,
.enroll-modal .form-group-floating textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0,0,0,0.08);
    background: #fefefe;
}

.enroll-modal .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.enroll-modal .form-group-floating input:focus + .input-icon,
.enroll-modal .form-group-floating textarea:focus + .input-icon {
    color: #667eea;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Design for Enrollment Modal */
@media (max-width: 768px) {
    .enroll-modal .form-group-floating input,
    .enroll-modal .form-group-floating textarea {
        padding: 14px 14px 14px 45px;
        font-size: 16px;
    }

    .enroll-modal .input-icon {
        left: 14px;
        font-size: 14px;
    }

    .enroll-modal .validation-message {
        font-size: 11px;
        margin-top: 3px;
    }
}

.form-control-lg {
    font-size: 1rem;
}