/* Start custom CSS for html, class: .elementor-element-c927a2e *//* ZSAT — Zia Scholarship Aptitude Test */
:root {
    --zsat-red: #e02020;
    --zsat-red-dark: #c41a1a;
    --zsat-red-light: #ff4d4d;
    --zsat-blue: #2e58a6;
    --zsat-black: #1a1a1a;
    --zsat-gray: #555555;
    --zsat-gray-light: #888888;
    --zsat-bg: #ffffff;
    --zsat-border: #e5e5e5;
    --zsat-gradient: linear-gradient(90deg, #e02020 0%, #ff6b35 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--zsat-black);
    background: var(--zsat-bg);
    overflow-x: hidden;
}

.page-id-8776 #masthead {
    display: none;
}

/* ---------- Layout ---------- */
/*.container {*/
/*    max-width: 1140px;*/
/*}*/

.page-section {
    padding: 3rem 0;
}

.page-section--compact {
    padding: 2rem 0;
}

.intro-block.page-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

a {
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    opacity: 0.9;
}

/* ---------- Hero ---------- */
.hero-banner {
    position: relative;
    background-color: #2a2a2a;
    background-image: url('https://ziagroup.org/wp-content/uploads/2026/08/hero-students.jpeg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.hero-banner-inner {
    position: relative;
    z-index: 2;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-badge {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 1rem 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ---------- Intro Block (Title, CTA, Stats) ---------- */
.intro-block {
    background: #fff;
}

.intro-title {
    font-size: 56px !important;
    font-weight: 700 !important;
    color: var(--zsat-black);
    text-align: center;
    margin-bottom: 0.35rem;
}

.tagline {
    font-size: 56px;
    font-weight: 400;
   
}

.intro-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 33px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin-bottom: 1.25rem;
}

/* ---------- Section Titles (shared) ---------- */
.section-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--zsat-black);
    text-align: center;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    font-style: italic;
    color: var(--zsat-gray);
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.25rem auto 1.75rem;
    max-width: 200px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #000;
}

.section-divider .diamond {
    width: 10px;
    height: 10px;
    background: #000;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.section-divider.red .diamond {
    background: #000;
}

/* ---------- Buttons ---------- */
.btn-zsat {
    background: var(--zsat-red);
    color: #fff;
    border: none;  
    padding: 0.65rem 2rem;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.02em;
    display: inline-block;
    text-decoration: none !important;
}

.btn-zsat:hover,
.btn-zsat:focus {
    background: var(--zsat-red-dark);
    color: #fff;
}

.btn-zsat-outline {
    background: transparent;
    color: var(--zsat-red);
    border: 2px solid var(--zsat-red);
    border-radius: 4px;
    padding: 0.6rem 1.75rem;
    font-weight: 600;
}

.btn-zsat-outline:hover {
    background: var(--zsat-red);
    color: #fff;
}

/* ---------- CTA Row ---------- */
.cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-col-left {
    text-align: left;
}

.cta-col-center {
    text-align: center;
}

.cta-col-right {
    text-align: right;
}

.cta-row .exam-note {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.35;
}

.exam-note-red {
    color: #e02020;
    font-weight: 600;
    font-size: 22px;
}

.exam-note-date {
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

/* ---------- Stats Grid ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0;
}

.stat-item .stat-label {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    line-height: 1.35;
    flex: 1;
}

.stat-item .stat-value {
    font-size: 42px;
    font-weight: 500;
    color: #e02020;
    line-height: 1;
    white-space: nowrap;
}

/* ---------- Powered Banner ---------- */
.powered-banner {
    background: linear-gradient(to right, var(--zsat-red) 0%, var(--zsat-red) 35%, rgba(224, 32, 32, 0.4) 65%, #fff 100%);
    padding: 1.1rem 1.25rem;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.powered-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.powered-by {
    font-family: 'Playfair Display', Georgia, serif;   
    font-weight: 500;
    font-size: 33px;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.07em;
}

.powered-org {
    /* font-family: 'Playfair Display', Georgia, serif; */
    font-weight: 500;
    font-size: 38px;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0.07em;
}

/* ---------- Intro Text ---------- */
.intro-text {
    margin: 0;
    text-align: center;
    color: #000;
    line-height: 1.75;
    font-size: 30px;
    font-weight: 400;
}

.intro-text strong {
    color: var(--zsat-black);
}

/* ---------- Tri-Partite Synergy ---------- */
.synergy-section {
    background: #fff;
}

.synergy-grid {
    margin-top: 2rem;
}

.synergy-row {
    margin-bottom: 0;
}

.synergy-row + .synergy-row {
    margin-top: 0.5rem;
}

.synergy-brand-col {
    padding: 1.25rem 1.5rem 1rem 0;
    text-align: center;
}

.synergy-brand-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 95px;
    object-fit: contain;
    float:left !important;
}

.synergy-brand-img--zia {
    max-height: 72px;
}

.synergy-brand-line {
    width: 58%;
    height: 2px;
    background: var(--zsat-red);
    margin: 0.85rem auto 0;
}

.synergy-association {
    font-style: italic;
    color: var(--zsat-black);
    font-size: 28px;
    margin: 0 0 0.65rem;
    text-align: left;
    font-weight: 500;
}

.synergy-detail-col {
    padding: 1.25rem 0 1.25rem 1.5rem;
    border-left: 1px solid transparent;
}

.synergy-detail-title {
    color: var(--zsat-blue);
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 0.65rem;
    line-height: 1.3;
    font-style: italic;
}

.synergy-detail-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--zsat-black);
    font-size: 28px;
    line-height: 1.65;
}

.synergy-detail-list li {
    margin: 0;
}

.synergy-detail-list li::marker {
    color: var(--zsat-blue);
}

.synergy-detail-list strong {
    font-weight: 700;
    color: var(--zsat-black);
}

/* ---------- Founder Message ---------- */
.founder-section {
    background: #fff;
}

.founder-heading {
    font-size: 35px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5rem;
}

.founder-quote {
    font-style: italic;
    text-align: left;
    color: var(--zsat-gray);
    margin-bottom: 1.5rem;
    font-size: 28px;
}

.founder-body {
    color: var(--zsat-gray);
    line-height: 1.8;
    font-size: 28px;
}

.founder-body p {
    margin-bottom: 1rem;
}

.founder-signature {
    text-align: right;
    font-weight: 700;
    color: var(--zsat-black);
    margin-top: 1.5rem;
    font-size: 33px;
    font-weight: 600;
}

/* ---------- Scholarship Cards ---------- */
.scholarship-section {
    background: #fff;
}

.scholarship-list {
    margin-top: 2rem;
}

.scholarship-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    margin-bottom: 2rem;
    min-height: 185px;
}

.scholarship-card:last-child {
    margin-bottom: 0;
}

.scholarship-card-img {
    flex: 0 0 450px;
    overflow: hidden;
}

.scholarship-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scholarship-card-body {
    flex: 1;
    padding: 1.25rem 5.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scholarship-card-heading {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.scholarship-card .card-num {
    color: var(--zsat-red);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
}

.scholarship-card .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
    color: var(--zsat-black);
    line-height: 1.2;
}

.scholarship-card .eligibility {
    font-size: 0.9rem;
    color: var(--zsat-black);
    margin-bottom: 0.45rem;
}

.scholarship-card .benefit-block {
    font-size: 0.9rem;
    color: var(--zsat-black);
}

.scholarship-card .benefits {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
    list-style-type: disc;
}

.scholarship-card .benefits li {
    margin-bottom: 0.15rem;
    line-height: 1.45;
}

.scholarship-card-amount {
    flex: 0 0 175px;
    border-left: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.25rem;
}

.amount-label {
    font-style: italic;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--zsat-black);
    line-height: 1.4;
    margin-bottom: 0.35rem;
}

.amount-value {
    font-size: 0.85rem;
    color: var(--zsat-black);
    line-height: 1.2;
}

.amount-value strong {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--zsat-red);
    margin-top: 0.15rem;
}

/* ---------- Pre-Register & Syllabus ---------- */
.preregister-section {
    text-align: center;
}

.preregister-title {
    color: var(--zsat-red);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin: 2.5rem 0 0;
    text-align: left;
}

.syllabus-item h5 {
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
    color: var(--zsat-black);
}

.syllabus-keyword {
    color: var(--zsat-red);
}

.syllabus-item p {
    color: var(--zsat-black);
    font-size: 23px;
    margin: 0;
    line-height: 1.55;
}

.syllabus-note {
    margin: 2rem 0 0;
    font-size: 23px;
    color: #555;
    line-height: 1.65;
    text-align: left;
}

.syllabus-note .note-label {
    color: var(--zsat-red);
    font-style: italic;
    font-weight: 600;
}

/* ---------- Footprints ---------- */
.footprints-section {
    background: #fff;
}

.footprints-title {
    color: var(--zsat-red);
    font-weight: 700;
    font-style: italic;
    font-size: 35px;
    margin-bottom: 1.5rem;
}

.footprints-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0;
}

.footprints-list li {
    margin-bottom: 1rem;
    color: var(--zsat-black);
    font-size: 23px;
    line-height: 1.65;
}

.footprints-list li::before {
    display: none;
}

.footprints-list strong {
    color: var(--zsat-black);
    font-weight: 700;
}

.india-map {
    width: 100%;
    height: auto;
    display: block;
    max-width: 55% !important;

}

.footprints-cta {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footprints-call {
    margin: 0;
    line-height: 1.5;
}

.footprints-call em {
    display: block;
    font-style: italic;
    color: var(--zsat-black);
    font-size: 23px;
    margin-bottom: 0.15rem;
}

.footprints-call strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--zsat-black);
}

/* ---------- Footer ---------- */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--zsat-border);
    padding: 2.5rem 0 2rem;
}

.footer-org {
    text-align: center;
    padding: 1rem;
}

.footer-org .org-logo {
    height: 48px;
    margin-bottom: 0.75rem;
    object-fit: contain;
}

.footer-org a {
    display: block;
    color: var(--zsat-gray);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-org a:hover {
    color: var(--zsat-red);
}

.footer-org .phone {
    color: var(--zsat-black);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .scholarship-card-img {
        flex: 0 0 220px;
    }

    .scholarship-card-amount {
        flex: 0 0 150px;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner-inner {
        min-height: 360px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cta-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .cta-col-left,
    .cta-col-center,
    .cta-col-right {
        text-align: center;
    }

    .scholarship-card {
        flex-direction: column;
        min-height: auto;
    }

    .scholarship-card-img {
        flex: none;
        height: 200px;
    }

    .scholarship-card-body {
        padding: 1.25rem 1rem;
    }

    .scholarship-card-amount {
        flex: none;
        border-left: none;
        border-top: 1px solid #ccc;
        flex-direction: row;
        gap: 0.75rem;
        padding: 1rem;
    }

    .amount-label {
        margin-bottom: 0;
        text-align: left;
    }

    .amount-value strong {
        display: inline;
        margin-top: 0;
        margin-left: 0.25rem;
    }

    .syllabus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .india-map {
        margin: 0 auto;
    }

    .footprints-cta {
        align-items: center;
        text-align: center;
    }

    .synergy-brand-col {
        padding: 1.25rem 0 0.75rem;
    }

    .synergy-detail-col {
        padding: 0.75rem 0 1.5rem;
        text-align: center;
    }

    .synergy-detail-list {
        display: inline-block;
        text-align: left;
    }

    .synergy-brand-line {
        width: 45%;
    }

    .stat-item {
        flex-wrap: wrap;
    }
    .intro-title {
        font-size: 35px;
    }
    .tagline {
        font-size: 35px;
    }
    .intro-tagline {
        font-size: 23px;
    }
    .intro-text {
        font-size: 23px;
    }
    .founder-heading {
        font-size: 23px;
    }
    .founder-quote {
        font-size: 23px;
    }
    .founder-body {
        font-size: 23px;
    }
    .section-title {
        font-size: 35px;
    }
    .section-subtitle {
        font-size: 23px;
    }
    .section-divider {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .section-divider .diamond {
        font-size: 23px;
    }
    .stat-item .stat-label {
        font-size: 25px;
    }
    .stat-item .stat-value {
        font-size: 25px;
    }
    .powered-by {
        font-size: 23px;
    }
    .powered-org {
        font-size: 23px;
    }

    .preregister-title {       
        font-size: 25px;
    }
    .syllabus-item p {       
        font-size: 18px;
    }
    .syllabus-note {       
        font-size: 18px;
    }
    .footprints-list li {
        
        font-size: 18px;
    }
    .founder-signature {        
        font-size: 25px;
    }
}

@media (max-width: 575.98px) {
    .hero-banner-inner {
        min-height: 280px;
    }

    .hero-badge {
        padding: 0.75rem 0;
    }
}/* End custom CSS */