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

/* =========================================
   ROOT VARIABLES
========================================= */
:root{

    --primary:#19c37d;
    --primary-dark:#0f5132;

    --dark:#07140d;
    --dark-light:#10271b;

    --white:#ffffff;

    --text:#1a1a1a;
    --text-light:#666;

    --glass:
    rgba(255,255,255,0.18);

    --border:
    rgba(255,255,255,0.22);

    --shadow:
    0 10px 40px rgba(0,0,0,0.08);

}

/* =========================================
   GLOBAL
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:
    linear-gradient(
        135deg,
        #eefaf2,
        #f8fffb,
        #eefaf2
    );

    color:var(--text);

    overflow-x:hidden;

    position:relative;
}

/* =========================================
   FLOATING BACKGROUND BLOBS
========================================= */

body::before{

    content:'';

    position:fixed;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(25,195,125,0.14);

    top:-140px;
    right:-120px;

    filter:blur(90px);

    z-index:-1;
}

body::after{

    content:'';

    position:fixed;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(32,201,151,0.12);

    left:-120px;
    bottom:-120px;

    filter:blur(90px);

    z-index:-1;
}

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

.navbar{

    padding:18px 0;

    background:
    rgba(255,255,255,0.12) !important;

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

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

    box-shadow:
    0 8px 25px rgba(0,0,0,0.05);
}

.navbar-brand{

    font-size:28px;
    font-weight:800;

    color:var(--primary) !important;

    letter-spacing:-1px;
}

.menu-btn{

    width:50px;
    height:50px;

    border:none;

    border-radius:16px;

    background:
    rgba(255,255,255,0.35);

    backdrop-filter:blur(12px);

    color:var(--primary);

    font-size:20px;

    transition:0.3s;
}

.menu-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 8px 20px rgba(25,195,125,0.25);
}

.search-bar{
    width:50%;
}

.search-bar input{

    height:52px;

    border:none;

    border-radius:16px;

    background:
    rgba(255,255,255,0.35);

    backdrop-filter:blur(12px);

    padding-left:20px;

    box-shadow:
    inset 0 2px 8px rgba(0,0,0,0.03);
}

.search-bar input:focus{
    box-shadow:none;
}

/* =========================================
   SIDEBAR
========================================= */

.sidebar{

    position:fixed;

    top:15px;
    left:-340px;

    width:310px;

    height:calc(100vh - 30px);

    background:
    rgba(255,255,255,0.18);

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

    border:
    1px solid rgba(255,255,255,0.2);

    border-radius:35px;

    padding:25px;

    z-index:9999;

    transition:0.5s ease;

    overflow-y:auto;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.15);
}

.sidebar.active{
    left:15px;
}

.overlay{

    position:fixed;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:
    rgba(0,0,0,0.45);

    backdrop-filter:blur(6px);

    z-index:999;

    opacity:0;
    visibility:hidden;

    transition:0.4s;
}

.overlay.active{

    opacity:1;
    visibility:visible;
}

.sidebar-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.logo{

    font-size:24px;
    font-weight:800;

    color:#fff;
}

.close-btn{

    width:46px;
    height:46px;

    border:none;

    border-radius:15px;

    background:
    linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;

    font-size:18px;

    transition:0.3s;
}

.close-btn:hover{

    transform:rotate(90deg);
}

.sidebar-menu{

    list-style:none;

    padding:0;
}

.sidebar-menu li{
    margin-bottom:15px;
}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    padding:16px 18px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:16px;
    font-weight:500;

    transition:0.4s;
}

.sidebar-menu a:hover{

    background:
    linear-gradient(
        135deg,
        #19c37d,
        #20c997
    );

    transform:translateX(8px);

    box-shadow:
    0 10px 25px rgba(25,195,125,0.25);
}

.sidebar-menu i{
    width:20px;
}

/* =========================================
   SIDEBAR CARD
========================================= */

.stay-safe-box{

    margin-top:35px;

    padding:25px;

    border-radius:25px;

    background:
    linear-gradient(
        135deg,
        rgba(25,195,125,0.95),
        rgba(15,81,50,0.95)
    );

    color:#fff;

    box-shadow:
    0 12px 30px rgba(0,0,0,0.15);
}

.stay-safe-box h5{

    font-size:22px;
    font-weight:700;

    margin-bottom:12px;
}

.stay-safe-box p{

    color:#eafff2;

    line-height:1.7;

    margin-bottom:20px;
}

.stay-safe-box .btn{

    background:#fff;

    color:#19c37d;

    border:none;

    font-weight:700;

    border-radius:14px;

    padding:13px;
}

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

.hero-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #04130d,
        #0d3f26,
        #19c37d
    );

    color:#fff;
}

.hero-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.08);

    top:-180px;
    right:-120px;

    filter:blur(80px);
}

.hero-section::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.06);

    bottom:-120px;
    left:-80px;

    filter:blur(80px);
}

.hero-badge{

    display:inline-block;

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.12);

    border:
    1px solid rgba(255,255,255,0.15);

    margin-bottom:25px;

    backdrop-filter:blur(15px);

    font-size:14px;
    font-weight:500;
}

.hero-section h1{

    font-size:72px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;

    animation:floatText 4s ease-in-out infinite;
}

.hero-section p{

    font-size:19px;

    color:#eefdf4;

    line-height:1.8;

    max-width:620px;

    margin-bottom:35px;
}

.hero-search input{

    height:65px;

    border:none;

    border-radius:18px;

    padding-left:22px;

    background:
    rgba(255,255,255,0.18);

    color:#fff;

    backdrop-filter:blur(18px);
}

.hero-search input::placeholder{
    color:#dff7e8;
}

.hero-search input:focus{
    box-shadow:none;
    color:#fff;
}

.hero-buttons .btn{

    padding:16px 30px;

    border-radius:16px;

    font-weight:600;

    transition:0.3s;
}

.hero-buttons .btn:hover{

    transform:translateY(-5px);
}

/* HERO BUTTONS */

.hero-btn-main{

    background:linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff !important;

    border:none;

    box-shadow:
    0 15px 35px rgba(25,195,125,0.25);
}

.hero-btn-main:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(25,195,125,0.35);

    color:#fff !important;
}

.hero-image{

    width:100%;

    animation:floatImage 5s ease-in-out infinite;
}

/* =========================================
   STATS SECTION
========================================= */

.stats-section{

    margin-top:-70px;

    position:relative;

    z-index:10;
}

.stat-card{

    padding:40px 25px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.4);

    backdrop-filter:blur(22px);

    border:
    1px solid rgba(255,255,255,0.3);

    text-align:center;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.06);

    transition:0.4s;
}

.stat-card:hover{

    transform:translateY(-10px);
}

.stat-card h2{

    font-size:46px;
    font-weight:800;

    color:#19c37d;

    margin-bottom:10px;
}

.stat-card p{

    color:#555;

    font-size:17px;

    margin:0;
}

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

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#111;

    margin-bottom:18px;

    letter-spacing:-1px;
}

.section-title p{

    color:#666;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

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

.features-section{
    padding:110px 0;
}

.feature-card{

    height:100%;

    padding:40px 30px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.45);

    backdrop-filter:blur(22px);

    border:
    1px solid rgba(255,255,255,0.3);

    text-align:center;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.06);
}

.feature-card:hover{

    transform:translateY(-12px);
}

.feature-card::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    background:
    rgba(25,195,125,0.08);

    border-radius:50%;

    top:-40px;
    right:-40px;
}

.feature-card i{

    width:85px;
    height:85px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:auto;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    box-shadow:
    0 10px 25px rgba(25,195,125,0.25);
}

.feature-card h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;
}

.feature-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;
}

.feature-btn{

    margin-top:20px;

    width:100%;

    padding:14px;

    border-radius:14px;

    border:none;

    background:
    linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;

    font-weight:600;

    transition:0.3s;
}

.feature-btn:hover{

    transform:translateY(-4px);

    color:#fff;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-section{

    padding:110px 0;

    background:
    rgba(255,255,255,0.45);
}

.testimonial-card{

    max-width:760px;

    margin:auto;

    text-align:center;

    padding:50px;

    border-radius:35px;

    background:
    rgba(255,255,255,0.45);

    backdrop-filter:blur(22px);

    border:
    1px solid rgba(255,255,255,0.3);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.06);
}

.testimonial-card img{

    width:90px;
    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #19c37d;

    margin-bottom:20px;
}

.testimonial-card h5{

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;
}

.testimonial-card p{

    font-size:18px;

    color:#555;

    line-height:1.8;
}

.stars{

    color:#ffbb00;

    margin-bottom:20px;

    font-size:22px;
}

/* TESTIMONIAL SLIDER */

.carousel-indicators{

    bottom:-60px;
}

.carousel-indicators button{

    width:12px !important;
    height:12px !important;

    border-radius:50%;

    background:#19c37d !important;

    opacity:0.4;
}

.carousel-indicators .active{

    opacity:1;
}

.testimonial-arrow{

    width:58px;
    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,0.15);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.15);

    color:#19c37d;

    font-size:20px;

    transition:0.4s;
}

.testimonial-arrow:hover{

    transform:translateY(-4px);

    background:
    rgba(255,255,255,0.25);

    box-shadow:
    0 12px 25px rgba(25,195,125,0.2);
}

.carousel-control-prev,
.carousel-control-next{

    width:auto;
}

@media(max-width:768px){

    .testimonial-arrow{

        width:48px;
        height:48px;

        font-size:16px;
    }

    .carousel-control-prev{

        left:-5px;
    }

    .carousel-control-next{

        right:-5px;
    }
}

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

.footer-section{

    margin-top:90px;

    padding:80px 0 30px;

    background:
    linear-gradient(
        135deg,
        #04130d,
        #0d3f26,
        #19c37d
    );

    color:#fff;

    border-top-left-radius:40px;
    border-top-right-radius:40px;

    position:relative;

    overflow:hidden;
}

.footer-section::before{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.05);

    top:-150px;
    right:-100px;

    filter:blur(80px);
}

.footer-section h5{

    margin-bottom:20px;

    font-weight:700;
}

.footer-section ul{

    list-style:none;

    padding:0;
}

.footer-section li{
    margin-bottom:12px;
}

.footer-section a{

    text-decoration:none;

    color:#e7fff1;

    transition:0.3s;
}

.footer-section a:hover{

    color:#fff;

    padding-left:5px;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }
}

@keyframes floatText{

    0%{
        transform:translateY(0);
    }

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

    100%{
        transform:translateY(0);
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media(max-width:991px){

    .hero-section{
        text-align:center;
    }

    .hero-section h1{
        font-size:55px;
    }

    .hero-image{
        margin-top:50px;
    }

    .search-bar{
        display:none !important;
    }
}

@media(max-width:768px){

    .hero-section{

        padding:90px 0 70px;
    }

    .hero-section h1{

        font-size:42px;
    }

    .hero-section p{

        font-size:17px;
    }

    .section-title h2{

        font-size:34px;
    }

    .hero-buttons .btn{

        width:100%;

        margin-bottom:15px;
    }

    .testimonial-card{

        padding:35px 25px;
    }

    .stat-card{

        padding:30px 20px;
    }

    .sidebar{

        width:82%;

        max-width:290px;

        left:-100%;
    }

    .sidebar.active{
        left:10px;
    }

    .logo{
        font-size:20px;
    }

    .sidebar-menu a{

        font-size:15px;

        padding:14px 15px;
    }
}

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

.hero-work-card{

    position:relative;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(20px);

    padding:35px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 15px 45px rgba(0,0,0,0.25);
}

.hero-work-glow{

    position:absolute;

    width:220px;
    height:220px;

    background:#22c55e;

    border-radius:50%;

    filter:blur(100px);

    top:-60px;
    right:-80px;

    opacity:0.45;
}

.hero-work-card h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:35px;

    position:relative;

    z-index:2;
}

.hero-step{

    display:flex;

    gap:20px;

    margin-bottom:28px;

    position:relative;

    z-index:2;
}

.hero-step-icon{

    min-width:70px;
    height:70px;

    border-radius:22px;

    background:rgba(255,255,255,0.12);

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);
}

.hero-step-icon i{

    font-size:28px;

    color:#6dff9c;
}

.hero-step-content h5{

    font-size:21px;

    margin-bottom:10px;

    font-weight:600;
}

.hero-step-content p{

    color:#e6f9ed;

    line-height:1.7;

    margin:0;

    font-size:15px;
}

/* ===================================
   SUPPORT SECTION
=================================== */

.support-section{

    padding:90px 0 30px;
}

.support-wrapper{

    background:#f4faf6;

    border-radius:35px;

    padding:50px;

    border:1px solid rgba(0,0,0,0.04);

    position:relative;

    overflow:hidden;
}

.support-wrapper::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(34,197,94,0.08);

    border-radius:50%;

    top:-100px;
    right:-100px;

    filter:blur(70px);
}

.support-card{

    background:#fff;

    border-radius:24px;

    padding:24px;

    display:flex;

    gap:18px;

    align-items:flex-start;

    transition:0.4s;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
    0 8px 20px rgba(0,0,0,0.04);
}

.support-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.support-icon{

    width:60px;
    height:60px;

    min-width:60px;

    border-radius:18px;

    background:#e9f8ef;

    display:flex;

    align-items:center;
    justify-content:center;
}

.support-icon i{

    color:#198754;

    font-size:24px;
}

.support-card h5{

    font-size:18px;

    margin-bottom:8px;

    font-weight:700;
}

.support-card p{

    margin:0;

    color:#666;

    font-size:14px;

    line-height:1.7;
}

/* CTA */

.report-cta{

    background:#fff;

    border-radius:28px;

    padding:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    margin-top:10px;

    border:1px solid rgba(0,0,0,0.06);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.report-left{

    display:flex;

    align-items:center;

    gap:25px;
}

.report-shield{

    width:100px;
    height:100px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #198754
    );

    display:flex;

    align-items:center;
    justify-content:center;

    box-shadow:
    0 15px 35px rgba(25,135,84,0.3);
}

.report-shield i{

    font-size:45px;

    color:#fff;
}

.small-text{

    color:#198754;

    font-size:14px;

    font-weight:600;
}

.report-left h3{

    font-size:34px;

    margin:10px 0;

    font-weight:700;

    color:#111;
}

.report-left p{

    color:#666;

    margin:0;

    line-height:1.7;
}

.report-btn{

    background:
    linear-gradient(
        135deg,
        #198754,
        #22c55e
    );

    color:#fff;

    padding:16px 28px;

    border-radius:16px;

    border:none;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    transition:0.4s;
}

.report-btn:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:
    0 15px 30px rgba(25,135,84,0.25);
}

/* MOBILE */

@media(max-width:991px){

    .hero-work-card{
        margin-top:50px;
    }

    .report-cta{

        flex-direction:column;

        align-items:flex-start;
    }

    .report-left{

        flex-direction:column;

        align-items:flex-start;
    }

    .report-left h3{
        font-size:28px;
    }

}

@media(max-width:768px){

    .support-wrapper{
        padding:30px 20px;
    }

    .hero-step{
        flex-direction:column;
    }

    .hero-work-card{
        padding:25px;
    }

    .hero-work-card h3{
        font-size:28px;
    }

    .report-shield{

        width:80px;
        height:80px;
    }

    .report-shield i{
        font-size:34px;
    }

    .report-left h3{
        font-size:24px;
    }

}

/* =========================================
   REPORT PAGE
========================================= */

.report-page-section{
    padding:100px 0;
}

.report-hero-card{

    position:relative;

    padding:45px;

    border-radius:35px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.12);

    backdrop-filter:blur(20px);

    text-align:center;

    overflow:hidden;
}

.shield-glow{

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(25,195,125,0.35);

    border-radius:50%;

    filter:blur(100px);

    top:-60px;
    right:-60px;
}

.report-shield-img{

    width:90px;

    height:90px;

    object-fit:contain;

    margin-bottom:20px;

    position:relative;

    z-index:2;
}

.report-hero-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    position:relative;

    z-index:2;
}

.report-hero-card p{

    color:#ddf8e7;

    line-height:1.8;

    position:relative;

    z-index:2;
}

.report-hero-text{

    color:#3b4b43 !important;

    font-size:17px;

    line-height:1.9;

    max-width:500px;

    margin:auto;

    opacity:1 !important;
}

.glass-form-card{

    padding:45px;

    border-radius:35px;

    background:rgba(255,255,255,0.55);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.3);

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.form-header{
    margin-bottom:35px;
}

.form-header h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:10px;
}

.custom-input{

    height:58px;

    border-radius:16px !important;

    border:1px solid rgba(0,0,0,0.08);

    background:#fff;

    padding-left:18px;
}

.custom-textarea{

    height:auto !important;

    padding-top:15px;
}

.custom-input:focus{

    box-shadow:none;

    border-color:#19c37d;
}

.scam-options{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.scam-box{

    padding:14px 20px;

    border-radius:16px;

    background:#f4faf6;

    border:1px solid rgba(0,0,0,0.05);

    font-weight:500;

    cursor:pointer;

    transition:0.3s;
}

.scam-box:hover{

    background:#19c37d;

    color:#fff;
}

.upload-box{

    border:2px dashed rgba(25,195,125,0.35);

    border-radius:25px;

    padding:45px 25px;

    text-align:center;

    background:#f6fff9;
}

.upload-box i{

    font-size:52px;

    color:#19c37d;

    margin-bottom:20px;
}

.upload-box h5{

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;
}

.upload-box p{

    color:#666;

    margin-bottom:20px;
}

.anonymous-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-radius:22px;

    background:#f4faf6;
}

.anonymous-options{

    display:flex;

    gap:20px;
}

.submit-report-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;

    font-size:18px;

    font-weight:700;
}

.side-glass-card{

    padding:35px;

    border-radius:30px;

    background:rgba(255,255,255,0.5);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.3);

    margin-bottom:25px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.side-glass-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:20px;
}

.tips-list{

    padding-left:20px;
}

.tips-list li{

    margin-bottom:15px;

    color:#555;

    line-height:1.7;
}

.support-icon-large{

    width:90px;
    height:90px;

    border-radius:25px;

    background:linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.support-icon-large i{

    color:#fff;

    font-size:38px;
}

.recovery-btn{

    width:100%;

    margin-top:15px;

    padding:15px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;
}

.accordion-item{

    border:none;

    border-radius:16px !important;

    overflow:hidden;

    margin-bottom:15px;
}

.accordion-button{

    box-shadow:none !important;

    font-weight:600;
}

@media(max-width:768px){

    .glass-form-card,
    .side-glass-card,
    .report-hero-card{

        padding:28px;
    }

    .form-header h3{

        font-size:28px;
        }

}

/* ADMIN DASHBOARD */

.admin-body{

    background:#edf7f1;

    font-family:'Outfit',sans-serif;
}

/* TOPBAR */

.admin-topbar{

    height:80px;

    background:
    rgba(255,255,255,0.55);

    backdrop-filter:blur(18px);

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    position:fixed;

    width:100%;

    top:0;

    z-index:999;
}

.menu-toggle{

    width:52px;
    height:52px;

    border:none;

    border-radius:18px;

    background:
    rgba(255,255,255,0.5);

    font-size:20px;

    color:#19c37d;
}

.admin-logo{

    font-size:28px;

    font-weight:800;

    color:#19c37d;
}

/* SIDEBAR */

.admin-sidebar{

    position:fixed;

    left:-290px;

    top:0;

    width:280px;

    height:100vh;

    background:
    rgba(255,255,255,0.45);

    backdrop-filter:blur(24px);

    padding:30px;

    transition:0.4s;

    z-index:1000;
}

.show-sidebar{

    left:0;
}

.sidebar-logo{

    font-size:30px;

    font-weight:800;

    color:#19c37d;

    margin-bottom:50px;
}

.sidebar-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:50px;
}

.close-sidebar{

    width:45px;
    height:45px;

    border:none;

    border-radius:14px;

    background:
    rgba(255,255,255,0.45);

    color:#19c37d;

    font-size:20px;
}

.sidebar-menu{

    list-style:none;

    padding:0;
}

.sidebar-menu li{

    margin-bottom:18px;
}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 18px;

    border-radius:18px;

    background:
    rgba(255,255,255,0.35);

    text-decoration:none;

    color:#222;

    font-weight:600;
}

/* CONTENT */

.admin-content{

    padding:110px 20px 30px;
}

.admin-card{

    background:
    rgba(255,255,255,0.5);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.admin-card h2{

    font-size:45px;

    color:#19c37d;

    font-weight:800;
}

/* DESKTOP */

@media(min-width:992px){

    .admin-sidebar{

        left:0;
    }

    .admin-content{

        margin-left:280px;

        padding:120px 35px 35px;
    }

    .menu-toggle{

        display:none;
    }

}

@media(min-width:992px){

    .close-sidebar{

        display:none;
    }

}

/* SUCCESS ALERT */

.alert-success{

    background:
    linear-gradient(
        135deg,
        #19c37d,
        #0f5132
    );

    color:#fff;

    padding:18px 22px;

    border-radius:18px;

    margin-bottom:25px;

    border:none;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(25,195,125,0.2);
}