/* ==========================================
   FameSMS - Main Stylesheet
========================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
}

html{
    scroll-behavior:smooth;
}

body{

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

    background:#050816;

    color:#ffffff;

    overflow-x:hidden;

}

/* Background */

body::before{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    background:#4f46e5;

    filter:blur(220px);

    top:-250px;

    left:-250px;

    opacity:.25;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:650px;

    height:650px;

    background:#06b6d4;

    filter:blur(220px);

    bottom:-250px;

    right:-250px;

    opacity:.18;

    z-index:-2;

}

/* Navbar */

header{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(20px);

    background:rgba(10,15,35,.75);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    max-width:1300px;

    margin:auto;

    padding:18px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:28px;

    font-weight:700;

    color:#fff;

}

.logo i{

    color:#00d4ff;

    font-size:30px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#d8d8d8;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#00d4ff;

}

.nav-buttons{

    display:flex;

    gap:15px;

}

.login-btn{

    color:white;

    padding:12px 22px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:10px;

    transition:.3s;

}

.login-btn:hover{

    background:#00d4ff;

    color:#000;

}

.signup-btn{

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    color:white;

    padding:12px 24px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.signup-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,212,255,.35);

}

.menu-btn{

    display:none;

    color:white;

    font-size:26px;

    cursor:pointer;

}

/* Hero */

.hero{

    max-width:1300px;

    margin:auto;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    padding:140px 35px 80px;

}

.hero-content{

    flex:1;

}

.tag{

    display:inline-block;

    background:rgba(79,70,229,.2);

    color:#8be9fd;

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    margin-bottom:25px;

}

.hero h1{

    font-size:65px;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#00d4ff;

}

.hero-text{

    color:#cbd5e1;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:40px;

}

.primary-btn{

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    color:white;

    padding:16px 32px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(79,70,229,.4);

}

.secondary-btn{

    border:1px solid rgba(255,255,255,.15);

    color:white;

    padding:16px 30px;

    border-radius:12px;

    transition:.3s;

}

.secondary-btn:hover{

    background:white;

    color:#111827;

}

.hero-country{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.country-box{

    padding:15px 24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    backdrop-filter:blur(12px);

    transition:.3s;

}

.country-box:hover{

    transform:translateY(-5px);

    border-color:#00d4ff;

}

.hero-image{

    flex:1;

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:580px;

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

}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ==========================================
   SECTION TITLE
========================================== */

section{
    padding:100px 35px;
}

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

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.section-title p{
    font-size:18px;
    color:#b8c0d4;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ==========================================
   FEATURES
========================================== */

.features{

    max-width:1300px;

    margin:auto;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    transition:.35s;

    cursor:pointer;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 20px 40px rgba(0,212,255,.15);

}

.feature-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#00d4ff;

    background:rgba(0,212,255,.08);

    border-radius:18px;

    margin-bottom:25px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#fff;

}

.feature-card p{

    color:#bfc7da;

    line-height:1.8;

    font-size:16px;

}

/* Animation */

.feature-card:hover i{

    transform:rotate(10deg) scale(1.1);

    transition:.35s;

}

/* ==========================================
   HOW IT WORKS
========================================== */

.how-it-works{

    max-width:1300px;

    margin:auto;

}

.steps{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.step{

    position:relative;

    padding:45px 35px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.step:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 20px 45px rgba(0,212,255,.15);

}

.step-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:48px;

    font-weight:800;

    color:rgba(255,255,255,.08);

}

.step i{

    width:80px;

    height:80px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    font-size:32px;

    color:#fff;

    margin-bottom:30px;

}

.step h3{

    font-size:26px;

    margin-bottom:18px;

    color:#fff;

}

.step p{

    color:#c3cbde;

    line-height:1.8;

    font-size:16px;

}

.step:hover i{

    transform:scale(1.1) rotate(8deg);

    transition:.35s;

}

/* Decorative Glow */

.step::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#00d4ff;

    filter:blur(120px);

    opacity:.08;

    top:-60px;

    right:-60px;

}

/* ==========================================
   VERIFICATION PLATFORMS
========================================== */

.platforms{

    max-width:1300px;

    margin:auto;

}

.platform-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:50px;

}

.platform-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s ease;

    cursor:pointer;

}

.platform-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 20px 45px rgba(0,212,255,.15);

}

.platform-card i{

    font-size:55px;

    margin-bottom:20px;

    color:#00d4ff;

    transition:.35s;

}

.platform-card span{

    display:block;

    font-size:20px;

    font-weight:600;

    color:#ffffff;

}

.platform-card:hover i{

    transform:scale(1.2) rotate(10deg);

}

/* Hover Glow */

.platform-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        rgba(79,70,229,.15),
        rgba(0,212,255,.10)
    );

    opacity:0;

    transition:.35s;

}

.platform-card:hover::before{

    opacity:1;

}

.platform-card{

    position:relative;

    overflow:hidden;

}

.platform-card>*{

    position:relative;

    z-index:2;

}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{
    max-width:1300px;
    margin:100px auto;
    padding:80px 40px;
    text-align:center;
    background:linear-gradient(135deg,#4f46e5,#0ea5e9);
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

.cta::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.cta::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
    color:#f8fafc;
}

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

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

footer{
    background:#030712;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:80px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding:70px 35px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
    color:#ffffff;
}

.footer-box p{
    color:#b8c0d4;
    line-height:1.8;
}

.footer-box ul li{
    margin-bottom:15px;
    color:#b8c0d4;
}

.footer-box ul li a{
    color:#b8c0d4;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#00d4ff;
}

.footer-box i{
    margin-right:10px;
    color:#00d4ff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
    color:#94a3b8;
}

/* ==========================================
   GLOBAL HOVER EFFECTS
========================================== */

.primary-btn,
.secondary-btn,
.signup-btn,
.login-btn{
    transition:.35s ease;
}

.primary-btn:hover,
.signup-btn:hover{
    transform:translateY(-4px);
}

.feature-card,
.platform-card,
.step,
.country-box{
    transition:all .35s ease;
}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0b1220;
}

::-webkit-scrollbar-thumb{
    background:#4f46e5;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#00d4ff;
}

/* ==========================================
   TEXT SELECTION
========================================== */

::selection{
    background:#00d4ff;
    color:#000;
}

/* ==========================================
   FADE ANIMATION
========================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content,
.hero-image,
.feature-card,
.step,
.platform-card,
.cta,
.footer-container{

    animation:fadeUp .8s ease;

}

/* ==========================================
   IMAGE EFFECT
========================================== */

.hero-image img{

    filter:drop-shadow(0 25px 60px rgba(0,212,255,.25));

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:0 35px;

}

/* ==========================================
   FAMESMS USER DASHBOARD
========================================== */


/* Sidebar */

.sidebar{

    width:260px;
    height:100vh;
    position:fixed;
    left:0;
    top:0;

    background:#0b1120;

    padding:25px 20px;

    border-right:1px solid rgba(255,255,255,.08);

}


.menu a{

    display:flex;
    align-items:center;
    gap:10px;

    color:#b8c0d4;

    padding:14px;

    margin-bottom:8px;

    border-radius:12px;

    transition:.3s;

}


.menu a:hover,
.menu .active{

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    color:white;

}



/* Dashboard Main */

.main{

    margin-left:260px;

    padding:30px;

}



.topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}


.user{

    background:#111827;

    padding:12px 20px;

    border-radius:10px;

}



/* Dashboard Cards */


.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:25px;

}


.card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    padding:25px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}


.card:hover{

    transform:translateY(-5px);

    border-color:#00d4ff;

}


.icon{

    font-size:35px;

    margin-bottom:15px;

}


.card h3{

    color:#b8c0d4;

    font-size:15px;

}


.card h2{

    margin-top:10px;

    font-size:30px;

}

/* ==========================================
   FAMESMS DASHBOARD DESIGN
========================================== */


/* Sidebar */

.sidebar{

    width:260px;

    height:100vh;

    position:fixed;

    left:0;

    top:0;

    background:#0b1120;

    padding:25px 20px;

    border-right:1px solid rgba(255,255,255,.08);

    overflow-y:auto;

}



.dashboard-logo{

    font-size:26px;

    font-weight:700;

    color:#00d4ff;

    margin-bottom:35px;

}



.menu-title{

    color:#64748b;

    font-size:12px;

    font-weight:600;

    margin:20px 0 10px;

}



.sidebar a{

    display:flex;

    align-items:center;

    gap:10px;

    color:#b8c0d4;

    padding:13px;

    margin-bottom:8px;

    border-radius:12px;

    transition:.3s;

    text-decoration:none;

}



.sidebar a:hover,
.sidebar a.active{

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    color:white;

}





/* Dashboard Main */

.dashboard-main{

    margin-left:260px;

    padding:40px;

}



.dashboard-header{

    margin-bottom:35px;

}



.dashboard-header h1{

    font-size:35px;

    margin-bottom:10px;

}



.dashboard-header p{

    color:#b8c0d4;

    margin-bottom:8px;

}



.dashboard-header h3{

    color:#00d4ff;

}





/* Dashboard Cards */

.dashboard-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}



.dashboard-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    padding:30px;

    border-radius:20px;

    transition:.3s;

}



.dashboard-card:hover{

    transform:translateY(-5px);

    border-color:#00d4ff;

}



.dashboard-card h3{

    color:#b8c0d4;

    font-size:16px;

    font-weight:500;

}



.dashboard-card h2{

    font-size:32px;

    margin-top:15px;

    color:white;

}





/* Logout */

.logout{

    margin-top:20px;

}

/* Mobile Menu Button */

.mobile-menu-btn{

    display:none;

    background:linear-gradient(135deg,#4f46e5,#00d4ff);

    color:white;

    border:none;

    padding:12px 16px;

    border-radius:10px;

    font-size:22px;

    cursor:pointer;

    margin-bottom:20px;

}

.services-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:20px;
}

.service-card{
    background:#111827;
    border:1px solid #26324a;
    border-radius:20px;
    padding:20px;
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px #0008;
}

.service-title{
    font-size:22px;
    font-weight:700;
}

.price{
    color:#ff4d5a;
    font-size:18px;
    margin:10px 0;
}

.buy-btn{
    width:100%;
    background:#ff4655;
    color:white;
    border:none;
    padding:12px;
    border-radius:12px;
    font-weight:bold;
    cursor:pointer;
}

.buy-btn:hover{
    background:#ff2338;
}

/* ==========================================
   FAMESMS STATS
========================================== */

.stats{

    max-width:1300px;
    margin:auto;
    padding:20px 35px 90px;

}

.stats-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

}

.stat-card{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);
    border-color:#00d4ff;
    box-shadow:0 20px 45px rgba(0,212,255,.15);

}

.stat-card h2{

    font-size:42px;
    color:#00d4ff;
    margin-bottom:10px;
    font-weight:700;

}

.stat-card p{

    color:#b8c0d4;
    font-size:18px;
    font-weight:500;

}
