﻿:root {
    --blink-speed: 1.6s; /* overall cycle speed — कम करने/बढ़ाने से तेज/धीमा होगा */
    --color1: #ff6b18; /* start color (orange) */
    --color2: #ffb347; /* mid color (yellow/orange) */
    --color3: #7a3b08; /* dark brown accent */
    --color4: #2b8f46; /* green accent (optional) */
}

.mjp_meta_animated {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    /* keep text readable on each color */
    color: #fff;
    font-weight: 800;
    /* combine color-cycle and subtle blink (opacity pulse) */
    animation: mjp_color_cycle var(--blink-speed) linear infinite, mjp_blink var(--blink-speed) ease-in-out infinite;
    /* slight text shadow to keep contrast when colors change */
    text-shadow: 0 1px 0 rgba(0,0,0,0.12);
    /* preserve original spacing */
    margin-top: 4px;
}

/* color cycling through 4 stops */
@keyframes mjp_color_cycle {
    0% {
        background: linear-gradient(90deg, var(--color1), var(--color2));
        color: #fff;
        transform: translateY(0);
    }

    25% {
        background: linear-gradient(90deg, var(--color2), var(--color3));
        color: #fff;
        transform: translateY(-1px);
    }

    50% {
        background: linear-gradient(90deg, var(--color3), var(--color4));
        color: #fff;
        transform: translateY(0);
    }

    75% {
        background: linear-gradient(90deg, var(--color4), var(--color1));
        color: #fff;
        transform: translateY(1px);
    }

    100% {
        background: linear-gradient(90deg, var(--color1), var(--color2));
        color: #fff;
        transform: translateY(0);
    }
}

/* gentle blink — alternate opacity so text 'pulses' */
@keyframes mjp_blink {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 0.88;
    }

    55% {
        opacity: 0.88;
    }

    100% {
        opacity: 1;
    }
}

/* small accessibility tweak: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .mjp_meta_animated {
        animation: none;
        background: linear-gradient(90deg,var(--color1),var(--color2));
        color: #fff;
    }
}


/*#mjp_popup_backdrop, #mjp_popup_backdrop * {
    box-sizing: border-box;
}*/

/* Base font - prevents site CSS overrides */
/*.mjp_base_font {
    font-family: "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
    color: #222;
}*/

/* Backdrop */
/*#mjp_popup_backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    background: rgba(10,12,16,0.56);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 28px;
    overflow: hidden;*/ /* ensure no page scrollbars from backdrop */
/*}*/

/* Card */
/*.mjp_popup_card {
    width: min(900px, 94%);
    max-width: 900px;
    border-radius: 14px;
    overflow: hidden;*/ /* hide any internal overflow (no scrollbar) */
    /*background: linear-gradient(180deg,#fff,#fff7f0);
    box-shadow: 0 40px 120px rgba(0,0,0,0.32);
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
    transform-origin: center;*/
    /* keep card fully visible on 1920x1080 by limiting max-height and scaling text instead */
    /*max-height: calc(88vh);
}*/

/* Left: logo/media */
/*.mjp_popup_media {
    flex: 0 0 300px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#fff8f6,#fff3ec);
    padding: 18px;
}

    .mjp_popup_media img {
        width: 100%;
        max-width: 240px;
        height: auto;
        display: block;
        border-radius: 8px;
        pointer-events: none;
        -webkit-user-drag: none;
    }*/

/* Right: content - NO internal scroll */
/*.mjp_popup_body {
    flex: 1 1 auto;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
    max-height: none;*/ /* do not create inner scrollbar */
    /*overflow: visible;*/ /* keep visible - no scrollbars */
    /*position: relative;
}*/

/* Close button fixed INSIDE card (top-right), but not overlapping text */
/*.mjp_close_btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180deg,#ff6b6b,#ff3b3b);
    color: #fff;
    font-weight: 800;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(255,75,75,0.22);
    z-index: 120;
    backdrop-filter: none;
}*/

/* Title */
/*.mjp_popup_title {
    margin: 0;
    font-size: 20px;
    line-height: 1.18;
    color: #141414;
    padding-right: 60px;*/ /* reserve space so close button doesn't overlap title */
/*}*/

/* Message: compact but readable (reduced spacing so all fits) */
/*.mjp_popup_text {
    margin: 0;
    font-size: 15px;*/ /* desktop-friendly */
    /*line-height: 1.45;*/ /* slightly tighter to save space */
    /*white-space: pre-wrap;*/ /* preserve newlines you provided */
    /*word-break: break-word;
    color: #2f2f2f;
    padding-right: 8px;*/ /* small right padding */
/*}*/

/* meta & note */
/*.mjp_meta {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    color: #7a3608;
    font-size: 14px;
    line-height: 1.25;
}

.mjp_note {
    color: #6b5340;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.25;
}*/

/* Actions - bottom area */
/*.mjp_actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 6px;
}

.mjp_btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mjp_btn_primary {
    background: linear-gradient(90deg,#ff7a18,#ffb347);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,120,40,0.14);
}

.mjp_btn_ghost {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    color: #6b4b20;
}*/

/* Remove any scrollbar visuals for popup on webkit browsers */
/*#mjp_popup_backdrop::-webkit-scrollbar, .mjp_popup_card::-webkit-scrollbar, .mjp_popup_body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}*/

/* animation */
/*@keyframes mjp_pop {
    0% {
        transform: translateY(26px) scale(.96);
        opacity: 0;
    }

    60% {
        transform: translateY(-8px) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.mjp_animate_pop {
    animation: mjp_pop 480ms cubic-bezier(.22,.9,.2,1) both;
}*/

/* Responsive: mobile */
/*@media (max-width: 760px) {
    #mjp_popup_backdrop {
        padding: 12px;
    }

    .mjp_popup_card {
        width: min(94%,420px);
        flex-direction: column;
        max-width: 420px;
    }

    .mjp_popup_media {
        min-height: 120px;
        padding: 12px;
    }

        .mjp_popup_media img {
            max-width: 140px;
        }

    .mjp_popup_body {
        padding: 14px;
        min-height: 140px;
    }

    .mjp_close_btn {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .mjp_popup_title {
        font-size: 18px;
        padding-right: 48px;
    }

    .mjp_popup_text, .mjp_meta, .mjp_note {
        font-size: 14px;
        line-height: 1.35;
    }

    .mjp_actions {
        gap: 8px;
    }

    .mjp_btn {
        font-size: 13px;
        padding: 9px 12px;
    }
}*/

/* Focus visible */
/*.mjp_btn:focus, .mjp_close_btn:focus {
    outline: 3px solid rgba(255,122,18,0.18);
    outline-offset: 3px;
}*/
/*popup code*/
/* ✅ Make footer container flex so columns align by height */
.footer-two .row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

/* ✅ Grey box with auto height */
.footer-grey-box {
    background: #EBEBEB;
    border-radius: 12px;
    color: #000;
    padding: 40px 30px;
    text-align: center;
    flex: 1; /* Allow it to stretch equally */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    /* ✅ Text styling */
    .footer-grey-box p {
        color: #000;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    /* ✅ Social icons in black theme */
    .footer-grey-box .social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        margin: 5px;
        background: #000;
        color: #fff;
        border-radius: 50%;
        font-size: 18px;
        transition: all 0.3s ease;
    }

        .footer-grey-box .social a:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
        }

/* ✅ Responsive fix for mobile */
@media (max-width: 768px) {
    .footer-two .row {
        flex-direction: column;
    }

    .footer-grey-box {
        margin-bottom: 20px;
    }
}

.common-banner {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: #fff;
}

    /* Background image slightly dimmed */
    .common-banner .banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(70%);
    }

    /* Blue transparent overlay — tuned to look like ujksbly.org */
    .common-banner .blue-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(0, 87, 184, 0.75) 0%, /* soft rich blue tone */
        rgba(0, 54, 123, 0.75) 100% /* darker edge tone */
        );
        z-index: 1;
    }

    /* Ensure all text stays above overlay */
    .common-banner .container,
    .common-banner .common-banner__content,
    .common-banner p,
    .common-banner ul {
        position: relative;
        z-index: 2;
    }

    /* Text styling */
    .common-banner h2,
    .common-banner p {
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

/* List layout & icon style */
.two-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 30px;
    padding-left: 0;
    list-style: none;
}

    .two-column-list li {
        color: #ffffff;
        font-size: 16px;
        line-height: 1.8;
    }

    .two-column-list i {
        color: #ffdd57; /* soft golden icon */
        margin-right: 8px;
    }

.about-six-area {
    padding: 80px 0; /* ample breathing space */
}

    .about-six-area .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Adjust image & text alignment */
    .about-six-area .row {
        row-gap: 50px; /* spacing between columns on smaller screens */
    }

.about-six-thumb img {
    /*width: 100%;*/
    height: auto;
    border-radius: 12px;
}

/* Responsive padding adjustments */
@media (max-width: 991px) {
    .about-six-area {
        padding: 60px 0;
    }

        .about-six-area .row {
            row-gap: 40px;
        }
}

@media (max-width: 767px) {
    .about-six-area {
        padding: 40px 15px;
    }

    .about-six-thumb {
        text-align: center;
    }

        .about-six-thumb img {
            max-width: 90%;
            margin: 0 auto;
        }
}


.btn--primary {
    border-radius: 60px;
}

.about-six-area .difference-three-cta {
    margin-top: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
    row-gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}





/* Elegant shadow and hover effect for image */
img[src*="imgi_1_DSC_03web.jpeg"] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s ease-in-out;
}

    /* Optional hover lift effect */
    img[src*="imgi_1_DSC_03web.jpeg"]:hover {
        transform: scale(1.02);
        box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 25px rgba(255, 255, 255, 0.15) inset;
    }

.about-six-wrapper p {
    color: var(--black);
}


/* Elegant shadow and resize for Pant-jee-min image */
.events-six-area .events-six-thumb img {
    width: 85%; /* Reduce image size */
    max-width: 250px; /* Optional limit for large screens */
    height: auto;
    display: block;
    margin: 0 auto; /* Center horizontally */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s ease-in-out;
}

    /* Optional hover effect for interactivity */
    .events-six-area .events-six-thumb img:hover {
        transform: scale(1.02);
        box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45), 0 0 25px rgba(255, 255, 255, 0.15) inset;
    }

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .events-six-area .events-six-thumb img {
        width: 95%;
        max-width: 320px;
    }
}


/* Responsive Design for Events Section */
.events-six-area {
    padding: 50px 0;
}

.events-six-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; /* allows image & content to wrap on mobile */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.events-six-thumb {
    flex: 1 1 45%;
    text-align: center;
}

    .events-six-thumb img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

.events-six-content {
    flex: 1 1 50%;
    padding: 20px 25px;
}

    .events-six-content h4 {
        font-size: 24px;
        color: #222;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .events-six-content p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        text-align: justify;
    }

.events-six-content-date h6 {
    font-size: 15px;
    color: #555;
    font-weight: 600;
    margin-top: 15px;
}

/* ✅ Mobile View Optimization */
@media (max-width: 992px) {
    .events-six-wrapper {
        flex-direction: column; /* stack image and content */
        text-align: center;
    }

    .events-six-thumb, .events-six-content {
        flex: 1 1 100%;
        padding: 15px;
    }

        .events-six-content h4 {
            font-size: 22px;
        }

        .events-six-content p {
            font-size: 15px;
        }

    .events-six-content-date h6 {
        font-size: 14px;
    }
}
/*whats app*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* pushed above the scroll-to-top button */
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.2s ease-in-out;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float i {
        margin-top: 5px;
        margin-left: 18px;
    }
    /*hindi spported font*/
.title-animation {
    font-family: 'Noto Sans Devanagari', sans-serif !important;
    font-weight: 600;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #ffc107;
    animation: typing 3s steps(15) 1s 1 normal both, blink 0.75s step-end infinite;
    color: #fff;
    font-size: 42px;
}

    .title-animation span {
        color: #ffc107;
    }

/* Typing effect (like uttrayani-melaoriginal) */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: #ffc107;
    }
}
/*logo svg start*/
.logo-icon {
    width: 80px;
    height: 80px;
    display: inline-block;
    background: url("assets/images/logo.png") no-repeat center;
    background-size: contain;
}

/* ============================= */
/* CONTACT FORM SUBMIT BUTTON */
/* ============================= */

.theme-btn-submit {
    background: linear-gradient(135deg, #f5b400, #ffcc33);
    color: #1a1a1a;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 180, 0, 0.35);
}

    .theme-btn-submit:hover {
        background: linear-gradient(135deg, #ffcc33, #f5b400);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(245, 180, 0, 0.5);
        color: #000;
    }

    .theme-btn-submit:active {
        transform: scale(0.97);
    }

    .theme-btn-submit:disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
    }
