/* =====================================================
   CENTER FOR SOFTWARE EDUCATION
   Premium React-style Frontend UI
   Updated by ChatGPT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #0F3D3E;
    --accent-color: #F97316;
    --background-color: #F8FAFC;
    --text-color: #111827;
    --footer-color: #061C1D;
    --navbar-color: #FFFFFF;
    --card-color: #FFFFFF;
    --border-color: #E5E7EB;

    --muted-color: #64748B;
    --soft-color: #F1F5F9;
    --white: #FFFFFF;
    --success-color: #16A34A;
    --warning-color: #F59E0B;
    --danger-color: #DC2626;

    --container: 1200px;
    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow-xs: 0 8px 22px rgba(15, 23, 42, .055);
    --shadow-sm: 0 14px 35px rgba(15, 23, 42, .075);
    --shadow-md: 0 22px 55px rgba(15, 23, 42, .11);
    --shadow-lg: 0 34px 90px rgba(15, 23, 42, .15);

    --gradient-primary: linear-gradient(135deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 70%, #020617));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #fb923c);
    --ring-primary: color-mix(in srgb, var(--primary-color) 18%, transparent);
    --ring-accent: color-mix(in srgb, var(--accent-color) 22%, transparent);
}

/* =====================================================
   RESET + BASE
===================================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--primary-color) 7%, transparent), transparent 30%),
        radial-gradient(circle at 90% 20%, color-mix(in srgb, var(--accent-color) 7%, transparent), transparent 24%),
        var(--background-color);
    color: var(--text-color);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
}

body::selection {
    background: color-mix(in srgb, var(--accent-color) 26%, transparent);
    color: var(--text-color);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

button,
input,
select,
textarea {
    font-family: inherit;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 650;
    outline: none;
    transition: .22s ease;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
    border-color: color-mix(in srgb, var(--accent-color) 60%, var(--border-color));
    box-shadow: 0 0 0 4px var(--ring-accent);
}

button { cursor: pointer; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.section,
.about-story,
.why-section,
.mission-vision-section,
.training-section,
.stats-section,
.about-testimonials,
.cta-section,
.batch-page-section,
.courses-page-section,
.verify-section,
.blogs-page-section,
.gallery-page-section,
.enquiry-section,
.blog-detail-section,
.course-detail-main-v2 {
    padding: 76px 0;
}

.badge,
.home-label-new,
.home-section-head-new > span,
.home-section-row-new .home-section-head-new > span,
.home-about-box-new > div > span,
.home-contact-new > div > span,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    padding: 8px 13px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent-color) 22%, transparent);
    color: var(--accent-color);
    font-size: 12px;
    line-height: 1;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 900;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

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

.btn-primary {
    color: #fff;
    background: var(--gradient-accent);
    box-shadow: 0 15px 32px color-mix(in srgb, var(--accent-color) 28%, transparent);
}

.btn-primary:hover { box-shadow: 0 20px 44px color-mix(in srgb, var(--accent-color) 36%, transparent); }

.btn-dark {
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 15px 32px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.btn-outline {
    color: var(--primary-color);
    background: rgba(255, 255, 255, .78);
    border-color: color-mix(in srgb, var(--primary-color) 14%, var(--border-color));
    box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
    background: #fff;
    border-color: color-mix(in srgb, var(--primary-color) 40%, var(--border-color));
    box-shadow: var(--shadow-sm);
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
    transition: .22s ease;
}

.view-link:hover { transform: translateX(4px); }

.empty-state,
.course-empty-state {
    background: rgba(255,255,255,.78);
    border: 1px dashed color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
    border-radius: var(--radius-lg);
    padding: 38px;
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.empty-state h3,
.course-empty-state h3 { font-size: 24px; color: var(--text-color); margin-bottom: 8px; }
.empty-state p,
.course-empty-state p { color: var(--muted-color); margin-bottom: 18px; }

/* =====================================================
   NAVBAR
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 61, 62, .09);
    box-shadow: 0 10px 30px rgba(15, 61, 62, .045);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 0;
}

.site-logo img,
.site-logo-mark {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16px;
    flex-shrink: 0;
}

.site-logo-mark {
    display: grid;
    place-items: center;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--primary-color) 22%, transparent);
}

.site-logo-text strong {
    display: block;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.45px;
}

.site-logo-text small {
    display: block;
    color: var(--muted-color);
    font-size: 11px;
    font-weight: 750;
    margin-top: 3px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}

.nav-menu > a,
.nav-dropdown-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
    transition: .22s ease;
}

.nav-menu > a:hover,
.nav-menu > a.active,
.nav-dropdown:hover .nav-dropdown-link,
.nav-dropdown-link.active,
.nav-dropdown.active .nav-dropdown-link {
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
}

.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 10px; opacity: .72; transition: .22s ease; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 260px;
    transform: translateX(-50%) translateY(8px);
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 61, 62, .10);
    box-shadow: 0 24px 64px rgba(15, 61, 62, .15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 14px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.nav-dropdown-menu a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 30%, transparent);
    flex-shrink: 0;
}

.nav-dropdown-menu a:nth-child(2)::before { background: var(--success-color); }
.nav-dropdown-menu a:nth-child(3)::before { background: var(--accent-color); }

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: color-mix(in srgb, var(--primary-color) 7%, #fff);
    color: var(--primary-color);
}

.nav-actions { flex-shrink: 0; }
.nav-enquire { min-height: 42px; border-radius: 999px; padding: 11px 18px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 900;
    box-shadow: var(--shadow-xs);
}

/* =====================================================
   SHARED HEROES
===================================================== */

.courses-page-hero,
.batch-hero,
.about-hero,
.verify-hero,
.blogs-hero,
.gallery-hero,
.enquiry-hero,
.blog-detail-hero,
.course-detail-hero-v2 {
    position: relative;
    isolation: isolate;
    padding: 78px 0 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--primary-color) 12%, transparent), transparent 28%),
        radial-gradient(circle at 86% 6%, color-mix(in srgb, var(--accent-color) 14%, transparent), transparent 26%),
        linear-gradient(180deg, #fff 0%, var(--background-color) 100%);
    border-bottom: 1px solid rgba(15, 61, 62, .08);
}

.courses-page-hero::before,
.batch-hero::before,
.about-hero::before,
.verify-hero::before,
.blogs-hero::before,
.gallery-hero::before,
.enquiry-hero::before,
.blog-detail-hero::before,
.course-detail-hero-v2::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% auto;
    width: 420px;
    height: 420px;
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    border-radius: 50%;
    filter: blur(14px);
    z-index: -1;
}

.courses-hero-grid,
.batch-hero-grid,
.about-hero-grid,
.verify-hero-grid,
.course-detail-hero-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 38px;
    align-items: center;
}

.courses-page-hero h1,
.batch-hero h1,
.about-hero h1,
.verify-hero h1,
.blogs-hero h1,
.gallery-hero h1,
.enquiry-hero h1,
.blog-detail-hero h1,
.course-detail-hero-content-v2 h1 {
    margin: 16px 0 14px;
    color: var(--text-color);
    font-size: clamp(38px, 5.1vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    font-weight: 900;
}

.courses-page-hero p,
.batch-hero p,
.about-hero p,
.verify-hero p,
.blogs-hero p,
.gallery-hero p,
.enquiry-hero p,
.blog-detail-hero p,
.course-detail-hero-content-v2 p {
    color: var(--muted-color);
    font-size: 16px;
    line-height: 1.85;
    max-width: 760px;
}

.courses-hero-actions,
.batch-hero-actions,
.about-hero-actions,
.verify-hero-actions,
.course-hero-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.courses-hero-card,
.batch-hero-card,
.about-hero-card,
.verify-hero-card,
.course-sidebar-card-v2,
.verify-search-card,
.certificate-result-card,
.verify-help-card,
.enquiry-form-card,
.enquiry-info-card,
.blog-sidebar-card,
.featured-blog-card,
.course-detail-card-v2 {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 61, 62, .09);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.courses-hero-card,
.batch-hero-card,
.about-hero-card,
.verify-hero-card {
    padding: 28px;
}

.courses-hero-card > strong,
.batch-hero-card > strong,
.about-hero-card > strong,
.verify-hero-card > strong {
    display: block;
    color: var(--text-color);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 9px;
}

.courses-hero-card > span,
.batch-hero-card > p,
.about-hero-card > span,
.verify-hero-card > span {
    display: block;
    color: var(--muted-color);
    font-size: 14px;
    line-height: 1.75;
}

.courses-hero-points,
.batch-hero-stats,
.about-hero-points,
.verify-hero-points {
    display: grid;
    gap: 11px;
    margin-top: 22px;
}

.courses-hero-points p,
.about-hero-points p,
.verify-hero-points p {
    padding: 13px 14px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--primary-color) 5%, #fff);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 13px;
    font-weight: 850;
}

.batch-hero-stats {
    grid-template-columns: repeat(3, 1fr);
}

.batch-hero-stats div {
    padding: 16px 12px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--primary-color) 5%, #fff);
    border: 1px solid var(--border-color);
    text-align: center;
}

.batch-hero-stats strong { display:block; color:var(--primary-color); font-size:28px; line-height:1; font-weight:900; }
.batch-hero-stats span { color:var(--muted-color); font-size:11px; font-weight:850; }

/* =====================================================
   HOMEPAGE
===================================================== */

.home-hero-new {
    position: relative;
    isolation: isolate;
    padding: 92px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, color-mix(in srgb, var(--accent-color) 11%, transparent), transparent 28%),
        radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--primary-color) 14%, transparent), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.home-hero-new::before {
    content: "";
    position: absolute;
    inset: 20px 24px auto;
    height: 78%;
    border-radius: 46px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary-color) 5%, transparent), transparent),
        radial-gradient(circle at 85% 22%, color-mix(in srgb, var(--accent-color) 12%, transparent), transparent 24%);
    border: 1px solid rgba(15, 61, 62, .07);
    z-index: -1;
}

.home-hero-grid-new {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    gap: 52px;
    align-items: center;
}

.home-hero-content-new h1 {
    margin: 18px 0 18px;
    color: var(--text-color);
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -2.9px;
    font-weight: 900;
}

.home-hero-content-new p {
    max-width: 650px;
    color: var(--muted-color);
    font-size: 17px;
    line-height: 1.9;
}

.home-hero-buttons-new,
.home-content-actions,
.about-content-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-stats-mini-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
    max-width: 640px;
}

.home-stats-mini-new div {
    padding: 18px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15, 61, 62, .08);
    box-shadow: var(--shadow-xs);
}

.home-stats-mini-new strong {
    display: block;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 6px;
}

.home-stats-mini-new span { color: var(--muted-color); font-size: 12px; font-weight: 800; }

.home-hero-image-new {
    position: relative;
    min-height: 500px;
    border-radius: 38px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 61, 62, .08);
}

.home-hero-image-new::after {
    content: "Practical IT Training";
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15,61,62,.09);
    color: var(--primary-color);
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.home-hero-image-new img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.home-course-search-new {
    margin-top: -34px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.home-search-box-new {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 22px;
    align-items: center;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15,61,62,.09);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.home-search-box-new label {
    display: block;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
}

.home-search-box-new p { color: var(--muted-color); font-size: 14px; }

.home-search-fields-new {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.home-search-fields-new button {
    border: 0;
    border-radius: 14px;
    padding: 0 18px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 900;
}

.home-why-new,
.home-courses-new,
.home-about-strip-new,
.home-batches-new,
.home-testimonials-new,
.home-blogs-new,
.home-faq-new,
.home-contact-new {
    padding: 82px 0;
}

.home-why-new,
.home-testimonials-new,
.home-contact-new,
.training-section,
.about-testimonials {
    background: #fff;
}

.home-section-head-new {
    max-width: 730px;
}

.home-section-head-new.center,
.section-title.center {
    text-align: center;
    margin-inline: auto;
}

.home-section-head-new.center > span,
.section-title.center .badge { margin-inline: auto; }

.home-section-head-new h2,
.section-title h2,
.course-result-row h2,
.batch-result-row h2 {
    margin: 14px 0 10px;
    color: var(--text-color);
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.35px;
    font-weight: 900;
}

.home-section-head-new p,
.section-title p,
.course-result-row p,
.batch-result-row p { color: var(--muted-color); line-height:1.8; }

.home-section-row-new,
.course-result-row,
.batch-result-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.home-why-grid-new,
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.home-why-card-new,
.why-card,
.stat-item,
.mission-card,
.testimonial-card,
.home-testimonial-card-new,
.home-batch-card-new,
.home-blog-card-new,
.blog-card-v2,
.gallery-page-card,
.batch-page-card,
.course-list-card {
    position: relative;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15, 61, 62, .09);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    overflow: hidden;
}

.home-why-card-new:hover,
.why-card:hover,
.stat-item:hover,
.mission-card:hover,
.testimonial-card:hover,
.home-testimonial-card-new:hover,
.home-batch-card-new:hover,
.home-blog-card-new:hover,
.blog-card-v2:hover,
.gallery-page-card:hover,
.batch-page-card:hover,
.course-list-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--accent-color) 26%, var(--border-color));
}

.home-why-card-new,
.why-card {
    padding: 30px 24px;
    text-align: left;
}

.home-icon-new,
.why-card > span,
.mission-icon,
.home-batch-icon-new,
.verify-help-icon,
.certificate-status-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary-color) 9%, #fff);
    color: var(--primary-color);
    font-size: 27px;
    margin-bottom: 18px;
}

.home-why-card-new h3,
.why-card h3 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.home-why-card-new p,
.why-card p { color: var(--muted-color); font-size:14px; line-height:1.75; }

.home-course-grid-new,
.course-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-course-card-new,
.course-list-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.home-course-img-new,
.course-list-image,
.home-blog-img-new,
.blog-card-image,
.featured-blog-image,
.gallery-page-card {
    position: relative;
    overflow: hidden;
    background: color-mix(in srgb, var(--primary-color) 6%, #fff);
}

.home-course-img-new,
.course-list-image {
    height: 176px;
}

.home-course-img-new img,
.course-list-image img,
.home-blog-img-new img,
.blog-card-image img,
.featured-blog-image img,
.gallery-page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.home-course-card-new:hover img,
.course-list-card:hover img,
.home-blog-card-new:hover img,
.blog-card-v2:hover img,
.gallery-page-card:hover img { transform: scale(1.06); }

.home-course-placeholder-new,
.course-list-placeholder,
.blog-placeholder,
.gallery-placeholder,
.blog-detail-placeholder,
.course-detail-image-placeholder-v2 {
    height: 100%;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
    color: var(--primary-color);
    font-weight: 900;
    font-size: 34px;
}

.home-course-body-new,
.course-list-body,
.home-blog-body-new,
.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 19px;
}

.home-course-body-new h3,
.course-list-body h3,
.home-blog-body-new h3,
.blog-card-body h3,
.home-batch-card-new h3 {
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 8px;
}

.home-course-body-new p,
.course-list-body p,
.home-blog-body-new p,
.blog-card-body p,
.home-batch-card-new p {
    color: var(--muted-color);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.home-course-body-new span,
.course-list-footer span,
.home-batch-card-new a,
.blog-read-more {
    margin-top: auto;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 900;
}

.home-about-box-new,
.cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 34px;
    align-items: center;
    border-radius: 38px;
    padding: 44px;
    background:
        radial-gradient(circle at 92% 10%, rgba(255,255,255,.16), transparent 28%),
        var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.home-about-box-new h2,
.cta-box h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.3px;
    font-weight: 900;
    margin: 16px 0 14px;
}

.home-about-box-new p,
.cta-box p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.85; }

.home-about-stats-new {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-about-stats-new div {
    padding: 22px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}

.home-about-stats-new strong,
.stat-item h3 {
    display: block;
    color: var(--accent-color);
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 8px;
}

.home-about-stats-new span { color: rgba(255,255,255,.78); font-weight: 850; font-size:13px; }

.home-batch-grid-new,
.batch-page-grid,
.home-testimonial-grid-new,
.testimonials-grid,
.home-blog-grid-new,
.blog-grid,
.gallery-page-grid,
.related-course-grid-v2 {
    display: grid;
    gap: 22px;
}

.home-batch-grid-new { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-batch-card-new { padding: 24px; }
.home-batch-card-new a { display: inline-flex; margin-top: 10px; }

.home-testimonial-grid-new,
.testimonials-grid,
.home-blog-grid-new,
.blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.home-testimonial-card-new,
.testimonial-card { padding: 28px; }
.stars { color: #FBBF24; letter-spacing: 1px; margin-bottom: 12px; }

.home-testimonial-card-new > p,
.testimonial-card > p { color: var(--muted-color); line-height:1.85; margin-bottom: 22px; }

.home-testimonial-user-new,
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 13px;
}

.home-testimonial-user-new img,
.testimonial-user img,
.home-testimonial-user-new > span,
.testimonial-user > span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: grid;
    place-items: center;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 900;
}

.home-testimonial-user-new strong,
.testimonial-user h4 { display:block; color:var(--text-color); font-weight:900; }
.home-testimonial-user-new small,
.testimonial-user small { color:var(--muted-color); font-size:13px; font-weight:700; }

.home-blog-img-new,
.blog-card-image { height: 205px; }
.home-blog-img-new > div { height:100%; display:grid; place-items:center; color:var(--primary-color); font-weight:900; }
.home-blog-body-new > span,
.blog-card-date,
.blog-meta,
.blog-detail-meta { color: var(--accent-color); font-size:12px; font-weight:900; margin-bottom:8px; }

.faq-clean-list {
    max-width: 860px;
    margin: 32px auto 0;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(15,61,62,.09);
    border-radius: 20px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 64px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: var(--text-color);
    text-align: left;
    font-size: 15px;
    font-weight: 900;
}

.faq-question strong {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
    color: var(--primary-color);
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted-color);
    line-height: 1.8;
}

.faq-item.active .faq-answer { display: block; }

.home-contact-grid-new,
.enquiry-layout,
.blog-detail-layout,
.course-detail-layout-v2,
.verify-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.home-contact-grid-new {
    grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr);
}

.home-contact-new h2 {
    color: var(--text-color);
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.1;
    letter-spacing: -1.6px;
    margin: 16px 0 12px;
    font-weight: 900;
}

.home-contact-new p { color: var(--muted-color); line-height:1.85; }
.home-contact-list-new { display:grid; gap:12px; margin-top:24px; }
.home-contact-list-new p { background:var(--background-color); border:1px solid var(--border-color); border-radius:16px; padding:13px 15px; color:var(--text-color); font-weight:800; }

.home-contact-form-new,
.course-enquiry-form-v2,
.enquiry-form {
    display: grid;
    gap: 13px;
}

.home-contact-form-new,
.enquiry-form-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15,61,62,.09);
    box-shadow: var(--shadow-sm);
}

.home-contact-form-new h3,
.enquiry-form-card h2 { color:var(--text-color); font-size:24px; font-weight:900; margin-bottom:16px; }

/* =====================================================
   COURSES LISTING + CSE/CTEVT PAGES
===================================================== */

.course-type-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.course-type-tabs a {
    position: relative;
    display: block;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,61,62,.09);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: .24s ease;
}

.course-type-tabs a::after {
    content: "";
    position: absolute;
    inset: auto 20px 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--accent-color);
    opacity: 0;
    transition: .24s ease;
}

.course-type-tabs a:hover,
.course-type-tabs a.active { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.course-type-tabs a.active { border-color: color-mix(in srgb, var(--accent-color) 32%, var(--border-color)); }
.course-type-tabs a.active::after { opacity: 1; }
.course-type-tabs strong { display:block; color:var(--text-color); font-size:17px; font-weight:900; margin-bottom:5px; }
.course-type-tabs span { color:var(--muted-color); font-size:13px; font-weight:750; }

.course-filter-box,
.batch-filter-box,
.blog-search-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15,61,62,.09);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.batch-filter-box { grid-template-columns: 1.5fr 1fr 1fr auto; }
.blog-search-box { grid-template-columns: 1fr auto; align-items:center; }

.course-filter-box label,
.batch-filter-box label,
.enquiry-form label,
.verify-form label {
    display:block;
    color:var(--text-color);
    font-size:12px;
    font-weight:900;
    margin-bottom:7px;
}

.course-filter-actions,
.batch-filter-actions,
.verify-result-actions { display:flex; gap:8px; flex-wrap:wrap; }
.course-filter-actions .btn,
.batch-filter-actions .btn { min-height: 46px; padding-inline: 15px; }

.course-category-badge,
.course-card-type,
.course-featured-badge,
.batch-status,
.batch-shift,
.certificate-status-badge,
.featured-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    line-height: 1;
    font-size: 11px;
    font-weight: 900;
}

.course-category-badge {
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    background: color-mix(in srgb, var(--primary-color) 8%, #fff);
    color: var(--primary-color);
    margin-bottom: 12px;
}

.course-card-type {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    padding: 8px 10px;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.course-card-type.cse { background:#ECFDF5; color:#047857; }
.course-card-type.ctevt { background:#FFF7ED; color:#EA580C; }

.course-featured-badge {
    position:absolute;
    left:12px;
    top:12px;
    z-index:2;
    padding:8px 10px;
    background:var(--gradient-accent);
    color:#fff;
    box-shadow:0 10px 22px rgba(0,0,0,.13);
}
.course-card-type + .course-featured-badge,
.course-featured-badge { top: 48px; }

.course-list-meta,
.course-tools-preview,
.course-hero-badges,
.course-hero-meta-v2,
.course-sidebar-info-v2,
.course-tools-v2,
.course-outcome-v2,
.certificate-info-grid {
    display: grid;
    gap: 10px;
}

.course-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.course-list-meta span,
.course-tools-preview em,
.course-tools-v2 span,
.course-outcome-v2 div {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 7px 9px;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid var(--border-color);
    color: var(--muted-color);
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
}

.course-tools-preview { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:15px; }
.course-tools-preview em { color: var(--primary-color); background: color-mix(in srgb, var(--primary-color) 7%, #fff); }
.course-list-footer { margin-top:auto; padding-top:14px; border-top:1px solid var(--border-color); }

.course-sidebar-price-v2,
.course-old-price-v2,
.course-price,
.course-list-footer strong { display: none !important; }

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.pagination a,
.pagination-dots {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 900;
    box-shadow: var(--shadow-xs);
}

.pagination a.active,
.pagination a:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* =====================================================
   COURSE DETAILS
===================================================== */

.course-breadcrumb {
    display:flex;
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom: 22px;
    color:var(--muted-color);
    font-size:14px;
    font-weight:750;
}
.course-breadcrumb a { color: var(--primary-color); }

.course-detail-hero-image-v2 {
    min-height: 430px;
    border-radius: 34px;
    overflow: hidden;
    background:#fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15,61,62,.09);
}

.course-detail-hero-image-v2 img { width:100%; height:100%; min-height:430px; object-fit:cover; }

.course-hero-badges { display:flex; flex-wrap:wrap; gap:8px; }
.course-hero-badges span { padding:8px 12px; border-radius:999px; background: color-mix(in srgb, var(--primary-color) 8%, #fff); color: var(--primary-color); font-size:12px; font-weight:900; }

.course-hero-meta-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}
.course-hero-meta-v2 div,
.course-sidebar-info-v2 div,
.certificate-info-grid div,
.certificate-remarks,
.batch-info-list div {
    padding: 15px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}
.course-hero-meta-v2 strong,
.course-sidebar-info-v2 strong,
.certificate-info-grid strong { display:block; color:var(--text-color); font-weight:900; }
.course-hero-meta-v2 span,
.course-sidebar-info-v2 span,
.certificate-info-grid small,
.certificate-remarks small { display:block; color:var(--muted-color); font-size:12px; font-weight:850; margin-top:3px; }

.course-detail-layout-v2 { grid-template-columns: minmax(0, 1fr) 360px; }
.course-detail-content-v2 { display:grid; gap:22px; min-width:0; }
.course-detail-card-v2 { padding: 28px; }
.course-detail-card-v2 h2,
.course-sidebar-card-v2 h3,
.verify-search-card h2,
.verify-help-card h2,
.certificate-result-card h2 { color:var(--text-color); font-size:25px; line-height:1.25; font-weight:900; margin-bottom:12px; }
.course-detail-card-v2 p { color:var(--muted-color); line-height:1.85; }

.course-card-heading-v2 { display:flex; align-items:flex-start; justify-content:space-between; gap:18px; margin-bottom:18px; }
.course-card-heading-v2 p { color:var(--muted-color); font-size:14px; }
.course-card-heading-v2 > span,
.course-card-heading-v2 a { color:var(--accent-color); font-weight:900; font-size:13px; }

.course-tools-v2 { display:flex; flex-wrap:wrap; gap:9px; }
.course-outcome-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.course-outcome-v2 div { width:100%; border-radius:16px; color:var(--text-color); background:#F8FAFC; }

.course-syllabus-v2 { display:grid; gap:12px; }
.syllabus-module-v2 { border:1px solid var(--border-color); border-radius:18px; overflow:hidden; background:#fff; }
.syllabus-head-v2 { width:100%; border:0; background:#fff; display:flex; align-items:center; gap:14px; padding:16px; text-align:left; }
.syllabus-head-v2 > span { width:38px; height:38px; border-radius:14px; display:grid; place-items:center; background:color-mix(in srgb, var(--primary-color) 8%, #fff); color:var(--primary-color); font-weight:900; }
.syllabus-head-v2 strong { color:var(--text-color); font-weight:900; }
.syllabus-head-v2 small { color:var(--muted-color); display:block; font-weight:700; }
.syllabus-head-v2 em { margin-left:auto; width:32px; height:32px; border-radius:50%; display:grid; place-items:center; background:#F8FAFC; font-style:normal; font-weight:900; }
.syllabus-body-v2 { display:none; padding:0 18px 18px 68px; color:var(--muted-color); }
.syllabus-module-v2.active .syllabus-body-v2 { display:block; }
.syllabus-body-v2 li { padding:8px 0; border-bottom:1px solid var(--border-color); }

.related-course-grid-v2 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.related-course-card-v2 { display:block; border:1px solid var(--border-color); border-radius:18px; overflow:hidden; background:#fff; }
.related-course-card-v2 > div { height:112px; background:#F8FAFC; display:grid; place-items:center; color:var(--primary-color); font-weight:900; }
.related-course-card-v2 img { width:100%; height:100%; object-fit:cover; }
.related-course-card-v2 strong { display:block; padding:12px 12px 3px; color:var(--text-color); font-size:13px; line-height:1.35; }
.related-course-card-v2 small { display:block; padding:0 12px 12px; color:var(--muted-color); }

.course-detail-sidebar-v2 { display:grid; gap:22px; position:sticky; top:96px; }
.course-sidebar-card-v2 { padding:24px; }
.course-sidebar-info-v2 { margin:0 0 18px; }
.sidebar-full-btn { width:100%; margin-top:10px; }
.course-enquiry-form-v2 { margin-top:16px; }

/* =====================================================
   BATCHES
===================================================== */

.batch-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.batch-page-card { display:grid; grid-template-columns: 96px minmax(0,1fr); }
.batch-date-box { background:var(--gradient-primary); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:18px 10px; text-align:center; }
.batch-date-box span { font-size:12px; font-weight:900; opacity:.8; text-transform:uppercase; }
.batch-date-box strong { font-size:38px; line-height:1; font-weight:900; margin:6px 0; }
.batch-date-box small { font-size:12px; font-weight:800; opacity:.75; }
.batch-page-content { padding:22px; }
.batch-top-row { display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.batch-status,
.batch-shift { padding:7px 10px; }
.batch-status.upcoming { background:#FFF7ED; color:#EA580C; }
.batch-status.running { background:#ECFDF5; color:#047857; }
.batch-status.completed { background:#F1F5F9; color:#475569; }
.batch-status.cancelled { background:#FFF1F2; color:#E11D48; }
.batch-shift { background:color-mix(in srgb, var(--primary-color) 8%, #fff); color:var(--primary-color); }
.batch-page-content h3 { color:var(--text-color); font-size:19px; font-weight:900; line-height:1.35; margin-bottom:5px; }
.batch-course-name { color:var(--muted-color); font-weight:750; margin-bottom:16px; }
.batch-info-list { display:grid; gap:9px; margin-bottom:18px; }
.batch-info-list div { display:grid; grid-template-columns:56px 1fr; align-items:center; gap:10px; padding:12px; }
.batch-info-list span { color:var(--muted-color); font-size:12px; font-weight:900; text-transform:uppercase; }
.batch-info-list strong { color:var(--text-color); font-size:13px; font-weight:900; }
.batch-enquire-btn { width:100%; }

/* =====================================================
   ABOUT
===================================================== */

.about-grid,
.mission-grid,
.training-box,
.stats-wrapper {
    display:grid;
    gap:28px;
}
.about-grid { grid-template-columns: .95fr 1.05fr; align-items:center; gap:52px; }
.about-image img,
.about-placeholder { width:100%; height:470px; border-radius:34px; box-shadow:var(--shadow-md); border:1px solid rgba(15,61,62,.09); object-fit:cover; }
.about-placeholder { display:grid; place-items:center; text-align:center; background:color-mix(in srgb, var(--primary-color) 7%, #fff); color:var(--primary-color); }
.about-placeholder strong { display:block; font-size:78px; line-height:1; font-weight:900; }
.about-placeholder span { color:var(--muted-color); font-weight:800; }
.about-content h2 { margin:16px 0; color:var(--text-color); font-size:clamp(30px,4vw,48px); line-height:1.12; font-weight:900; letter-spacing:-1.3px; }
.about-content p { color:var(--muted-color); line-height:1.9; }
.mission-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.mission-card { padding:32px; }
.mission-card h3 { color:var(--text-color); font-size:26px; font-weight:900; margin-bottom:10px; }
.mission-card p { color:var(--muted-color); line-height:1.85; }
.training-box { grid-template-columns:.8fr 1.2fr; align-items:start; padding:42px; border-radius:34px; background:var(--gradient-primary); color:#fff; box-shadow:var(--shadow-lg); }
.training-box h2 { color:#fff; font-size:clamp(28px,4vw,42px); line-height:1.15; margin-top:14px; }
.training-box p { color:rgba(255,255,255,.78); line-height:1.9; }
.stats-wrapper { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat-item { padding:28px; text-align:center; }
.stat-item h3 { color:var(--primary-color); }
.stat-item p { color:var(--muted-color); font-weight:850; }

/* =====================================================
   VERIFY / ENQUIRY / BLOGS / GALLERY
===================================================== */

.verify-layout { grid-template-columns: 390px minmax(0, 1fr); }
.verify-search-card,
.verify-help-card,
.certificate-result-card,
.enquiry-form-card,
.enquiry-info-card,
.blog-sidebar-card { padding:30px; }
.verify-search-card { position: sticky; top: 96px; }
.verify-form { display:grid; gap:13px; margin-top:20px; }
.verify-form .btn { width:100%; }
.certificate-status-icon.valid,
.certificate-result-card.valid .certificate-status-icon { background:#ECFDF5; color:#16A34A; }
.certificate-result-card.warning .certificate-status-icon { background:#FFF7ED; color:#EA580C; }
.certificate-result-card.invalid .certificate-status-icon { background:#FFF1F2; color:#E11D48; }
.certificate-status-badge { padding:8px 12px; margin-bottom:10px; }
.certificate-status-badge.valid { background:#ECFDF5; color:#16A34A; }
.certificate-status-badge.warning { background:#FFF7ED; color:#EA580C; }
.certificate-status-badge.invalid { background:#FFF1F2; color:#E11D48; }
.certificate-info-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top:22px; }
.certificate-remarks { margin-top:14px; }
.verify-help-card ul { display:grid; gap:10px; margin-top:20px; }
.verify-help-card li { padding:12px 14px; border-radius:14px; background:#F8FAFC; border:1px solid var(--border-color); color:var(--text-color); font-weight:800; }

.enquiry-layout { grid-template-columns: .9fr 1.1fr; }
.enquiry-contact-list { display:grid; gap:12px; margin-top:20px; }
.enquiry-contact-list p { padding:13px 15px; border-radius:16px; background:#F8FAFC; border:1px solid var(--border-color); color:var(--text-color); font-weight:800; }
.form-success,
.form-error { border-radius:14px; padding:12px 14px; margin-bottom:16px; font-weight:800; }
.form-success { background:#ECFDF5; color:#047857; }
.form-error { background:#FFF1F2; color:#E11D48; }

.featured-blog-card { display:grid; grid-template-columns: .9fr 1.1fr; overflow:hidden; margin-bottom:24px; }
.featured-blog-content { padding:28px; }
.featured-blog-image { min-height:300px; }
.featured-tag { padding:8px 11px; background:#FFF7ED; color:#EA580C; margin-bottom:10px; }
.blog-grid { margin-top:24px; }
.blog-sidebar-card { position: sticky; top:96px; }
.recent-blog-list { display:grid; gap:12px; }
.recent-blog-list a { padding:12px; border-radius:14px; background:#F8FAFC; border:1px solid var(--border-color); }
.blog-detail-main,
.blog-detail-sidebar { min-width:0; }
.blog-detail-content { color:var(--muted-color); line-height:1.9; }
.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3 { color:var(--text-color); margin:24px 0 10px; }
.blog-detail-image { border-radius:28px; overflow:hidden; margin-bottom:24px; box-shadow:var(--shadow-sm); }

.gallery-page-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gallery-page-card { height:285px; }
.gallery-overlay { position:absolute; inset:auto 14px 14px; padding:14px; border-radius:18px; background:rgba(255,255,255,.86); backdrop-filter:blur(12px); color:var(--text-color); box-shadow:var(--shadow-xs); }
.gallery-overlay h3 { font-size:15px; font-weight:900; }
.gallery-overlay p { color:var(--muted-color); font-size:13px; }

/* =====================================================
   CTA + FOOTER
===================================================== */

.cta-section { padding: 74px 0; }
.cta-box { grid-template-columns: minmax(0,1fr) auto; }
.cta-box .btn { background:#fff; color:var(--primary-color); box-shadow:none; }

.footer {
    position: relative;
    padding: 70px 0 22px;
    background:
        radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent-color) 10%, transparent), transparent 28%),
        var(--footer-color);
    color: rgba(255,255,255,.78);
}

.footer-grid {
    display:grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap:32px;
    align-items:start;
}

.footer-brand { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img,
.footer-brand > span { width:48px; height:48px; border-radius:15px; background:#fff; display:grid; place-items:center; object-fit:contain; color:var(--primary-color); font-weight:900; }
.footer-brand strong { display:block; color:#fff; font-weight:900; line-height:1.2; }
.footer-brand small { color:rgba(255,255,255,.64); font-weight:800; }
.footer-about p { line-height:1.8; }
.footer h4 { color:#fff; font-size:15px; font-weight:900; margin-bottom:15px; }
.footer-links,
.footer-contact { display:grid; gap:10px; }
.footer-links a { color:rgba(255,255,255,.72); font-size:14px; font-weight:700; transition:.2s ease; }
.footer-links a:hover { color:#fff; transform:translateX(3px); }
.footer-social { display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
.footer-social a { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.09); color:#fff; transition:.2s ease; }
.footer-social a:hover { transform:translateY(-3px); background:var(--accent-color); }
.footer-cta { display:inline-flex; margin-top:18px; padding:11px 14px; border-radius:999px; background:var(--accent-color); color:#fff; font-weight:900; }
.footer-bottom { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.10); font-size:13px; }
.footer-bottom a { color:#fff; font-weight:900; }

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

@media (max-width: 1180px) {
    .home-course-grid-new,
    .course-list-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .home-batch-grid-new { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 1050px) {
    .nav-toggle { display:grid; place-items:center; }
    .nav-actions { display:none; }
    .navbar { min-height:72px; position:relative; }
    .nav-menu {
        position:absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:12px;
        border-radius:22px;
        background:rgba(255,255,255,.97);
        border:1px solid rgba(15,61,62,.10);
        box-shadow:var(--shadow-md);
    }
    .nav-menu.active { display:flex; }
    .nav-menu > a,
    .nav-dropdown-link { width:100%; justify-content:space-between; border-radius:14px; background:#F8FAFC; min-height:48px; padding-inline:14px; }
    .nav-dropdown { width:100%; }
    .nav-dropdown::after { display:none; }
    .nav-dropdown-menu { position:static; opacity:1; visibility:visible; pointer-events:auto; transform:none; width:100%; box-shadow:none; margin-top:8px; background:#fff; border-radius:16px; }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { transform:none; }

    .home-hero-grid-new,
    .courses-hero-grid,
    .batch-hero-grid,
    .about-hero-grid,
    .verify-hero-grid,
    .course-detail-hero-grid-v2,
    .home-contact-grid-new,
    .enquiry-layout,
    .blog-detail-layout,
    .course-detail-layout-v2,
    .verify-layout,
    .about-grid,
    .training-box { grid-template-columns: 1fr; }
    .course-detail-sidebar-v2,
    .verify-search-card,
    .blog-sidebar-card { position:static; }
    .home-hero-image-new,
    .home-hero-image-new img { min-height:400px; }
    .home-search-box-new,
    .featured-blog-card { grid-template-columns:1fr; }
    .course-filter-box,
    .batch-filter-box { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .course-filter-actions,
    .batch-filter-actions { grid-column:1 / -1; }
}

@media (max-width: 820px) {
    .container { width:min(var(--container), calc(100% - 28px)); }
    .section,
    .about-story,
    .why-section,
    .mission-vision-section,
    .training-section,
    .stats-section,
    .about-testimonials,
    .cta-section,
    .batch-page-section,
    .courses-page-section,
    .verify-section,
    .blogs-page-section,
    .gallery-page-section,
    .enquiry-section,
    .blog-detail-section,
    .course-detail-main-v2,
    .home-why-new,
    .home-courses-new,
    .home-about-strip-new,
    .home-batches-new,
    .home-testimonials-new,
    .home-blogs-new,
    .home-faq-new,
    .home-contact-new { padding:58px 0; }

    .home-hero-new,
    .courses-page-hero,
    .batch-hero,
    .about-hero,
    .verify-hero,
    .blogs-hero,
    .gallery-hero,
    .enquiry-hero,
    .blog-detail-hero,
    .course-detail-hero-v2 { padding:56px 0 48px; }

    .home-stats-mini-new,
    .home-why-grid-new,
    .why-grid,
    .mission-grid,
    .stats-wrapper,
    .home-testimonial-grid-new,
    .testimonials-grid,
    .home-blog-grid-new,
    .blog-grid,
    .course-type-tabs,
    .course-hero-meta-v2,
    .course-outcome-v2,
    .certificate-info-grid,
    .gallery-page-grid { grid-template-columns:1fr; }
    .home-course-grid-new,
    .course-list-grid,
    .home-batch-grid-new,
    .batch-page-grid,
    .related-course-grid-v2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .home-section-row-new,
    .course-result-row,
    .batch-result-row { flex-direction:column; align-items:flex-start; }
    .home-about-box-new,
    .cta-box { grid-template-columns:1fr; padding:30px; border-radius:28px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
    .site-logo-text small { display:none; }
    .site-logo img,
    .site-logo-mark { width:44px; height:44px; border-radius:14px; }
    .home-hero-content-new h1,
    .courses-page-hero h1,
    .batch-hero h1,
    .about-hero h1,
    .verify-hero h1,
    .course-detail-hero-content-v2 h1 { letter-spacing:-1.6px; }
    .home-hero-buttons-new,
    .courses-hero-actions,
    .batch-hero-actions,
    .about-hero-actions,
    .verify-hero-actions,
    .course-hero-actions-v2,
    .about-content-actions { flex-direction:column; }
    .home-hero-buttons-new .btn,
    .courses-hero-actions .btn,
    .batch-hero-actions .btn,
    .about-hero-actions .btn,
    .verify-hero-actions .btn,
    .course-hero-actions-v2 .btn,
    .about-content-actions .btn { width:100%; }
    .home-search-fields-new,
    .course-filter-box,
    .batch-filter-box,
    .blog-search-box { grid-template-columns:1fr; }
    .home-course-grid-new,
    .course-list-grid,
    .home-batch-grid-new,
    .batch-page-grid,
    .related-course-grid-v2,
    .footer-grid { grid-template-columns:1fr; }
    .course-filter-actions,
    .batch-filter-actions,
    .verify-result-actions { flex-direction:column; }
    .course-filter-actions .btn,
    .batch-filter-actions .btn,
    .verify-result-actions .btn { width:100%; }
    .home-hero-image-new,
    .home-hero-image-new img,
    .course-detail-hero-image-v2,
    .course-detail-hero-image-v2 img { min-height:300px; }
    .home-course-img-new,
    .course-list-image { height:210px; }
    .about-image img,
    .about-placeholder { height:320px; }
    .batch-page-card { grid-template-columns:1fr; }
    .batch-date-box { flex-direction:row; justify-content:flex-start; gap:12px; padding:16px 20px; }
    .batch-date-box strong { margin:0; font-size:34px; }
    .footer-bottom { flex-direction:column; }
}

/* Subtle React-style reveal animation */
.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
}

.reveal-show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s ease;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}
