/*========================================

KhusHii Dua Landing Page

=========================================*/

@font-face {
    font-family: "BlankMoment";
    src: url("../fonts/BlankMoment-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

/* ==========================
Logo
========================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 60px;
    height: auto;
}

.logo span {
    font-family: "BlankMoment", sans-serif;
    font-size: 40px;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 1px;
}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#ffffff;

    background:#0d4ea8;

}

html {
    scroll-behavior: smooth;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}


/*============================
NAVBAR
=============================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(8,48,116,.95);

    backdrop-filter:blur(8px);

}

.navbar{

    padding:18px 0;

}

.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-size:24px;

    font-weight:700;

}

.logo img{

    width:50px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#ffd54f;

}

.nav-buttons{

    display:flex;

    gap:15px;

}

.btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#ffd54f;

    color:#0a3f90;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:#0b3f8f;

}

.btn-secondary{

    background:white;

    color:#0d4ea8;

}

.mobile-menu{

    display:none;

    color:white;

    font-size:32px;

    cursor:pointer;

}


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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:130px;

    background:

    linear-gradient(

    180deg,

    #1257b9 0%,

    #22c5d8 100%

    );

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

}

.badge{

    display:inline-block;

    background:white;

    color:#0a57b3;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:600;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.1;

}

.hero h2{

    font-size:40px;

    color:#ffe062;

    margin-top:12px;

    margin-bottom:20px;

}

.hero p{

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

.hero-list{

    margin:35px 0;

}

.hero-list li{

    margin-bottom:14px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.large{

    padding:16px 38px;

}

.store-buttons{

    display:flex;

    gap:20px;

}

.store-buttons img{

    width:170px;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    width:380px;

    margin:auto;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

/*======================================================
    REUSABLE FEATURE SECTION
======================================================*/

.feature-section {
    background: linear-gradient( 180deg, #0f56b7 0%, #34c7d8 100% );
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

    /* Decorative circles */

    .feature-section::before {
        content: "";
        width: 280px;
        height: 280px;
        position: absolute;
        top: -140px;
        left: -120px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }

    .feature-section::after {
        content: "";
        width: 220px;
        height: 220px;
        position: absolute;
        right: -90px;
        bottom: -90px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: white;
    color: #0b57b6;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
}

.section-heading p {
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
    opacity: .95;
}

/*======================================================
GRID
======================================================*/

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*======================================================
LEFT
======================================================*/

.feature-image {
    text-align: center;
}

.feature-main-img {
    width: 420px;
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
}


/*======================================================
SECTION 01 - THREE PHONE SHOWCASE
======================================================*/

.phones {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin: 10px auto 0;
}

.phones img {
    display: block;
    flex: 0 0 auto;
    width: 110px;
    height: auto;
    max-width: none;
    margin: 0;
    object-fit: contain;
}

.phones img:nth-child(2) {
    width: 130px;
}

/*======================================================
RIGHT
======================================================*/

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 28px;
    transition: .35s;
}

    .feature-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.18);
    }

    .feature-card h3 {
        color: #ffe36a;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .feature-card p {
        line-height: 1.8;
        font-size: 17px;
    }

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

.feature-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

/*==================================================
SECTION 02
==================================================*/

.alt-section {
    background: linear-gradient( 180deg, #1765c4 0%, #1dbfd2 100% );
}

.reverse {
    grid-template-columns: 1fr 1fr;
}

.mini-title {
    display: inline-block;
    background: #ffffff;
    color: #0d5ab8;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .feature-title span {
        color: #ffe36a;
        display: block;
    }

.feature-description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    opacity: .95;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 40px;
}

.list-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.icon-circle {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #ffffff;
    color: #1561bf;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.list-item h4 {
    font-size: 22px;
    color: #ffe36a;
    margin-bottom: 8px;
}

.list-item p {
    line-height: 1.8;
    font-size: 17px;
}

.alt-section .feature-image img {
    width: 470px;
    margin: auto;
}

/*==================================================
SECTION 03
One App for Multiple Devices
==================================================*/

.devices-showcase {
    position: relative;
    width: 520px;
    height: 560px;
    margin: auto;
}

.device {
    position: absolute;
    height: auto;
}

/* Tablet - Back */

.tablet-device {
    width: 360px;
    left: 40px;
    top: 0;
    z-index: 1;
}

/* Phone - Middle */

.phone-device {
    width: 240px;
    left: 0;
    bottom: 20px;
    z-index: 2;
}

/* Watch - Front */

.watch-device {
    width: 170px;
    left: 120px;
    top: 140px;
    z-index: 3;
}

/*==================================================
SECTION 04
Translation
==================================================*/

.translation-section {
    position: relative;
    overflow: hidden;
}

/* Showcase */

.translation-showcase {
    position: relative;
    min-height: 520px;
}

/* World Map */

.world-map {
    width: 100%;
    opacity: .18;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Phone */

.translation-phone {
    width: 230px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}

/* Language Grid */

.language-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 35px 0;
}

    .language-grid span {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(10px);
        padding: 12px 18px;
        border-radius: 30px;
        font-size: 15px;
        transition: .3s;
    }

        .language-grid span:hover {
            background: white;
            color: #0f58b8;
            transform: translateY(-4px);
        }

/* Floating Cards */

.floating-language {
    position: absolute;
    padding: 12px 18px;
    background: white;
    color: #0d5ab8;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    animation: float 5s ease-in-out infinite;
}

.card1 {
    top: 60px;
    left: 0;
}

.card2 {
    top: 120px;
    right: 20px;
}

.card3 {
    bottom: 80px;
    left: 20px;
}

.card4 {
    bottom: 20px;
    right: 0;
}

/*==================================================
SECTION 05
Lifetime Access
==================================================*/

.lifetime-section {
    position: relative;
    overflow: hidden;
}

/* Showcase */

.lifetime-showcase {
    position: relative;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glow */

.premium-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    filter: blur(45px);
}

/* Phone */

.lifetime-phone {
    width: 240px;
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

/* Premium Card */

.premium-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: white;
    color: #1257b9;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.20);
    z-index: 3;
}

.premium-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFD54F;
    color: #1257b9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.premium-card h4 {
    margin-bottom: 4px;
    font-size: 20px;
}

.premium-card p {
    color: #666;
    font-size: 15px;
}

/*==================================================
SECTION 06
New Muslims
==================================================*/

.new-muslims-section {
    position: relative;
    overflow: hidden;
}

.new-muslims-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
}

.new-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    filter: blur(45px);
}

.new-muslims-image {
    width: 430px;
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

.welcome-card {
    position: absolute;
    right: 0;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: white;
    color: #1358b8;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,.20);
    z-index: 3;
}

.welcome-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #FFD54F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.welcome-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.welcome-card p {
    color: #666;
    font-size: 15px;
}

/*=================================
Subscription
=================================*/

.subscription-section{

    background:linear-gradient(180deg,#0f4fb8,#53d2e6);

}

    .subscription-section .feature-main-img {
        width: 420px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Right Words
=================================*/

.rightwords-section {
    background: linear-gradient(180deg,#1150bb,#57d4e5);
}

    .rightwords-section .feature-main-img {
        width: 380px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Children
=================================*/

.children-section {
    background: linear-gradient(180deg,#1356c0,#5bd6e6);
}

    .children-section .feature-main-img {
        width: 430px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Children
=================================*/

.children-section{

    background:linear-gradient(180deg,#1356c0,#5bd6e6);

}

    .children-section .feature-main-img {
        width: 430px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Gift
=================================*/

.gift-section {
    background: linear-gradient(180deg,#0d4fb8,#58d3e5);
}

    .gift-section .feature-main-img {
        width: 390px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Spiritual Growth
=================================*/

.growth-section {
    background: linear-gradient(180deg,#1253bc,#59d5e5);
}

    .growth-section .feature-main-img {
        width: 420px;
        max-width: 100%;
        display: block;
        margin: auto;
    }

/*=================================
Final CTA
=================================*/

.final-cta {
    padding: 90px 20px;
    background: linear-gradient(180deg,#0d4db7,#4fd2e4);
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: auto;
}

    .cta-box h2 {
        color: #ffd34d;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .cta-box p {
        color: #fff;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.store-buttons img {
    height: 52px;
}

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

.site-footer {
    background: #0a2f7d;
    color: white;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 40px;
}

.footer-logo {
    width: 70px;
    margin-bottom: 15px;
}

.site-footer h4 {
    margin-bottom: 20px;
}

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

.site-footer li {
    margin-bottom: 10px;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.store-btn {
    width: 150px;
    display: block;
    margin-bottom: 12px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .newsletter input {
        padding: 12px;
        border: none;
        border-radius: 30px;
    }

    .newsletter button {
        padding: 12px;
        border: none;
        border-radius: 30px;
        background: #ffd54f;
        cursor: pointer;
        font-weight: 600;
    }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.site-footer hr {
    margin: 40px 0 20px;
    opacity: .25;
}

.copyright {
    text-align: center;
    opacity: .75;
}

