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


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

.justify{
    text-align: justify;
}
.bold{
    font-weight: 700;
}

:root {
    --brand-red: #D32F2F;
    --brand-gold: #FFAB00;
    --text-dark: #1A1A1B;
    --text-gray: #555555;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f9f9f9;
}

/* Header Main */
.premium-header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    padding: 10px 0;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 80px;
}


.nav-list {
    display: flex;
    list-style: none;

}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red);
    background: rgba(211, 47, 47, 0.05);
}

/* Dropdown Premium Look */
.nav-item-dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 150%;
    left: 0;
    width: 250px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 4px solid var(--brand-red);
}

.nav-item-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.mega-dropdown li a:hover {
    background: #fdf2f2;
    color: var(--brand-red);
    padding-left: 20px;
}

/* --- PREMIUM BUTTONS  --- */

.header-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-premium-outline {
    position: relative;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #D32F2F;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #D32F2F;
    border-radius: 12px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 1;
}

.btn-premium-outline:hover {
    color: #ffffff;
    border-color: #D32F2F;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
    transform: translateY(-2px);
}

.btn-premium-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D32F2F;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-premium-outline:hover::before {
    left: 0;
}

.btn-premium-gradient {
    position: relative;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FF4500 0%, #D32F2F 100%);
    border-radius: 12px;
    border: 1px solid #FF4500;
    box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3),
        inset 0 -4px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    top: 0;
    left: 0;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    border-radius: 12px;
}

.btn-premium-gradient:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px rgba(211, 47, 47, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-premium-gradient:hover .btn-glow {
    opacity: 0.6;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.btn-premium-gradient {
    animation: pulse-red 2s infinite;
}

.btn-premium-gradient:active,
.btn-premium-outline:active {
    transform: translateY(1px);
}

@media (max-width: 1000px) {
    .header-inner {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header-logo img {
        height: 40px !important;
        width: auto;
    }

    .header-btns {
        display: flex;
        align-items: center;
        gap: 8px;
    }


    .btn-premium-gradient {
        padding: 6px 8px !important;
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2) !important;
    }


    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: 4px solid var(--brand-red);
        border-radius: 10px;
        cursor: pointer;
        padding: 5px;
        z-index: 1002;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
        background: var(--brand-red);
        transition: 0.3s;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 20px;
        display: block !important;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        overflow-y: auto;
    }



    .header-nav.active {
        right: 0;
    }

    /* Make nav-list vertical on mobile */
    .nav-list {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    /* Dropdown menu mobile fix */
    .nav-item-dropdown .mega-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
        padding-left: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item-dropdown.open .mega-dropdown {
        display: block;
    }

    /* Adjust nav-link padding and font size on mobile */
    .nav-link {
        padding: 8px 12px;
        font-size: 16px;
    }

}

/* Overlay Background */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

/* Active State */
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* ===========hero-slider section============ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
    margin-top: 80px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: var(--brand-red);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- MOBILE VIEW FIX --- */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }

    .slide {
        background-size: contain;
        background-position: center;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}


/* ===============about kali sena section============= */

.ultra-modern-about {
    padding: 120px 0;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.um-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* Background Typography */
.um-bg-title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 160px;
    font-weight: 900;
    color: #f3f2f2;
    z-index: 1;
    letter-spacing: -10px;
    line-height: 0.8;
}

.um-flex-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Image Styling - Unique Shape */
.um-image-side {
    flex: 1;
    position: sticky;
    top: 100px;
}

.um-image-mask {
    position: relative;
    width: 100%;
    height: 750px;
    border-radius: 10%;
    /* Modern Organic Shape */
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    background: #111;
}

.um-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
    filter: brightness(0.85);
}

.um-image-mask:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.um-info-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
}

.um-info-overlay h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.um-info-overlay p {
    color: #FFAB00;
    letter-spacing: 2px;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 700;
}

/* Content Side */
.um-content-side {
    flex: 1.2;
}

.um-tagline {
    color: #D32F2F;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 5px;
}

.um-main-heading {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin: 15px 0;
    line-height: 1;
}

.um-main-heading span {
    color: #D32F2F;
}

.um-accent-line {
    width: 100px;
    height: 10px;
    background: #D32F2F;
    margin-bottom: 40px;
}

.um-main-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.um-lead {
    font-size: 20px !important;
    color: #111 !important;
    font-weight: 700;
}

/* Mission Pills */
.um-mission-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px 0;
}

.um-pill {
    background: #fdf2f2;
    padding: 20px 30px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.um-pill:hover {
    background: #fff;
    border-color: #D32F2F;
    transform: translateX(20px);
}

.um-pill span {
    color: #D32F2F;
    font-size: 22px;
}

.um-final-quote {
    font-size: 19px !important;
    font-weight: 700;
    color: #D32F2F !important;
    border-left: 5px solid #D32F2F;
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
}

/* CTA */
.um-btn-link {
    text-decoration: none;
    color: #111;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #D32F2F;
    transition: 0.3s;
}

.um-btn-link:hover {
    gap: 25px;
    color: #D32F2F;
}

/* Responsive Settings */
@media (max-width: 1100px) {
    .um-flex-wrapper {
        flex-direction: column;
    }

    .um-image-side {
        position: relative;
        top: 0;
        width: 100%;
    }

    .um-image-mask {
        height: 450px;
        border-radius: 30px;
    }

    .um-main-heading {
        font-size: 28px;
    }

    .um-bg-title {
        font-size: 100px;
    }

    .um-pill:hover {
        transform: translateX(0);
    }
}

/* ===========our vision============== */


/* --- VISION FULL STORY DESIGN --- */
.vision-full-story {
    padding: 100px 0;
    background: #f4f5f7;
    /* Defined Background Color */
    font-family: 'Outfit', sans-serif;
}

.vfs-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.vfs-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Content Side */
.vfs-content {
    flex: 1.4;
}

.vfs-badge {
    background: #D32F2F;
    color: #fff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.vfs-title {
    font-size: 45px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-bottom: 30px;
}

.vfs-title span {
    color: #D32F2F;
}

.vfs-text-flow p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.vfs-lead {
    font-size: 19px !important;
    color: #111 !important;
    font-weight: 600;
}

.vfs-highlight {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid #FFAB00;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vfs-highlight p {
    margin: 0;
    font-weight: 500;
    color: #222;
}


.vfs-objectives {
    margin: 35px 0;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.vfs-obj-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.vfs-obj-item i {
    color: #D32F2F;
    font-size: 18px;
    margin-top: 5px;
}

.vfs-obj-item p {
    margin: 0;
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

.vfs-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.vfs-feat-card {
    display: flex;
    gap: 15px;
    background: #eceef1;
    padding: 20px;
    border-radius: 15px;
}

.vfs-feat-card i {
    font-size: 24px;
    color: #D32F2F;
}

.vfs-feat-card h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
}

.vfs-feat-card p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.vfs-quote {
    padding: 25px;
    background: #111;
    color: #FFD700;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
}

.vfs-video-side {
    flex: 1;
    position: sticky;
    top: 100px;
}

.vfs-video-sticky {
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.vfs-video-box {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
}

.vfs-video-box iframe {
    width: 100%;
    height: 100%;
}

.vfs-video-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.vfs-video-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.vfs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.vfs-btn:hover {
    background: #D32F2F;
}

/* Responsive */
@media (max-width: 1000px) {
    .vfs-grid {
        flex-direction: column;
    }

    .vfs-video-side {
        position: relative;
        top: 0;
        order: -1;
        width: 100%;
    }

    .vfs-features-row {
        grid-template-columns: 1fr;
    }

    .vfs-title {
        font-size: 32px;
    }
}

/* ============mission section============ */

.mission-section-premium {
    padding: 100px 0;
    background-color: #ecebe9;
    /* DEFINED: Light Creamish Background */
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.container-mission {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.mission-text-box {
    flex: 1.2;
    min-width: 320px;
}

.mission-media-box {
    flex: 0.8;
    min-width: 320px;
    position: sticky;
    top: 100px;
}

/* Typography & Badges */
.mission-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(211, 47, 47, 0.08);
    color: #D32F2F;
    font-weight: 700;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.mission-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1b;
    line-height: 1.2;
    margin-bottom: 30px;
}

.mission-main-title span {
    color: #D32F2F;
}

.mission-highlight {
    font-size: 19px;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mission-para {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Feature Items */
.mission-features-grid {
    margin: 35px 0;
}

.m-feat-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

.m-feat-icon {
    width: 50px;
    height: 50px;
    background: #D32F2F;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.m-feat-info h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 5px;
}

.m-feat-info p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* --- BUTTON SET STYLING --- */
.mission-btn-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary-red {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #D32F2F;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.btn-primary-red:hover {
    background: #b71c1c;
    transform: translateY(-3px);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: transparent;
    color: #1a1a1b;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: 0.3s;
}

.btn-outline-dark:hover {
    border-color: #D32F2F;
    color: #D32F2F;
}

/* Video & Media */
.video-card-shadow {
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.video-embed-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.video-embed-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    padding: 15px 10px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D32F2F;
    font-weight: 700;
    font-size: 15px;
}

.mission-quote-box {
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-left: 5px solid #FFAB00;
    /* Gold Accent */
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-quote-box i {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 10px;
    display: block;
}

.mission-quote-box p {
    font-style: italic;
    color: #444;
    font-weight: 600;
    line-height: 1.5;
}

/* Mobile View */
@media (max-width: 992px) {
    .mission-flex-wrapper {
        flex-direction: column;
    }

    .mission-main-title {
        font-size: 32px;
    }

    .mission-media-box {
        position: static;
        order: -1;
    }

    .mission-btn-group {
        flex-direction: column;
    }

    .btn-primary-red,
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
    }
}

/* ==================about swami ji =============== */

.about-premium-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* PURE WHITE BACKGROUND */
    font-family: 'Outfit', sans-serif;
    color: #333;
}

.container-about {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.about-top-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-tag {
    color: #D32F2F;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1b;
}

.founder-sub {
    font-size: 18px;
    color: #777;
    margin-top: 5px;
}

/* Grid Layout */
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

/* Founder Visual Box */
.founder-visual-box {
    position: sticky;
    top: 100px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #D32F2F, transparent);
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.experience-badge strong {
    font-size: 28px;
    display: block;
    letter-spacing: 2px;
}

.experience-badge span {
    font-size: 14px;
    opacity: 0.9;
}

/* Content Styling */
.intro-bold {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1b;
    line-height: 1.5;
    margin-bottom: 25px;
    border-left: 5px solid #D32F2F;
    padding-left: 20px;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Goals Box */
.goals-container {
    background: #f8f9fa;
    /* DEFINED: Light Separation */
    padding: 30px;
    border-radius: 15px;
    margin: 35px 0;
    border: 1px solid #eee;
}

.goals-container h3 {
    font-size: 22px;
    color: #1a1a1b;
    margin-bottom: 20px;
    font-weight: 800;
}

.goal-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.g-num {
    font-weight: 800;
    color: #D32F2F;
    font-size: 18px;
}

.goal-item p {
    font-weight: 600;
    color: #444;
    margin: 0;
}

.vision-closing p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Button */
.about-btn-wrap {
    margin-top: 40px;
}

.btn-read-full {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-read-full:hover {
    background: #D32F2F;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-main-grid {
        grid-template-columns: 1fr;
    }

    .founder-visual-box {
        position: static;
    }

    .image-frame img {
        height: 400px;
    }

    .about-title {
        font-size: 28px;
    }

    .intro-bold {
        font-size: 18px;
    }
}

/* ===========donation section========= */

.donation-section {
    padding: 100px 0;
    background-color: #fffcf5;
    font-family: 'Outfit', sans-serif;
}

.container-donation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* --- QR Card Design --- */
.qr-card-wrapper {
    display: flex;
    justify-content: center;
}

.qr-card-premium {
    background: #ffffff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #eee;
    max-width: 350px;
    width: 100%;
}

.qr-header i {
    font-size: 40px;
    color: #D32F2F;
    margin-bottom: 15px;
}

.qr-header h4 {
    font-size: 22px;
    color: #111;
    margin-bottom: 5px;
}

.qr-header p {
    font-size: 13px;
    color: #777;
}

.qr-image-box {
    margin: 25px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 20px;
}

.qr-image-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.qr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
}

.qr-footer span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.btn-copy {
    background: #111;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-copy:hover {
    background: #D32F2F;
}

/* --- Right Side Details --- */
.d-tag {
    color: #D32F2F;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.d-title {
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0 20px;
}

.d-title span {
    color: #D32F2F;
}

.d-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.bank-details-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0e6d6;
}

.bank-details-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D32F2F;
    display: inline-block;
}

.bank-table .bank-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.bank-table .bank-row:last-child {
    border: none;
}

.bank-row .label {
    font-weight: 600;
    color: #777;
}

.bank-row .value {
    font-weight: 700;
    color: #111;
}

.d-note {
    margin-top: 25px;
    font-size: 14px;
    color: #D32F2F;
    font-weight: 600;
}

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    .donation-grid {
        grid-template-columns: 1fr;
    }

    .qr-card-wrapper {
        order: -1;
    }

    .d-title {
        font-size: 30px;
    }
}

/* =============Membership section============ */


.membership {
    padding: 120px 20px;
    text-align: center;
    font-family: Poppins, sans-serif;
    background: #0f0f0f;
    color: #fff;
}

.title {
    font-size: 42px;
    margin-bottom: 15px;
}

.subtitle {
    max-width: 750px;
    margin: auto;
    opacity: 0.8;
    margin-bottom: 70px;
    line-height: 1.6;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.card {
    width: 280px;
    padding: 45px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.3);
}

.icon {
    font-size: 32px;
    color: #D32F2F;
    margin-bottom: 15px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6a00, #D32F2F);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.08);
}

.featured {
    transform: scale(1.08);
    border: 1px solid #D32F2F;
}

.tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a00, #D32F2F);
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
}


/* ============= event section=========== */

.event-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.event-header {
    text-align: center;
    margin-bottom: 70px;
}

.event-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    /* Heading color thoda dark rakha hai */
}

.event-timeline {
    position: relative;
    padding-left: 60px;
}

.event-timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    /* Orange replaced with Tomato */
    background: tomato;
}

/* event item */

.event-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.event-date {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    /* Orange replaced with Tomato */
    background: tomato;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.3);
    /* Subtle tomato shadow */
}

.event-date span {
    font-size: 18px;
    line-height: 1;
}

.event-date p {
    font-size: 12px;
    margin: 0;
}

/* content */

.event-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: 0.3s;
}

.event-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(255, 99, 71, 0.15);
    /* Hover par red tint shadow */
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.event-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* footer */

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-footer span {
    font-size: 14px;
    color: #888;
}

.event-footer a {
    /* Button background Tomato */
    background: tomato;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.event-footer a:hover {
    /* Hover par Darker Red color */
    background: #d9534f;
}

/* responsive */

@media(max-width:768px) {

    .event-timeline {
        padding-left: 40px;
    }

    .event-date {
        left: -45px;
        width: 50px;
        height: 50px;
    }

    .event-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


/* ============news and updats section=============== */



/* --- CSS STYLING --- */
.premium-news-slider {
    padding: 80px 0;
    background: #fdfdfd;
    font-family: 'Outfit', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: #d32f2f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-top: 10px;
}

.section-header h2 span {
    color: #d32f2f;
}

.title-line {
    width: 50px;
    height: 4px;
    background: #ffb800;
    margin: 15px auto;
    border-radius: 2px;
}

/* Swiper Slide Scaling */
.myNewsSwiper {
    padding: 20px 0 80px 0 !important;
}

/* News Card */
.news-video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin: 10px;
    transition: 0.3s;
}

.news-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* YouTube Frame */
.yt-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    background: #000;
}

.yt-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Info Section */
.news-content-box {
    padding: 30px;
}

.source-tag {
    background: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 12px;
}

.news-content-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 15px 0 10px;
    line-height: 1.4;
}

.news-content-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Premium Button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-view-more:hover {
    gap: 12px;
}

/* Custom Navigation UI */
.swiper-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    color: #d32f2f !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #eee !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #d32f2f !important;
    color: #fff !important;
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background: #d32f2f !important;
}

/* Desktop: 2 Cards Only */
@media (min-width: 992px) {
    .swiper-slide {
        width: 50% !important;
    }
}


/* =============Footer============ */

.premium-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 80px 20px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Border color changed to Tomato */
    border-top: 3px solid tomato;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column h4 {
    /* Text color changed to Tomato */
    color: tomato;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    /* Underline color changed to Tomato */
    background: tomato;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-logo span {
    /* Logo accent color changed to Tomato */
    color: tomato;
}

.about-text {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    /* Hover link color changed to Tomato */
    color: tomato;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-item i {
    /* Icon color changed to Tomato */
    color: tomato;
    margin-top: 4px;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Social icon color changed to Tomato */
    color: tomato;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    /* Hover background changed to Tomato */
    background: tomato;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

  /* Responsive Grid */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
                /* text-align: center; */
            }}


