/* =====================================================
   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;
    }
}

/* ========================================================================
   CSE COMPUTER EDUCATION — INDIGO / MINT PREMIUM UI
   Production override layer
======================================================================== */
:root {
    --cc-primary: #4338ca;
    --cc-primary-dark: #312e81;
    --cc-accent: #14b8a6;
    --cc-ink: #111827;
    --cc-muted: #667085;
    --cc-surface: #ffffff;
    --cc-soft: #f5f7ff;
    --cc-line: #e4e7f3;
    --cc-radius: 24px;
    --cc-shadow: 0 24px 70px rgba(49, 46, 129, .12);
    --cc-shadow-soft: 0 14px 40px rgba(17, 24, 39, .07);
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, h4, .site-logo-text strong {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

.btn-primary,
.nav-enquire,
.home-search-fields-new button,
.footer-cta {
    background: linear-gradient(135deg, var(--cc-primary), #6366f1) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 14px 28px rgba(67, 56, 202, .22) !important;
}

.btn-primary:hover,
.nav-enquire:hover,
.home-search-fields-new button:hover,
.footer-cta:hover {
    background: linear-gradient(135deg, var(--cc-primary-dark), var(--cc-primary)) !important;
    box-shadow: 0 18px 38px rgba(67, 56, 202, .28) !important;
}

.btn-outline {
    color: var(--cc-primary) !important;
    border-color: #d8d7ff !important;
    background: #fff !important;
}

.btn-outline:hover {
    background: #f2f1ff !important;
    border-color: #a5a0ff !important;
}

.badge,
.home-label-new,
.section-label,
.home-section-head-new > span {
    background: #eeecff !important;
    border-color: #d8d4ff !important;
    color: var(--cc-primary) !important;
}

.view-link,
.cc-text-link,
.course-list-footer span,
.home-course-body-new > span {
    color: var(--cc-primary) !important;
}

.container { width: min(1240px, calc(100% - 40px)); }

/* announcement */
.cc-announcement {
    background: #111827;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
}
.cc-announcement .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cc-announcement .container > div { display: flex; gap: 20px; }
.cc-announcement a, .cc-announcement span { display: inline-flex; align-items: center; gap: 7px; }
.cc-announcement i { color: #5eead4; }

/* navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(228,231,243,.86) !important;
    box-shadow: 0 8px 30px rgba(17,24,39,.045) !important;
}
.navbar { min-height: 78px; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-logo img, .site-logo-mark {
    width: 48px; height: 48px; border-radius: 15px; object-fit: contain;
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-accent));
    color: #fff; display: grid; place-items: center; font-weight: 900;
}
.site-logo-text strong { color: var(--cc-ink); font-size: 19px; display: block; line-height: 1.1; }
.site-logo-text small { color: var(--cc-muted); font-size: 10px; letter-spacing: .25px; margin-top: 3px; display: block; }
.nav-menu { gap: 2px; }
.nav-menu > a,
.nav-dropdown-link {
    min-height: 42px;
    padding: 0 11px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    color: #344054;
    font: 750 13px/1 'Manrope', sans-serif;
    cursor: pointer;
}
.nav-menu > a:hover,
.nav-menu > a.active,
.nav-dropdown:hover > .nav-dropdown-link,
.nav-dropdown.active > .nav-dropdown-link {
    color: var(--cc-primary);
    background: #f1f0ff;
}
.nav-dropdown { position: relative; }
.nav-dropdown-link i { font-size: 10px; margin-left: 5px; transition: transform .2s ease; }
.nav-dropdown:hover .nav-dropdown-link i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    width: 290px;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 10px;
    border: 1px solid var(--cc-line);
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--cc-shadow);
    transition: .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.mobile-open .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 12px 13px;
    border-radius: 12px;
    color: var(--cc-ink);
}
.nav-dropdown-menu a:hover { background: var(--cc-soft); color: var(--cc-primary); }
.nav-dropdown-menu strong { display: block; font-size: 13px; }
.nav-dropdown-menu small { display: block; color: var(--cc-muted); margin-top: 3px; font-size: 11px; }
.nav-enquire { min-height: 44px; border-radius: 12px !important; padding: 0 16px !important; }
.nav-toggle {
    display: none;
    width: 44px; height: 44px; padding: 10px;
    border: 1px solid var(--cc-line); border-radius: 12px; background: #fff;
}
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--cc-ink); border-radius: 99px; transition: .2s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* common premium section */
.cc-section { padding: 96px 0; }
.cc-kicker {
    display: inline-flex;
    width: max-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: #eeecff;
    color: var(--cc-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .55px;
}
.cc-kicker.light { background: rgba(255,255,255,.12); color: #c7fffa; border: 1px solid rgba(255,255,255,.13); }
.cc-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}
.cc-section-heading.center { justify-content: center; text-align: center; }
.cc-section-heading.center > div { max-width: 760px; }
.cc-section-heading h2 {
    margin-top: 13px;
    color: var(--cc-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.5px;
}
.cc-section-heading p { margin-top: 12px; color: var(--cc-muted); max-width: 700px; }
.cc-text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; white-space: nowrap; }

/* hero */
.cc-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 116px;
    background:
        linear-gradient(120deg, rgba(67,56,202,.06), rgba(20,184,166,.05)),
        #fbfbff;
}
.cc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#c9c5ff 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .28;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}
.cc-hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.glow-one { width: 430px; height: 430px; background: rgba(99,102,241,.16); left: -220px; top: -180px; }
.glow-two { width: 380px; height: 380px; background: rgba(20,184,166,.14); right: -160px; bottom: -160px; }
.cc-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.cc-trust-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 12px; border: 1px solid #dedcff; border-radius: 999px;
    background: rgba(255,255,255,.82); color: #4b4a69; font-size: 12px; font-weight: 800;
}
.cc-trust-pill span { width: 8px; height: 8px; border-radius: 50%; background: var(--cc-accent); box-shadow: 0 0 0 5px rgba(20,184,166,.12); }
.cc-hero-copy h1 {
    max-width: 720px;
    margin: 22px 0 18px;
    color: var(--cc-ink);
    font-size: clamp(45px, 6vw, 76px);
    line-height: .99;
    letter-spacing: -3.2px;
}
.cc-hero-copy h1 em { color: var(--cc-primary); font-style: normal; }
.cc-hero-copy > p { max-width: 650px; color: #536070; font-size: 17px; line-height: 1.82; }
.cc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.cc-hero-proof { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 38px; }
.cc-hero-proof div { padding-right: 28px; border-right: 1px solid #dcdfea; }
.cc-hero-proof div:last-child { border-right: 0; }
.cc-hero-proof strong { display: block; color: var(--cc-ink); font-family: 'Space Grotesk'; font-size: 23px; line-height: 1; }
.cc-hero-proof span { display: block; color: var(--cc-muted); font-size: 11px; font-weight: 700; margin-top: 6px; }
.cc-hero-visual { position: relative; min-height: 560px; }
.cc-visual-main {
    position: absolute;
    right: 0; top: 18px;
    width: 88%; height: 500px;
    border-radius: 44px 16px 44px 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #dddafe, #ccfbf1);
    border: 8px solid #fff;
    box-shadow: 0 32px 90px rgba(49,46,129,.19);
}
.cc-visual-main::after { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(17,24,39,.2), transparent 48%); }
.cc-visual-main > img { width: 100%; height: 100%; object-fit: cover; }
.cc-floating-card {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 11px;
    padding: 13px 15px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 16px;
    background: rgba(255,255,255,.91);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 38px rgba(17,24,39,.13);
}
.cc-floating-card i { width: 38px; height: 38px; display:grid; place-items:center; border-radius: 12px; background:#eeecff; color:var(--cc-primary); }
.cc-floating-card strong, .cc-floating-card span { display:block; }
.cc-floating-card strong { color:var(--cc-ink); font-size:12px; }
.cc-floating-card span { color:var(--cc-muted); font-size:10px; }
.card-top { left: -40px; top: 92px; }
.card-bottom { right: -20px; bottom: 65px; }
.cc-code-card {
    position: absolute; z-index: 4; left: 0; bottom: 0; width: 66%;
    display:grid; gap: 7px; padding: 18px;
    border-radius: 18px; background:#111827; color:#d1fae5;
    box-shadow:0 20px 50px rgba(17,24,39,.22); transform: rotate(-2deg);
}
.cc-code-card code { font-size: 11px; color:#dbeafe; }
.cc-code-card b { color:#5eead4; }
.cc-code-dots { display:flex; gap:5px; margin-bottom:5px; }
.cc-code-dots span { width:7px; height:7px; border-radius:50%; background:#f87171; }
.cc-code-dots span:nth-child(2){background:#fbbf24}.cc-code-dots span:nth-child(3){background:#34d399}

/* quick search */
.cc-quick-search { position: relative; z-index: 5; margin-top: -42px; }
.cc-search-panel {
    display: grid; grid-template-columns: 1.05fr 1.35fr auto; gap: 14px; align-items: center;
    padding: 18px; border: 1px solid var(--cc-line); border-radius: 22px; background:#fff; box-shadow:var(--cc-shadow);
}
.cc-search-intro { display:flex; align-items:center; gap:12px; }
.cc-icon-box { width:46px; height:46px; display:grid; place-items:center; border-radius:14px; background:#eeecff; color:var(--cc-primary); }
.cc-search-intro strong,.cc-search-intro small{display:block}.cc-search-intro strong{font-size:13px;color:var(--cc-ink)}.cc-search-intro small{font-size:10px;color:var(--cc-muted);margin-top:3px}
.cc-search-panel input { min-height: 50px; border-radius: 13px; background:#fafbff; }
.cc-search-panel button { min-height:50px; padding:0 22px; border:0; border-radius:13px; background:var(--cc-primary); color:#fff; font-weight:800; }

/* categories */
.cc-category-section { background:#fff; }
.cc-category-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.cc-category-card {
    min-height: 150px; display:grid; grid-template-columns:auto 1fr auto; gap:14px; align-items:center;
    padding:22px; border:1px solid var(--cc-line); border-radius:20px; background:#fff; box-shadow:var(--cc-shadow-soft); transition:.22s;
}
.cc-category-card:hover { transform:translateY(-5px); border-color:#c7c3ff; box-shadow:var(--cc-shadow); }
.cc-category-card > span { width:50px;height:50px;display:grid;place-items:center;border-radius:15px;background:#f0efff;color:var(--cc-primary);font-size:18px; }
.cc-category-card h3 { font-size:15px; color:var(--cc-ink); }
.cc-category-card p { color:var(--cc-muted); font-size:11px; margin-top:5px; }
.cc-category-card > i { color:#a3a8b6; font-size:11px; }

/* course cards */
.cc-courses-section { background:var(--cc-soft); }
.cc-course-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.cc-course-card { overflow:hidden; border:1px solid var(--cc-line); border-radius:22px; background:#fff; box-shadow:var(--cc-shadow-soft); transition:.24s; }
.cc-course-card:hover { transform:translateY(-7px); box-shadow:var(--cc-shadow); }
.cc-course-media { position:relative; display:block; height:185px; overflow:hidden; background:#edeef9; }
.cc-course-media img { width:100%;height:100%;object-fit:cover;transition:.35s; }
.cc-course-card:hover img { transform:scale(1.05); }
.cc-course-media > span { position:absolute;left:12px;bottom:12px;padding:6px 9px;border-radius:999px;background:rgba(17,24,39,.8);color:#fff;font-size:9px;font-weight:800;backdrop-filter:blur(8px); }
.cc-course-placeholder { height:100%;display:grid;place-items:center;font-size:34px;font-weight:900;color:var(--cc-primary); }
.cc-course-content { padding:19px; }
.cc-course-meta { display:flex;gap:12px;flex-wrap:wrap;color:var(--cc-muted);font-size:10px;font-weight:700; }
.cc-course-meta i { color:var(--cc-accent); }
.cc-course-content h3 { margin:12px 0 8px;font-size:17px;line-height:1.3;color:var(--cc-ink); }
.cc-course-content p { min-height:62px;color:var(--cc-muted);font-size:12px;line-height:1.7;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden; }
.cc-course-link { display:inline-flex;align-items:center;gap:7px;margin-top:16px;color:var(--cc-primary);font-size:11px;font-weight:850; }

/* about band */
.cc-about-band { padding:0; background:var(--cc-soft); }
.cc-about-grid { position:relative;display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:center;padding:78px;border-radius:36px;background:linear-gradient(135deg,#312e81,#4338ca 58%,#0f766e);color:#fff;overflow:hidden;box-shadow:0 32px 90px rgba(49,46,129,.25); }
.cc-about-grid::after { content:'';position:absolute;width:420px;height:420px;border-radius:50%;right:-180px;top:-220px;border:70px solid rgba(255,255,255,.06); }
.cc-about-copy { position:relative;z-index:2; }
.cc-about-copy h2 { margin:14px 0 18px;font-size:clamp(32px,4vw,52px);line-height:1.08;letter-spacing:-1.8px;color:#fff; }
.cc-about-copy > p { color:rgba(255,255,255,.78);line-height:1.82; }
.cc-check-list { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px;margin:28px 0; }
.cc-check-list span { display:flex;gap:8px;color:rgba(255,255,255,.9);font-size:12px;font-weight:700; }
.cc-check-list i { color:#5eead4; }
.cc-btn-light { background:#fff!important;color:var(--cc-primary)!important;border-color:#fff!important;box-shadow:none!important; }
.cc-metrics-board { position:relative;z-index:2;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px; }
.cc-metrics-board div { padding:24px;border:1px solid rgba(255,255,255,.13);border-radius:20px;background:rgba(255,255,255,.08);backdrop-filter:blur(9px); }
.cc-metrics-board strong { display:block;color:#fff;font:700 38px/1 'Space Grotesk'; }
.cc-metrics-board span { display:block;color:rgba(255,255,255,.7);font-size:11px;margin-top:9px;font-weight:700; }

/* services */
.cc-services-section { background:#fff; }
.cc-service-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px; }
.cc-service-card { position:relative;min-height:270px;padding:28px;border:1px solid var(--cc-line);border-radius:24px;background:#fff;box-shadow:var(--cc-shadow-soft);overflow:hidden;transition:.24s; }
.cc-service-card::after { content:'';position:absolute;width:120px;height:120px;border-radius:50%;right:-50px;bottom:-50px;background:#eeecff; }
.cc-service-card:hover { transform:translateY(-7px);border-color:#c7c3ff;box-shadow:var(--cc-shadow); }
.cc-service-icon { width:58px;height:58px;display:grid;place-items:center;border-radius:17px;background:linear-gradient(135deg,#eeecff,#dffcf8);color:var(--cc-primary);font-size:21px; }
.cc-service-card h3 { margin:22px 0 10px;color:var(--cc-ink);font-size:20px; }
.cc-service-card p { color:var(--cc-muted);font-size:13px;line-height:1.75; }
.cc-service-card a { display:inline-flex;align-items:center;gap:7px;margin-top:20px;color:var(--cc-primary);font-size:11px;font-weight:850; }

/* process */
.cc-process-section { background:var(--cc-soft); }
.cc-process-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px; }
.cc-process-grid > div { position:relative;padding:28px 24px;border:1px solid var(--cc-line);border-radius:22px;background:#fff;box-shadow:var(--cc-shadow-soft); }
.cc-process-grid > div > span { position:absolute;right:18px;top:15px;color:#d7d9e5;font:700 30px/1 'Space Grotesk'; }
.cc-process-grid i { width:52px;height:52px;display:grid;place-items:center;border-radius:16px;background:#eeecff;color:var(--cc-primary);font-size:19px; }
.cc-process-grid h3 { margin:20px 0 9px;font-size:17px;color:var(--cc-ink); }
.cc-process-grid p { color:var(--cc-muted);font-size:12px;line-height:1.7; }

/* batches */
.cc-batches-section { background:#fff; }
.cc-batch-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:17px; }
.cc-batch-card { display:grid;grid-template-columns:70px 1fr 42px;gap:17px;align-items:center;padding:18px;border:1px solid var(--cc-line);border-radius:20px;background:#fff;box-shadow:var(--cc-shadow-soft); }
.cc-batch-date { width:62px;height:70px;display:grid;place-items:center;align-content:center;border-radius:15px;background:linear-gradient(135deg,var(--cc-primary),#6366f1);color:#fff; }
.cc-batch-date strong { font:700 24px/1 'Space Grotesk'; }.cc-batch-date span{font-size:9px;text-transform:uppercase;margin-top:4px}
.cc-status-pill { display:inline-flex;padding:5px 8px;border-radius:999px;background:#eef2ff;color:var(--cc-primary);font-size:9px;font-weight:800;text-transform:uppercase; }
.cc-status-pill.running { background:#dcfce7;color:#15803d; }
.cc-batch-card h3 { margin:8px 0 6px;font-size:15px;color:var(--cc-ink); }.cc-batch-card p{font-size:11px;color:var(--cc-muted)}
.cc-batch-card > a { width:40px;height:40px;display:grid;place-items:center;border-radius:12px;background:#f1f0ff;color:var(--cc-primary); }

/* testimonials */
.cc-testimonial-section { background:var(--cc-soft); }
.cc-testimonial-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px; }
.cc-testimonial-card { position:relative;padding:28px;border:1px solid var(--cc-line);border-radius:24px;background:#fff;box-shadow:var(--cc-shadow-soft); }
.cc-quote { position:absolute;right:22px;top:8px;color:#e3e1ff;font:700 72px/1 Georgia; }
.cc-testimonial-card .stars { color:#f59e0b;font-size:12px;letter-spacing:2px; }
.cc-testimonial-card > p { position:relative;z-index:2;margin:17px 0 24px;color:#4f5d6d;font-size:13px;line-height:1.8; }
.cc-student { display:flex;align-items:center;gap:12px; }.cc-student>span{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:#eeecff;color:var(--cc-primary);font-weight:900}.cc-student strong,.cc-student small{display:block}.cc-student strong{font-size:12px}.cc-student small{color:var(--cc-muted);font-size:10px;margin-top:3px}

/* FAQ */
.cc-faq-section { background:#fff; }
.cc-faq-grid { display:grid;grid-template-columns:.75fr 1.25fr;gap:70px;align-items:start; }
.cc-faq-grid > div:first-child h2 { margin:14px 0;font-size:clamp(32px,4vw,48px);line-height:1.1;color:var(--cc-ink); }.cc-faq-grid>div:first-child p{color:var(--cc-muted);line-height:1.8;margin-bottom:23px}
.faq-clean-list { display:grid;gap:11px; }
.faq-item { border:1px solid var(--cc-line)!important;border-radius:16px!important;background:#fff!important;overflow:hidden; }
.faq-question { width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:18px 20px;border:0;background:#fff;color:var(--cc-ink);font-weight:800;text-align:left; }
.faq-question strong { width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:#f1f0ff;color:var(--cc-primary); }
.faq-answer { max-height:0;overflow:hidden;transition:max-height .25s ease; }.faq-item.active .faq-answer{max-height:280px}.faq-answer p{padding:0 20px 20px;color:var(--cc-muted);font-size:13px;line-height:1.8}

/* news */
.cc-news-section { background:var(--cc-soft); }
.cc-news-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px; }
.cc-news-card { overflow:hidden;border:1px solid var(--cc-line);border-radius:22px;background:#fff;box-shadow:var(--cc-shadow-soft); }
.cc-news-image { display:block;height:185px;background:linear-gradient(135deg,#e0e7ff,#ccfbf1);overflow:hidden; }.cc-news-image img{width:100%;height:100%;object-fit:cover}.cc-news-image>span{height:100%;display:grid;place-items:center;color:var(--cc-primary);font-size:38px}
.cc-news-card>div { padding:20px; }.cc-news-card small{color:var(--cc-accent);font-size:10px;font-weight:800}.cc-news-card h3{margin:9px 0;font-size:18px;line-height:1.35;color:var(--cc-ink)}.cc-news-card p{color:var(--cc-muted);font-size:12px;line-height:1.7}

/* services inner page */
.cc-inner-hero { padding:80px 0;background:linear-gradient(135deg,#312e81,#4338ca 62%,#0f766e);color:#fff;overflow:hidden; }
.cc-inner-hero-grid { display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:center; }.cc-inner-hero h1{margin:15px 0;font-size:clamp(38px,5vw,64px);line-height:1.03;letter-spacing:-2.2px;color:#fff}.cc-inner-hero p{color:rgba(255,255,255,.76);font-size:15px;line-height:1.8}
.cc-inner-hero-card { padding:28px;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:rgba(255,255,255,.09);backdrop-filter:blur(12px); }.cc-inner-hero-card>i{width:54px;height:54px;display:grid;place-items:center;border-radius:16px;background:#fff;color:var(--cc-primary);font-size:20px}.cc-inner-hero-card strong{display:block;margin:18px 0 7px;font-size:20px}.cc-inner-hero-card .btn{margin-top:18px}
.cc-service-detail-grid { display:grid;gap:22px; }.cc-service-detail-card { display:grid;grid-template-columns:80px 1fr auto;gap:26px;align-items:start;padding:32px;border:1px solid var(--cc-line);border-radius:24px;background:#fff;box-shadow:var(--cc-shadow-soft); }.cc-service-detail-card small{color:var(--cc-accent);font-weight:800}.cc-service-detail-card h2{margin:7px 0 12px;color:var(--cc-ink)}.cc-service-detail-card p{color:var(--cc-muted);line-height:1.85}.cc-service-action{align-self:center;display:inline-flex;align-items:center;gap:8px;color:var(--cc-primary);font-size:12px;font-weight:850;white-space:nowrap}
.cc-service-benefits { background:var(--cc-soft); }.cc-benefit-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.cc-benefit-grid>div{padding:24px;border:1px solid var(--cc-line);border-radius:20px;background:#fff}.cc-benefit-grid i{color:var(--cc-primary);font-size:20px}.cc-benefit-grid h3{margin:15px 0 7px;font-size:16px}.cc-benefit-grid p{color:var(--cc-muted);font-size:12px;line-height:1.7}

/* Re-theme legacy pages */
.courses-page-hero,.batch-hero,.about-hero,.verify-hero,.blogs-page-hero,.gallery-page-hero,.enquiry-hero,.course-detail-hero-v2 {
    background:linear-gradient(135deg,#312e81,#4338ca 62%,#0f766e)!important;
}
.courses-page-hero h1,.batch-hero h1,.about-hero h1,.verify-hero h1,.blogs-page-hero h1,.gallery-page-hero h1,.enquiry-hero h1,.course-detail-hero-v2 h1 { color:#fff!important; }
.courses-page-hero p,.batch-hero p,.about-hero p,.verify-hero p,.blogs-page-hero p,.gallery-page-hero p,.enquiry-hero p,.course-detail-hero-v2 p { color:rgba(255,255,255,.76)!important; }
.course-list-card,.batch-page-card,.mission-card,.why-card,.testimonial-card,.blog-card,.gallery-page-card,.verify-search-card,.certificate-result-card,.enquiry-form-card { border-color:var(--cc-line)!important;border-radius:22px!important;box-shadow:var(--cc-shadow-soft)!important; }
.course-list-card:hover,.batch-page-card:hover,.why-card:hover,.blog-card:hover,.gallery-page-card:hover { border-color:#c7c3ff!important;box-shadow:var(--cc-shadow)!important; }
.course-card-type.cse,.course-type-badge.cse { background:#eeecff!important;color:var(--cc-primary)!important; }
.course-card-type.ctevt,.course-type-badge.ctevt { background:#ccfbf1!important;color:#0f766e!important; }
.pagination a.active { background:var(--cc-primary)!important;color:#fff!important; }
.footer { background:var(--cc-ink)!important; }

/* footer */
.cc-footer { padding-top:0!important; }
.cc-footer-top { display:flex;align-items:center;justify-content:space-between;gap:30px;padding:54px 0;border-bottom:1px solid rgba(255,255,255,.1); }.cc-footer-top h2{max-width:770px;margin-top:12px;color:#fff;font-size:clamp(28px,4vw,46px);line-height:1.1}.cc-footer .footer-grid{padding-top:58px}.footer-social a{background:rgba(255,255,255,.08)!important;color:#fff!important}.footer-social a:hover{background:var(--cc-primary)!important}

/* reveal */
.cc-course-card,.cc-category-card,.cc-service-card,.cc-process-grid>div,.cc-testimonial-card,.cc-news-card { opacity:1;transform:none; }
.reveal-ready { opacity:0;transform:translateY(16px);transition:.5s ease; }.reveal-show{opacity:1;transform:none}

@media (max-width: 1120px) {
    .nav-actions { display:none; }
    .nav-toggle { display:block; margin-left:auto; }
    .nav-menu {
        position:absolute;top:calc(100% + 8px);left:20px;right:20px;
        display:none;flex-direction:column;align-items:stretch;gap:5px;
        padding:12px;border:1px solid var(--cc-line);border-radius:18px;background:#fff;box-shadow:var(--cc-shadow);
    }
    .nav-menu.active { display:flex; }
    .nav-menu > a,.nav-dropdown-link { width:100%;justify-content:space-between;min-height:45px;padding:0 13px; }
    .nav-dropdown-menu { position:static;width:100%;transform:none!important;opacity:0;visibility:hidden;max-height:0;padding:0;border:0;box-shadow:none;overflow:hidden; }
    .nav-dropdown.mobile-open .nav-dropdown-menu { opacity:1;visibility:visible;max-height:300px;padding:7px;margin-top:4px;background:var(--cc-soft); }
    .cc-hero-grid { grid-template-columns:1fr;gap:45px; }.cc-hero-copy{text-align:center}.cc-hero-copy>p,.cc-hero-copy h1{margin-left:auto;margin-right:auto}.cc-hero-actions,.cc-hero-proof{justify-content:center}.cc-hero-visual{max-width:680px;width:100%;margin:auto}.cc-search-panel{grid-template-columns:1fr 1fr}.cc-search-intro{grid-column:1/-1}.cc-category-grid,.cc-course-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cc-about-grid{grid-template-columns:1fr;padding:54px}.cc-service-grid,.cc-testimonial-grid,.cc-news-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cc-process-grid,.cc-benefit-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.cc-faq-grid,.cc-inner-hero-grid{grid-template-columns:1fr}.cc-service-detail-card{grid-template-columns:70px 1fr}.cc-service-action{grid-column:2}
}

@media (max-width: 720px) {
    .container { width:min(100% - 28px,1240px); }
    .cc-announcement .container > div a:last-child { display:none; }
    .cc-announcement .container { justify-content:center; }.cc-announcement .container>span{display:none}
    .navbar{min-height:70px}.site-logo img,.site-logo-mark{width:42px;height:42px}.site-logo-text strong{font-size:16px}.site-logo-text small{font-size:9px}
    .cc-section{padding:72px 0}.cc-hero{padding:66px 0 90px}.cc-hero-copy h1{font-size:clamp(39px,12vw,58px);letter-spacing:-2px}.cc-hero-copy>p{font-size:14px}.cc-hero-actions{flex-direction:column}.cc-hero-actions .btn{width:100%}.cc-hero-proof{gap:12px}.cc-hero-proof div{padding:0 12px;border:0}.cc-hero-visual{min-height:420px}.cc-visual-main{width:100%;height:380px;border-radius:30px 12px}.card-top{left:8px;top:45px}.card-bottom{right:7px;bottom:34px}.cc-code-card{width:82%;left:10px}.cc-search-panel{grid-template-columns:1fr;padding:14px}.cc-search-intro{grid-column:auto}.cc-search-panel button{width:100%}
    .cc-section-heading{align-items:flex-start;flex-direction:column}.cc-section-heading.center{align-items:center}.cc-section-heading h2{font-size:32px}.cc-category-grid,.cc-course-grid,.cc-service-grid,.cc-process-grid,.cc-batch-grid,.cc-testimonial-grid,.cc-news-grid,.cc-benefit-grid{grid-template-columns:1fr}.cc-about-grid{padding:34px 24px;border-radius:26px;gap:38px}.cc-check-list,.cc-metrics-board{grid-template-columns:1fr}.cc-course-media{height:210px}.cc-faq-grid{gap:34px}.cc-footer-top{align-items:flex-start;flex-direction:column}.cc-service-detail-card{grid-template-columns:1fr;padding:24px}.cc-service-action{grid-column:auto}.cc-inner-hero{padding:60px 0}.cc-inner-hero h1{font-size:40px}.footer-grid{grid-template-columns:1fr!important}
}
.course-type-tabs.two-tabs { grid-template-columns:repeat(2,minmax(0,1fr))!important;max-width:760px; }
@media(max-width:720px){.course-type-tabs.two-tabs{grid-template-columns:1fr!important;max-width:none}}


/* =====================================================
   FINAL HERO, INFORMATION CARD AND FOOTER FIX
   Keep this at the very bottom of style.css
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #f6f8ff;
}

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

.site-header {
    position: sticky !important;
    top: 0;
    z-index: 9999 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.06) !important;
}

.top-bar {
    background: #0f172a !important;
    color: #ffffff !important;
}

.top-bar a,
.top-bar span {
    color: #ffffff !important;
}

/* =====================================================
   SHARED PAGE HERO
===================================================== */

.about-hero,
.verify-hero,
.courses-page-hero,
.batch-hero {
    position: relative;
    padding: 78px 0 !important;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(14, 165, 233, 0.36),
            transparent 34%
        ),
        linear-gradient(
            125deg,
            #312e81 0%,
            #4338ca 48%,
            #0369a1 100%
        ) !important;
    border-bottom: 0 !important;
}

.about-hero::before,
.verify-hero::before,
.courses-page-hero::before,
.batch-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    left: -170px;
    bottom: -240px;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.about-hero-grid,
.verify-hero-grid,
.courses-hero-grid,
.batch-hero-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 410px) !important;
    gap: 64px !important;
    align-items: center !important;
}

/* Left-side hero content */

.about-hero h1,
.verify-hero h1,
.courses-page-hero h1,
.batch-hero h1 {
    color: #ffffff !important;
    font-size: clamp(43px, 5vw, 68px) !important;
    line-height: 1.04 !important;
    letter-spacing: -2.3px !important;
    font-weight: 900 !important;
    max-width: 780px;
    margin: 20px 0 20px !important;
}

.about-hero > .container > div:first-child > p,
.verify-hero > .container > div:first-child > p,
.courses-page-hero > .container > div:first-child > p,
.batch-hero > .container > div:first-child > p {
    color: rgba(255, 255, 255, 0.84) !important;
    max-width: 760px !important;
    font-size: 17px !important;
    line-height: 1.85 !important;
}

.about-hero .badge,
.verify-hero .badge,
.courses-page-hero .badge,
.batch-hero .badge {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #4338ca !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* =====================================================
   RIGHT-SIDE HERO INFORMATION CARD
===================================================== */

.about-hero-card,
.verify-hero-card,
.courses-hero-card,
.batch-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    border-radius: 28px !important;
    padding: 30px !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Force readable heading */

.about-hero-card > strong,
.verify-hero-card > strong,
.courses-hero-card > strong,
.batch-hero-card > strong {
    display: block !important;
    color: #111827 !important;
    font-size: 27px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
}

/* Force readable description */

.about-hero-card > span,
.verify-hero-card > span,
.courses-hero-card > span,
.batch-hero-card > span,
.about-hero-card > p,
.verify-hero-card > p,
.courses-hero-card > p,
.batch-hero-card > p {
    display: block !important;
    color: #64748b !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* =====================================================
   HERO POINTS
===================================================== */

.about-hero-points,
.verify-hero-points,
.courses-hero-points,
.batch-hero-points {
    display: grid !important;
    gap: 12px !important;
    margin-top: 24px !important;
}

.about-hero-points p,
.verify-hero-points p,
.courses-hero-points p,
.batch-hero-points p {
    display: flex !important;
    align-items: center !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    border-radius: 15px !important;

    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;

    color: #1e293b !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;

    opacity: 1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.about-hero-points p:hover,
.verify-hero-points p:hover,
.courses-hero-points p:hover,
.batch-hero-points p:hover {
    background: #eef2ff !important;
    border-color: #c7d2fe !important;
    transform: translateX(3px);
}

/* =====================================================
   HERO BUTTONS
===================================================== */

.about-hero-actions,
.verify-hero-actions,
.courses-hero-actions,
.batch-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 13px !important;
    margin-top: 30px !important;
}

.about-hero-actions .btn-primary,
.verify-hero-actions .btn-primary,
.courses-hero-actions .btn-primary,
.batch-hero-actions .btn-primary {
    background: #ffffff !important;
    color: #4338ca !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.17) !important;
}

.about-hero-actions .btn-primary:hover,
.verify-hero-actions .btn-primary:hover,
.courses-hero-actions .btn-primary:hover,
.batch-hero-actions .btn-primary:hover {
    background: #eef2ff !important;
    color: #312e81 !important;
    transform: translateY(-2px);
}

.about-hero-actions .btn-outline,
.verify-hero-actions .btn-outline,
.courses-hero-actions .btn-outline,
.batch-hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.54) !important;
}

.about-hero-actions .btn-outline:hover,
.verify-hero-actions .btn-outline:hover,
.courses-hero-actions .btn-outline:hover,
.batch-hero-actions .btn-outline:hover {
    background: #ffffff !important;
    color: #4338ca !important;
}

/* =====================================================
   ABOUT STORY SECTION
===================================================== */

.about-story {
    padding: 88px 0 !important;
    background: #f8faff !important;
}

.about-grid {
    align-items: center !important;
    gap: 60px !important;
}

.about-image,
.about-image img,
.about-placeholder {
    border-radius: 30px !important;
}

.about-image {
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(30, 41, 59, 0.12);
}

.about-content h2 {
    color: #111827 !important;
}

.about-content p {
    color: #64748b !important;
}

/* =====================================================
   VERIFY PAGE CONTENT
===================================================== */

.verify-section {
    padding: 80px 0 !important;
    background: #f8faff !important;
}

.verify-search-card,
.verify-help-card,
.certificate-result-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 22px 55px rgba(30, 41, 59, 0.1) !important;
}

/* =====================================================
   FOOTER FIX
===================================================== */

.site-footer {
    position: relative;
    background: #0f172a !important;
    color: #ffffff !important;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -240px;
    top: -260px;
    background: rgba(79, 70, 229, 0.13);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr !important;
    gap: 56px !important;
    padding-top: 60px !important;
}

.site-footer h3,
.site-footer h4,
.site-footer strong {
    color: #ffffff !important;
}

.site-footer p,
.site-footer li,
.site-footer span,
.site-footer small {
    color: #cbd5e1 !important;
    line-height: 1.75 !important;
}

.site-footer a {
    color: #cbd5e1 !important;
}

.site-footer a:hover {
    color: #818cf8 !important;
}

.footer-bottom {
    margin-top: 52px !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom a {
    color: #ffffff !important;
    font-weight: 800;
}

/* Prevent previous CTA/footer text from being clipped */

.cta-section,
.footer-cta {
    overflow: hidden !important;
}

.footer-cta h2,
.cta-box h2 {
    line-height: 1.15 !important;
    margin-top: 0 !important;
}

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

@media (max-width: 1050px) {
    .about-hero-grid,
    .verify-hero-grid,
    .courses-hero-grid,
    .batch-hero-grid {
        grid-template-columns: 1fr !important;
        gap: 38px !important;
    }

    .about-hero-card,
    .verify-hero-card,
    .courses-hero-card,
    .batch-hero-card {
        max-width: 720px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 40px !important;
    }
}

@media (max-width: 700px) {
    .about-hero,
    .verify-hero,
    .courses-page-hero,
    .batch-hero {
        padding: 58px 0 !important;
    }

    .about-hero h1,
    .verify-hero h1,
    .courses-page-hero h1,
    .batch-hero h1 {
        font-size: 43px !important;
        letter-spacing: -1.5px !important;
    }

    .about-hero-card,
    .verify-hero-card,
    .courses-hero-card,
    .batch-hero-card {
        padding: 23px !important;
        border-radius: 22px !important;
    }

    .about-hero-actions,
    .verify-hero-actions,
    .courses-hero-actions,
    .batch-hero-actions {
        flex-direction: column !important;
    }

    .about-hero-actions .btn,
    .verify-hero-actions .btn,
    .courses-hero-actions .btn,
    .batch-hero-actions .btn {
        width: 100% !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
}

/* =====================================================
   CSE HEADER AND TRANSPARENT LOGO — FINAL
===================================================== */

.cse-topbar {
    position: relative;
    z-index: 1001;
    background: #0f172a !important;
    color: #ffffff;
}

.cse-topbar-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cse-topbar-location,
.cse-topbar-contact,
.cse-topbar-contact a {
    display: flex;
    align-items: center;
}

.cse-topbar-location {
    gap: 7px;
    min-width: 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 750;
}

.cse-topbar-location i,
.cse-topbar-contact i {
    color: #2dd4bf;
}

.cse-topbar-contact {
    gap: 22px;
}

.cse-topbar-contact a {
    gap: 7px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.cse-topbar-contact a:hover {
    color: #a5b4fc !important;
}

/* Main header */

.cse-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 9px 32px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.cse-header-inner {
    min-height: 94px;
    display: grid;
    grid-template-columns:
        minmax(270px, auto)
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 30px;
}

/* =====================================================
   LOGO
===================================================== */

.cse-header-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0f172a !important;
    text-decoration: none !important;
}

/*
 * Completely transparent logo container.
 * There is no blue box, border, shadow or circular crop.
 */

.cse-brand-logo-wrap {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    display: grid;
    place-items: center;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cse-brand-logo {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: contain !important;
    object-position: center;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cse-brand-fallback {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #4f46e5, #14b8a6);
    color: #ffffff;
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.cse-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.cse-brand-copy strong {
    color: #111827 !important;
    font-family: "Space Grotesk", sans-serif;
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.cse-brand-copy small {
    margin-top: 7px;
    color: #64748b !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

/* =====================================================
   DESKTOP NAVIGATION
===================================================== */

.cse-primary-navigation {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.cse-primary-navigation > a,
.cse-dropdown-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #334155 !important;
    font-family: inherit;
    font-size: 13px;
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.cse-primary-navigation > a:hover,
.cse-dropdown-button:hover,
.cse-primary-navigation > a.active,
.cse-nav-dropdown.active > .cse-dropdown-button {
    background: #eef2ff !important;
    color: #4f46e5 !important;
}

.cse-primary-navigation > a:hover,
.cse-dropdown-button:hover {
    transform: translateY(-1px);
}

/* Courses dropdown */

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

.cse-dropdown-button i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.cse-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 330px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.16);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.cse-nav-dropdown:hover .cse-dropdown-menu,
.cse-nav-dropdown:focus-within .cse-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.cse-nav-dropdown:hover .cse-dropdown-button i,
.cse-nav-dropdown:focus-within .cse-dropdown-button i {
    transform: rotate(180deg);
}

.cse-dropdown-menu > a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 13px;
    color: #0f172a !important;
}

.cse-dropdown-menu > a:hover {
    background: #f8faff;
}

.cse-dropdown-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eef2ff;
    color: #4f46e5;
}

.cse-dropdown-menu strong,
.cse-dropdown-menu small {
    display: block;
}

.cse-dropdown-menu strong {
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.cse-dropdown-menu small {
    margin-top: 4px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.4;
}

/* CTA */

.cse-header-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 21px;
    border-radius: 13px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 13px 30px rgba(79, 70, 229, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cse-header-cta:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 17px 38px rgba(79, 70, 229, 0.34);
}

.cse-header-cta i {
    font-size: 12px;
}

/* Mobile menu button */

.cse-mobile-menu-button {
    display: none;
    width: 45px;
    height: 45px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.cse-mobile-menu-button span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 5px 0;
    border-radius: 99px;
    background: #0f172a;
    transition: 0.2s ease;
}

.cse-mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cse-mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.cse-mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

@media (max-width: 1180px) {
    .cse-header-inner {
        grid-template-columns:
            minmax(245px, auto)
            minmax(0, 1fr)
            auto;
        gap: 16px;
    }

    .cse-brand-logo-wrap {
        width: 67px !important;
        height: 67px !important;
        min-width: 67px !important;
    }

    .cse-primary-navigation > a,
    .cse-dropdown-button {
        padding-inline: 10px;
        font-size: 12px;
    }

    .cse-header-cta {
        padding-inline: 16px;
    }
}

@media (max-width: 980px) {
    .cse-topbar-contact a:first-child span,
    .cse-topbar-contact a:last-child span {
        display: none;
    }

    .cse-header-inner {
        min-height: 82px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 15px;
    }

    .cse-brand-logo-wrap {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }

    .cse-brand-copy strong {
        font-size: 19px;
    }

    .cse-brand-copy small {
        font-size: 10px;
    }

    .cse-mobile-menu-button {
        display: block;
    }

    .cse-header-cta {
        display: none;
    }

    .cse-primary-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: calc(100vh - 118px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        padding: 14px 20px 22px;
        overflow-y: auto;
        border-top: 1px solid #e2e8f0;
        background: #ffffff;
        box-shadow: 0 25px 50px rgba(15, 23, 42, 0.14);
    }

    .cse-primary-navigation.show {
        display: flex;
    }

    .cse-primary-navigation > a,
    .cse-dropdown-button {
        width: 100%;
        min-height: 47px;
        justify-content: space-between;
        padding: 0 14px;
        text-align: left;
    }

    .cse-dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        margin-top: 5px;
        padding: 7px;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        border-radius: 14px;
        background: #f8faff;
        box-shadow: none;
    }

    .cse-nav-dropdown.open .cse-dropdown-menu {
        display: block;
    }

    .cse-nav-dropdown.open .cse-dropdown-button i {
        transform: rotate(180deg);
    }

    body.cse-mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 560px) {
    .cse-topbar-inner {
        min-height: 32px;
    }

    .cse-topbar-location {
        max-width: calc(100% - 70px);
    }

    .cse-topbar-location span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .cse-topbar-contact {
        gap: 12px;
    }

    .cse-header-inner {
        min-height: 75px;
    }

    .cse-brand-logo-wrap {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
    }

    .cse-header-brand {
        gap: 9px;
    }

    .cse-brand-copy strong {
        font-size: 17px;
    }

    .cse-brand-copy small {
        max-width: 185px;
        margin-top: 5px;
        overflow: hidden;
        font-size: 9px;
        text-overflow: ellipsis;
    }
}

/* =====================================================
   ENQUIRY PAGE — FINAL DESIGN WITH GOOGLE MAP
===================================================== */

.enquiry-hero {
    position: relative;
    padding: 82px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 10%,
            rgba(45, 212, 191, 0.22),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 92%,
            rgba(99, 102, 241, 0.25),
            transparent 34%
        ),
        linear-gradient(
            130deg,
            #312e81 0%,
            #4338ca 48%,
            #075985 100%
        );
}

.enquiry-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -250px;
    bottom: -320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.enquiry-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 420px);
    align-items: center;
    gap: 70px;
}

.enquiry-hero-content > .badge {
    background: rgba(255, 255, 255, 0.94);
    color: #4338ca;
    border-color: rgba(255, 255, 255, 0.6);
}

.enquiry-hero h1 {
    max-width: 760px;
    margin: 19px 0 20px;
    color: #ffffff;
    font-size: clamp(45px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.enquiry-hero-content > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.8;
}

.enquiry-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.enquiry-hero-actions .btn-primary {
    background: #ffffff;
    color: #4338ca;
    border-color: #ffffff;
}

.enquiry-hero-actions .btn-primary:hover {
    background: #eef2ff;
    color: #312e81;
}

.enquiry-hero-actions .btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.45);
}

.enquiry-hero-actions .btn-outline:hover {
    background: #ffffff;
    color: #4338ca;
}

.enquiry-hero-card {
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.enquiry-hero-card > strong {
    display: block;
    color: #111827;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.25;
}

.enquiry-hero-card > span {
    display: block;
    margin-top: 9px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.enquiry-hero-points {
    display: grid;
    gap: 11px;
    margin-top: 23px;
}

.enquiry-hero-points p {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 51px;
    margin: 0;
    padding: 13px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 13px;
    font-weight: 800;
}

.enquiry-hero-points i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    border-radius: 10px;
    background: #eef2ff;
    color: #4f46e5;
}

/* Main area */

.enquiry-section {
    padding: 92px 0;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(99, 102, 241, 0.07),
            transparent 30%
        ),
        #f8faff;
}

.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
}

.enquiry-info-card,
.enquiry-form-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.09);
}

.enquiry-info-card {
    display: flex;
    flex-direction: column;
    padding: 31px;
}

.enquiry-info-card h2,
.enquiry-form-card h2 {
    margin: 15px 0 12px;
    color: #111827;
    font-size: clamp(29px, 3vw, 39px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.enquiry-info-intro,
.enquiry-form-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

.enquiry-contact-list {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.enquiry-contact-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    background: #f8faff;
    color: #111827;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

a.enquiry-contact-item:hover {
    border-color: #c7d2fe;
    background: #eef2ff;
    transform: translateX(3px);
}

.enquiry-contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef2ff, #ecfeff);
    color: #4f46e5;
    font-size: 17px;
}

.enquiry-contact-item small,
.enquiry-contact-item strong {
    display: block;
}

.enquiry-contact-item small {
    margin-bottom: 4px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.enquiry-contact-item strong {
    overflow-wrap: anywhere;
    color: #172033;
    font-size: 13px;
    line-height: 1.5;
}

.enquiry-info-note {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    margin-top: auto;
    padding: 16px;
    border: 1px solid #ccfbf1;
    border-radius: 15px;
    background: #f0fdfa;
}

.enquiry-info-note i {
    color: #0f766e;
    font-size: 17px;
}

.enquiry-info-note p {
    margin: 0;
    color: #115e59;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.6;
}

/* Form */

.enquiry-form-card {
    padding: 34px;
}

.enquiry-form-heading {
    margin-bottom: 26px;
}

.enquiry-form {
    display: grid;
    gap: 19px;
}

.enquiry-form .form-grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.enquiry-form .form-field {
    min-width: 0;
}

.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 12px;
    font-weight: 850;
}

.enquiry-form label span {
    color: #dc2626;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid #dbe1ea;
    border-radius: 13px;
    outline: none;
    background: #f8fafc;
    color: #111827;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.enquiry-form input {
    min-height: 51px;
    padding: 0 15px;
}

.enquiry-form textarea {
    min-height: 150px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.65;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #94a3b8;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.11);
}

.form-success,
.form-error {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.55;
}

.form-success {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.form-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.form-success i,
.form-error i {
    margin-top: 2px;
}

.enquiry-submit-row {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 2px;
}

.enquiry-submit-row .btn {
    min-width: 190px;
}

.enquiry-submit-row small {
    max-width: 320px;
    color: #64748b;
    font-size: 11px;
    line-height: 1.55;
}

/* Map */

.enquiry-map-section {
    margin-top: 38px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 29px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.09);
}

.enquiry-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.enquiry-map-heading h2 {
    margin: 13px 0 8px;
    color: #111827;
    font-size: clamp(29px, 4vw, 43px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.enquiry-map-heading p {
    max-width: 700px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.enquiry-map-heading .btn {
    flex: 0 0 auto;
}

.enquiry-map-frame {
    min-height: 500px;
    overflow: hidden;
    border: 7px solid #f1f5f9;
    border-radius: 22px;
    background: #e2e8f0;
}

.enquiry-map-frame iframe {
    width: 100% !important;
    height: 500px !important;
    display: block;
    border: 0 !important;
}

.enquiry-map-empty {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 22px;
    background: #f8fafc;
    text-align: center;
}

.enquiry-map-empty > span {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 29px;
}

.enquiry-map-empty h3 {
    margin: 20px 0 8px;
    color: #111827;
    font-size: 23px;
}

.enquiry-map-empty p {
    max-width: 520px;
    margin: 0 0 20px;
    color: #64748b;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 980px) {
    .enquiry-hero-grid,
    .enquiry-layout {
        grid-template-columns: 1fr;
    }

    .enquiry-hero-grid {
        gap: 37px;
    }

    .enquiry-hero-card {
        max-width: 720px;
    }

    .enquiry-info-note {
        margin-top: 24px;
    }
}

@media (max-width: 720px) {
    .enquiry-hero {
        padding: 62px 0;
    }

    .enquiry-hero h1 {
        font-size: 45px;
    }

    .enquiry-section {
        padding: 67px 0;
    }

    .enquiry-info-card,
    .enquiry-form-card,
    .enquiry-map-section {
        padding: 21px;
        border-radius: 22px;
    }

    .enquiry-form .form-grid.two {
        grid-template-columns: 1fr;
    }

    .enquiry-map-heading,
    .enquiry-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .enquiry-map-heading .btn,
    .enquiry-submit-row .btn {
        width: 100%;
    }

    .enquiry-map-frame,
    .enquiry-map-frame iframe {
        min-height: 390px;
        height: 390px !important;
    }
}

@media (max-width: 520px) {
    .enquiry-hero-actions {
        flex-direction: column;
    }

    .enquiry-hero-actions .btn {
        width: 100%;
    }

    .enquiry-hero-card {
        padding: 22px;
        border-radius: 21px;
    }

    .enquiry-info-card h2,
    .enquiry-form-card h2 {
        font-size: 29px;
    }

    .enquiry-map-frame,
    .enquiry-map-frame iframe {
        min-height: 330px;
        height: 330px !important;
    }
}

/* =====================================================
   ENQUIRY HERO CARD TEXT — FINAL OVERRIDE
   Keep this at the absolute bottom of style.css
===================================================== */

.enquiry-hero .enquiry-hero-card {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22) !important;
}

/* Card heading */

.enquiry-hero .enquiry-hero-card > strong {
    display: block !important;
    color: #111827 !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* Card description */

.enquiry-hero .enquiry-hero-card > span {
    display: block !important;
    color: #64748b !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* Assistance rows */

.enquiry-hero .enquiry-hero-points {
    display: grid !important;
    gap: 11px !important;
    margin-top: 24px !important;
}

.enquiry-hero .enquiry-hero-points p {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    min-height: 59px !important;
    margin: 0 !important;
    padding: 13px 15px !important;

    background: #f8fafc !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 15px !important;

    color: #1e293b !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;

    opacity: 1 !important;
    text-shadow: none !important;
}

/* Icons */

.enquiry-hero .enquiry-hero-points p i {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;

    display: grid !important;
    place-items: center !important;

    background: #eef2ff !important;
    color: #4f46e5 !important;
    border-radius: 10px !important;

    opacity: 1 !important;
}

/* Hover */

.enquiry-hero .enquiry-hero-points p:hover {
    background: #eef2ff !important;
    border-color: #c7d2fe !important;
    transform: translateX(3px);
}

/* Prevent broad hero rules from recoloring card content */

.enquiry-hero .enquiry-hero-card p,
.enquiry-hero .enquiry-hero-card strong,
.enquiry-hero .enquiry-hero-card span {
    text-shadow: none !important;
    opacity: 1 !important;
}