/* =====================================================
   BODY
===================================================== */

body {
    font-family: "Noto Sans Devanagari", system-ui, sans-serif;
    background: #f7f9fc;
    color: #172033;
}


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

.site-header {
    background: linear-gradient(
        100deg,
        #075985,
        #123b83 55%,
        #7e3f98
    );

    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.brand-mark {
    display: inline-grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    background: #fff;
    color: #0b4a82;

    margin-right: 8px;
}

.navbar-brand {
    letter-spacing: .2px;
}

.nav-link {
    font-weight: 600;
}


/* =====================================================
   ANNOUNCEMENT
===================================================== */

.announcement-bar {
    background: #fff7df;
    border-bottom: 1px solid #f1d990;

    padding: 9px 0;

    font-size: .92rem;
}

.announcement-scroll {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
}

.announcement-scroll span {
    display: inline-block;
}


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

.hero {
    position: relative;
    overflow: hidden;

    min-height: 650px;

    padding: 70px 0;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(219, 237, 255, 0.9),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 90%,
            rgba(255, 220, 100, 0.35),
            transparent 30%
        ),

        linear-gradient(
            120deg,
            #f4faff 0%,
            #ffffff 48%,
            #fffaf0 100%
        );
}


/* =====================================================
   HERO TITLE
===================================================== */

.hero-title {
    font-size: clamp(45px, 5vw, 78px);

    line-height: 1.08;

    font-weight: 800;

    color: #123f7a;

    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    color: #7046d8;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {
    max-width: 650px;

    font-size: 20px;

    line-height: 1.7;

    color: #304b68;
}


/* =====================================================
   BADGE
===================================================== */

.badge-soft {
    display: inline-flex;
    align-items: center;

    padding: 10px 20px;

    border-radius: 50px;

    background: rgba(225, 241, 255, 0.9);

    border: 1px solid #b9d9ff;

    color: #1454a0;

    font-weight: 600;
}


/* =====================================================
   APPLY BUTTON
===================================================== */

.hero-apply-btn {
    border: none;

    border-radius: 50px;

    padding: 15px 28px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(255, 183, 0, 0.25);

    transition: 0.3s;
}

.hero-apply-btn:hover {
    transform: translateY(-3px);
}

.arrow {
    margin-left: 10px;
    font-size: 22px;
}


/* =====================================================
   INFO BUTTON
===================================================== */

.hero-info-btn {
    border: 2px solid #2466c1;

    border-radius: 50px;

    padding: 13px 25px;

    color: #174e91;

    font-weight: 700;

    background: white;

    transition: 0.3s;
}

.hero-info-btn:hover {
    background: #eef6ff;

    transform: translateY(-3px);
}


/* =====================================================
   HERO PHOTO AREA
===================================================== */

.hero-photo-area {
    position: relative;

    width: 100%;

    height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =====================================================
   YELLOW CIRCLE
===================================================== */

.photo-circle {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background: #ffd86b;

    opacity: 0.55;

    right: 50px;
    top: 80px;

    z-index: 0;
}


/* =====================================================
   BLUE CIRCLE
===================================================== */

.photo-circle-blue {
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: #dceeff;

    opacity: 0.9;

    right: 320px;
    top: 20px;

    z-index: 0;
}


/* =====================================================
   PHOTO CARD
===================================================== */

.photo-card {
    position: absolute;

    background: white;

    padding: 12px;

    border-radius: 28px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.18);

    transition: 0.4s ease;
}


/* =====================================================
   PHOTO IMAGE
===================================================== */

.photo-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border-radius: 20px;
}


/* =====================================================
   FIRST PHOTO
===================================================== */

.photo-card-one {
    width: 330px;
    height: 500px;

    left: 40px;
    top: 35px;

    transform: rotate(-4deg);

    z-index: 3;
}


/* =====================================================
   SECOND PHOTO
===================================================== */

.photo-card-two {
    width: 310px;
    height: 450px;

    right: 10px;
    top: 100px;

    transform: rotate(5deg);

    z-index: 4;
}


/* =====================================================
   PHOTO HOVER
===================================================== */

.photo-card-one:hover {
    transform:
        rotate(-2deg)
        translateY(-8px);

    z-index: 10;
}

.photo-card-two:hover {
    transform:
        rotate(2deg)
        translateY(-8px);

    z-index: 10;
}


/* =====================================================
   PHOTO DECORATION
===================================================== */

.photo-decoration {
    position: absolute;

    right: 5px;
    top: 45px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffc928;

    border-radius: 50%;

    font-size: 30px;

    z-index: 8;

    box-shadow:
        0 10px 25px rgba(255, 180, 0, 0.25);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 65px 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #667085;
    max-width: 760px;
}


/* =====================================================
   CARDS
===================================================== */

.card-modern {
    background: #ffffff;

    border-radius: 22px;

    border: 1px solid #e5edf5;

    box-shadow:
        0 10px 30px rgba(35, 65, 100, 0.08);

    transition: 0.3s ease;

    height: 100%;
}

.card-modern:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(35, 65, 100, 0.13);
}


/* =====================================================
   ICON
===================================================== */

.icon-box {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #eef6ff;

    font-size: 28px;
}


/* =====================================================
   STATS
===================================================== */

.stat {
    padding: 26px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 8px 30px rgba(0,0,0,.07);
}

.stat strong {
    font-size: 2rem;

    display: block;
}


/* =====================================================
   FORM CARD
===================================================== */

.form-card {
    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 12px 40px rgba(17,24,39,.08);

    padding: 30px;
}


/* =====================================================
   FORM
===================================================== */

.form-control,
.form-select {
    border-radius: 12px;

    padding: .75rem .9rem;
}


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

.btn {
    border-radius: 11px;

    font-weight: 700;
}

.btn-primary {
    background: #0b5ed7;

    border-color: #0b5ed7;
}


/* =====================================================
   CHECK LIST
===================================================== */

.check-list {
    list-style: none;

    padding: 0;
}

.check-list li {
    margin: 10px 0;
}

.check-list li:before {
    content: "✓";

    display: inline-grid;

    place-items: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #dcfce7;

    color: #166534;

    margin-right: 8px;

    font-weight: 800;
}


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

.footer {
    background: #101828;

    color: #d0d5dd;
}

.footer a {
    display: block;

    color: #d0d5dd;

    text-decoration: none;

    margin: 7px 0;
}

.footer a:hover {
    color: #fff;
}


/* =====================================================
   STATUS
===================================================== */

.status-pill {
    padding: 6px 11px;

    border-radius: 999px;

    font-size: .82rem;

    font-weight: 700;
}

.status-approved {
    background: #dcfce7;
    color: #166534;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-other {
    background: #e0e7ff;
    color: #3730a3;
}


/* =====================================================
   TABLE
===================================================== */

.table-modern {
    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0,0,0,.06);
}


/* =====================================================
   LOGIN
===================================================== */

.login-wrap {
    min-height: 70vh;

    display: grid;

    place-items: center;
}


/* =====================================================
   HERO CARD
===================================================== */

.hero-card {
    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 24px;

    padding: 30px;

    backdrop-filter: blur(8px);
}


/* =====================================================
   GALLERY
===================================================== */

.gallery-card {
    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.gallery-placeholder {
    height: 180px;

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #dcfce7,
            #fef3c7
        );

    display: grid;

    place-items: center;

    font-size: 3rem;
}


/* =====================================================
   ADMIN
===================================================== */

.admin-sidebar {
    background: #111827;

    min-height: 100%;

    color: #fff;

    border-radius: 18px;

    padding: 18px;
}

.admin-sidebar a {
    display: block;

    color: #d1d5db;

    text-decoration: none;

    padding: 10px;

    border-radius: 9px;
}

.admin-sidebar a:hover {
    background: #1f2937;

    color: #fff;
}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 1199px) {

    .photo-card-one {
        width: 290px;
        height: 450px;

        left: 20px;
    }

    .photo-card-two {
        width: 270px;
        height: 400px;

        right: 0;
    }

    .hero-photo-area {
        height: 520px;
    }
}


@media (max-width: 991px) {

    .hero {
        padding: 60px 0;

        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-photo-area {
        height: 500px;

        margin-top: 30px;
    }

    .photo-card-one {
        width: 270px;
        height: 410px;

        left: 70px;
        top: 25px;
    }

    .photo-card-two {
        width: 250px;
        height: 370px;

        right: 50px;
        top: 95px;
    }

    .photo-circle {
        right: 80px;
    }
}


@media (max-width: 767px) {

    .section {
        padding: 45px 0;
    }
}


@media (max-width: 576px) {

    .hero {
        padding: 45px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-photo-area {
        height: 430px;
    }

    .photo-card-one {
        width: 220px;
        height: 335px;

        left: 20px;
        top: 20px;
    }

    .photo-card-two {
        width: 205px;
        height: 305px;

        right: 5px;
        top: 90px;
    }

    .photo-circle {
        width: 280px;
        height: 280px;

        right: 10px;
        top: 70px;
    }

    .photo-circle-blue {
        width: 120px;
        height: 120px;

        left: 40px;
        top: 20px;
    }

    .photo-decoration {
        width: 50px;
        height: 50px;

        right: 0;
        top: 45px;

        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-apply-btn,
    .hero-info-btn {
        width: 100%;

        max-width: 330px;
    }
}
.before-apply-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.before-apply-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .before-apply-photo {
        height: 220px;
        margin-top: 25px;
    }
}
/* WEBSITE BACKGROUND */


/* Razorpay payment UI */
.payment-section { padding-top: 55px; }
.payment-card { background: #fff; border-radius: 24px; }
.payment-icon { width: 58px; height: 58px; margin: 0 auto 15px; border-radius: 50%; display: grid; place-items: center; background: #e9f2ff; color: #0d6efd; font-size: 28px; font-weight: 800; }
.payment-summary { padding: 28px; border: 1px solid #e6edf5; border-radius: 18px; background: #f8fbff; }
.payment-amount { font-size: 44px; font-weight: 800; line-height: 1.1; color: #0b2e59; }
.qr-card { padding: 24px; border: 1px solid #e6edf5; border-radius: 18px; background: #fff; }
.qr-placeholder { width: 210px; height: 210px; margin: 0 auto; border: 2px dashed #b9c7d8; border-radius: 16px; display: grid; place-items: center; font-size: 96px; color: #0d6efd; background: #f8fbff; }
