/* =======================
   HERO SECTION
   =======================*/

.hero-section{

    position:relative;

    min-height:100vh;

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    padding:50px 0;

}

/* .hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px; 
} */

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.container{

    position:relative;

    z-index:2;

}

.top-badge{

display:inline-flex;

align-items:center;

gap:8px;

width: 280px;

height: 38px;

padding:8px 16px;

border-radius:50px;

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(10px);

color:rgb(217, 214, 214);

font-size: 14px;

font-weight: 400;

margin-bottom:35px;

}

.top-badge i{

color:#2b73ff;

}

.hero-content h1{

font-size:64px;

font-weight:700;

line-height:115%;

color:#fff;

}

.hero-content h1 span{

display:block;

color:#2b73ff;

}

.hero-content p{

font-size:25px;

line-height:1.6;

color:#FFFFFF;

text-align: center;

margin:40px auto;

max-width:700px;

}

.hero-btns{

display:flex;

justify-content:center;

gap:30px;

margin-bottom:50px;

flex-wrap:wrap;

}

.btn-download{

background:#1656d8;

padding:16px 40px;

color:#fff;

border-radius:12px;

}

.btn-download:hover{

background:#2b73ff;

color:#fff;

}

.btn-watch{

background:transparent;

color:#fff;

border:1px solid rgba(255, 255, 255, 0.945);

padding:16px 40px;

border-radius:12px;

}

.btn-watch:hover{

background:rgba(255, 255, 255, 0.244);

color:#000;

}

.stats-row{
margin-top:10px;
margin-left: 10px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1px);
    border-radius: 25px;
    width: 90%;
    
    padding: 20px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    border: 1px solid #2b73ff;
    box-shadow: 0 0 25px 5px rgba(48, 116, 254, 0.35);
}

.stat-box i {
    font-size: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2564eb28;
    color: #2563EB;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px auto; /* <-- THIS centers the circle itself */
}

.stat-box h2{

font-size:25px;

color:#fff;

font-weight:500;

}

.stat-box p{

margin:0;

font-size:18px;

color:#d5d5d5;

}

/* .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0d6efd; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
} */

/* Tablet */

@media(max-width:991px){

.hero-section{

padding:30px 0;

}

.hero-content h1{

font-size:52px;

}

.hero-content p{

font-size:20px;

}

.stat-box{

padding:30px 15px;

 margin-top: 30px;

}



}

/* Mobile */

@media(max-width:767px){

.hero-section{

min-height:auto;

padding:50px 0 50px;

}

.hero-content h1{

font-size:38px;

line-height:1.3;

}

.hero-content p{

font-size:16px;

line-height:1.6;

}

.hero-btns{

flex-direction:column;
align-items: center;

}

.hero-btns .btn{

width:70%;

}

.stat-box{

padding:25px 10px;
 margin-top: 20px;
 height: 25vh;

}

.stat-box h2{

font-size:30px;

}

.stat-box p{

font-size:15px;

}

.top-badge{

font-size:13px;

padding:8px 16px;

}

}


/* =======================
   DAILY VERSE SECTION
   ======================= */
.daily-verse-section {
    padding: 50px 0;
    background-color: #eef9ff;
    overflow: hidden;
}


/* Badge */
.dv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef9ff;
    color: #2f6bff;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid #2f6bff;
    margin-bottom: 22px;
}

.dv-badge i {
    font-size: 14px;
}

/* Heading */
.dv-heading {
    font-size: 38px;
    font-weight: 550;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 18px;
}

.dv-heading .text-gradient {
    background: linear-gradient(90deg, #2f6bff, #5a8dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dv-text {
    font-size: 21px;
    color: #6b7280;
    max-width: 680px;
    margin-bottom: 30px;
}

/* Action icons */
.dv-actions {
    display: flex;
    gap: 52px;
}

.dv-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dv-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e5e7eb47;
    background: #cddcff61;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6bff;
    font-size: 20px;
    /* cursor: pointer; */
    transition: all 0.3s ease;
}

.dv-action-item span {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* .dv-icon-btn:hover {
    background: #2f6bff;
    color: #fff;
    border-color: #2f6bff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(47, 107, 255, 0.25);
} */

/* Verse Card */
.dv-verse-card {
    position: relative;
    border-radius: 22px;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    background-color: #2b2b2b; 
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dv-verse-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.dv-verse-content {
    position: relative;
    z-index: 2;
    padding: 65px;
    color: #fff;
}

.dv-verse-text {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.4;
    /* margin-bottom: 14px; */
}

.dv-verse-ref {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #6fa3ff;
}

   /* PHONE — fixed image  */

   .dv-phone-wrap {
    top:-20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-left: 60px;
}

.dv-phone-clip {
    height: 300px; 
    position: relative;
}

.dv-phone-img {
    
    width: 320px;      /* Increase phone size */
    height: auto;         
    display: block;
    object-fit: contain;

    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.25))
            drop-shadow(0 45px 60px rgba(0,0,0,0.35));

    transition: transform 0.3s ease;

}

.dv-phone-wrap::after {
    content: "";
    position: absolute;
    max-height: 300px;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    width: 65%;
    height: 40px;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.dv-phone-clip::after {
    content: "";
    position: absolute;
    left: -15px;
    right: 0;
    bottom: -90px;
    height: 80px;
    width: 100%;

    background: linear-gradient(
        to top,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
        transform: scale(1.15);
    transform-origin: center;
}


/* Notification card */
.dv-notification {
    position: absolute;
    top: 45%;
    left: 15px;
    width: 100%;
    background: #fff;
    border: 1.5px solid #4f8ef7;
    border-radius: 16px;
    padding: 8px 8px;
    box-shadow: 0 18px 35px rgba(20, 30, 60, 0.18);
    z-index: 10;
}

.dv-notif-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dv-notif-app {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.dv-notif-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: #d62828;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}

.dv-notif-time {
    font-size: 12px;
    color: #9aa0a6;
}

.dv-notif-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.dv-notif-text {
    font-size: 12px;
    line-height: 1.5;
    color: #3c3c43;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .daily-verse-section {
        padding: 50px 0;
    }

    .dv-badge{
        margin-bottom: 12px;
    }

    .dv-verse-card {
        min-height: 300px;
    }
    .dv-verse-text {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    }
    .dv-verse-content {
        margin-bottom: 45px;
        padding: 20px;
    }
    .dv-heading {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .dv-phone-clip {
    height: 320px; 
    }
    .dv-phone-img {
        max-width: 280px;
    }
    .dv-notification {
        top: 38%;
        left: 6%;
        width: 90%;
        padding: 13px 15px;
    }
    .dv-notif-title {
        font-size: 15px;
    }
    .dv-notif-text {
        font-size: 12px;
    }
    .dv-text{
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .dv-text {
        max-width: 100%;
    }
    .dv-actions {
        margin-bottom: 10px;
    }
    .dv-verse-card {
        min-height: 350px;
    }
    .dv-verse-text {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.3;
    }
    .dv-verse-content {
        margin-bottom: 45px;
        padding: 20px;
    }
    .dv-phone-img {
        max-width: 220px;
    }
    .dv-notification {
        left: 25px;
        width: 83%;
        padding: 11px 13px;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {
    .dv-heading {
        font-size: 26px;
    }
    .dv-phone-wrap {
        padding-left: 20px;
    }
    .dv-phone-clip {
    height: 250px; 
    }
    .dv-phone-img {
        max-width: 250px;
    }
    .dv-notification {
        left: 25px;
        width: 78%;
        padding: 11px 13px;
        border-radius: 12px;
    }
    .dv-notif-title {
        font-size: 14px;
    }
    .dv-notif-text {
        font-size: 11.5px;
    }
}



/* =======================
   FEATURES SECTION
   =======================*/
.features-section {
    padding: 50px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.features-header { max-width: 900px; margin: 0 auto 40px; }

.fx-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #2f6bff;
    color: #2f6bff;
    font-size: 15px;
    font-weight: 300;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.fx-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 18px;
}

.fx-heading .text-gradient {
    background: linear-gradient(90deg, #2f6bff, #5a8dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fx-subtext { font-size: 20px; color: #6b7280; line-height: 1.5; }

/* Tabs */
.fx-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
    margin-bottom: 50px;
}

.fx-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 62px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.fx-tab i { font-size: 15px; }
.fx-tab.active { background: rgba(17, 59, 142, 0.016); color: #2563EB; }

/* Panels */
.fx-panel { display: none; }
.fx-panel.active { display: block; animation: fxPanelFade 0.4s ease; }

@keyframes fxPanelFade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fx-step {
  display: flex;
  align-items: center;
  gap: 15px; 
}

/* Content left column */
.fx-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #4582f244;
    color: #2f6bff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 0 8px rgba(47, 106, 255, 0.159);
}

.fx-content-title { font-size: 20px; font-weight: 500; color: #2f6bff; margin-bottom: 14px; }

.fx-content-desc {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.362);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 450px;
}

/*FEATURE LIST —  timeline */
.fx-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
 
/* Vertical timeline line —all icons */
.fx-feature-list::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 0;
    width: 2px;
    background: #2564eb34;
    z-index: 0;
}
 

/* Cover the line below the last icon so it stops exactly at the icon bottom */
.fx-feature-item:last-child::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: 0;
    width: 4px;
    background: #ffffff;
    z-index: 1;
}


 
/* Button row: icon LEFT (on line) + card RIGHT */
.fx-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
}
 
/* Icon */
.fx-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #d0dcf5;
    color: #0b0e12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
    position: relative;
    z-index: 2;
}
 
/* Card box */
.fx-feature-text {
    flex: 1;
    background: #fff;
    border: 1.5px solid #d0dcf5;
    border-radius: 14px;
    padding: 14px 18px;
    transition: all 0.25s ease;
}
 
.fx-feature-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #020e228c;
    margin-bottom: 5px;
    transition: color 0.25s ease;
}
 
.fx-feature-text p {
    font-size: 13.5px;
    color: #b0b8c9;
    line-height: 1.6;
    margin: 0;
    transition: color 0.25s ease;
}
 
/* ACTIVE STATE*/
.fx-feature-item.active .fx-feature-icon {
    background: #2563EB;
    
    color: #f7f3f3;
    box-shadow: 0 6px 16px rgba(47, 107, 255, 0.3);
}
 
.fx-feature-item.active .fx-feature-text {
    background: #2564eb0e;
    border-color: #c0d4ff;
}
 
.fx-feature-item.active .fx-feature-text h4 {
    color: #111827;
    font-weight: 700;
}
 
.fx-feature-item.active .fx-feature-text p {
    color: #374151;
}
 
/*HOVER on inactive */
.fx-feature-item:not(.active):hover .fx-feature-text {
    border-color: #b8d0ff;
    box-shadow: 0 6px 18px rgba(47, 107, 255, 0.07);
}
 
.fx-feature-item:not(.active):hover .fx-feature-text h4 { color: #374151; }
.fx-feature-item:not(.active):hover .fx-feature-text p  { color: #6b7280; }
 
/* Make all child elements pass clicks through to the button */
.fx-feature-item * { pointer-events: none; }
 

/* 3-SLOT AJAX PHONE CAROUSEL*/
.fx-phones-wrap {
    position: relative;
    height: 540px;
    
}
.fx-phones-wrap::before {
    content: "";
    position: absolute;
    inset: -30px; /* expands shadow outside element */
    background: radial-gradient(
        ellipse at center,
        rgba(0, 120, 255, 0.35) 10%,
        rgba(0, 120, 255, 0.15) 50%,
        transparent 63%
    );
    filter: blur(15px);
    z-index: -1;
    border-radius: 40%;
}

.fx-phone-img {
    width: 0;
    height: auto;
}

.fx-phone-slot {
    position: absolute;
    top: 70px;
    display: block;
    border-radius: 28px;
    /* filter: drop-shadow(0 25px 45px rgba(20, 40, 100, 0.18));
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                right 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                z-index 0s 0.25s; */
    opacity: 0;
    z-index: 1;
    
}



.fx-phone-slot.is-ready { opacity: 0.96; }

/* Left position */
.fx-phone-slot[data-pos="left"] {
    left: 0;
    right: auto;
    width: 190px;
    top: 70px;
    z-index: -2;
    transform: perspective(1000px) translateX(50%) rotateY(20deg);
    transform-style: preserve-3d;
    
}

/* Right position */
.fx-phone-slot[data-pos="right"] {
    right: 0;
    left: auto;
    width: 190px;
    top: 70px;
    z-index: -2;
    transform: perspective(1000px) translateX(-50%) rotateY(-20deg);
    transform-style: preserve-3d;
    
}

/* Center position */
.fx-phone-slot[data-pos="center"] {
    left: 50%;
    right: auto;
    width: 240px;
    top: -17px;
    z-index: 2;
    transform: translateX(-50%);
    opacity: 1;
}

.fx-phones-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fx-phones-loading.d-none { display: none; }

/* RESPONSIVE */
@media (max-width: 991px) {
    .fx-tabs { gap: 20px;display: flex;justify-content: center;}
    .fx-tab { padding: 12px 18px; font-size: 15px; }
    .features-section { padding: 70px 0; }
    .fx-heading { font-size: 28px; }
    .fx-phones-wrap { height: 480px; }
    .fx-phone-slot[data-pos="center"] { width: 205px; top: -10px; }
    .fx-phone-slot[data-pos="left"],
    .fx-phone-slot[data-pos="right"] { width: 160px; top: 55px; }
    .fx-phone-slot[data-pos="left"] { left: 30px; }
    .fx-phone-slot[data-pos="right"] { right: 30px; }
}

@media (max-width: 767px) {
    .fx-tabs { gap: 8px;display: flex;justify-content: center;
    flex-wrap: wrap; }
    .fx-tab { padding: 10px 16px; font-size: 13px; }
    .fx-phones-wrap { height: 420px; }
    .fx-phone-slot[data-pos="center"] { width: 300px; top: -20px; }
    .fx-phone-slot[data-pos="left"],
    .fx-phone-slot[data-pos="right"] { width: 140px; top: 50px;}
    .fx-phone-slot[data-pos="left"] { left: -20px; }
    .fx-phone-slot[data-pos="right"] { right: -20px; }
}

@media (max-width: 575px) {
    .fx-heading { font-size: 24px; }
    .fx-subtext { font-size: 14px; }
    .fx-phones-wrap { height: 380px; }
    .fx-phone-slot[data-pos="center"] { width: 165px; top: -18px; }
    .fx-phone-slot[data-pos="left"],
    .fx-phone-slot[data-pos="right"] { width: 120px; top: 50px; }
    .fx-phone-slot[data-pos="left"] { left: -60px; }
    .fx-phone-slot[data-pos="right"] { right: -60px; }
}


/* ===============================
   WALK WITH GOD EVERY DAY SECTION
   ================================ */
.walk-section {
    position: relative;
    background: #2564eb1a;
    overflow: hidden;
}

.walk-top {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    
    overflow: hidden;
    padding: 60px 0 140px;
}

/* Photo covers the LEFT */
.walk-photo-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 82%;
    background-size: cover;
    background-position: center;
    background-color: #f7f3f0;

    /* box-shadow:
        inset -120px 0 70px 20px white,
        80px 0 50px 50px white; */

        box-shadow:
    inset -140px 0 80px 30px white,    /* bottom blur */
    300px 0 50px 50px white,
    0 20px 20px 20px white;            
}



 
/* Content block:right half */
.walk-content-side {
    left: -30px;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 5% 0 52%;
}

.walk-text {
    max-width: 580px;
    text-align: center;
}

.walk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #2f6bff;
    background: transparent;
    color: #2f6bff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.walk-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

.walk-heading .text-gradient {
    background: linear-gradient(90deg, #2f6bff, #5a8dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.walk-subtext {
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.416);
    line-height: 1.5;
}

/* TIMELINE CARD */
.walk-timeline-card {
    bottom: 20px;
    position: relative;
    z-index: 3;
    margin-top: -80px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(20, 40, 100, 0.12);
    padding: 20px 40px;
}

.walk-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Gradient connecting line behind icons */
.walk-timeline::before {
    content: "";
    position: absolute;
    top: 82px;   /* vertically centered on the icons */
    left: 7%;
    right: 7%;
    height: 3px;
    background: linear-gradient(90deg, #f5a623 0%, #e0245e 40%, #c026d3 70%, #7c3aed 100%);
    border-radius: 4px;
    z-index: 0;
}

.walk-step {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
    padding: 12px 8px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease;
}

.walk-step-visible {
    opacity: 1;
    transform: translateY(0);
}

.walk-step-label {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 16px;
}

.walk-step-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
    position: relative;
    z-index: 1;
}

.walk-icon-amber { background: #fff4e0; color: #f5a623; }
.walk-icon-pink  { background: #fdebf1; color: #fb51ed; }
.walk-icon-rose  { background: #fde2ef; color: #d6336c; }
.walk-icon-purple{ background: #f1e8ff; color: #7c3aed; }

.walk-step-dot {
    width: 0;
    height: 22px;
    border-left: 2px dotted #c0cce0;
    margin-bottom: 14px;
}

/* Cards */
.walk-step-card {
    background: #fff;
    border: 1.5px solid #eef1f6;
    border-radius: 14px;
    padding: 16px 16px;
    width: 80%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.walk-step-card h4 {
    font-size: 22px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

.walk-step-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}


/*HOVER: step background tint + card border matches step colour*/
.walk-step[data-color="amber"]:hover .walk-icon-amber { background: #f0a519; color: white; }
.walk-step[data-color="pink"]:hover .walk-icon-pink  { background: #f039c5; color: white; }
.walk-step[data-color="rose"]:hover .walk-icon-rose  {  background: #ed2432; color: white; }
.walk-step[data-color="purple"]:hover .walk-icon-purple {  background: #6e24e4; color: white; }

.walk-step[data-color="amber"]:hover .walk-step-card {border-color: #f5a623; box-shadow: 0 8px 20px rgba(245, 166, 35, 0.25);}
.walk-step[data-color="pink"]:hover  .walk-step-card { border-color: #e0245e; box-shadow: 0 14px 30px rgba(224, 36, 94, 0.18); }
.walk-step[data-color="rose"]:hover  .walk-step-card { border-color: #d6336c; box-shadow: 0 14px 30px rgba(214, 51, 108, 0.18); }
.walk-step[data-color="purple"]:hover .walk-step-card{ border-color: #7c3aed; box-shadow: 0 14px 30px rgba(124, 58, 237, 0.18); }

.walk-step:hover .walk-step-icon { transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .walk-content-side { padding-left: 50%; }
    .walk-heading { font-size: 34px; }
}

@media (max-width: 991px) {
    .walk-top { padding: 50px 0 160px; min-height: 300px; }
    .walk-photo-side { width: 50%; box-shadow:inset -50px 0 60px 20px white,100px 0 50px 50px white;}
    .walk-content-side { padding: 0 4% 0 52%; left: 20px; }
    .walk-heading { font-size: 28px; }
      .walk-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        position: relative;
    }

    .walk-timeline-card {
        margin-top: 0;
        padding: 20px 30px;
    }

    /* First row line */
    .walk-timeline::before,
    .walk-timeline::after {
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg, #f5a623 0%, #e0245e 100%);
        border-radius: 4px;
    }

    .walk-timeline::before {
        top: 82px;
    }

    /* Second row line */
    .walk-timeline::after {
        top: calc(90px + 320px); 
        background: linear-gradient(90deg, #c026d3  0%, #7c3aed 100%);
    }
}

@media (max-width: 767px) {
    .walk-top { flex-direction: column; padding: 0 0 160px; min-height: auto; }
    .walk-photo-side {
        position: relative;
        width: 100%;
        height: 260px;
        flex-shrink: 0;
        box-shadow:inset -50px 0 60px 20px white,80px 0 50px 50px white;
        
    }
    /* .walk-fade-overlay {
        width: 100%;
        background: linear-gradient(to bottom,
            transparent 30%,
            rgba(207,227,255,0.7) 60%,
            rgba(220,234,255,1) 90%);
    }
    .walk-bottom-shadow { width: 100%; } */
    .walk-content-side {
        padding: 24px 20px 0;
        left: -2px;
        justify-content: center;
    }
    
    .walk-text { text-align: center; max-width: 100%; }
    .walk-heading { font-size: 26px; }
    .walk-timeline::after {display: none;
    }
    
}

@media (max-width: 575px) {
    .walk-timeline { grid-template-columns: 1fr; row-gap: 36px; margin-top: 20px; }
    .walk-timeline::before {
        top: 0; bottom: 0;
        left: 34px; right: auto;
        width: 3px; height: auto;
        background: linear-gradient(180deg, #f5a623, #e0245e, #c026d3, #7c3aed);
    }
    .walk-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 14px;
    }
    .walk-step-label { position: absolute; top: -18px; left: 68px; }
    .walk-step-dot { display: none; }
    .walk-step-icon { margin-bottom: 0; flex-shrink: 0; }
    .walk-timeline-card { margin-top: -140px; }
}


/* =====================
   ABOUT SECTION 
   ===================== */
.about-section {
    padding: 30px;
    background: #ffffff;
    margin-right: 50px;
    overflow: hidden;
}

/* Badge */
.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c8d9ff;
    background: #fff;
    color: #2f6bff;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* Heading */
.ab-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #111827;
    margin-bottom: 25px;
}

.ab-heading .text-gradient {
    background: linear-gradient(90deg, #2f6bff, #5a8dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---- Tabs ---- */
.ab-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.ab-tab {
    padding: 10px 38px;
    border-radius: 10px;
    border: 2px solid #2564eb32;
    background: #fff;
    color: #374151;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* .ab-tab:hover {
    border-color: #2f6bff;
    color: #2f6bff;
} */

.ab-tab.active {
    background: #2f6bff;
    border-color: #2f6bff;
    color: #fff;
    
}

/* Content panels */
.ab-content {
    display: none;
    animation: abFadeIn 0.4s ease;
    position: relative;
    min-height: 320px;  
}

.ab-content.active {
    display: block;
}

@keyframes abFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ab-content-title {
    font-size: 24px;
    font-weight: 500;
    color: #2f6bff;
    margin-bottom: 8px;
}

.ab-list {
    padding-left: 30px;
    margin: 0;
    width: 90%;
}

.ab-list li {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 5px;
    position: relative;
}

.ab-list li::marker {
    color: #2f6bff;
}

/* RIGHT: fixed photo + switching icon card */
.ab-image-wrap {
    position: relative;
}


.ab-image-wrap{
    width:100%;
    margin:auto;
}

.ab-photo-box{
    border:2px solid #e3e8f5;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
}

.ab-photo-fixed{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    background-color: white;
    clip-path:url(#aboutImageClip);
}

/* Icon card — sits exactly at the bottom-left cut corner of the photo */
.ab-icon-card {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 155px;
    height: 155px;
    background: rgb(255, 253, 253);
    border-radius: 20px;
    border: 1.5px solid #edf0f8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* Icon A/B crossfade stack */
.ab-icon-stack {
    position: relative;
    width: 110px;
    height: 110px;
}

.ab-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.ab-icon.is-active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-section   { padding: 40px 0; }
    .ab-heading      { font-size: 33px; }
    .ab-photo-fixed  { height: 300px; }
    .ab-image-wrap   { width: 500px; margin-top: -70px; margin-bottom: -20px;}
    .ab-icon-card    { width: 130px; height: 130px; }
    .ab-icon-stack   { width: 85px; height: 85px; }
}

@media (max-width: 767px) { 
    .about-section   { padding: 20px 0; margin-right: 10px;}
    .ab-heading      { font-size: 26px; }
    .ab-photo-fixed  { height: 250px; }
    .ab-tabs         { gap: 8px; }
    .ab-tab          { padding: 9px 16px; font-size: 13px; }
    .ab-list {width: 100%;}
    .ab-image-wrap{ width:330px;margin-top: 1px;}
    .ab-icon-card    { width: 115px; height: 115px;}
}

@media (max-width: 575px) {
    .ab-heading      { font-size: 22px; }
    .ab-icon-card    { width: 100px; height: 100px; left: 7px; }
    .ab-icon-stack   { width: 68px; height: 68px; }
}




/* ==========================
   TESTIMONIALS SECTION 
   ========================== */
.testimonials-section {
    padding: 0px 0 40px;
    background: white;
    overflow: hidden;
}

.tm-header {
    margin-bottom: 52px;
}

.tm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #2563EB;
    background: #fff;
    color:#2563EB ;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tm-heading {
    font-size: 40px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
}

.tm-heading .text-gradient {
    background: linear-gradient(90deg, #2f6bff, #5a8dff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tm-subtext {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.371);
    font-weight: 500;
}

/* INFINITE MARQUEE TRACK */
.tm-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* The scrolling row */
.tm-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 20px 0 20px;
    animation: tmScroll 12s linear infinite;
}

.tm-track:hover {
    animation-play-state: paused;
}



@keyframes tmScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* REVIEW CARD — horizontal top + bottom glowing border lines*/
.tm-card {
    flex-shrink: 0;
    width: 360px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    border: 1.5px solid #eef1f8;
    overflow: hidden;
    transition: transform 0.3s ease;
}
 
.tm-card:hover { transform: translateY(-4px); }
 

.tm-card {
    flex-shrink: 0;
    width: 450px;
    border-radius: 18px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    position: relative;
    transition: transform 0.3s ease;
 
    /* border-box = gradient border, padding-box = white card fill */
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg,
            rgba(47, 107, 255, 0.08)   0%,
            rgba(47, 107, 255, 0.08)   calc(var(--spot, 50%) - 30%),
            rgba(47, 107, 255, 0.4)    calc(var(--spot, 50%) - 12%),
            rgba(110, 158, 255, 1)     var(--spot, 50%),
            rgba(47, 107, 255, 0.4)    calc(var(--spot, 50%) + 12%),
            rgba(47, 107, 255, 0.08)   calc(var(--spot, 50%) + 30%),
            rgba(47, 107, 255, 0.08)   100%
        ) border-box;
}
 
.tm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(47, 107, 255, 0.1);
}
 
/* All card content sits above the border layers */
.tm-card > * {
    position: relative;
    z-index: 1;
}
  


.tm-review {
    font-size: 20px;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

/* Author row */
.tm-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tm-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e5e7eb; /* fallback */
}

.tm-author h5 {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin: 0 0 4px;
}

.tm-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: #2f6bff;
}

.tm-stars span {
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-right: 2px;
}

.tm-stars i {
    font-size: 18px;
    color: #2f6bff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testimonials-section { padding: 70px 0 60px; }
    .tm-heading { font-size: 32px; }
    .tm-card { width: 430px; padding: 22px; }
    .tm-track { gap: 18px; animation-duration: 26s; }
}

@media (max-width: 767px) { 
    .tm-track { padding: 10px 0 10px; }
    .tm-heading { font-size: 26px; }
    .tm-card { width: 360px; }
    .tm-fade { width: 60px; }
    .tm-review { font-size: 12px;}
}

@media (max-width: 575px) {
    .tm-heading { font-size: 26px; }
    .tm-card { width: 300px; }
    .tm-fade { width: 60px; }
}




/*=========================
     DOWNLOAD SECTION
===========================*/

.download-section{
    background:#eef9ff;
    padding:40px 30px;
    overflow:hidden;
}

.download-wrapper{

    background:#ffffffd2;

    border-radius:45px;
    padding: 20px 10px;

    position:relative;

    overflow:hidden;

    min-height:550px;

}

/* LEFT IMAGE */

.download-image{

    position:relative;

    height:100%;

}

.hand-image{

    position:absolute;

    top: -190px;
    left: -120px;

    width:650px;

    max-width:none;

    /* animation:phoneFloat 4s ease-in-out infinite; */

}

@keyframes phoneFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/* CONTENT */

.download-content{

     margin-right: 25%;

}

.download-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin-top:30px;
    font-family: Junge;

}

.download-logo img{

    width:60px;

}

.download-logo h3{

    font-size:30px;

    font-weight:400;

    margin:0;

}

.download-content h2{
    font-size: 42px;
    font-weight: 600;

    line-height:1.2;

    margin-top:40px;


}

.download-content h2 span{

    color:#2f66e8;

}

.download-content p{

    font-size:20px;

    font-weight: 400;

    color:rgba(14, 4, 4, 0.564);

    line-height:1.3;

    max-width:500px;

    margin:20px auto 30px;

}

/* STORE */

.store-area{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.store-area a img{

    height:42px;
    width: 120px;
    transition:.3s;

}

.store-area a:hover img{

    transform:translateY(-5px);

}

.qr-box{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.qr-box img{

    width:75px;

    height: 75px;

}

.qr-box span{

    margin-top:12px;

    font-size:13px;

    font-weight:600;

}

/* FEATURES */

.download-features{

    display:flex;

    justify-content:flex-start;

    gap: 20px;

    padding: 20px 5px;

    flex-wrap:wrap;

}

.feature-pill{

    background:#E1EBFF;

    color:#222;

    border-radius:20px;

    padding:6px 15px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    font-weight: 400;

    transition:.3s;

}

.feature-pill i{

    color:#2f66e8;

}

/* .feature-pill:hover{

    background:#2f66e8;

    color:#fff;

    transform:translateY(-4px);

} */

/* .feature-pill:hover i{

    color:#fff;

} */

/* TABLET */

@media (max-width:991px){

    .download-wrapper{
        padding:30px 30px;
        min-height:auto;
    }

    /* Hide Hand Image */
    .download-image{
        display:none;
    }

    /* Content Full Width */
    .download-content{
        width:100%;
        text-align:center;
        padding:0;
    }

    .download-content h2{
        font-size:40px;
    }

    .download-content p{
        max-width:550px;
        margin:25px auto 20px;
        font-size:22px;
    }

    .store-area{
        gap: 20px;
        margin-bottom: 20px;
        justify-content:center;
    }

    .download-features{
        gap: 10px;
        justify-content:center;
    }

}


/* MOBILE */

@media (max-width:767px){

    .download-section{
        padding:40px 15px;
    }

    .download-wrapper{
        padding:20px 20px;
        border-radius:25px;
    }

    /* Hide Hand Image */
    .download-image{
        display:none;
    }

    .download-content{
        width:100%;
        text-align:center;
        padding:0;
    }

    .download-logo{
        justify-content:center;
        margin-bottom:20px;
    }

    .download-logo img{
        width:45px;
    }

    .download-logo h3{
        font-size:28px;
    }

    .download-content h2{
        margin-top: 20px;
        font-size:32px;
        line-height:1.3;
    }

    .download-content p{
        font-size:17px;
        line-height:1.5;
        margin:20px auto 30px;
    }

    .store-area{
        gap: 20px;
        display: flex;justify-content: center;flex-wrap: wrap;
    }

    .store-area a img{
        height:40px;
        width: 120px;
    }

    .qr-box img{
        width:80px;
    }

    .download-features{
        gap:10px;
        display: flex;justify-content: center;flex-wrap: wrap; 
    }

    .feature-pill{

        width:47%;
        font-size:12px;
    }

}