﻿/* ==========================================
   GENIUS FINANCIAL SERVICES
   FINAL STYLE.CSS
   PART 1
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#222;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:sticky;
    top:0;
    z-index:999;
    background:linear-gradient(90deg,#003366,#0055aa,#009688);
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    background:#fff;
    border:3px solid #FFD700;
}

.logo-text h2{
    color:#FFD700;
    font-size:30px;
    font-weight:700;
    line-height:1;
}

.logo-text span{
    color:#ffffff;
    font-size:15px;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:18px;
    align-items:center;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    padding:10px 16px;
    border-radius:8px;
    transition:.35s;
}

nav a:hover{
    background:#FFD700;
    color:#003366;
}

/* ================= HERO ================= */

.hero{

    background:linear-gradient(135deg,#003366,#0055aa,#009688);

    min-height:560px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

}

.hero .container{

    max-width:900px;

}

.hero h1{

    font-size:54px;

    margin-bottom:25px;

    text-shadow:2px 2px 8px rgba(0,0,0,.35);

}

.hero p{

    font-size:21px;

    max-width:850px;

    margin:auto;

    margin-bottom:35px;

    color:#f3f3f3;

}/* ==========================================
   FINAL STYLE.CSS
   PART 2
========================================== */

/* ================= BUTTONS ================= */

.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    background:linear-gradient(90deg,#FFD700,#FF9800);
    color:#003366;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;
    transition:.35s;
    margin:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

/* ================= SECTIONS ================= */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    font-size:34px;
    color:#003366;
    margin-bottom:45px;
    position:relative;
}

section h2::after{
    content:"";
    width:90px;
    height:4px;
    background:#FFD700;
    display:block;
    margin:12px auto;
    border-radius:10px;
}

/* ================= CARDS ================= */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    border-top:5px solid #009688;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.card i{
    font-size:48px;
    color:#009688;
    margin-bottom:18px;
}

.card h3{
    color:#003366;
    margin-bottom:15px;
}

.card ul{
    padding-left:20px;
}

.card li{
    margin-bottom:8px;
}

/* ================= ABOUT ================= */

#about p{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#444;
}/* ==========================================
   FINAL STYLE.CSS
   PART 3
========================================== */

/* ================= FORM ================= */

form{
    max-width:700px;
    margin:auto;
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    border-top:5px solid #009688;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #d5d5d5;
    border-radius:10px;
    font-size:16px;
    background:#fafafa;
    transition:.3s;
}

textarea{
    resize:vertical;
    min-height:120px;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#009688;
    background:#fff;
    box-shadow:0 0 10px rgba(0,150,136,.25);
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    background:linear-gradient(90deg,#FFD700,#FF9800);
    color:#003366;
    transition:.35s;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.20);
}

/* ================= EMI ================= */

.payment-box{
    max-width:600px;
    margin:auto;
    background:#fff;
    padding:35px;
    border-radius:20px;
    border-top:6px solid #FFD700;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    text-align:center;
}

.payment-box h2{
    color:#003366;
    margin-bottom:20px;
}

.payment-box h3{
    color:#e53935;
    margin-top:20px;
}

.payment-box input{
    margin-bottom:15px;
}

/* ================= FAQ ================= */

.card p{
    color:#555;
    line-height:1.8;
}/* ==========================================
   FINAL STYLE.CSS
   PART 4
========================================== */

/* ================= FOOTER ================= */

footer{
    background:linear-gradient(90deg,#003366,#004d99,#009688);
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    color:#FFD700;
    font-size:28px;
    margin-bottom:15px;
}

footer p{
    margin-bottom:10px;
    line-height:1.8;
}

footer a{
    color:#FFD700;
    text-decoration:none;
    margin:0 12px;
    font-weight:bold;
    transition:.3s;
}

footer a:hover{
    color:#ffffff;
}

/* ================= FLOATING BUTTONS ================= */

.whatsapp-btn,
.call-btn{
    position:fixed;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-btn{
    right:20px;
    background:#25D366;
}

.call-btn{
    left:20px;
    background:#003366;
}

.whatsapp-btn:hover,
.call-btn:hover{
    transform:scale(1.12);
}

/* ================= ANIMATIONS ================= */

.card,
.btn,
button,
.payment-box{
    transition:all .35s ease;
}

.hero h1{
    animation:fadeDown 1s ease;
}

.hero p{
    animation:fadeUp 1.2s ease;
}

.hero .btn{
    animation:zoomIn 1.4s ease;
}

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}
/* ==========================================
   FINAL STYLE.CSS
   PART 5
========================================== */

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef2f7;
}

::-webkit-scrollbar-thumb{
    background:#003366;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#009688;
}

/* ================= IMAGE ================= */

img{
    max-width:100%;
    display:block;
}

/* ================= LINKS ================= */

a{
    transition:0.3s ease;
}

/* ================= LIST ================= */

ul{
    list-style-position:inside;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

    .nav{
        flex-direction:column;
        text-align:center;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
        margin-top:15px;
    }

    .logo{
        justify-content:center;
    }

    .hero{
        min-height:450px;
        padding:60px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }

    .btn{
        display:block;
        margin:12px auto;
        width:220px;
    }

    .cards{
        grid-template-columns:1fr;
    }

    form{
        padding:25px;
    }

    .payment-box{
        padding:25px;
    }

    footer{
        padding:40px 15px;
    }

    .logo-img{
        width:60px;
        height:60px;
    }

}

/* ================= LARGE SCREEN ================= */

@media (min-width:1200px){

    .hero h1{
        font-size:60px;
    }

    .hero p{
        font-size:22px;
    }

}

/* ================= SELECTION ================= */

::selection{
    background:#FFD700;
    color:#003366;
}/* ==========================================
   FINAL STYLE.CSS
   PART 6 (FINAL)
========================================== */

/* ===== Hover Effects ===== */

.card:hover i{
    transform:scale(1.15) rotate(5deg);
    transition:.4s;
}

.card:hover h3{
    color:#009688;
}

button:active,
.btn:active{
    transform:scale(.98);
}

/* ===== Form Placeholder ===== */

input::placeholder,
textarea::placeholder{
    color:#888;
}

select{
    cursor:pointer;
}

/* ===== Table ===== */

table{
    width:100%;
    border-collapse:collapse;
}

table td,
table th{
    padding:12px;
    border:1px solid #ddd;
}

/* ===== Utility Classes ===== */

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-30{
    margin-top:30px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-30{
    margin-bottom:30px;
}

/* ===== Loading Effect ===== */

body{
    animation:pageFade .6s ease;
}

@keyframes pageFade{

from{

opacity:0;

}

to{

opacity:1;

}

}

/* ===== Footer ===== */

footer{
    border-top:4px solid #FFD700;
}

/* ===== Accessibility ===== */

button:focus,
.btn:focus,
input:focus,
select:focus,
textarea:focus{
    outline:3px solid rgba(255,215,0,.4);
    outline-offset:2px;
}

/* ===== End of File ===== */