/* =====================================================
   RESET GLOBAL
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI", Roboto, Arial, sans-serif;
    background:#ffffff;
    color:#0f172a;
    line-height:1.6;
    overflow-x:hidden;
}

/* =====================================================
   VARIABLES
===================================================== */

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --orange:#ff7a00;

    --dark:#0f172a;
    --dark-light:#1e293b;

    --text:#334155;
    --text-light:#64748b;

    --border:#e2e8f0;

    --white:#ffffff;

    --section:#f8fafc;

    --shadow:0 10px 30px rgba(15,23,42,0.08);
}

/* =====================================================
   LOADER
===================================================== */

#loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-logo{
    font-size:34px;
    font-weight:700;
    color:var(--dark);
    letter-spacing:1px;
}

/* =====================================================
   HEADER
===================================================== */

.header-top{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0px 5%;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(15,23,42,0.06);

    z-index:1000;
}

/* =====================================================
   LOGO
===================================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    object-fit:c2ntain;

}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn{
    text-decoration:none;

    background:var(--primary);
    color:white;

    padding:11px 18px;

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    transition:0.3s ease;
}

.login-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* =====================================================
   SEARCH ICON
===================================================== */

.search-icon{
    width:44px;
    height:44px;

    border:none;
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    color:var(--dark);

    cursor:pointer;

    font-size:18px;

    transition:0.3s ease;
}

.search-icon:hover{
    background:rgba(15,23,42,0.06);
}

/* =====================================================
   SEARCH OVERLAY
===================================================== */

.search-box{
    position:fixed;

    top:92px;
    left:0;

    width:100%;
    height:0;

    overflow:hidden;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    display:flex;
    align-items:flex-start;
    justify-content:center;

    transition:0.4s ease;

    z-index:1500;
}

.search-box.active{
    height:120px;
    padding:22px 0;
}

/* =====================================================
   SEARCH CONTAINER
===================================================== */

.search-container{
    width:100%;
    max-width:650px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:0 20px;
}

.search-container input{
    flex:1;

    padding:15px 18px;

    border-radius:14px;
    border:1px solid var(--border);

    background:#ffffff;

    font-size:15px;

    outline:none;

    transition:0.3s ease;
}

.search-container input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.close-search{
    width:46px;
    height:46px;

    border:none;

    background:var(--dark);
    color:white;

    border-radius:12px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s ease;
}

.close-search:hover{
    background:var(--dark-light);
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{
    background:transparent;
    border:none;

    display:flex;
    flex-direction:column;
    justify-content:center;

    cursor:pointer;

    padding:6px;
}

.hamburger span{
    width:26px;
    height:3px;

    background:var(--dark);

    margin:3px 0;

    border-radius:20px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.main-menu{
    position:fixed;

    top:0;
    right:-340px;

    width:320px;
    height:100vh;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-left:1px solid rgba(15,23,42,0.08);

    display:flex;
    flex-direction:column;

    padding:25px;

    z-index:2000;

    transition:0.4s ease;
}

.main-menu.active{
    right:0;
}

/* =====================================================
   MENU CLOSE
===================================================== */

.menu-close{
    align-self:flex-end;

    background:none;
    border:none;

    font-size:24px;

    color:var(--dark);

    cursor:pointer;
}

/* =====================================================
   MENU LINKS
===================================================== */

.main-menu ul{
    list-style:none;

    margin-top:50px;

    flex:1;
}

.main-menu ul li{
    margin-bottom:22px;
}

.main-menu ul li a{
    text-decoration:none;

    color:var(--dark);

    font-size:18px;
    font-weight:500;

    transition:0.3s ease;
}

.main-menu ul li a:hover,
.main-menu ul li a.active{
    color:var(--orange);
    padding-left:6px;
}

/* =====================================================
   MENU FOOTER
===================================================== */

.menu-footer{
    border-top:1px solid rgba(15,23,42,0.08);

    padding-top:18px;

    text-align:center;

    color:var(--text-light);

    font-size:13px;
}

/* =========================
   TIMELINE HERO
========================= */

.timeline-hero{
    position:relative;
    width:100%;
    min-height:10vh;
    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.70)),
    url('images/about-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:50px 8%;
    overflow:hidden;
}

.timeline-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    color:white;
}

.mini-title{
    display:inline-block;
    padding:30px 30px;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:50px;
    font-size:15px;
    letter-spacing:3px;
	margin-top:40px;
    margin-bottom:15px;
    backdrop-filter:blur(10px);
}

.timeline-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.timeline-content p{
    font-size:20px;
    color:#d1d5db;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

/* TIMELINE */

.timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-top:90px;
    gap:30px;
}

.timeline-line{
    position:absolute;
    top:28px;
    left:0;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.2);
    overflow:hidden;
}

.timeline-line::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:#d4af37;
    animation:lineMove 5s infinite linear;
}

@keyframes lineMove{
    0%{
        left:-100%;
    }
    100%{
        left:100%;
    }
}

.timeline-item{
    position:relative;
    z-index:2;
    width:25%;
}

.circle{
    width:55px;
    height:55px;
    background:#111827;
    border:4px solid #d4af37;
    border-radius:50%;
    margin:auto;
    margin-bottom:25px;
    transition:0.4s;
}

.timeline-item:hover .circle{
    transform:scale(1.15);
    background:#d4af37;
}

.timeline-item h3{
    font-size:24px;
    margin-bottom:10px;
    font-weight:600;
}

.timeline-item span{
    font-size:15px;
    color:#cbd5e1;
    letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .timeline-content h1{
        font-size:48px;
    }

    .timeline{
        flex-direction:column;
        align-items:center;
        gap:50px;
    }

    .timeline-line{
        display:none;
    }

    .timeline-item{
        width:100%;
    }

}

@media(max-width:600px){

    .timeline-content h1{
        font-size:38px;
    }

    .timeline-content p{
        font-size:17px;
    }

}

/* ABOUT SECTION */

.about-section{
    padding:100px 8%;
}

.gray-bg{
    background:#edf2f7;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.reverse{
    flex-direction:row-reverse;
}

.about-text{
    flex:1;
}

.section-tag{
    display:inline-block;
    margin-bottom:20px;
    padding:8px 18px;
    background:#0f172a;
    color:white;
    font-size:13px;
    letter-spacing:2px;
    border-radius:50px;
}

.about-text h2{
    font-size:48px;
    margin-bottom:30px;
    color:#0f172a;
    line-height:1.2;
}

.about-text p{
    margin-bottom:20px;
    color:#4b5563;
    font-size:17px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    transition:0.4s;
}

.about-image img:hover{
    transform:scale(1.02);
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-container{
        flex-direction:column;
    }

    .reverse{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }

    .about-text h2{
        font-size:36px;
    }

    .about-image img{
        height:400px;
    }

}

@media(max-width:600px){

    .about-section{
        padding:70px 6%;
    }

    .hero-content h1{
        font-size:35px;
    }

    .about-text h2{
        font-size:30px;
    }

    .about-text p{
        font-size:16px;
    }

}

/* =========================
   VALUES SECTION
   APPLE / FINTECH STYLE
========================= */

.values-section{
    position: relative;

    width: 100%;
    min-height: 220vh;

    overflow: hidden;

    padding: 100px 10%;

    background: #05070c;
}

/* =========================
   DARK OVERLAY
========================= */

.values-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(3,7,18,0.82),
        rgba(2,6,23,0.92)
    );
}

/* =========================
   CONTENT
========================= */

.values-content{
    position: relative;
    z-index: 2;

    max-width: 1060px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

.values-header{
    text-align: center;

    max-width: 900px;

    margin: auto;
    margin-bottom: 100px;
	
}

/* MINI TITLE */

.values-mini{
    display: inline-block;

    color: #93c5fd;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 10px;

    margin-bottom: 15px;
	

    text-transform: uppercase;
}

/* TITLE */

.values-header h2{
    font-size: 72px;
    line-height: 1.05;

    color: white;

    font-weight: 800;

    margin-bottom: 28px;
}

/* TEXT */

.values-header p{
    color: #94a3b8;

    font-size: 20px;

    line-height: 1.9;
}

/* =========================
   VALUE CARD
========================= */

.value-card{
    position: relative;

    width: 500px;

    padding: 15px;

    margin-bottom: 20px;

    border-radius: 26px;

    background:
    rgba(255,255,255,0.045);

    border:
    1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    overflow: hidden;

    transition: all 0.4s ease;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.35);
}

/* LEFT / RIGHT */

.left-card{
    margin-right: auto;
}

.right-card{
    margin-left: auto;
}

/* HOVER */

.value-card:hover{
    transform: translateY(-10px);

    background:
    rgba(255,255,255,0.07);

    border:
    1px solid rgba(96,165,250,0.15);

    box-shadow:
    0 35px 90px rgba(0,0,0,0.45);
}

/* =========================
   LIGHT REFLECTION
========================= */

.value-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: -70%;

    width: 50%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );

    transform: skewX(-20deg);
}

/* HOVER SHINE */

.value-card:hover::before{
    animation: shineValue 1s ease;
}

/* ANIMATION */

@keyframes shineValue{

    0%{
        left: -70%;
    }

    100%{
        left: 140%;
    }

}

/* =========================
   ICON
========================= */

.value-icon{
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,0.95),
        rgba(59,130,246,0.75)
    );

    color: white;

    font-size: 30px;

    margin-bottom: 35px;

    box-shadow:
    0 15px 40px rgba(37,99,235,0.28);
}

/* =========================
   TITLE
========================= */

.value-card h3{
    color: white;

    font-size: 36px;

    line-height: 1.2;

    margin-bottom: 24px;

    font-weight: 700;
}

/* =========================
   TEXT
========================= */

.value-card p{
    color: #cbd5e1;

    font-size: 17px;

    line-height: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:950px){

    .values-section{
        min-height: auto;
        padding: 120px 8%;
    }

    .values-header{
        margin-bottom: 80px;
    }

    .values-header h2{
        font-size: 44px;
    }

    .values-header p{
        font-size: 17px;
    }

    .value-card{
        width: 100%;

        padding: 38px;

        margin-bottom: 55px;
    }

    .left-card,
    .right-card{
        margin-left: auto;
        margin-right: auto;
    }

    .value-card h3{
        font-size: 28px;
    }

}

/* =========================
   FOOTER FINTECH LIGHT
========================= */

.footer{
    position: relative;

    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);

    color: #0f172a;

    padding: 90px 8% 35px;

    border-top: 1px solid rgba(15,23,42,0.08);

    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.footer-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

/* =========================
   TITLE
========================= */

.footer-box h3{
    font-size: 20px;
    margin-bottom: 18px;

    color: #0f172a;

    font-weight: 700;
}

/* TEXT */

.footer-box p{
    color: #475569;

    line-height: 1.7;

    margin-bottom: 12px;

    font-size: 14px;
}

/* ICONS */

.footer-box i{
    margin-right: 10px;

    color: #2563eb;

    font-size: 15px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.social-icons a{
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(37,99,235,0.08);

    color: #2563eb;

    transition: all 0.3s ease;

    border: 1px solid rgba(37,99,235,0.15);
}

/* HOVER */

.social-icons a:hover{
    background: #2563eb;
    color: white;

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    margin-top: 60px;

    text-align: center;

    border-top: 1px solid rgba(15,23,42,0.08);

    padding-top: 22px;

    color: #64748b;

    font-size: 13px;
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position: fixed;

    bottom: 22px;
    right: 22px;

    width: 60px;
    height: 60px;

    background: #25d366;

    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.18);

    z-index: 999;

    transition: all 0.3s ease;
}

/* HOVER */

.whatsapp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:800px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons{
        justify-content: center;
    }
}