/* ==============================
 BASE
============================== */
body {
    font-family: "Inter", system-ui, sans-serif;
    background-color: #f5f7fb;
    color: #0b0f19;
}

section {
    scroll-margin-top: 90px; /* navbar height ke hisaab se */
}

.navbar {
    /* background: rgba(255, 255, 255, 0.85); */
    background: #fff;
    /* background: color-mix(in srgb, var(--white) 90, #000 10); */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* border-bottom: 1px solid rgba(0,0,0,0.06); */
    box-shadow: .5rem 0 .5rem rgba(0, 0, 0, 0.5);
    padding: 12px 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 14px;
    color: #0b0f19;
    margin-left: 20px;
}

.navbar-nav .nav-link:hover {
    color: var(--dufc-gold);
}

.nav-logo {
    width: 130px;   /* NOT 100+ */
    height: auto;
}



/* ==============================
 HERO
============================== */
.hero-section {
    position: relative;    
    padding: 200px 0 110px;    
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        135deg,
        rgba(7, 23, 34, 0.88),
        rgba(10, 28, 42, 0.92)
    ); */

    background: rgba(0, 0, 0, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
}

.hero-title span {
    color: var(--dufc-gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-top: 18px;
    max-width: 520px;
}


.badge-soft {
    background: rgba(210, 182, 140, 0.15);
    color: var(--dufc-gold);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}



/* ==============================
 HERO CAROUSEL
============================== */
.hero-carousel {
    overflow: hidden;
}

.hero-slides {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dots */
.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background: var(--dufc-gold);
    transform: scale(1.2);
}


/* ==============================
 SECTIONS
============================== */


.reveal-on-scroll{
    transform: translateY(50px);
    opacity: 0;
    transition: all ease 1s;
}

.reveal-on-scroll.active{
    transform: translateY(0);
    opacity: 1;
}


.reveal-on-scroll .icon-box{
    scale: 0.2;
    transition: all ease 1s;
}

.reveal-on-scroll.active .icon-box{
    scale: 1;
}

.section-light {
    background: #f5f7fb;
    padding: 90px 0;
}

.section-white {
    background: #ffffff;
    padding: 90px 0;
}


.section-gold-dark {
    background: var(--dufc-blue);
    padding: 90px 0;
    color: #ffffff;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
}

.section-title span {
    color: var(--dufc-blue);
}

.section-subtitle {
    color: #64748b;
    max-width: 620px;
    margin: 10px auto 0;
}

/* ==============================
 FEATURES
============================== */
.feature-card-modern {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    text-align: center;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    outline: 1px solid var(--dufc-gold);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    /* background: rgba(10, 28, 42, 0.08); */
    background: var(--dufc-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dufc-blue);
    font-size: 22px;
}

.feature-card-modern h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
}

/* ==============================
 APP SCREENS
============================== */
.screen-card-modern {
    background: #fff;
    padding: 5px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
}

.screen-card-modern:hover {
    transform: translateY(-6px);
}

.screen-card-modern img {
    border-radius: 14px;
    width: 100%;
}

/* ==============================
 FOOTER
============================== */
.main-footer {
    background: #071722;
    padding: 70px 0 30px;
    color: #cbd5e1;
}


.download_section{
    background: var(--dufc-blue-dark);
    padding: 60px 0;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(10, 28, 42, 0.2);
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.download-box{
    padding: 20px;
}

.footer-title {
    font-weight: 600;
    color: #fff;
}

.footer-link a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-link a:hover {
    color: var(--dufc-gold);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.footer-text{
    color: var(--white);
    margin: 0;
}

.footer-text a{
    color: var(--white);
    text-decoration: none;
}

.footer-text a:hover{
    color: var(--dufc-gold);
}


