/* Education V10 Theme Styles */
/* Modern, Professional Education Theme */

:root {
    /* Primary Colors */
    --v10-primary: #000000;
    --v10-primary-dark: #2563eb;
    --v10-primary-light: #60a5fa;

    /* Secondary Colors */
    --v10-secondary: #8b5cf6;
    --v10-secondary-dark: #7c3aed;
    --v10-secondary-light: #a78bfa;

    /* Accent Colors */
    --v10-accent: #f04923;
    --v10-accent-dark: #059669;
    --v10-gold: #fbbf24;

    /* Dark Colors */
    --v10-dark: #0f172a;
    --v10-dark-light: #1e293b;
    --v10-dark-lighter: #334155;

    /* Text Colors */
    --v10-text-primary: #1e293b;
    --v10-text-secondary: #64748b;
    --v10-text-light: rgba(255, 255, 255, 0.9);
    --v10-text-muted: rgba(255, 255, 255, 0.6);

    /* Background Colors */
    --v10-bg-light: #f8fafc;
    --v10-bg-white: #ffffff;

    /* Gradients */
    --v10-gradient-primary: linear-gradient(135deg, #000000 0%, #2563eb 100%);
    --v10-gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --v10-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
    --v10-gradient-accent: linear-gradient(135deg, #f04923 0%, #059669 100%);

    /* Shadows */
    --v10-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --v10-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --v10-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --v10-shadow-primary: 0 8px 30px rgba(59, 130, 246, 0.35);

    /* Border Radius */
    --v10-radius-sm: 8px;
    --v10-radius-md: 12px;
    --v10-radius-lg: 16px;
    --v10-radius-xl: 24px;

    /* Transitions */
    --v10-transition: all 0.3s ease;
    --v10-transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Body Styles for V10 Theme */
.td_education_v10 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--v10-text-primary);
    background: var(--v10-bg-light);
}

/* Typography Enhancements */
.td_education_v10 h1,
.td_education_v10 h2,
.td_education_v10 h3,
.td_education_v10 h4,
.td_education_v10 h5,
.td_education_v10 h6 {
    font-weight: 700;
    color: var(--v10-text-primary);
    line-height: 1.3;
}

.td_sduc_v9 .td_accred_section  h2.td_accred_title {
    color: #fff !important;
}

/* Section Spacing */
.td_education_v10 section {
    position: relative;
   
}

/* Button Styles */
.td_education_v10 .td_btn {
    background: var(--v10-gradient-primary);
    border: none;
    border-radius: var(--v10-radius-md);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    transition: var(--v10-transition-smooth);
    box-shadow: var(--v10-shadow-primary);
}

.td_education_v10 .td_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.45);
}

/* Link Styles */
.td_education_v10 a {
    /* color: var(--v10-primary); */
    transition: var(--v10-transition);
}
h2.campaign-title-ultra, h2.cta-title-v10 {
    color: #fff;
}
.fap-main-title::after {
    display: none !important;
}
a.panel-btn-ultra:hover a , a.campaign-btn-ultra:hover a{
    color: #fff;
}

.td_education_v10 a:hover {
    /* color: var(--v10-primary-dark); */
}

/* Card Styles */
.td_education_v10 .card,
.td_education_v10 .td_card {
    background: var(--v10-bg-white);
    border-radius: var(--v10-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--v10-shadow-sm);
    transition: var(--v10-transition-smooth);
}

.td_education_v10 .card:hover,
.td_education_v10 .td_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--v10-shadow-md);
}

/* Section Titles */
.td_education_v10 .td_section_title,
.td_education_v10 .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--v10-text-primary);
    margin-bottom: 16px;
}

.td_education_v10 .td_section_subtitle,
.td_education_v10 .section-subtitle {
    font-size: 18px;
    color: var(--v10-text-secondary);
    line-height: 1.7;
}

/* Glassmorphism Utility */
.td_education_v10 .glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Dark Section Styling */
.td_education_v10 .dark-section {
    background: var(--v10-gradient-dark);
    color: var(--v10-text-light);
}

.td_education_v10 .dark-section h1,
.td_education_v10 .dark-section h2,
.td_education_v10 .dark-section h3,
.td_education_v10 .dark-section h4 {
    color: #ffffff;
}

.td_education_v10 .dark-section p {
    color: var(--v10-text-muted);
}

/* Accent Elements */
.td_education_v10 .accent-text {
    color: var(--v10-accent);
}

.td_education_v10 .primary-text {
    color: var(--v10-primary);
}

.td_education_v10 .gradient-text {
    background: linear-gradient(135deg, var(--v10-primary) 0%, var(--v10-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge/Tag Styles */
.td_education_v10 .badge,
.td_education_v10 .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--v10-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Form Inputs */
.td_education_v10 input[type="text"],
.td_education_v10 input[type="email"],
.td_education_v10 input[type="tel"],
.td_education_v10 textarea,
.td_education_v10 select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--v10-radius-md);
    padding: 14px 18px;
    font-size: 15px;
    transition: var(--v10-transition);
}

.td_education_v10 input:focus,
.td_education_v10 textarea:focus,
.td_education_v10 select:focus {
    border-color: var(--v10-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Preloader Override for V10 */
.td_education_v10 .td_preloader {
    background: var(--v10-dark);
}

.td_education_v10 .td_preloader_in span {
    background: var(--v10-primary);
}

/* Scroll to Top */
.td_education_v10 .td_scrollup {
    background: var(--v10-gradient-primary);
    border-radius: var(--v10-radius-md);
    box-shadow: var(--v10-shadow-primary);
}

.td_education_v10 .td_scrollup:hover {
    transform: translateY(-3px);
}

/* Section Background Variations */
.td_education_v10 .bg-gradient-light {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.td_education_v10 .bg-gradient-dark {
    background: var(--v10-gradient-dark);
}

/* Animation Classes */
.td_education_v10 .fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Box Styles */
.td_education_v10 .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v10-gradient-primary);
    border-radius: var(--v10-radius-md);
    color: #ffffff;
    font-size: 24px;
}

/* Stats Counter Styles */
.td_education_v10 .stat-counter {
    font-size: 48px;
    font-weight: 800;
    background: var(--v10-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .td_education_v10 .td_section_title,
    .td_education_v10 .section-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .td_education_v10 .td_section_title,
    .td_education_v10 .section-title {
        font-size: 28px;
    }

    .td_education_v10 .td_section_subtitle,
    .td_education_v10 .section-subtitle {
        font-size: 16px;
    }
}
