/* ===== DIGITAL MARKETING WEBSITE STYLES ===== */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #005F73;
    --primary-dark: #004a5c;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #E9D758;
    --danger-color: #EE6C4D;
    --light-color: #F9F9F9;
    --dark-color: #212529;
    --white: #F9F9F9;
    --coral-color: #EE6C4D;
    --yellow-color: #E9D758;
    --gradient-primary: linear-gradient(135deg, #005F73 0%, #004a5c 100%);
    --gradient-secondary: linear-gradient(135deg, #EE6C4D 0%, #E9D758 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 95, 115, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 95, 115, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 95, 115, 0.175);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 76px; /* Account for fixed navbar height */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===== HEADER & NAVIGATION STYLES ===== */

/* Main Header */
.main-header {
    position: relative;
    z-index: 1030;
}

/* Navbar Styling */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Brand Logo */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-dark) !important;
}

/* Desktop Navigation Links */
.nav-link-custom {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
    transition: var(--transition);
}

.nav-link-custom:hover::before {
    left: 100%;
}

.nav-link-custom:hover {
    color: var(--primary-color) !important;
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: var(--primary-color) !important;
    background-color: rgba(13, 110, 253, 0.1);
}

/* Dropdown Menu Styling */
.dropdown-menu-custom {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: dropdownFadeIn 0.3s ease;
}

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

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

/* CTA Button */
.btn-cta {
    background: var(--gradient-secondary);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.btn-cta::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: var(--transition);
}

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

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== OFFCANVAS MOBILE MENU STYLES ===== */

.offcanvas {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 320px !important;
}

.offcanvas-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.offcanvas-title {
    color: white !important;
}

.btn-close {
    filter: invert(1);
}

/* Offcanvas Navigation Links */
.offcanvas-link {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 1rem 1.5rem !important;
    font-weight: 500;
    border-radius: var(--border-radius);
    margin: 0.25rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.offcanvas-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.offcanvas-link:hover::before {
    left: 0;
}

.offcanvas-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.offcanvas-sublink {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem;
    transition: var(--transition);
}

.offcanvas-sublink:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Collapse Icon Animation */
.offcanvas-link[data-bs-toggle="collapse"] .bi-chevron-down {
    transition: var(--transition);
}

.offcanvas-link[data-bs-toggle="collapse"]:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

/* ===== MAIN CONTENT STYLES ===== */   

/* ===== FOOTER STYLES ===== */

/* Main Footer */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Footer Brand */
.footer-brand h4 {
    color: var(--primary-color) !important;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
    color: var(--coral-color);
}

.footer-links a:hover {
    color: white;
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    font-size: 0.95rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    flex-shrink: 0;
    width: 20px;
}

/* ===== MODAL STYLES ===== */

.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Modern Modal Styles */
.modern-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.modern-header {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    position: relative;
}

.modern-header::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.modal-title-section .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.modal-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.modern-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.modern-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modern-body {
    padding: 1rem;
    background: #f8f9fa;
}

.form-section {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.modern-form .form-group {
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF9800;
    z-index: 2;
    font-size: 0.9rem;
}

.modern-input, .modern-select, .modern-textarea {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.modern-input:focus, .modern-select:focus, .modern-textarea:focus {
    border-color: #FF9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.15);
    outline: none;
}

.floating-label {
    position: absolute;
    left: 30px;
    top: 0;
    transform: translateY(0);
    color: #FF9800;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.benefits-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.benefits-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e3f2fd;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-content h6 {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
}

.benefit-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FF9800;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-footer {
    background: white;
    border: none;
    padding: 1rem;
    text-align: center;
}

.btn-modern-primary {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
    text-decoration: none;
    cursor: pointer;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
    color: white;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.privacy-note i {
    color: #28a745;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modern-header {
        padding: 1.5rem;
    }
    
    .modern-body {
        padding: 1.5rem;
    }
    
    .modal-header-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .benefits-section {
        margin-top: 1.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8f9fa;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .trust-number, .trust-label {
        display: inline;
    }
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 95, 115, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 95, 115, 0.25);
}

/* ===== COURSE PAGE STYLES ===== */

/* Course Hero Enhanced */
.course-hero-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.course-hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.course-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.course-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
}

.highlight-item i {
    color: var(--yellow-color);
    font-size: 1.25rem;
}

.course-pricing-hero {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.original-price {
    font-size: 1.25rem;
    color: rgba(249, 249, 249, 0.6);
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.discount-badge {
    background: var(--coral-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.limited-offer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow-color);
    font-weight: 500;
}

.btn-enroll-now {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
}

.btn-enroll-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 108, 77, 0.3);
    color: var(--white);
}

.money-back-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(249, 249, 249, 0.8);
    font-size: 0.9rem;
}

/* Course Preview Card */
.course-preview-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
}

.preview-dots span:first-child {
    background: #ff5f56;
}

.preview-dots span:nth-child(2) {
    background: #ffbd2e;
}

.preview-dots span:last-child {
    background: #27ca3f;
}

.preview-title {
    font-weight: 600;
    color: var(--primary-color);
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-trend.positive {
    color: var(--success-color);
    font-size: 1.25rem;
}

.seo-chart {
    height: 100px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
    padding: 1rem 0;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--coral-color));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: all 0.3s ease;
}

.bar.active {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(238, 108, 77, 0.3);
}

/* Learning Outcomes Enhanced */
.outcome-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 95, 115, 0.1);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.outcome-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.outcome-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Enhanced Curriculum */
.curriculum-enhanced {
    margin-top: 2rem;
}

.module-card {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 95, 115, 0.1);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.module-header:hover {
    background: #f8f9fa;
}

.module-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.module-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.module-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.module-arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.module-header[aria-expanded="true"] .module-arrow {
    transform: rotate(180deg);
}

.module-content {
    padding: 0 1.5rem 1.5rem;
    background: #f8f9fa;
}

.lesson-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lesson-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 95, 115, 0.1);
}

.lesson-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.lesson-item span:first-of-type {
    flex: 1;
    font-weight: 500;
    color: var(--dark-color);
}

.lesson-duration {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Enhanced Sidebar */
.course-sidebar-enhanced {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.1);
    margin-bottom: 2rem;
    border: 2px solid var(--coral-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    width: 20px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-enroll-primary {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enroll-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(238, 108, 77, 0.3);
    color: var(--white);
}

.btn-demo-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-demo-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.guarantee-section {
    text-align: center;
    color: var(--success-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Enhanced Instructor Card */
.instructor-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
}

.instructor-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.instructor-profile {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.instructor-avatar-enhanced {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.instructor-title-text {
    color: #6c757d;
    margin: 0 0 0.75rem 0;
}

.instructor-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat {
    font-size: 0.875rem;
    color: var(--coral-color);
    font-weight: 500;
}

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

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

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Testimonials Enhanced */
.testimonials-section-course {
    background: #f8f9fa;
}

.testimonial-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

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

.quote-icon {
    color: var(--coral-color);
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.student-name {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.student-role {
    color: #6c757d;
    font-size: 0.875rem;
    margin: 0;
}

/* FAQ Section */
.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    background: #f8f9fa;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(249, 249, 249, 0.9);
}

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

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

.cta-current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.cta-discount {
    background: var(--coral-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.btn-final-cta {
    background: var(--gradient-secondary);
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 108, 77, 0.3);
    color: var(--white);
}

.cta-guarantee {
    color: rgba(249, 249, 249, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-hero-title {
        font-size: 2.5rem;
    }
    
    .course-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .growth-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .pricing-main {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .instructor-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-achievements {
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Course Overview Section */
.course-overview-section {
    margin-bottom: 4rem;
}

.course-overview-content {
    padding-right: 2rem;
}

.overview-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6c757d;
}

.course-stats-overview {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.course-highlights-overview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.highlight-point i {
    color: var(--success-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.course-overview-visual {
    position: relative;
}

.overview-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.8) 0%, rgba(238, 108, 77, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.overlay-text {
    text-align: center;
    color: var(--white);
}

.overlay-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.overlay-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
}

.success-metrics {
    display: flex;
    gap: 1rem;
}

.metric-card {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-text {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

/* What You'll Master Section Background */
.what-youll-master-section-wrapper {
    background: linear-gradient(135deg, #005f73 0%, #0a9396 50%, #ee6c4d 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

.what-youll-master-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.what-youll-master-section {
    padding: 4rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .what-youll-master-section {
        padding: 3rem 1rem;
    }
}

/* Course Overview Responsive */
@media (max-width: 768px) {
    .course-overview-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .course-stats-overview {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .success-metrics {
        flex-direction: column;
    }
    
    .overview-image {
        height: 250px;
    }
}

/* ===== UTILITY CLASSES ===== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== FEATURES SECTION STYLES ===== */

.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 95, 115, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(238, 108, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    position: relative;
}

.badge-text {
    background: var(--coral-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.badge-text::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;
}

.section-badge:hover .badge-text::before {
    left: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--coral-color);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 95, 115, 0.1);
    height: 100%;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--coral-color) 100%) !important;
    border-radius: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.feature-icon svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.feature-card-modern:hover .feature-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-cta {
    color: var(--coral-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-cta::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-cta:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.feature-cta:hover::after {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
}

/* ===== COURSES SECTION STYLES ===== */

.courses-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.courses-section .section-title {
    color: var(--white);
}

.courses-section .section-subtitle {
    color: rgba(249, 249, 249, 0.8);
}

.course-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 95, 115, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--coral-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.course-badge.popular {
    background: var(--yellow-color);
    color: var(--primary-color);
}

.course-badge.best-value-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.course-image-wrapper {
    padding: 0;
    text-align: center;
    background: transparent;
    height: 200px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.course-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto;
    transition: all 0.4s ease;
}

.course-card-modern:hover .course-icon-bg {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.course-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-description {
    flex: 1;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
    hyphens: auto;
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.instructor-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--coral-color), var(--yellow-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.instructor-name {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}


.course-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.course-stats.horizontal {
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.stat-icon {
    font-size: 1rem;
}

.course-cta {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
}

.course-cta:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    color: var(--white);
}

.course-cta.primary {
    background: var(--primary-color);
    width: auto;
    padding: 1rem 2rem;
}

.course-cta.primary:hover {
    background: var(--primary-dark);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.course-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Best Value Card */
.course-card-modern.best-value {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border: 3px solid var(--coral-color);
    position: relative;
    overflow: hidden;
}

.course-card-modern.best-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(238, 108, 77, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(233, 215, 88, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.best-value-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.course-badge.best-value-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Bundle Visual */
.bundle-visual {
    text-align: center;
    margin-bottom: 2rem;
}

.bundle-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.icon-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.2);
    transition: all 0.3s ease;
}

.stack-item.item-1 {
    top: 0;
    left: 35px;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.stack-item.item-2 {
    top: 25px;
    right: 0;
    z-index: 3;
    animation: float 3s ease-in-out infinite 0.5s;
}

.stack-item.item-3 {
    bottom: 25px;
    left: 0;
    z-index: 2;
    animation: float 3s ease-in-out infinite 1s;
}

.stack-item.item-4 {
    bottom: 0;
    right: 35px;
    z-index: 1;
    animation: float 3s ease-in-out infinite 1.5s;
}

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

.bundle-count {
    background: var(--coral-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.count-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.count-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Bundle Info */
.bundle-info {
    padding: 0 1rem;
}

.instructor-avatar.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bundle-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.feature-check {
    background: var(--coral-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Value Highlight */
.value-highlight {
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.savings-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-block;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    overflow: hidden;
}

.savings-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.savings-percent {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.savings-text {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

.value-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral-color);
}

.course-cta.enhanced {
    background: var(--gradient-secondary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(238, 108, 77, 0.3);
}

.course-cta.enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 108, 77, 0.4);
}

.cta-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.limited-offer {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(238, 108, 77, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(238, 108, 77, 0.2);
}

.offer-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--coral-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-card-modern {
        margin-bottom: 2rem;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .best-value-content {
        padding: 2rem;
    }
    
    .course-stats.horizontal {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===== DISTANCE LEARNING SECTION STYLES ===== */

.distance-learning-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.distance-learning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 95, 115, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(238, 108, 77, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.learning-illustration {
    position: relative;
    height: 500px;
    margin-bottom: 2rem;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* People Characters */
.person {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.person-1 {
    top: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.person-2 {
    bottom: 20%;
    right: 15%;
    animation: float 4s ease-in-out infinite 2s;
}

.person-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.2);
    color:#fff;
}

.person-device {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Dashboard Screen */
.dashboard-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 140px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.screen-header {
    background: var(--primary-color);
    height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.screen-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.7;
}

.screen-content {
    padding: 1rem;
    height: calc(100% - 25px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 60px;
}

.chart-bar {
    width: 12px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }
.chart-bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes chartGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

.screen-icons {
    display: flex;
    gap: 0.5rem;
}

.screen-icon {
    font-size: 1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(238, 108, 77, 0.2);
}

.element-1 {
    top: 10%;
    right: 20%;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    top: 60%;
    left: 5%;
    animation: float 3s ease-in-out infinite 1s;
}

.element-3 {
    bottom: 10%;
    left: 30%;
    animation: float 3s ease-in-out infinite 2s;
}

.element-4 {
    top: 30%;
    right: 5%;
    animation: float 3s ease-in-out infinite 3s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    width: 150px;
    height: 100px;
    color: var(--coral-color);
    opacity: 0.3;
}

.line-1 {
    top: 20%;
    left: 20%;
    animation: dashMove 4s linear infinite;
}

.line-2 {
    bottom: 20%;
    right: 20%;
    animation: dashMove 4s linear infinite reverse;
}

@keyframes dashMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
}

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

/* Learning Content */
.learning-content {
    padding: 2rem 0;
}

.learning-content .section-title {
    color: var(--primary-color);
    font-size: 2.25rem;
    line-height: 1.3;
}

.learning-features {
    margin: 2rem 0;
}

.feature-item-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.feature-item-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.12);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* CTA Button */
.btn-view-courses {
    background: var(--gradient-secondary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(238, 108, 77, 0.25);
}

.btn-view-courses:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 108, 77, 0.35);
    color: var(--white);
}

.cta-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .learning-illustration {
        height: 400px;
        margin-bottom: 3rem;
    }
    
    .dashboard-screen {
        width: 160px;
        height: 110px;
    }
    
    .person-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .learning-illustration {
        height: 300px;
    }
    
    .learning-content .section-title {
        font-size: 1.75rem;
    }
    
    .feature-item-small {
        padding: 0.75rem;
    }
    
    .btn-view-courses {
        width: 100%;
        justify-content: center;
    }
}

/* ===== STUDENT TESTIMONIALS SECTION STYLES ===== */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 95, 115, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 215, 88, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 95, 115, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 95, 115, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.15);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d5c 100%);
    color: var(--white);
    transform: scale(1.05);
}

.testimonial-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(238, 108, 77, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-card.featured .quote-icon {
    background: var(--gradient-secondary);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--yellow-color);
    font-size: 1rem;
    margin-top: 2rem;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-footer {
    margin-top: auto;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-avatar {
    position: relative;
}

.student-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-card.featured .student-photo {
    border-color: var(--coral-color);
}

.student-details {
    flex: 1;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.testimonial-card.featured .student-name {
    color: var(--white);
}

.student-role {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
}

.testimonial-card.featured .student-role {
    color: rgba(255, 255, 255, 0.8);
}

.course-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 95, 115, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

.testimonial-card.featured .course-badge {
    background: rgba(238, 108, 77, 0.2);
    color: var(--coral-color);
}

.course-badge i {
    font-size: 0.9rem;
}

/* Testimonials CTA */
.testimonials-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d5c 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.btn-testimonials-cta {
    background: var(--gradient-secondary);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(238, 108, 77, 0.3);
    position: relative;
    z-index: 1;
}

.btn-testimonials-cta:hover {
    background: linear-gradient(135deg, #d45a3a 0%, #c54d33 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 108, 77, 0.4);
    color: var(--white);
}

/* Slick Slider Customization */
.testimonials-slider {
    position: relative;
    margin: 0 -15px;
}

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

.testimonials-slider .slick-dots {
    bottom: -60px;
    text-align: center;
}

.testimonials-slider .slick-dots li {
    margin: 0 5px;
}

.testimonials-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 95, 115, 0.3);
    border: none;
    font-size: 0;
    transition: all 0.3s ease;
}

.testimonials-slider .slick-dots li.slick-active button {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonials-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.2);
}

.testimonials-slider .slick-arrow:hover {
    background: var(--gradient-secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(238, 108, 77, 0.3);
}

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

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

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

/* Responsive Design */
@media (max-width: 991px) {
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .testimonials-slider .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-slider .slick-prev {
        left: -20px;
    }
    
    .testimonials-slider .slick-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .student-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .student-details {
        text-align: center;
    }
    
    .course-badge {
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-testimonials-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .testimonials-slider {
        margin: 0;
    }
    
    .testimonial-slide {
        padding: 0;
    }
    
    .testimonials-slider .slick-dots {
        bottom: -40px;
    }
}

/* ===== COUNTER SECTION STYLES ===== */

.counter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d5c 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.counter-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 95, 115, 0.3);
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.counter-icon::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.6s ease;
}

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

.counter-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.counter-content {
    color: var(--white);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.counter-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral-color);
    display: inline-block;
    margin-left: 0.25rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 991px) {
    .counter-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .counter-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .counter-icon i {
        font-size: 1.75rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .counter-card {
        padding: 1.5rem 1rem;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
    }
    
    .counter-icon i {
        font-size: 1.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
}

/* ===== BLOG SECTION STYLES ===== */

.blog-section {
    background: var(--light-bg);
    position: relative;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.2);
}


.blog-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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


.blog-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    margin-bottom: 1rem;
    flex: 1;
    text-align: center;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    text-align: justify;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--coral-color);
    gap: 0.75rem;
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog CTA Section */
.blog-cta {
    background: var(--gradient-primary);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-blog-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    gap: 1.25rem;
}

.btn-blog-cta i:last-child {
    transition: transform 0.3s ease;
}

.btn-blog-cta:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-image-wrapper {
        height: 220px;
    }
    
    .blog-title a {
        font-size: 1.1rem;
    }
    
    .blog-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-image-wrapper {
        height: 200px;
    }
    
    .blog-cta {
        padding: 2rem 1rem;
    }
    
    .btn-blog-cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== MODERN FOOTER STYLES ===== */

.modern-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d5c 100%);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(238, 108, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(233, 215, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}


/* Main Footer Content */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    color: var(--white);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.brand-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral-color);
    line-height: 1;
}

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

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 0;
    text-align: left;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--coral-color);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral-color);
    transform: translateX(5px);
}

.footer-links a i {
    width: 16px;
    font-size: 0.9rem;
    color: var(--coral-color);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--coral-color);
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    text-align: left;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

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

.social-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-title {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00a0dc);
}

.social-link i {
    color: var(--white);
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

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

.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;
}

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

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--coral-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-stats {
        gap: 1.5rem;
    }
    
    .social-section {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .brand-logo {
        justify-content: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .main-content {
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .offcanvas {
        width: 280px !important;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ACCESSIBILITY ===== */

/* Focus styles for better accessibility */
.nav-link-custom:focus,
.offcanvas-link:focus,
.social-link:focus,
.footer-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link-custom:hover {
        background-color: var(--primary-color);
        color: white !important;
    }
    
    .social-link {
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
}

/* ===== ADVANCED HERO SECTION STYLES ===== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Left Section */
.hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 300px;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    animation: floatAnimation 6s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 0;
    left: 0;
    animation-delay: 4s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-size: 0.875rem;
    text-align: center;
}

.hero-visual-left {
    width: 100%;
    max-width: 250px;
}

.growth-chart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
}

.chart-header {
    margin-bottom: 1rem;
}

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chart-period {
    font-size: 0.75rem;
    opacity: 0.7;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 1rem;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #00d4ff 0%, #0066cc 100%);
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.bar.active {
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%);
    opacity: 1;
    animation: barGrow 2s ease-out;
}

.chart-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
}

/* Center Section */
.hero-center {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.highlight-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text-orange {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text-orange::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF9800;
    border-radius: 2px;
}

.highlight-text-skills {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 1s both;
}

.hero .btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.play-btn {
    color: #ffd700;
    font-size: 0.875rem;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: slideInUp 0.8s ease-out 1.2s both;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -8px;
    border: 2px solid #1a1a2e;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffd700;
    margin-left: -8px;
}

.proof-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.proof-text strong {
    color: white;
    font-weight: 600;
}

/* Right Section */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metrics-dashboard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    color: white;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.metric-item.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

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

.metric-item.primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #00ff88;
}

.metric-item.primary .metric-change.positive {
    color: #1a1a1a;
}

.progress-section {
    margin-top: 1rem;
}

.progress-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    width: 87%;
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

.progress-text {
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 600;
}

.floating-elements-right {
    position: relative;
}

.float-notification {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    animation: slideInRight 0.8s ease-out 1.4s both, floatNotification 4s ease-in-out infinite 2s;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.notification-text strong {
    color: #ffd700;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: meshMove 15s ease-in-out infinite;
}

.bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: dotsMove 20s linear infinite;
}

/* Hero Animations */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes barGrow {
    from { height: 0; }
    to { height: 100%; }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 87%; }
}

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

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

@keyframes dotsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Hero Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left, .hero-right {
        order: 2;
        display: none;
    }
    
    .hero-center {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero .btn-primary, .hero .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-container {
        padding: 1rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 30px;
    animation: zoomInOut 1.5s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
  }
  .logo{
    max-width: 50px;
  }

/* ===== ABOUT PAGE UNIQUE STYLES ===== */

/* About Hero Section */
.about-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #ffffff 50%, #f0f8ff 75%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 95, 115, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(238, 108, 77, 0.06) 0%, transparent 40%),
                radial-gradient(ellipse at 20% 80%, rgba(233, 215, 88, 0.05) 0%, transparent 35%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 0;
}

.about-hero-section::after {
    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 200 200"><defs><pattern id="modernDots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23005F73" opacity="0.08"/><circle cx="10" cy="30" r="1" fill="%23EE6C4D" opacity="0.06"/><circle cx="30" cy="10" r="0.8" fill="%23E9D758" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23modernDots)"/></svg>');
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -20px) rotate(1deg);
    }
    66% {
        transform: translate(-20px, 10px) rotate(-0.5deg);
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge .badge-pill {
    background: linear-gradient(135deg, var(--primary-color), var(--coral-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--coral-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Hero Visual */
.about-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.card-seo {
    top: 20px;
    left: 20px;
    border-color: #28a745;
}

.card-orm {
    top: 20px;
    right: 20px;
    border-color: #dc3545;
}

.card-content {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-color: #ffc107;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.card-desc {
    font-size: 0.85rem;
    color: #6c757d;
}

.central-graphic {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.education-hub {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.2);
}

.hub-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hub-text {
    font-weight: 600;
    font-size: 1rem;
}



/* Methodology Section */
.methodology-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.08);
    border: 1px solid rgba(0, 95, 115, 0.05);
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.methodology-header {
    text-align: center;
    margin-bottom: 40px;
}

.methodology-header h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.8rem;
}

.methodology-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.methodology-grid {
    display: grid;
    gap: 25px;
    position: relative;
}

.method-step {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.05);
}

.method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.15);
    border-color: var(--primary-color);
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 95, 115, 0.3);
    transition: all 0.3s ease;
}

.method-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.4);
}

.step-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.step-content {
    flex: 1;
}

.step-content h6 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.1), rgba(0, 95, 115, 0.05));
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 95, 115, 0.2);
    transition: all 0.3s ease;
}

.method-step:hover .feature-tag {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.step-connector {
    position: absolute;
    right: -12px;
    top: 50%;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateY(-50%);
    opacity: 0.6;
}

.method-step:last-child .step-connector {
    display: none;
}

.methodology-outcome {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed rgba(0, 95, 115, 0.2);
}

.outcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.3);
    animation: pulse 2s infinite;
}

.outcome-icon {
    font-size: 1.2rem;
}

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

/* Step-specific colors */
.step-1:hover {
    border-color: #28a745;
}

.step-1:hover .step-number {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.step-2:hover {
    border-color: #ffc107;
}

.step-2:hover .step-number {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.step-3:hover {
    border-color: #17a2b8;
}

.step-3:hover .step-number {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

.step-4:hover {
    border-color: #dc3545;
}

.step-4:hover .step-number {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

/* Main Methodology Section */
.methodology-main-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.methodology-main-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.methodology-timeline {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 95, 115, 0.1);
    border: 1px solid rgba(0, 95, 115, 0.05);
    margin-bottom: 50px;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 80px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.methodology-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.methodology-step:last-child {
    margin-bottom: 0;
}

.methodology-step:nth-child(even) {
    flex-direction: row-reverse;
}

.methodology-step:nth-child(even) .step-content-main {
    text-align: right;
    margin-right: 0;
    margin-left: 40px;
}

.step-visual-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 40px;
}

.step-number-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid white;
}

.methodology-step:hover .step-number-main {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.4);
}

.step-icon-main {
    font-size: 2rem;
    opacity: 0.9;
}

.step-content-main {
    flex: 1;
    margin-right: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.methodology-step:hover .step-content-main {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.15);
    border-color: var(--primary-color);
}

.step-content-main h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.8rem;
}

.step-content-main p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.step-features-main {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.methodology-step:nth-child(even) .step-features-main {
    justify-content: flex-end;
}

.feature-tag-main {
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.1), rgba(0, 95, 115, 0.05));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 95, 115, 0.2);
    transition: all 0.3s ease;
}

.methodology-step:hover .feature-tag-main {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.methodology-step:nth-child(even) .step-timeline-connector {
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
}

.methodology-step:last-child .step-timeline-connector {
    display: none;
}

/* Step-specific styling */
.step-1:hover .step-number-main {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.step-2:hover .step-number-main {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.step-3:hover .step-number-main {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

.step-4:hover .step-number-main {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

/* Methodology Stats */
.methodology-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 40px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.methodology-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.stat-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .methodology-timeline::before {
        left: 40px;
        transform: none;
    }
    
    .methodology-step,
    .methodology-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-visual-main {
        margin: 0 20px 0 0;
    }
    
    .step-content-main,
    .methodology-step:nth-child(even) .step-content-main {
        text-align: left;
        margin: 0;
    }
    
    .step-features-main,
    .methodology-step:nth-child(even) .step-features-main {
        justify-content: flex-start;
    }
    
    .step-timeline-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .methodology-timeline {
        padding: 30px 20px;
    }
    
    .methodology-timeline::before {
        display: none;
    }
    
    .methodology-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-visual-main {
        margin: 0 0 20px 0;
    }
    
    .step-number-main {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .step-content-main {
        margin: 0;
        padding: 25px 20px;
    }
    
    .step-content-main h4 {
        font-size: 1.5rem;
    }
    
    .step-features-main {
        justify-content: center;
    }
    
    .methodology-stats {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* About Content Section */
.about-content {
    background: #ffffff;
}

.about-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.mission-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(80, 201, 195, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(238, 108, 77, 0.02) 0%, transparent 50%);
    background-size: 400px 400px, 300px 300px, 500px 500px;
    background-position: 0 0, 100% 100%, 50% 50%;
    animation: patternFloat 20s ease-in-out infinite;
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    66% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
    border-color: var(--primary-color);
}


.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.3rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .mission-visual {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .mission-icon {
        width: 120px;
        height: 120px;
    }
    
    .mission-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-content .row {
        text-align: center;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-stats .row {
        margin-top: 30px;
    }
}

/* Legacy methodology section styles */
@media (max-width: 768px) {
    .methodology-section {
        padding: 25px;
    }
    
    .methodology-grid {
        gap: 20px;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-visual {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-features {
        justify-content: center;
    }
}

/* Methodology Card */
.methodology-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    margin-bottom: 30px;
}

.methodology-card .card-header h4 {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.method-step:hover {
    background: rgba(0, 95, 115, 0.05);
    transform: translateX(5px);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--coral-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content h6 {
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.skill-specializations {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Approach Visual */
.approach-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-circle:hover {
    transform: scale(1.1);
}

.seo-circle {
    background: linear-gradient(135deg, #28a745, #20c997);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orm-circle {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    bottom: 0;
    left: 0;
}

.content-circle {
    background: linear-gradient(135deg, #ffc107, #e83e8c);
    bottom: 0;
    right: 0;
}

.skill-content {
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 5px;
    display: block;
}

.skill-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.skill-desc {
    font-size: 0.7rem;
    opacity: 0.9;
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Core Values Section */
.core-values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.core-values-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="%23e9ecef" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.values-header {
    position: relative;
    z-index: 2;
}


.values-impact-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 150px;
}

.impact-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.2);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.impact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary Value Cards */
.primary-value-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 95, 115, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.primary-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.primary-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 95, 115, 0.2);
    border-color: var(--primary-color);
}

.value-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.primary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 95, 115, 0.3);
    transition: all 0.3s ease;
}

.primary-icon.secondary {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

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

.value-badge.primary {
    background: rgba(0, 95, 115, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 95, 115, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-badge.secondary {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.primary-value-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.value-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #666;
}

.benefit-item i {
    font-size: 1.1rem;
}

/* Supporting Value Cards */
.supporting-value-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.supporting-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.15);
    border-color: var(--primary-color);
}

.supporting-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.1), rgba(0, 95, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.supporting-value-card:hover .supporting-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

.supporting-value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.supporting-value-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.value-stat {
    padding-top: 20px;
    border-top: 2px dashed rgba(0, 95, 115, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Impact Showcase */
.impact-showcase {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.impact-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.impact-content h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.impact-metrics {
    display: flex;
    gap: 40px;
}

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

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Design for Values Section */
@media (max-width: 992px) {
    .values-impact-stats {
        gap: 30px;
    }
    
    .impact-showcase {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .impact-metrics {
        gap: 30px;
    }
    
    .primary-value-card {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .values-impact-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .impact-stat {
        min-width: auto;
    }
    
    .primary-value-card {
        padding: 30px 25px;
    }
    
    .supporting-value-card {
        padding: 30px 20px;
    }
    
    .impact-showcase {
        padding: 40px 25px;
    }
    
    .impact-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .primary-value-title {
        font-size: 1.5rem;
    }
    
    .primary-value-desc {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .core-values-section {
        padding: 60px 0;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .primary-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .supporting-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.value-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-proof {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

.proof-item i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.value-metric {
    text-align: center;
    padding: 15px;
    background: rgba(0, 95, 115, 0.05);
    border-radius: 10px;
    margin-top: 15px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.result-desc {
    font-size: 0.8rem;
    color: #6c757d;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-title {
    color: white;
    font-weight: 700;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .floating-card {
        position: static;
        margin: 10px;
        transform: none !important;
    }
    
    .about-hero-visual {
        height: auto;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .approach-visual {
        height: auto;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    
    .section-title {
        font-size: 2rem;
    }
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-stats {
    position: relative;
    z-index: 2;
}

.cta-stat {
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.cta-stat:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.cta-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    font-weight: 600;
    text-transform: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

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

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

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.95;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    display: inline-block;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-stat .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-stat {
        padding: 20px 15px;
    }
    
    .cta-guarantee {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

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

.faq-item {
    background: white;
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 95, 115, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.15);
}

.faq-item .accordion-header {
    margin: 0;
}

.faq-item .accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: none;
}

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

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005F73'%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;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
    transform: rotate(-180deg);
}

.faq-item .accordion-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) i {
    color: white;
}

.faq-item .accordion-body {
    padding: 0 30px 30px 30px;
    background: white;
    border-top: 1px solid rgba(0, 95, 115, 0.1);
}

.faq-item .accordion-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.faq-list li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.faq-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.salary-stats {
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), rgba(238, 108, 77, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.salary-stat {
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 95, 115, 0.1);
    transition: all 0.3s ease;
}

.salary-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.15);
}

.salary-stat h5 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.salary-stat p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-item .accordion-button {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-item .accordion-body {
        padding: 0 20px 25px 20px;
    }
    
    .salary-stats {
        padding: 20px 15px;
    }
    
    .salary-stat h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-item .accordion-button {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    .faq-item .accordion-button i {
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .faq-item .accordion-body {
        padding: 0 15px 20px 15px;
    }
    
    .faq-list li {
        padding-left: 20px;
        font-size: 0.9rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #ffffff 50%, #f0f8ff 75%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}
.text-career {
    display: block;
    background: linear-gradient(135deg, #ee6c4d, #f77f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design for Contact Hero */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 2rem;
    }
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 120%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(0, 95, 115, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(238, 108, 77, 0.04) 0%, transparent 40%);
    animation: contactFloat 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -15px) rotate(1deg);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

.hero-contact-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 140px;
}

.contact-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(0, 95, 115, 0.2);
}

.contact-stat-item .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Contact Hero Visual */
.contact-hero-visual {
    position: relative;
    height: 500px;
    z-index: 2;
}

.contact-floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
    border: 2px solid rgba(0, 95, 115, 0.1);
    transition: all 0.4s ease;
    min-width: 180px;
}

.contact-floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 95, 115, 0.25);
}

.card-consultation {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-support {
    top: 10%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.card-guidance {
    bottom: 25%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}

.contact-central-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-hub {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.contact-hub .hub-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.contact-hub .hub-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Methods Section */
.contact-methods-section {
    background: white;
}

.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 95, 115, 0.15);
    border-color: var(--primary-color);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.1), rgba(0, 95, 115, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

.contact-method-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 20px;
}

.method-details {
    margin-bottom: 25px;
}

.method-details strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-details small {
    color: #888;
    font-size: 0.85rem;
}

/* Simple Contact Form */
.contact-form-section {
    background: #f8f9fa;
}

.simple-contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.1);
    border: 2px solid rgba(0, 95, 115, 0.05);
}

/* Simple Form Styling */

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group .form-control,
.form-group .form-select {
    padding: 20px 36px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group .form-control:focus,
.form-group .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 95, 115, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-preferences-simple {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-preferences-simple .form-check {
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 120px;
}

.contact-preferences-simple .form-check:hover {
    background: rgba(0, 95, 115, 0.05);
    border-color: var(--primary-color);
}

.contact-preferences-simple .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Simple Contact Form */
@media (max-width: 768px) {
    .simple-contact-form {
        padding: 30px 25px;
    }
    
    .contact-preferences-simple {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-preferences-simple .form-check {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .simple-contact-form {
        padding: 25px 20px;
    }
    
    .form-group .form-control,
    .form-group .form-select {
        padding: 12px 15px;
    }
}

/* Blog Hero Section */
.blog-hero-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 25%, #ffffff 50%, #f0f8ff 75%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 95, 115, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(238, 108, 77, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

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

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 95, 115, 0.08);
    border: 2px solid rgba(0, 95, 115, 0.05);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 10px 40px rgba(0, 95, 115, 0.12);
    transform: translateY(-2px);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 95, 115, 0.1);
}

/* Search Widget */
.search-form .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 95, 115, 0.1);
}

.search-form .form-control {
    border: none;
    padding: 12px 18px;
    font-size: 1rem;
}

.search-form .btn {
    border: none;
    padding: 12px 20px;
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 95, 115, 0.1);
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.post-count {
    background: rgba(0, 95, 115, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Popular Posts Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

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

.popular-post-item:hover .post-thumb img {
    transform: scale(1.1);
}

.post-content h6 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.post-content h6 a {
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-content h6 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.widget-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Blog Meta Styling */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pagination Styling */
.pagination .page-link {
    border: 2px solid rgba(0, 95, 115, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background: transparent;
    border-color: rgba(0, 95, 115, 0.1);
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .popular-post-item {
        gap: 12px;
    }
    
    .post-thumb {
        width: 70px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        padding: 60px 0 40px;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Simple Blog Detail Page Styles */
.simple-blog-hero {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(80, 201, 195, 0.1) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.simple-blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.simple-blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
}

.simple-blog-content {
    background: white;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.simple-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.simple-content p {
    margin-bottom: 20px;
}

.simple-content h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 35px 0 20px;
    font-size: 1.6rem;
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid rgba(0, 95, 115, 0.1);
    border-bottom: 2px solid rgba(0, 95, 115, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.2);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.author-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-date, .reading-time {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-date i, .reading-time i {
    color: var(--primary-color);
}

/* Blog Article Content */
.blog-article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 95, 115, 0.08);
    border: 2px solid rgba(0, 95, 115, 0.05);
}

.featured-image img {
    box-shadow: 0 15px 50px rgba(0, 95, 115, 0.15);
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: translateY(-5px);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.article-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), rgba(238, 108, 77, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 95, 115, 0.1);
}

.article-content p {
    margin-bottom: 20px;
}

.blog-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    margin: 30px 0;
    position: relative;
}

.blog-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.content-list {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--secondary-color);
}

.content-list li {
    margin-bottom: 10px;
    color: #495057;
    font-weight: 500;
}

.info-box {
    background: linear-gradient(135deg, rgba(238, 108, 77, 0.1), rgba(0, 95, 115, 0.1));
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid rgba(238, 108, 77, 0.2);
}

.info-box h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    margin: 0;
    font-weight: 500;
}

.article-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 95, 115, 0.1);
}

.article-tags h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    color: white;
}

/* Author Bio */
.author-bio {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 95, 115, 0.08);
    border: 2px solid rgba(0, 95, 115, 0.05);
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar-large img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.2);
}

.author-info-detailed h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.author-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.author-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Newsletter CTA */
.newsletter-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.newsletter-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form-inline .input-group {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    background: white;
}

.newsletter-form-inline .btn {
    border: none;
    padding: 15px 30px;
    background: var(--dark-color);
    font-weight: 600;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* Responsive Design for Simple Blog Detail */
@media (max-width: 768px) {
    .simple-blog-title {
        font-size: 2rem;
    }
    
    .simple-content {
        font-size: 1rem;
    }
    
    .simple-content h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
    }
}

@media (max-width: 576px) {
    .simple-blog-hero {
        padding: 60px 0 40px;
    }
    
    .simple-blog-title {
        font-size: 1.8rem;
    }
    
    .simple-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card,
.quick-contact-card,
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 95, 115, 0.08);
    border: 2px solid rgba(0, 95, 115, 0.05);
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
}

.contact-info-card:hover,
.quick-contact-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 95, 115, 0.15);
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.office-address h6,
.office-hours h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.hour-item:last-child {
    border-bottom: none;
}

.quick-contact-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.quick-contact-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), rgba(238, 108, 77, 0.05));
    border: 2px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.2);
}

.quick-contact-btn i {
    font-size: 1.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.stars {
    color: #ffc107;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author small {
    color: #888;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-width: 300px;
}

.map-info h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.map-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-contact-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .contact-floating-card {
        min-width: 150px;
        padding: 20px;
    }
    
    .contact-hub {
        width: 100px;
        height: 100px;
    }
    
    .contact-preferences {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-stat-item {
        min-width: 200px;
    }
    
    .enhanced-contact-form {
        padding: 30px 25px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
    
    .quick-contact-options {
        flex-direction: column;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.9rem;
    }
    
    .contact-floating-card {
        display: none;
    }
    
    .contact-central-graphic {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        text-align: center;
        margin-top: 30px;
    }
    
    .enhanced-contact-form {
        padding: 25px 20px;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .form-group .form-control,
    .form-group .form-select {
        padding: 12px 15px 12px 45px;
    }
}

.why-choose-us .feature-icon{
    margin: 0 auto;
    margin-bottom: 2rem;
     }

.impact-showcase .metric-label {
    color: #fff;
}

/* ===== SIMPLE CTA SECTION STYLES ===== */

.simple-cta-section {
    background: linear-gradient(135deg, #1e7e8c 0%, #2d9cdb 100%);
    position: relative;
    overflow: hidden;
}

.simple-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.simple-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.simple-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.simple-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-simple-cta {
    background: #ffffff;
    color: #1e7e8c;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.btn-simple-cta:hover {
    background: #f8f9fa;
    color: #1e7e8c;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-simple-cta i:first-child {
    font-size: 1.2rem;
}

.btn-simple-cta i:last-child {
    transition: transform 0.3s ease;
}

.btn-simple-cta:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-cta-card {
        padding: 3rem 2rem;
    }
    
    .simple-cta-title {
        font-size: 2rem;
    }
    
    .simple-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-simple-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .simple-cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .simple-cta-title {
        font-size: 1.75rem;
    }
    
    .simple-cta-subtitle {
        font-size: 1rem;
    }
}

/* ===== ENHANCED DASHBOARD STYLES ===== */

.enhanced-dashboard {
    position: relative;
    overflow: hidden;
}

.enhanced-dashboard .dashboard-header .header-title {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.enhanced-dashboard .status-dot.pulsing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.enhanced-grid {
    gap: 1rem;
}

.enhanced-grid.two-column .row {
    margin: 0;
}

.enhanced-metric {
    position: relative;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 95, 115, 0.6), transparent);
    transition: left 0.5s ease;
}

.enhanced-metric:hover::before {
    left: 100%;
}

.enhanced-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 95, 115, 0.15);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.metric-content {
    flex: 1;
}

.enhanced-metric .metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-metric .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.enhanced-metric.primary .metric-value {
    color: #1a1a1a;
}

.enhanced-metric .metric-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.enhanced-metric .metric-change.positive {
    color: #00d084;
}

.enhanced-metric .metric-change i {
    font-size: 0.7rem;
}

.metric-progress {
    margin-top: 1rem;
    height: 4px;
    background: rgba(0, 95, 115, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-in-out;
}

.enhanced-metric.primary .progress-bar {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.dashboard-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.update-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.time-stamp {
    color: #00ff88;
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-dashboard-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Responsive Design for Enhanced Dashboard */
@media (max-width: 768px) {
    .enhanced-metric {
        padding: 1rem;
    }
    
    .enhanced-metric .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dashboard-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== ENHANCED ENROLL BUTTON STYLES ===== */

.enhanced-enroll-btn {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    min-width: 200px;
}

.enhanced-enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

.enhanced-enroll-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.enhanced-enroll-btn .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.enhanced-enroll-btn .btn-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.enhanced-enroll-btn .btn-text {
    font-weight: 600;
    transition: all 0.3s ease;
}

.enhanced-enroll-btn .btn-arrow {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.enhanced-enroll-btn:hover .btn-icon {
    transform: scale(1.1);
}

.enhanced-enroll-btn:hover .btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Remove shine effect - keeping it simple */
.enhanced-enroll-btn .btn-shine {
    display: none;
}

/* Responsive Design for Enhanced Button */
@media (max-width: 768px) {
    .enhanced-enroll-btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .enhanced-enroll-btn .btn-content {
        gap: 10px;
    }
    
    .enhanced-enroll-btn .btn-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .enhanced-enroll-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .enhanced-enroll-btn .btn-content {
        gap: 8px;
    }
}

/* ===== ENHANCED OVERVIEW SECTION STYLES ===== */

.enhanced-overview-section {
    background: #f8f9fa;
    position: relative;
}

.overview-content-wrapper {
    padding-right: 2rem;
}

.overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.highlight-orange {
    color: #ff6b35;
    position: relative;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.stats-grid {
    margin-top: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.overview-metrics-wrapper {
    padding-left: 2rem;
}

.metrics-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card-large {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.metric-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-info {
    flex: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Responsive Design for Enhanced Overview */
@media (max-width: 992px) {
    .overview-content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .overview-metrics-wrapper {
        padding-left: 0;
    }
    
    .overview-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .overview-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.8rem;
    }
    
    .metric-card-large {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .metric-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .metric-big-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .stat-card .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.7rem;
    }
}

/* ===== ENHANCED MASTER SECTION STYLES ===== */

.enhanced-master-section {
    background: white;
    position: relative;
}

.master-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.master-section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 0;
}

.master-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.master-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.master-content {
    flex: 1;
}

.master-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.master-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design for Enhanced Master Section */
@media (max-width: 768px) {
    .master-section-title {
        font-size: 2rem;
    }
    
    .master-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .master-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .master-title {
        font-size: 1.1rem;
    }
    
    .master-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .master-section-title {
        font-size: 1.75rem;
    }
    
    .master-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .master-icon-wrapper {
        margin: 0 auto;
    }
}

/* ===== ADVANCED TOPIC CARDS STYLES ===== */

.advanced-topic-card {
    min-height: 400px;
    padding: 2.5rem;
}

.advanced-topic-card .master-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.topic-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.topic-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.topic-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.advanced-topic-card:hover .topic-list li:before {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Responsive adjustments for advanced topics */
@media (max-width: 768px) {
    .advanced-topic-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .advanced-topic-card .master-title {
        font-size: 1.2rem;
    }
    
    .topic-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }
    
    .topic-list li:before {
        top: 0.6rem;
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.7rem;
    }
}

/* ===== HIDDEN TECHNIQUES BANNER ===== */

.hidden-techniques-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hidden-techniques-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.banner-title i {
    color: #f39c12;
    font-size: 1.3rem;
}

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

/* Responsive adjustments for banner */
@media (max-width: 768px) {
    .hidden-techniques-banner {
        padding: 2rem 1.5rem;
    }
    
    .banner-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}

/* ===== REDESIGNED MASTERY CARDS ===== */

.what-youll-master-redesigned {
    background-color: #f8f9fa;
}

.mastery-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mastery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

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

.mastery-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

.card-content {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for mastery cards */
@media (max-width: 768px) {
    .mastery-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* ===== CONTENT WRITING AI STATS COLOR ===== */

.enhanced-overview-section .stat-number {
    color: #005f73 !important;
}

.enhanced-overview-section .stat-label {
    color: #005f73 !important;
}

/* ===== BONUS COURSES SECTION ===== */

.bonus-courses-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.bonus-course-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bonus-course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

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

.bonus-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.bonus-icon i {
    font-size: 1.5rem;
    color: white;
}

.bonus-course-card:hover .bonus-icon {
    transform: scale(1.1);
}

.bonus-content {
    text-align: left;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bonus-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-value {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

.free-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-value-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.total-value-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.value-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive adjustments for bonus courses */
@media (max-width: 768px) {
    .bonus-course-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-icon {
        width: 50px;
        height: 50px;
    }
    
    .bonus-icon i {
        font-size: 1.3rem;
    }
    
    .bonus-title {
        font-size: 1.1rem;
    }
    
    .bonus-description {
        font-size: 0.9rem;
    }
    
    .total-value-banner {
        padding: 1.5rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}

/* ===== LEGAL PAGES STYLES ===== */

.legal-hero-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0;
}

.legal-hero-content {
    text-align: center;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.legal-icon i {
    font-size: 2rem;
    color: white;
}

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

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.legal-content-section {
    background: #f8f9fa;
}

.legal-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.subsection-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin: 1.5rem 0 1rem;
}

.legal-list {
    padding-left: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.legal-content .contact-details {
    margin-top: 1.5rem;
}

.legal-content .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.legal-content .contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.legal-cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.legal-cta-content {
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-hero-section {
        padding: 3rem 0;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .section-heading {
        font-size: 1.3rem;
    }
    
    .subsection-heading {
        font-size: 1.1rem;
    }
    
    .legal-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .legal-content .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}