html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background: #031327;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", serif
}

a {
    text-decoration: none
}

.section-pad {
    padding: 95px 0
}

.subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e6b650;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .76rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.subheading::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #e6b650
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 2.6rem);
    color: #fff;
    line-height: 1.05
}

.para-text {
    font-size: 1.06rem;
    line-height: 1.9;
    color: #bfc0c2
}

/* Header */
.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff
}

.brand-sub {
    font-size: .9rem;
    letter-spacing: .35em;
    color: #e6b650;
    margin-top: 5px
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .35)
}

.navbar-toggler:focus {
    box-shadow: none
}

.nav-link {
    color: rgba(255, 255, 255, .86) !important;
    font-weight: 600;
    font-size: .94rem;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e6b650 !important
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -8px;
    height: 2px;
    background: #e6b650;
    transform: scaleX(0);
    transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.btn-outline-gold {
    border: 1px solid #e6b650;
    color: #e6b650;
    border-radius: 999px;
    padding: 11px 22px;
    font-weight: 700;
}

.btn-outline-gold:hover {
    background: #e6b650;
    color: #041a35
}

/* Hero */
.hero {
    min-height: 790px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(2, 18, 38, .98) 0%, rgba(3, 25, 50, .94) 43%, rgba(3, 24, 47, .60) 72%, rgba(3, 20, 40, .30) 100%),
        url("./assets/hero-bg.webp") center/cover no-repeat;
    padding: 150px 0 120px;
    overflow: hidden;
}

.hero h1,
.inner-hero h1 {
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    line-height: 1.02;
    margin: 18px 0 22px
}

.hero h1 span {
    color: #e6b650
}

.hero .lead {
    max-width: 590px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.18rem;
    line-height: 1.75
}


.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-badge img {
    height: 45px;
}

.store-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(244, 190, 67, 0.2);
}

@media (max-width: 767px) {
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }
}

/*  */
.ministry-section {
    position: relative;
    z-index: 5;
}

.ministry-sec {
    background: linear-gradient(135deg, #061d3a, #0a315b);
    border-radius: 16px;
    transform: translateY(-35px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.ministry-sec>[class*="col"] {
    display: flex;
    border-right: 1px solid rgba(240, 240, 240, 0.08);
}

.ministry-sec>[class*="col"]:last-child {
    border-right: none;
}

.ministry-card {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.035);
}

.ministry-card p {
    color: rgba(224, 224, 224, 0.75) !important;
    line-height: 1.6;
}

.m-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e8b94f;
    background: rgba(232, 185, 79, 0.08);
    border: 1px solid rgba(232, 185, 79, 0.22);
    font-size: 22px;
}

/* About */
.about-image {
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: url("./assets/hero-bg.webp") 72% center/cover no-repeat;
    box-shadow: 0 25px 60px rgba(4, 26, 53, .14);
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 26, 53, .05), rgba(230, 182, 80, .12));
}

/* Vision & Mission Section */
.vision-mission-sec {
    color: white;
}

.vision-mission-sec h4 {
    color: #e6b650;
    text-transform: uppercase;
}

.v-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.v-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 164, 59, 0.2) 0%, rgba(7, 30, 61, 1) 100%);
    border: 1px solid rgba(204, 164, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.v-icon-circle i {
    color: #e6b650;
}



/* App CTA */

.download-box {
    background: linear-gradient(135deg, #061d3a, #0a315b);
    color: #fff;
    border-radius: 28px;
    padding: 36px 42px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(4, 26, 53, .18);
}

.app-gallery {
    position: relative;
    overflow: hidden;
}

.marquee-shell {
    width: 100%;
    overflow: hidden;
    padding: 55px 0 25px;

    -webkit-mask-image: linear-gradient(90deg,
            transparent,
            #000 6%,
            #000 94%,
            transparent);

    mask-image: linear-gradient(90deg,
            transparent,
            #000 6%,
            #000 94%,
            transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: appScroll 38s linear infinite;
    will-change: transform;
}

.marquee-shell:hover .marquee-track {
    animation-play-state: paused;
}

.app-shot {
    flex: 0 0 290px;
    width: 290px;
    overflow: hidden;
    border-radius: 38px;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.app-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.app-shot:hover {
    transform: translateY(-10px) scale(1.015);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

@keyframes appScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.inner-hero {
    padding: 150px 0 120px;
}

.content-wrapper {
    background: radial-gradient(circle at 10% 5%, rgba(230, 182, 80, .10), transparent 28%),
        linear-gradient(180deg, #fdfcf9 0%, #f4f6f9 100%);

}

.policy-shell {
    background: #fff;
    border: 1px solid rgba(4, 26, 53, .08);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(4, 26, 53, .12);
    overflow: hidden;
    transform: translateY(-48px);
    position: relative;
    z-index: 5;
}

.policy-intro {
    padding: 34px 38px;
    background: linear-gradient(135deg, #fffaf0, #f8fbff);
    border-bottom: 1px solid rgba(4, 26, 53, .07);
}

.policy-body {
    padding: 38px;
}

.policy-intro .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e6b650, #e6b650);
    color: #000000;
    font-size: 1.3rem;
    box-shadow: 0 12px 28px rgba(230, 182, 80, .24);
    flex: none;
}

.term-item h3 {
    font-size: 1.42rem;
    margin: 1px 0 10px;
}

.policy-shell p {
    margin: 0;
    color: #566272;
    line-height: 1.85;
    font-size: 1rem;
}

.term-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid #e9edf2;
}

.term-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef4fb;
    color: #02182f;
    font-weight: 800;
    border: 1px solid #dfe8f2;
}

.contact-card {
    margin-bottom: 30px;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, #041a35, #0a315b);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    position: relative;
    z-index: 1;
}

.contact-list i {
    color: #e6b650;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, .84);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.help-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #536072;
}

.help-list i {
    color: #e6b650;
}

/* Simple footer requested */
footer {
    background: #03172e;
    color: rgba(255, 255, 255, .70);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

footer a {
   color: rgba(255, 255, 255, .82);
    border-right: 1px solid #cccccc57;
    padding: 0 10px;
}
footer a:last-child{border-right: 0;padding-right: 0;}
footer a:hover {
    color: #e6b650
}

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

.info-card {

    background: #fff;

    border: 1px solid #ececec;

    border-radius: 22px;

    padding: 28px;

    height: 100%;

    transition: .35s;

}

.info-card:hover {

    transform: translateY(-8px);

    border-color: #e6b650;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.info-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #03172e;

    color: #e6b650;

    font-size: 28px;

    margin-bottom: 22px;

}

.info-card h4 {

    font-size: 22px;

    font-weight: 700;

}

.info-card p {

    color: #6f7785;

    margin-bottom: 0;

}

.form-control {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #dfe4ea;
    padding: 15px 20px;
    box-shadow: none;
}

.theme-btn {
    background: #03172e;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    transition: .3s;
    text-transform: uppercase;
    width: 100%;
}
.theme-btn:hover{
    background: #e6b650;
    color: #03172e;
}
.form-control:focus {
    border-color: #dfb15b;
    box-shadow: none;
}

textarea.form-control {
    height: 170px;
    resize: none;
}

@media(max-width:991.98px) {
    .navbar-toggler {
        display: none;
    }

    .site-header {
        position: relative;
        padding: 0;
    }

    .hero {
        padding-top: 90px;
        text-align: center
    }

    .hero .lead {
        margin: auto
    }

    .hero-actions {
        justify-content: center
    }

    .feature-row {
        text-align: left
    }

    .about-image {
        margin-top: 35px
    }

    .ministry-sec>[class*="col"] {
        display: flex;
        border-bottom: 1px solid rgba(240, 240, 240, 0.08);
    }

    .inner-hero {
        padding: 40px 0 100px;
    }

    .policy-intro,
    .policy-body {
        padding: 26px 16px;
    }
}

@media (max-width: 767.98px) {
    .site-header .text-right {
        display: none;
    }

    .marquee-track {
        gap: 16px;
        animation-duration: 28s;
    }

    .app-shot {
        flex-basis: 220px;
        width: 220px;
    }

    @keyframes appScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-50% - 8px));
        }
    }
}

@media(max-width:575.98px) {
    .section-pad {
        padding: 65px 0 0
    }

    .download-wrap {
        padding-bottom: 65px;
    }

    .hero {
        min-height: auto;
        padding: 75px 0 100px
    }

    .hero h1,
    .inner-hero h1 {
        font-size: 2.75rem
    }

    .download-box {
        padding: 30px 22px;
        text-align: center
    }

    .qr-box {
        margin: 18px auto
    }

    footer {
        text-align: center
    }

    footer a {
       display: inline-block;
       font-size: 12px;
       padding: 0 5px;
    }
}