/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:#1b2b40;
    background:#fff;
    font-weight:400;
}

a{
    text-decoration:none;
}

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

.container{
    max-width:1180px;
}

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

.hero{
    position:relative;
    height:600px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:url("../images/hero-bg.png") center center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.25);
}

.hero .container{
    max-width:1100px;
    width:100%;
    padding:0;
    position:relative;
    z-index:2;
}

.hero-row{
    min-height:600px;
    align-items:center;
}

.logo{
    width:170px;
    height:auto;
    margin-left:-22px;
    margin-bottom:-25px;
}

.hero-left{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.hero h1{
    font-size:48px;
    font-weight:700;
    line-height:1.1;
    color:#084C73;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.hero h1 span{
    color:#1D9BF0;
}

.hero-text{
    max-width:470px;
    font-size:14px;
    line-height:19px;
    color:#1f2933;
    font-weight:500;
    margin-bottom:20px;
}

.feature-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px 12px;
    max-width:620px;
}

.feature-pill{
    height:39px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 16px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.95);
    background:rgba(255,255,255,.28);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:none;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.feature-pill i{
    font-size:15px;
    color:#333;
}

.download-buttons{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:26px;
    margin-bottom:35px;
}

.download-buttons img{
    height:48px;
    filter:none;
}

.mobile-img{
    width:auto;
    height:545px;
    max-width:none;

    margin:0;

    object-fit:contain;

    filter:drop-shadow(0 18px 28px rgba(0,0,0,.22));
}



/* ==========================================
   ABOUT SECTION
========================================== */

.about-section{
    padding:80px 0 75px;
    background:#fff;
}

.about-section .container{
    max-width:936px;
    width:100%;
    padding:0;
}

.about-section .row{
    align-items:center;
}

.about-section .col-lg-5{
    width:48%;
}

.about-section .col-lg-7{
    width:52%;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#0b4d72;
    line-height:1.2;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.section-text{
    font-size:14px;
    line-height:19px;
    color:#333;
    margin-bottom:18px;
    max-width:455px;
}

.about-list{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-list li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
    font-size: 13px;
    color: #333;
    line-height: 18px;
}

.about-list li i{
    font-size:12px;
    color:#333;
}

.about-image{
    width:455px;
    height:309px;
    overflow:hidden;
    border-radius:22px;
    box-shadow:none;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* ==========================================
   WHY CHOOSE SECTION
========================================== */

.why-section{
    background:#109fec;
    padding:28px 0 36px;
    position:relative;
}

.why-section .container{
    max-width:980px;
}

.why-title{
    text-align:center;
    font-size:26px;
    font-weight:700;
    color:#fff;
     margin-bottom:22px;
    line-height:1.2;
}

.feature-card{
    height:155px;
    padding:14px 16px;
    border-radius:12px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.45);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:none;
    transition:.3s ease;

    display:flex;
    flex-direction:column;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 35px rgba(0,0,0,.22);
}

.icon-circle{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
}

.icon-circle i{
    font-size:14px;
    color:#109fec;
}

.feature-card h4{
    font-size:13px;
    font-weight:600;
    color:#fff;
    line-height:1.3;
    margin-bottom:6px;
}

.feature-card p{
    font-size:9px;
    color:#fff;
    line-height:1.45;
    margin:0;
    opacity:.95;
}

.why-section .row{
    row-gap:16px;
}

/* ==========================================
   DOWNLOAD SECTION
========================================== */

.download-section{
    padding:90px 0;
    background:#fff;
    text-align:center;
}

.download-section .container{
    max-width:820px;
}

.download-section h2{
    font-size:42px;
    font-weight:700;
    color:#0b4d72;
    margin-bottom:22px;
    line-height:1.2;
}

.download-section p{
    font-size:15px;
    line-height:28px;
    color:#555;
    max-width:760px;
    margin:0 auto;
}

.download-btns{
    margin-top:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.download-btns img{
    height:50px;
    transition:.3s;
    filter:drop-shadow(0 8px 15px rgba(0,0,0,.18));
}

.download-btns img:hover{
    transform:translateY(-2px);
}

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

footer{
    margin:0;
}

.footer-top{
    position:relative;
    width:100%;
    height:180px;
    padding:0;
    background:url("../images/footer-bg.png") center center/cover no-repeat;
    overflow:hidden;
}

.footer-top::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0, 51, 80, 0.80);
}

.footer-top .container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1180px;
    height:100%;
}

.footer-top .row{
    height:100%;
    align-items:center;
}

.footer-logo{
    width:125px;
    margin:0 auto -22px;
    display:block;
}

.footer-brand{
    color:#fff;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    line-height:1;
    margin-top:0;
    padding-top:0;
}

.footer-top h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:12px;
}

.footer-top p{
    color:#fff;
    font-size:14px;
    margin-bottom:4px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:10px;
}

.social-icons a{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#003350;
    font-size:12px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-4px);
}

.footer-col{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:140px;
}

.footer-col::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:120px;
    background:rgba(255,255,255,.7);
}

.footer-bottom{
    width:100%;
    background:#109FEC;
    color:#fff;
    padding:7px 0;
    font-size:10px;
}

.footer-bottom .container{
    width:100%;
    max-width:940px;
    margin:0 auto;
}

.footer-bottom .row{
    align-items:center;
}

.footer-bottom a{
    color:#fff;
    margin-left:16px;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:991px){

.hero{
    height:auto;
    padding:70px 0;
    text-align:center;
}

.hero-row{
    min-height:auto;
}

.hero-text{
    margin:0 auto 25px;
}

.feature-list{
    justify-content:center;
    margin:auto;
}

.download-buttons{
    justify-content:center;
}

.mobile-img{
    width:240px;
    height:auto;
    margin:50px auto 0;
}

.about-section,
.download-section{
    padding:70px 0;
    text-align:center;
}

.why-section{
    padding:40px 0;
    text-align:center;
}

.about-list li{
    justify-content:center;
}

.about-image{
    margin-top:40px;
}

.feature-card{
    height:auto;
}

.footer-top{
    height:auto;
    padding:40px 0;
    text-align:center;
}

.footer-top .container,
.footer-top .row{
    height:auto;
}

.footer-col::after{
    display:none;
}

.footer-top .row>div{
    margin-bottom:35px;
}

.footer-bottom .row{
    gap:10px;
}

.hero-left{
    align-items:center;
}

.logo{
    margin:0 auto 10px;
}

}

@media (max-width:576px){

.logo{
    width:82px;
}

.hero h1{
    font-size:34px;
}

.hero-text{
    font-size:14px;
    line-height:24px;
}

.feature-pill{
    width:100%;
    justify-content:center;
}

.mobile-img{
    width:210px;
    height:auto;
}

.section-title,
.why-title,
.download-section h2{
    font-size:32px;
}

.download-buttons img,
.download-btns img{
    height:44px;
}

.footer-top h3{
    font-size:24px;
}

.footer-top p{
    font-size:15px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom a{
    margin:0 8px;
}

}



.footer-bottom .col-lg-6:first-child{
    padding-left:20px;
}

.footer-bottom .col-lg-6:last-child{
    padding-right:20px;
}

.hero-right{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    height:600px;
    padding-right:40px;
}

/* ANIMATIONS */

.hero-left{
    animation:fadeLeft 1s ease forwards;
}

.mobile-img{
    animation:phoneUp 1.1s ease forwards, floatPhone 3s ease-in-out infinite 1.2s;
}

.feature-pill,
.download-buttons img,
.download-btns img,
.social-icons a{
    transition:.3s ease;
}

.feature-pill:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.45);
}

.download-buttons img:hover,
.download-btns img:hover{
    transform:scale(1.06);
}

.about-image img{
    transition:.5s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-45px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes phoneUp{
    from{
        opacity:0;
        transform:translateY(70px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatPhone{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/* Scroll Reveal */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.hero-right{
    position:relative;
}

.water-splash{
    position:absolute;
    bottom:45px;
    right:40px;
    width:260px;
    height:90px;
    z-index:0;
    pointer-events:none;
}

.water-splash span{
    position:absolute;
    bottom:0;
    left:50%;
    width:18px;
    height:18px;
    border-radius:50%;
    background:rgba(20,153,236,.55);
    box-shadow:0 0 18px rgba(20,153,236,.45);
    animation:splash 2.2s ease-out infinite;
}

.water-splash span:nth-child(1){
    animation-delay:0s;
}

.water-splash span:nth-child(2){
    animation-delay:.25s;
}

.water-splash span:nth-child(3){
    animation-delay:.5s;
}

.water-splash span:nth-child(4){
    animation-delay:.75s;
}

@keyframes splash{
    0%{
        transform:translate(0,0) scale(.4);
        opacity:0;
    }
    20%{
        opacity:1;
    }
    100%{
        transform:translate(calc(-120px + 240px * var(--x)), -90px) scale(1.3);
        opacity:0;
    }
}

.water-splash span:nth-child(1){ --x:.1; }
.water-splash span:nth-child(2){ --x:.35; }
.water-splash span:nth-child(3){ --x:.65; }
.water-splash span:nth-child(4){ --x:.9; }

.mobile-img{
    position:relative;
    z-index:2;
}

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

.site-header{
    background:#fff;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.site-header .navbar{
    padding:4px 0;
}

.nav-logo{
    width:100px;
    height:auto;
}

.site-header .nav-link{
    color:#0b4d72;
    font-size:15px;
    font-weight:600;
    margin-left:24px;
    transition:.3s ease;
}

.site-header .nav-link:hover{
    color:#109fec;
}

.navbar-toggler{
    border:none;
}

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

@media (max-width:991px){

    .site-header .navbar-collapse{
        background:#fff;
        padding:15px 0;
        margin-top:10px;
        border-top:1px solid rgba(0,0,0,.08);
    }

    .site-header .nav-link{
        margin-left:0;
        padding:10px 0;
        text-align:center;
    }

}

/* ==========================================
   PRIVACY POLICY
========================================== */

.policy-section{
    padding:70px 0;
    background:#f8fbff;
}

.policy-section .container{
    max-width:900px;
}

.policy-title{
    font-size:42px;
    font-weight:700;
    color:#0b4d72;
    margin-bottom:10px;
}

.policy-date{
    color:#666;
    margin-bottom:35px;
}

.policy-section h2{
    color:#0b4d72;
    font-size:28px;
    font-weight:600;
    margin:35px 0 15px;
}

.policy-section h5{
    color:#1499ec;
    font-size:20px;
    font-weight:600;
    margin-top:25px;
}

.policy-section p,
.policy-section li{
    font-size:16px;
    line-height:1.9;
    color:#444;
}

.policy-section ul{
    padding-left:20px;
    margin-bottom:20px;
}

.policy-section hr{
    margin:40px 0;
    opacity:.15;
}

/* ==========================================
   TERMS & CONDITIONS
========================================== */

.terms-section{
    padding:70px 0;
    background:#f8fbff;
}

.terms-section .container{
    max-width:900px;
}

.terms-section .btn-primary{
    background:#109fec;
    border-color:#109fec;
    border-radius:50px;
    font-weight:500;
}

.terms-section .btn-primary:hover{
    background:#0b4d72;
    border-color:#0b4d72;
}

/* =====================================================
   MOBILE & TABLET RESPONSIVE FIXES
===================================================== */

/* Tablets */
@media (max-width: 991px) {

    .container{
        max-width:100%;
        padding:0 20px;
    }

    .hero{
        height:auto;
        padding:70px 0 40px;
        text-align:center;
    }

    .hero-row{
        min-height:auto;
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-right{
        height:auto;
        justify-content:center;
        padding:0;
        margin-top:40px;
    }

    .logo{
        margin:0 auto 20px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero-text{
        max-width:100%;
        margin:20px auto;
    }

    .feature-list{
        justify-content:center;
        max-width:100%;
    }

    .download-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .mobile-img{
        width:260px;
        height:auto;
        margin:auto;
    }

    .water-splash{
        display:none;
    }

    .about-section .row{
        flex-direction:column-reverse;
        text-align:center;
    }

    .about-section .col-lg-5,
    .about-section .col-lg-7{
        width:100%;
    }

    .about-image{
        width:100%;
        height:auto;
        margin:0 auto 40px;
    }

    .about-image img{
        border-radius:20px;
    }

    .section-text{
        max-width:100%;
    }

    .about-list{
        padding-left:0;
    }

    .about-list li{
        justify-content:center;
        list-style:none;
    }

    .feature-card{
        height:180px;
        min-height:180px;
    }

    .footer-col{
        min-height:auto;
        margin-bottom:30px;
    }

    .footer-col::after{
        display:none;
    }

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .col-lg-6{
        margin:8px 0;
    }

}


/* Mobile */
@media (max-width:768px){

    .container{
        padding:0 15px;
    }

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:32px;
    }

    .hero-text{
        font-size:15px;
        line-height:26px;
    }

    .feature-list{
        gap:12px;
    }

    .feature-pill{
        width:100%;
        justify-content:center;
        font-size:15px;
        padding:12px;
        height:auto;
    }

    .download-buttons img,
    .download-btns img{
        width:180px;
        height:auto;
    }

    .mobile-img{
        width:220px;
    }

    .section-title,
    .why-title,
    .download-section h2,
    .policy-title{
        font-size:30px;
    }

    .policy-section,
    .terms-section{
        padding:50px 0;
    }

    .policy-section h2{
        font-size:24px;
    }

    .policy-section h5{
        font-size:19px;
    }

    .policy-section p,
    .policy-section li{
        font-size:15px;
        line-height:1.8;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-brand{
        font-size:20px;
    }

}


/* Small Phones */
@media (max-width:480px){

    .hero{
        padding:40px 0;
    }

    .hero h1{
        font-size:28px;
    }

    .hero-text{
        font-size:14px;
    }

    .mobile-img{
        width:180px;
    }

    .section-title,
    .why-title,
    .download-section h2,
    .policy-title{
        font-size:26px;
    }

    .feature-card{
        height:auto;
        min-height:150px;
        padding:16px;
    }

    .feature-card h4{
        font-size:14px;
    }

    .feature-card p{
        font-size:11px;
        line-height:1.5;
    }

    .download-buttons img,
    .download-btns img{
        width:160px;
    }

    .footer-top{
        padding:40px 0;
    }

    .footer-bottom{
        font-size:13px;
    }

    .footer-bottom a{
        display:inline-block;
        margin:5px;
    }

    .site-header .navbar{
        padding:8px 0;
    }

    .nav-logo{
        width:80px;
    }

}

/* ==========================================
   FINAL MOBILE RESPONSIVE FIX
========================================== */

@media (max-width:768px){

    /* HERO */
    .hero{
        height:auto;
        padding:28px 0 0;
        overflow:hidden;
        text-align:center;
    }

    .hero .container{
        padding:0 15px;
    }

    .hero-row{
        min-height:auto;
    }

    .hero-left{
        width:100%;
        align-items:center;
    }

    .logo{
        width:155px;
        margin:-18px auto -30px;
    }

    .hero h1{
        font-size:27px;
        line-height:1.15;
        margin-top:0;
        margin-bottom:14px;
    }

    .hero-text{
        max-width:100%;
        margin:0 auto 16px;
        font-size:13px;
        line-height:20px;
    }

    .feature-list{
        width:100%;
        gap:8px;
    }

    .feature-pill{
        width:100%;
        height:auto;
        padding:9px 10px;
        justify-content:center;
        font-size:12px;
    }

    .download-buttons{
        margin:18px 0;
        gap:10px;
        flex-direction:row;
        justify-content:center;
        flex-wrap:nowrap;
    }

    .download-buttons img{
        width:125px;
        height:auto;
    }

    .hero-right{
        width:100%;
        height:auto;
        margin-top:15px;
        padding:0;
        justify-content:center;
    }

    .mobile-img{
        width:180px;
        height:auto;
        margin:0 auto;
    }

    /* ABOUT */
    .about-section{
        padding:40px 0;
    }

    .about-section .container{
        padding:0 15px;
    }

    .about-image{
        width:100%;
        margin:0 auto 25px;
    }

    .section-title{
        font-size:24px;
        margin-bottom:14px;
    }

    .section-text{
        font-size:12px;
        line-height:19px;
    }

    .about-list{
        width:max-content;
        max-width:100%;
        margin:0 auto;
        padding:0;
        text-align:left;
    }

    .about-list li{
        justify-content:flex-start;
        align-items:flex-start;
        margin-bottom:6px;
        font-size:11px;
        line-height:17px;
    }

    .about-list li i{
        flex-shrink:0;
        margin-top:2px;
    }

    /* WHY CHOOSE */
    .why-section{
        padding:32px 0;
    }

    .why-title{
        font-size:23px;
        margin-bottom:20px;
    }

    .feature-card{
        height:auto;
        min-height:130px;
        padding:14px;
        text-align:center;
        align-items:center;
    }

    .feature-card h4{
        font-size:13px;
        margin-bottom:6px;
    }

    .feature-card p{
        font-size:10px;
        line-height:1.5;
    }

    .icon-circle{
        width:32px;
        height:32px;
        margin-bottom:9px;
    }

    /* DOWNLOAD */
    .download-section{
        padding:45px 15px;
    }

    .download-section h2{
        font-size:24px;
        margin-bottom:14px;
    }

    .download-section p{
        font-size:12px;
        line-height:20px;
    }

    .download-btns{
        margin-top:22px;
        gap:10px;
    }

    .download-btns img{
        width:145px;
        height:auto;
    }

    /* FOOTER */
    .footer-top{
        height:auto;
        padding:35px 0;
    }

    .footer-top .container,
    .footer-top .row{
        height:auto;
    }

    .footer-top .row > div{
        margin-bottom:25px;
    }

    .footer-top .row > div:last-child{
        margin-bottom:0;
    }

    .footer-logo{
        width:105px;
        margin:0 auto -15px;
    }

    .footer-brand{
        font-size:16px;
    }

    .footer-top h3{
        font-size:18px;
        margin-bottom:8px;
    }

    .footer-top p{
        font-size:12px;
    }

    .footer-col{
        min-height:auto;
        margin-bottom:25px;
    }

    .footer-col::after{
        display:none;
    }

    .footer-bottom{
        padding:8px 10px;
        font-size:9px;
        text-align:center;
    }

    .footer-bottom .col-lg-6{
        margin:3px 0;
    }
}