* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* ===========header styles=========== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 48px;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.title-english {
    font-size: 16px;
    font-weight: 700;
    color: #7b1e1e;
}

.title-hindi {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* ---left menu styles--- */

.header-right {
    display: flex;
    align-items: center;
}

/* Nav Links */
.header-right a {
    position: relative;
    padding: 6px 16px;
    font-size: 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s ease;
    font-weight: 700;
}

/* | Separator */
.header-right a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

/* Hover underline animation */
.header-right a::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 2px;
    background: #7b1e1e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover effect */
.header-right a:hover {
    color: #7b1e1e;
}

.header-right a:hover::before {
    transform: scaleX(1);
}

/* Register Button */
.login-btn {
    margin-left: 10px;
    background: #8b1e1e;
    color: #fff !important;
    padding: 4px 22px !important;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Remove separator + underline from button */
.login-btn::after,
.login-btn::before {
    content: none;
}

/* Button hover */
.login-btn:hover {
    background: #6f1616;
    transform: translateY(-1px);
}

/* ---------------------------------------- */

@media (max-width: 1200px) {
    .header-container {
        padding: 12px 16px;
    }

    .header-right a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .logo {
        height: 42px;
    }

    .title-english {
        font-size: 15px;
    }

    .title-hindi {
        font-size: 13px;
    }

    .header-right a {
        padding: 6px 10px;
        font-size: 14px;
    }

    .login-btn {
        padding: 4px 16px !important;
    }
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #7b1e1e;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* show hamburger */
    .hamburger {
        display: flex;
    }

    /* hide nav by default */
    .header-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        border-top: 1px solid #e5e5e5;
    }

    /* open menu */
    .header-right.active {
        display: flex;
    }

    .header-right a {
        width: 100%;
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
    }

    /* remove | separator */
    .header-right a::after {
        display: none;
    }

    .login-btn {
        margin: 12px 16px;
        width: calc(100% - 32px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 36px;
    }

    .title-english {
        font-size: 14px;
    }

    .title-hindi {
        font-size: 12px;
    }
}

/* ================= END OF STYLES ================= */

/* ==============slider section css================== */

.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

/* Slides */
.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* Overlay */
.slider-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    padding-bottom: 30px;
}

/* Shloka Text */
.shloka-text {
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    margin-left: 10px;
    margin-right: 10px;
}

.main-title {
    font-size: clamp(22px, 4.0vw, 48px);
    font-weight: 700;
    margin-bottom: 6px;
}

.sub-title {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    margin-bottom: 20px;
}

.site {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    /* transparent white */
    ;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
}

.site:hover {
    text-decoration: underline;
}

/* Search Box */
.search-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 90%;
    max-width: 600px;
}

.search-box input {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-box button {
    background: #8b1e1e;
    color: #fff;
    border: none;
    padding: 0 22px;
    font-size: 15px;
    cursor: pointer;
}

.search-box button:hover {
    background: #6f1616;
}

/* -------------------------------------- */

@media (max-width: 1200px) {
    .hero-slider {
        height: 75vh;
    }

    .slider-content {
        padding: 0 20px;
    }
}

/* ------------------ Tablets ------------------ */

@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }

    .shloka-text {
        margin-bottom: 24px;
    }

    .search-box {
        max-width: 520px;
    }

    .slider-content {
        justify-content: flex-end;
        margin-bottom: 20px;
    }
}

/* ----------------------Small tablets & large phones-------------------- */
@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
    }

    .slider-content {
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    .shloka-text {
        margin-bottom: 16px;
    }

    .search-box {
        width: 95%;
    }

    .search-box input {
        padding: 12px;
        font-size: 14px;
    }

    .search-box button {
        padding: 0 18px;
        font-size: 14px;
    }
}

/* ------------------Mobile---------------- */
@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
    }

    .shloka-text {
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .search-box input {
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    .search-box button {
        width: 100%;
        padding: 12px 0;
    }

    .main-title {
        font-size: clamp(18px, 8vw, 14px);
        line-height: 1.15;
    }

    .sub-title {
        font-size: clamp(12px, 6vw, 8px);
        line-height: 1.15;
    }

    .site {
        font-size: clamp(12px, 6vw, 8px);
    }

    .shloka-text {
        max-width: 92%;
        margin-bottom: 10px;
    }
}

/* ================== END OF STYLES =================  */

/* =============== TRUST STATS ============== */


.trust-stats {
    background: #ffffff;
    padding: 20px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: center;
}

/* Each Stat */
.stat-item {
    padding: 35px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

/* Divider */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e5e7eb;
}

/* Circular Logo Badge */
.stat-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #fff, #fdf2e9);
    border: 2px solid #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #7b1e1e;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Numbers */
.stat-number {
    font-size: 42px;
    color: #b45309;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Label */
.stat-item p {
    font-size: 15px;
    color: #4b5563;
    letter-spacing: 0.4px;
}

/* ------------- */

@media (max-width: 1200px) {
    .stat-item {
        padding: 30px 16px;
    }
}

@media (max-width: 992px) {
    .stat-logo {
        width: 64px;
        height: 64px;
        font-size: 26px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* remove vertical divider (looks wrong in 2x2) */
    .stat-item::after {
        display: none;
    }

}

@media (max-width: 768px) {

    .trust-stats {
        padding: 16px 12px;
    }

    .stat-item {
        padding: 26px 12px;
    }

    /* remove vertical divider */
    .stat-item::after {
        display: none;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .stat-logo {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-item p {
        font-size: 13px;
        letter-spacing: 0.2px;
    }
}

/* ====================hero memorial css====================  */

.hero-memorial {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff7f0, #fdf2e9);
    padding: 30px 0px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Layout */
.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
    min-width: 320px;
}

h1 {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    color: #7b1e1e;
    margin-bottom: 40px;
    padding: 10px;
    width: 100% !important;
    text-align: center;
    background-color: #fcf8f5;
}

.hero-text p {
    font-size: 18px;
    color: #4b5563;
    max-width: 540px;
}

/* Counter */
/* .hero-counter {
  margin-top: 28px;
} */

/* .count {
  font-size: 52px;
  font-weight: 700;
  color: #7b1e1e;
} */

.count-label {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Buttons */
.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background: #7b1e1e;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #5f1616;
    transform: translateY(-2px);
}

.btn-secondary {
    color: #7b1e1e;
    text-decoration: none;
    font-weight: 600;
    padding-top: 10px;
}

.btn-secondary:hover {
    text-decoration: underline;
}

/* RIGHT CARD */
.hero-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #b45309;
}

.hero-card h3 {
    margin-top: 0;
    color: #7b1e1e;
    font-size: 22px;
    margin-bottom: 16px;
}

.hero-card ul {
    padding-left: 20px;
    color: #374151;
}

.hero-card li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ---------------------- */

@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
        padding: 0 16px;
    }
}

@media (max-width: 992px) {

    h1 {
        margin-bottom: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        gap: 32px;
    }

    .hero-text,
    .hero-card {
        min-width: 100%;
    }

    h1 {
        font-size: clamp(24px, 6vw, 34px);
        margin-bottom: 24px;
    }

    .hero-text p {
        max-width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero-memorial {
        padding: 24px 0;
    }

    h1 {
        font-size: 18px;
        line-height: 1.25;
        padding: 8px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-card {
        padding: 22px;
        border-radius: 14px;
    }

    .hero-card h3 {
        font-size: 20px;
    }
}

/* ==================== END OF STYLES ==================== */


/* <!-- ================= FEATURES GRID ================= --> */
.features-section {
    background: linear-gradient(180deg, #f9fafb, #ffffff);
    padding: 40px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.features-container {
    max-width: 1200px;
    margin: auto;
}

.features-title {
    text-align: center;
    font-size: 34px;
    color: #7b1e1e;
    margin-bottom: 60px;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Feature Card */
.feature-card {
    background: #ffffff;
    padding: 34px 30px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Accent strip */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7b1e1e, #b45309);
}

/* Hover */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

/* Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #fff, #fdf2e9);
    border: 2px solid #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: #7b1e1e;
}

/* Title */
.feature-card h4 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #7b1e1e;
}

/* Text */
.feature-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Fade-in animation */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ------------------------------------- */

@media (max-width: 1200px) {
    .features-section {
        padding: 36px 16px;
    }

    .features-title {
        margin-bottom: 48px;
    }
}

@media (max-width: 992px) {
    .features-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {

    .features-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        padding: 26px 22px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .features-section {
        padding: 28px 14px;
    }

    .features-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 22px 20px;
        border-radius: 14px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    /* Disable hover lift on touch devices */
    .feature-card:hover {
        transform: none;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* FORCE 2x2 grid on tablets (Surface Pro, iPad Pro, 912–1024px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ================= END OF STYLES ================= */

/* ================= GLORIOUS SAGA SECTION ================= */

.saga-section {
    padding: 20px 20px 40px 20px;
    /* background: linear-gradient(180deg, #f8fafc, #eef2f7); */
    background: linear-gradient(135deg, #fff7f0, #fdf2e9);
    font-family: "Segoe UI", Arial, sans-serif;
    margin-bottom: 20px;
}

.saga-container {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.saga-heading {
    text-align: center;
    margin-bottom: 60px;
}

.saga-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #7b1e1e;
    letter-spacing: 0.5px;
}

.saga-divider {
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, #ff9933, #138808);
    border-radius: 2px;
}

/* Shloka */
.saga-shloka {
    background: #ffffff;
    padding: 40px 34px;
    border-left: 6px solid #b45309;
    border-radius: 14px;
    margin-bottom: 45px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.saga-shloka p {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    color: #374151;
}

.saga-shloka span {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

/* Meaning */
.saga-meaning {
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify !important;
}

/* Main Content */
.saga-content p {
    font-size: 18px;
    line-height: 1.85;
    color: #1f2937;
    margin-bottom: 26px;
    text-align: justify !important;
}

/* Entry animation */
.saga-container {
    /* opacity: ; */
    transform: translateY(30px);
    animation: sagaFadeUp 1.1s ease forwards;
}

/* ================= CLASSIC SAGA CLOSING ================= */

.closing-classic {
    margin-top: 30px;
    text-align: center;
}

/* Decorative line */
.classic-line {
    display: block;
    width: 180px;
    height: 2px;
    margin: auto;
    background: #9ca3af;
}

/* Text */
.closing-classic h3 {
    margin: 6px 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #374151;
}

/* ------------------------------- */

@media (max-width: 1200px) {
    .saga-section {
        padding: 18px 16px;
    }

    .saga-heading {
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {

    .saga-heading h2 {
        font-size: 36px;
    }

    .saga-shloka {
        padding: 34px 28px;
    }

    .saga-shloka p {
        font-size: 20px;
    }

    .saga-meaning,
    .saga-content p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .saga-heading {
        margin-bottom: 40px;
    }

    .saga-heading h2 {
        font-size: 32px;
    }

    .saga-shloka {
        padding: 28px 22px;
        margin-bottom: 36px;
    }

    .saga-shloka p {
        font-size: 18px;
        line-height: 1.6;
    }

    .saga-meaning,
    .saga-content p {
        font-size: 16px;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {

    .saga-section {
        padding: 16px 12px;
    }

    .saga-heading h2 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .saga-divider {
        width: 70px;
        height: 3px;
    }

    .saga-shloka {
        padding: 22px 18px;
        border-left-width: 4px;
    }

    .saga-shloka p {
        font-size: 16px;
        line-height: 1.55;
    }

    .saga-shloka span {
        font-size: 13px;
    }

    .saga-meaning,
    .saga-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .closing-classic h3 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .classic-line {
        width: 70px;
    }
}

/* ==================== END OF STYLES =================  */

/* <!-- ================= PRERNA STHALI SECTION ================= --> */


.prerna-section {
    background: linear-gradient(135deg, #ecfeff, #e0f2fe);
    padding: 60px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.prerna-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.prerna-text {
    flex: 1;
    min-width: 300px;
    animation: fadeSlideLeft 1s ease forwards;
    /* opacity: 0; */
}

.prerna-text h2 {
    font-size: 38px;
    color: #065f46;
    margin-bottom: 20px;
}

.prerna-text p {
    font-size: 18px;
    color: #065f46;
    max-width: 520px;
    line-height: 1.6;
}

/* RIGHT CARD */
.prerna-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #0f766e;
    animation: fadeSlideRight 1s ease forwards;
    /* opacity: 0; */
}

.prerna-card p {
    font-size: 17px;
    color: #374151;
    line-height: 1.7;
}

/* Highlight name */
.prerna-card strong {
    color: #065f46;
}


/* ================= MODERN PRERNA QUOTE ================= */

.modern-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 20px 15px;
    text-align: center;

    /* background: rgba(255, 255, 255, 0.55); */
    backdrop-filter: blur(12px);
    border-radius: 20px;

    /* box-shadow:
    0 25px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6); */

    /* border: 1px solid rgba(15,118,110,0.15); */
}

/* Decorative Quote Icon */
.modern-quote::before {
    content: "❝";
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    color: rgba(180, 83, 9, 0.35);
    font-family: serif;
}

/* Quote Text */
.modern-quote p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.8;
    color: #064e3b;
    letter-spacing: 0.3px;
}

/* Author */
.modern-quote span {
    display: inline-block;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 118, 110, 0.25);

    font-size: 16px;
    font-weight: 600;
    color: #065f46;
}

/* Hashtag Highlight */
.modern-quote strong {
    color: #b45309;
    font-weight: 700;
}

/* Subtle Tricolor Accent Line */
.modern-quote::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1.5px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(90deg,
            #ff9933,
            #ffffff,
            #138808);
}

/* Animation */
.modern-quote {
    /* opacity: 0; */
    transform: translateY(25px);
    animation: quoteFadeUp 1.1s ease forwards;
}


.prerna-image {
    display: flex;
    justify-content: center;
    margin-top: 0px;
}

.prerna-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    background: #f9cccc;
    padding: 3px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Hover effect */
.prerna-image img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ------------------------- */

@media (max-width: 1200px) {
    .prerna-container {
        gap: 40px;
        padding: 0 16px;
    }
}

@media (max-width: 992px) {

    .prerna-text h2 {
        font-size: 32px;
    }

    .prerna-text p {
        font-size: 17px;
    }

    .prerna-card {
        padding: 30px;
    }

    .modern-quote p {
        font-size: 20px;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {

    .prerna-container {
        flex-direction: column;
        gap: 36px;
    }

    .prerna-text,
    .prerna-card {
        min-width: 100%;
        text-align: center;
    }

    .prerna-text p {
        max-width: 100%;
    }

    .prerna-card {
        border-left: none;
        border-top: 5px solid #0f766e;
    }

    .modern-quote {
        margin-bottom: 50px;
    }

    .modern-quote::before {
        top: -30px;
        font-size: 52px;
    }

    .prerna-image {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .prerna-section {
        padding: 28px 12px;
    }

    .prerna-text h2 {
        font-size: 26px;
    }

    .prerna-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .prerna-card {
        padding: 22px;
        border-radius: 14px;
    }

    .prerna-card p {
        font-size: 15px;
    }

    .modern-quote {
        padding: 18px 12px;
    }

    .modern-quote p {
        font-size: 14px;
        line-height: 1.6;
        padding-top: 8px;
    }

    .modern-quote span {
        font-size: 14px;
    }

    .prerna-image img {
        max-width: 280px;
        margin-bottom: 20px;
    }

    /* Disable hover lift on touch devices */
    .prerna-image img:hover {
        transform: none;
        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.12),
            0 4px 10px rgba(0, 0, 0, 0.08);
    }
}

/* <!-- ================= CTA SECTION ================= --> */

.cta-section {
    /* background: linear-gradient(135deg, #fff7f0, #fdf2e9); */
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent */
.cta-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 83, 9, 0.12), transparent 70%);
    pointer-events: none;
}

/* Container */
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.cta-container h2 {
    font-size: 40px;
    color: #7b1e1e;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
}

/* Text */
.cta-container p {
    font-size: 18px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Button */
.cta-button {
    display: inline-block;
    background: #7b1e1e;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    margin-bottom: 30px;
}

.cta-button:hover {
    background: #5f1616;
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Fade-in animation */
.cta-container {
    /* opacity: 0; */
    transform: translateY(30px);
    animation: ctaFadeUp 1s ease forwards;
}

/* --------------------- */

@media (max-width: 1200px) {
    .cta-section {
        padding: 28px 16px;
    }

    .cta-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 992px) {

    .cta-container h2 {
        font-size: 32px;
    }

    .cta-container p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 16px 34px;
    }
}

@media (max-width: 768px) {

    .cta-container h2 {
        font-size: 28px;
    }

    .cta-container p {
        font-size: 16px;
        line-height: 1.65;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 15px;
    }

    .cta-section::before {
        width: 380px;
        height: 380px;
        top: -90px;
    }
}

@media (max-width: 480px) {

    .cta-section {
        padding: 24px 12px;
    }

    .cta-container h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .cta-container p {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 14px 0;
        font-size: 15px;
    }

    /* Reduce hover lift on touch devices */
    .cta-button:hover {
        transform: none;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    }

    .cta-section::before {
        width: 260px;
        height: 260px;
        top: -70px;
    }
}

/* ====================== END OF STYLES =================  */

/* ================= NATIONAL QUOTE SECTION ================= */


.nation-quote-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #ecfdf5, #d1fae5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
}

.nation-quote-box {
    max-width: 1200px;
    width: 70%;
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;

    border-left: 6px solid #b45309;
    border-right: 6px solid #138808;
    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Quote Text */
.nation-quote-text {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

/* Author */
.nation-quote-author {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #7b1e1e;
    letter-spacing: 0.5px;
}

/* Subtle entry animation */
.nation-quote-box {
    /* opacity: 0; */
    transform: translateY(25px);
    animation: nationQuoteFade 1s ease forwards;
}

/* ----------------------------------- */

@media (max-width: 1200px) {
    .nation-quote-box {
        width: 80%;
        padding: 36px 28px;
    }
}

@media (max-width: 992px) {
    .nation-quote-box {
        width: 90%;
        padding: 32px 26px;
    }

    .nation-quote-text {
        font-size: 22px;
    }

    .nation-quote-author {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .nation-quote-section {
        padding: 32px 14px;
    }

    .nation-quote-box {
        width: 100%;
        padding: 28px 22px;
    }

    .nation-quote-text {
        font-size: 20px;
        line-height: 1.65;
    }

    .nation-quote-author {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nation-quote-section {
        padding: 26px 12px;
    }

    .nation-quote-box {
        padding: 22px 18px;
        border-left-width: 4px;
        border-right-width: 4px;
    }

    .nation-quote-text {
        font-size: 14px;
        line-height: 1.55;
    }

    .nation-quote-author {
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}

/* ====================end of styles ================== */

/* ================= HONOUR SECTION ================= */

.honour-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    text-align: center;
    overflow: hidden;

}

/* PEOPLE */
.honour-people {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
    flex-wrap: wrap;
    /* margin-top: 30px; */
    padding-bottom: 60px;
}

.person {
    width: 160px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit:contain; */
}

/* Center Person */
.person.main {
    width: 190px;
    height: 250px;
    /* border-color: #b45309; */
}

/* Hover */
.person:hover {
    transform: translateY(-12px) scale(1.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* Fade Animation */
.person {
    /* opacity: 0; */
    transform: translateY(0px);
    animation: personFade 0.9s ease forwards;
}

.person:nth-child(1) {
    animation-delay: 0.2s;
}

.person:nth-child(2) {
    animation-delay: 0.4s;
}

.person:nth-child(3) {
    animation-delay: 0.6s;
}

/* LOGOS */
.honour-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.honour-logos img {
    height: 80px;
    /* filter: grayscale(100%); */
    /* opacity: 0.75; */
    /* transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease; */
}

.honour-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.12);
}

/* ================= IMPELLENT HEADING ================= */

.impellent-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    background: linear-gradient(90deg,
            #7b1e1e,
            #b45309,
            #7b1e1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

/* Accent underline */
.impellent-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg,
            #ff9933,
            #138808);
}

/* Subtitle */
.impellent-subtitle {
    font-size: 17px;
    color: #4b5563;
    letter-spacing: 0.4px;
}

/* Entrance animation */
.impellent-title,
.impellent-subtitle {
    /* opacity: 0; */
    transform: translateY(20px);
    animation: impellentFade 0.9s ease forwards;
}

.impellent-subtitle {
    animation-delay: 0.25s;
}


/* Hover – subtle power */
.impellent-title:hover {
    letter-spacing: 2px;
    transition: letter-spacing 0.3s ease;
}

/* ----------------------- */

@media (max-width: 1200px) {
    .honour-people {
        gap: 32px;
        padding-bottom: 50px;
        padding-top: 50px;
    }

    .impellent-title {
        font-size: 46px;
    }
}

@media (max-width: 992px) {
    .honour-people {
        gap: 28px;
        padding-bottom: 45px;
        padding-top: 40px;
    }

    .person {
        width: 140px;
        height: 170px;
    }

    .person.main {
        width: 170px;
        height: 220px;
    }

    .impellent-title {
        font-size: 40px;
    }

    .impellent-subtitle {
        font-size: 16px;
    }

    .honour-logos img {
        height: 68px;
    }
}

@media (max-width: 768px) {

    .honour-section {
        padding: 18px 14px;
    }

    .honour-people {
        gap: 24px;
        padding-bottom: 38px;
        padding-top: 30px;
    }

    .person {
        width: 120px;
        height: 150px;
    }

    .person.main {
        width: 150px;
        height: 190px;
    }

    .impellent-title {
        font-size: 34px;
    }

    .impellent-title::after {
        width: 60px;
        height: 3px;
    }

    .impellent-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .honour-section {
        padding: 16px 12px;
    }

    .honour-people {
        gap: 18px;
        padding-bottom: 32px;
        margin-top: 0px !important;
        padding-top: 20px;
    }

    .person {
        width: 80px;
        height: 110px;
    }

    .person.main {
        width: 100px;
        height: 150px;
    }

    .honour-logos {
        gap: 16px;
    }

    .honour-logos img {
        height: 56px;
    }

    .impellent-title {
        font-size: 26px;
        letter-spacing: 0.8px;
    }

    .impellent-subtitle {
        font-size: 14px;
    }

    /* Disable hover lift on touch devices */
    .person:hover {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .impellent-title:hover {
        letter-spacing: 0.8px;
    }
}


/* <!-- ================= FOOTER ================= --> */

.site-footer {
    background: linear-gradient(180deg, #0f172a, #020617);
    color: #e5e7eb;
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
}

/* Subtle top divider */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b45309, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 40px;
    text-align: center;
}

/* Title */
.footer-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* Tagline */
.footer-tagline {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
}

/* Divider */
.footer-divider {
    width: 80px;
    height: 1px;
    background: #374151;
    margin: 20px auto;
}

/* Bottom text */
.footer-bottom {
    font-size: 13px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        padding: 40px 16px 32px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-tagline {
        font-size: 13px;
    }
}

/* ===================Awards===================== */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #faf2f2;
}

.gallantry-section {
    padding: 25px 20px;
    text-align: center;
}

/* ===== HEADING ===== */
.ga-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.ga-line {
    flex: 1;
    max-width: 220px;
    height: 2px;
    background: repeating-linear-gradient(to right,
            #000 0,
            #000 4px,
            transparent 4px,
            transparent 10px);
}

.ga-circle {
    width: 14px;
    height: 14px;
    border: 3px solid #ff7a00;
    border-radius: 50%;
    position: relative;
}

/* INNER GREEN DOT */
.ga-circle::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #1e8e3e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.ga-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
}

.ga-text strong {
    color: #ff7a00;
}

/* ===== AWARDS ROW ===== */
.awards-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.award-card {
    width: 160px;
    text-align: center;
}

.award-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* FIX: medal + count grouped */
.medal-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.medal-wrap img {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.award-link:hover img {
    transform: scale(1.05);
}

.count {
    background: #1e8e3e;
    color: #ffffff;
    padding: 3px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.award-card p {
    margin: 6px 0 0;
    font-size: 15px;
    font-weight: 600;
}

.divider {
    width: 1px;
    height: 150px;
    background: #000;
    /* opacity: 0.2; */
}

/* ===== BUTTON ===== */
.btn-wrap {
    margin-top: 40px;
}

.award-btn {
    display: inline-block;
    background: #1e8e3e;
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.award-btn:hover {
    background: #166d30;
}

/* ===== RESPONSIVE ===== */


/* =========================================================
   LARGE DESKTOP (1200px and above)
   ========================================================= */
@media (min-width: 1200px) {
    .gallantry-section {
        padding: 60px 20px;
    }

    .award-card {
        width: 170px;
    }

    .medal-wrap img {
        width: 95px;
    }
}

/* =========================================================
   LAPTOP / SMALL DESKTOP (992px – 1199px)
   ========================================================= */
@media (max-width: 1199px) {
    .ga-text {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .award-card {
        width: 120px;
    }

    .count {
        padding: 3px 40px;
    }
}

/* =========================================================
   TABLET (768px – 991px)
   ========================================================= */
@media (max-width: 991px) {
    .ga-heading {
        gap: 10px;
        margin-bottom: 40px;
    }

    .ga-line {
        max-width: 160px;
    }

    .ga-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .awards-row {
        gap: 10px;
    }

    .award-card {
        width: 200px;
    }

    .medal-wrap img {
        width: 90px;
    }

    .divider {
        height: 120px;
    }

    /* Hide divider after 3rd image */
    .awards-row>.divider:nth-child(6) {
        display: none;
    }

}

/* =========================================================
   MOBILE (576px – 767px)
   ========================================================= */
@media (max-width: 767px) {
    .gallantry-section {
        padding: 40px 16px;
    }

    .ga-heading {
        flex-wrap: wrap;
    }

    /* .ga-line {
        display: none;
    } */

    .ga-text {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .awards-row {
        justify-content: center;
    }

    .award-card {
        width: 45%;
    }

    .count {
        padding: 4px 32px;
        font-size: 13px;
    }

    .award-card p {
        font-size: 14px;
    }

    .divider {
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE (up to 575px)
   ========================================================= */
@media (max-width: 575px) {
    .ga-text {
        font-size: 16px;
        letter-spacing: 0.8px;
    }

    .award-card {
        width: 100%;
        max-width: 110px;
    }

    .medal-wrap img {
        width: 75px;
    }

    .count {
        padding: 4px 28px;
    }

    .btn-wrap {
        margin-top: 30px;
    }

    .award-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}




