/* ==========================================
   Shohel Rana Portfolio
   Version: 1.0.0
   Author: Shohel Rana
========================================== */

/* ==========================================
   Google Font
========================================== */

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

/* ==========================================
   Root Variables
========================================== */

:root{

    /* Brand */

    --primary:#673DE6;
    --secondary:#8B5CF6;

    /* Background */

    --bg-color:#0F172A;
    --section-color:#111827;
    --dark-light:#1E293B;
    --card-color:#1E293B;

    /* Text */

    --white:#FFFFFF;
    --text:#CBD5E1;
    --heading-color:#FFFFFF;
    --text-color:#CBD5E1;

    /* Border */

    --border:rgba(255,255,255,.08);

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1200px;

}

/*==========================================
   Light Theme
==========================================*/

body.light-theme{

    --bg-color:#F8FAFC;
    --section-color:#FFFFFF;
    --card-color:#FFFFFF;

    --heading-color:#111827;
    --text-color:#475569;

    --border:rgba(15,23,42,.08);

}

/*==========================================
   Theme Transition
==========================================*/

html{

    scroll-behavior:smooth;

}

body,
.header,
.hero,
.about,
.skills,
.projects,
.contact,
.footer,
.project-card,
.skill-card,
.about-card,
.contact-form,
.theme-toggle,
.btn-primary,
.btn-secondary{

    transition:
    background-color .4s ease,
    color .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;

}

/* ==========================================
   Global Style
========================================== */

body{

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

    background: var(--bg-color);
    color: var(--heading-color);

    overflow-x:hidden;

    line-height:1.7;

}

/* ==========================================
   Common Elements
========================================== */

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:90%;

    max-width:var(--container);

    margin:auto;

}

section{

    padding:100px 0;

}

/* ==========================================
   Header
========================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background: var(--card-color);

    backdrop-filter:blur(18px);

    border-bottom:1px solid var(--border);

}

/*==========================================
   Navbar
==========================================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    height:80px;

}

/* ==========================================
   Navbar Right Actions
========================================== */

.nav-actions{

    display:flex;

    align-items:center;

    gap:12px;

}

/* ==========================================
   Active Menu
========================================== */

.nav-menu a.active{

    color:#673DE6;

}

.nav-menu a.active::after{

    width:100%;

}

/* ==========================================
   Logo
========================================== */

.logo{

    font-size:28px;

    font-weight:700;

    color:var(--heading-color);

    text-decoration:none;

    transition:.35s;

}

.logo:hover{

    color:var(--primary);

}

.logo span{

    color:var(--primary);

}

/*==========================================
   Theme Toggle
==========================================*/

.theme-toggle{

    width:48px;
    height:48px;

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

    border:none;
    border-radius:50%;

    background:var(--card-color);
    color:var(--heading-color);

    cursor:pointer;

    font-size:18px;

    transition:all .35s ease;

    backdrop-filter:blur(10px);

    border:1px solid var(--border);

    margin-right:12px;

}

.theme-toggle:hover{

    background:var(--primary);

    color:#FFFFFF;

    transform:rotate(180deg);

}

.theme-toggle i{

    transition:all .35s ease;

}

/* ==========================================
   Navigation
========================================== */

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-menu li{

    position:relative;

}

.nav-menu a{

    position:relative;

    color:var(--text-color);

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

/* Hover */

.nav-menu a:hover{

    color:var(--primary);

}

/* Underline Animation */

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    border-radius:20px;

    transition:.35s ease;

}

.nav-menu a:hover::after{

    width:100%;

}

/* Active */

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a.active::after{

    width:100%;

}

/* ==========================================
   Button
========================================== */

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 30px;

    background:linear-gradient(135deg,#673DE6,#8B5CF6);

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(103,61,230,.35);

}

/* ==========================================
   Hero Section
========================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:140px 0 80px;

}

.hero-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

/* ==========================================
   Hero Background Effects
========================================== */

.hero{

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    top:-180px;

    right:-180px;

    background:#673DE6;

    border-radius:50%;

    filter:blur(220px);

    opacity:.18;

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    bottom:-150px;

    left:-150px;

    background:#8B5CF6;

    border-radius:50%;

    filter:blur(180px);

    opacity:.12;

    z-index:0;

}

/* ==========================================
   Keep Content Above Glow
========================================== */

.hero .container{

    position:relative;

    z-index:2;

}

/* ==========================================
   Left Content
========================================== */

.hero-text{

    flex:1;

}

.hero-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:16px;

    font-weight:600;

    margin-bottom:20px;

}

.hero-text h1{

    font-size:62px;

    line-height:1.2;

    margin-bottom:15px;

}

.hero-text h1 span{

    color:var(--primary);

}

.hero-text h2{

    font-size:28px;

    color:var(--text-color);

    font-weight:500;

    margin-bottom:25px;

}

.hero-text p{

    max-width:620px;

    color:var(--text-color);

    font-size:17px;

    margin-bottom:40px;

}

/* ==========================================
   Buttons
========================================== */

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border:1px solid var(--primary);

    border-radius:12px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary);

}

/* ==========================================
   Right Image
========================================== */

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image-box{

    width:550px;

    height:550px;

    border-radius:30px;

    overflow:hidden;

    border:2px solid rgba(103,61,230,.35);

    background:linear-gradient(135deg,#673DE6,#8B5CF6);

    padding:8px;

    box-shadow:0 0 60px rgba(103,61,230,.25);

}

.hero-image-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:24px;

}

.hero-image-box{

    box-shadow:
        0 25px 60px rgba(103, 61, 230, .25),
        0 0 40px rgba(103, 61, 230, .15);

}

/* ==========================================
   Floating Animation
========================================== */

.hero-image-box{

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

}

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==========================================
   Typewriter
========================================== */

#typing-text{

    color:var(--primary);

    font-weight:700;

}

#typing-text::after{

    content:"|";

    margin-left:3px;

    animation:blink .7s infinite;

}

@keyframes blink{

    50%{

        opacity:0;

    }

}

/* ==========================================
   Hero Statistics
========================================== */

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:60px;

    flex-wrap:wrap;

}

.stat-item h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

    font-weight:700;

}

.stat-item span{

    color:var(--text-color);

    font-size:15px;

}

/* ==========================================
   About Section
========================================== */

.about{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    font-size:16px;

}

.section-title h2{

    font-size:42px;

    margin-top:10px;

}

.about-content{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    max-width:420px;

    border-radius:25px;

    border:2px solid rgba(103,61,230,.3);

    box-shadow:0 0 40px rgba(103,61,230,.20);

}

.about-text h3{

    font-size:34px;

    margin-bottom:25px;

}

.about-text p{

    margin-bottom:22px;

    color:var(--text-color);

}

.about-info{

    display:grid;

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

    gap:25px;

    margin-top:35px;

}

.about-info div{

    background:var(--card-color);

    padding:22px;

    border-radius:16px;

    border:1px solid rgba(103,61,230,.25);

}

.about-info strong{

    display:block;

    color:var(--primary);

    margin-bottom:8px;

}

/* ==========================================
   Skills Section
========================================== */

.skills{

    padding:120px 0;

}

.skills-grid{

    display:grid;

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

    gap:30px;

}

.skill-card{

    background:var(--card-color);

    padding:35px;

    border-radius:18px;

    border:1px solid rgba(103,61,230,.25);

    transition:all .35s ease;

}

.skill-card:hover{

    transform:translateY(-10px);

    border-color:#673DE6;

    box-shadow:0 15px 40px rgba(103,61,230,.25);

}

.skill-card h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

}

.skill-card p{

    color:var(--text-color);

    line-height:1.7;

}

/*==========================================
   Projects Section
==========================================*/

.projects{
    padding:120px 0;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:70px;
}

.project-card{

    background:var(--card-color);
    border:1px solid rgba(103,61,230,.18);
    border-radius:20px;
    overflow:hidden;

    transition:.35s;

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

}

.project-card:hover{

    transform:translateY(-12px);

    border-color:#673DE6;

    box-shadow:0 25px 60px rgba(103,61,230,.30);

}

.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.06);

}

.project-body{

    padding:30px;

}

.project-body h3{

    font-size:28px;

    margin-bottom:15px;

    .project-content p{

    color:var(--text-color);

    }

}

.project-body p{

    .project-content p{

    color:var(--text-color);

    }

    line-height:1.8;

    margin-bottom:25px;

}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;

}

.project-tags span{

    padding:8px 15px;

    background:#673DE6;

    border-radius:30px;

    color:#fff;

    font-size:13px;

    font-weight:600;

}

.project-buttons{

    display:flex;

    gap:15px;

}

.project-buttons a{

    flex:1;

    text-align:center;

    padding:13px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-live{

    background:#673DE6;

    color:#fff;

}

.btn-live:hover{

    background:#7f5cff;

}

.btn-github{

    border:1px solid #673DE6;

    .project-content p{

    color:var(--text-color);

    }

}

.btn-github:hover{

    background:#673DE6;

}

@media(max-width:992px){

.projects-grid{

grid-template-columns:1fr;

}

}

/*==========================================
   Contact Section
==========================================*/

.contact{
    padding:120px 0;
}

.contact-wrapper{

    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    margin-top:70px;

}

/* Left Card */

.contact-info{

    background:var(--card-color);

    border:1px solid rgba(103,61,230,.18);

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.contact-info h3{

    font-size:32px;

    .contact-info h3{
    color:var(--heading-color);
    }

    margin-bottom:20px;

}

.contact-info > p{

    color:var(--text-color);

    line-height:1.8;

    margin-bottom:35px;

}

.contact-item{

    margin-bottom:28px;

}

.contact-item h4{

    color:#673DE6;

    font-size:15px;

    margin-bottom:8px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.contact-item p{

    .contact-info p{
    color:var(--text-color);
    }

    font-size:17px;

}

/* Right Card */

.contact-form{

    background:var(--card-color);

    border:1px solid rgba(103,61,230,.18);

    border-radius:20px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    background:#141b35;

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

    border-radius:12px;

    padding:18px 20px;

    color:#fff;

    font-size:16px;

    font-family:inherit;

    transition:.3s;

    resize:none;

}

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#8d94b8;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:#673DE6;

    box-shadow:0 0 0 4px rgba(103,61,230,.15);

}

.contact-form button{

    border:none;

    background:linear-gradient(135deg,#673DE6,#8B5CF6);

    color:#fff;

    padding:18px;

    border-radius:12px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(103,61,230,.35);

}

/* Responsive */

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-info,

.contact-form{

padding:30px;

}

}

/*==========================================
   Footer
==========================================*/

.footer{

    padding:80px 0 35px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-logo{

    font-size:42px;

    font-weight:800;

    .footer-logo{
    color:var(--heading-color);
    }

    text-decoration:none;

}

.footer-logo span{

    color:#673DE6;

}

.footer-content p{

    max-width:620px;

    margin:25px auto;

    .footer p{
    color:var(--text-color);
    }

    line-height:1.9;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:35px 0;

}

.footer-social a{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--card-color);

    border:1px solid rgba(103,61,230,.20);

    border-radius:50%;

    .footer p{
    color:var(--text-color);
    }

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:#673DE6;

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(103,61,230,.35);

}

.footer-menu{

    display:flex;

    justify-content:center;

    gap:35px;

    list-style:none;

    margin:35px 0;

    padding:0;

    flex-wrap:wrap;

}

.footer-menu a{

    .footer-links a{
    color:var(--heading-color);
    }

    text-decoration:none;

    transition:.3s;

}

.footer-menu a:hover{

    color:#673DE6;

}

/* ==========================================
   Footer Bottom
========================================== */

.footer-bottom{

    margin-top:45px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.06);

    display:flex;

    justify-content:center;

    align-items:center;

}

.footer-bottom p{

    margin:0;

    width:100%;

    text-align:center;

    color:var(--text-color);

    font-size:15px;

}

@media(max-width:768px){

.footer-logo{

font-size:34px;

}

.footer-menu{

gap:18px;

}

}

/*==========================================
   Sticky Navbar
==========================================*/

.header.sticky{

    background: var(--card-color);

    backdrop-filter:blur(18px);

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

    transition:.35s ease;

}

/*==========================================
   Mobile Menu Button
==========================================*/

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    cursor:pointer;

    flex-direction:column;

    justify-content:center;

    gap:6px;

}

.menu-toggle span{

    width:28px;

    height:3px;

    .menu-toggle span{

    background:var(--heading-color);

    }

    border-radius:10px;

    transition:.35s;

}

body.menu-open{

    overflow:hidden;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/* ==========================================
   Responsive Design
========================================== */

/* ==========================================
   Tablet Responsive
========================================== */

@media (max-width:1024px){

    .container{

        width:92%;

    }

    /* ================= Hero ================= */

.hero{
    padding:120px 0 80px;
}

.hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:60px;
    text-align:center;
}

.hero-text{
    order:1;
    width:100%;
}

.hero-image{
    order:2;
    width:100%;
    display:flex;
    justify-content:center;
}

.hero-image-box{
    width:450px;
    height:450px;
    margin:0 auto;
}

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

.hero-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

    /* ================= About ================= */

    .about-content{

        grid-template-columns:1fr;
        gap:60px;

    }

    .about-image{

        text-align:center;

    }

    .about-image img{

        max-width:420px;

    }

    /* ================= Skills ================= */

    .skills-grid{

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

    }

    /* ================= Projects ================= */

    .projects-grid{

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

    }

    /* ================= Contact ================= */

    .contact-content{

        grid-template-columns:1fr;

        gap:40px;

    }

    /* ================= Footer ================= */

    .footer-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

/* ==========================================
   Mobile Responsive
========================================== */

@media (max-width:768px){

    /* ================= Container ================= */

    .container{
        width:92%;
    }

    /* ================= Header ================= */

    .header{
        height:70px;
    }

    .navbar{
        height:70px;
    }

    .logo{
        font-size:24px;
    }

    .navbar .btn-primary{
    display:none;
    }

    .menu-toggle{

    display:flex;

   }

   .nav-menu{

    position:fixed;

    top:70px;

    left:-100%;

    width:100%;

    height:calc(100vh - 70px);

    background:rgba(15,23,42,.96);

    backdrop-filter:blur(20px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:.35s;

    }

    .nav-menu.active{

    left:0;

    }

    .btn-primary{
        padding:12px 22px;
        font-size:14px;
    }

   /* ================= Hero ================= */

   .hero{
    padding:100px 0 70px;
    }

    .hero-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:40px;
    text-align:center;
    }

    .hero-text{
    width:100%;
    order:1;
    }

   .hero-subtitle{
    display:block;
    text-align:center;
    }

.hero h1{
    font-size:52px;
    line-height:1.15;
    color: var(--heading-color);
}

.hero h2{
    font-size:34px;
    min-height:90px;
}

.hero p{
    max-width:100%;
    font-size:17px;
    margin:0 auto 35px;
}

.hero-image{
    width:100%;
    order:2;
    display:flex;
    justify-content:center;
}

.hero-image-box{
    width:320px;
    height:320px;
    margin:0 auto;
}

.hero-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.hero-buttons a{
    width:220px;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

    /* ================= Section Title ================= */

    .section-title h2{
        font-size:42px;
    }

    /* ================= About ================= */

    .about-content{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image{
        text-align:center;
    }

    .about-image img{
        max-width:340px;
    }

    .about-info{
        grid-template-columns:1fr;
    }

    /* ================= Skills ================= */

    .skills-grid{
        grid-template-columns:1fr;
    }

    /* ================= Projects ================= */

    .projects-grid{
        grid-template-columns:1fr;
    }

    /* ================= Contact ================= */

    .contact-content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-form{
        padding:30px;
    }

    /* ================= Footer ================= */

    .footer-links{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .nav-menu a{

    font-size:24px;

    font-weight:600;

    background:transparent;

    transition:.35s;

    }

    .nav-menu a:hover{

    color:var(--primary);

    transform:translateX(8px);

    }

    .theme-toggle{

    width:42px;

    height:42px;

    font-size:16px;

    }

}

/*==========================================
   Scroll To Top Button
==========================================*/

#scrollTopBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:linear-gradient(135deg,#673DE6,#8B5CF6);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(103,61,230,.35);

    z-index:9999;

}

#scrollTopBtn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(103,61,230,.45);

}

#scrollTopBtn.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/*==========================================
   Scroll Reveal Animation
==========================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*==========================================
   Light Theme - Contact Form
==========================================*/

body.light-theme .contact-form{

    background:#FFFFFF;

    border:1px solid rgba(15,23,42,.08);

    box-shadow:0 20px 60px rgba(15,23,42,.08);

}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea{

    width:100%;

    background:#F8FAFC;

    color:#111827;

    border:1px solid #E2E8F0;

    transition:all .35s ease;

}

body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder{

    color:#94A3B8;

}

body.light-theme .contact-form input:focus,
body.light-theme .contact-form textarea:focus{

    background:#FFFFFF;

    border-color:var(--primary);

    box-shadow:0 0 0 5px rgba(103,61,230,.12);

    outline:none;

}

/*==========================================
   Light Theme - Mobile Menu
==========================================*/

body.light-theme .menu-toggle{

    background:transparent;

}

body.light-theme .menu-toggle span{

    background:#111827;

}

@media (max-width:768px){

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .menu-toggle span{

        width:24px;
        height:3px;
        background:var(--heading-color);
        border-radius:10px;

    }

}

/* ==========================================
   Premium Preloader
========================================== */

#preloader{

    position:fixed;

    inset:0;

    width:100%;

    height:100vh;

    background:var(--bg-color);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity .6s ease, visibility .6s ease;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader{

    text-align:center;

}

.loader-logo{

    font-size:54px;

    font-weight:800;

    color:var(--heading-color);

    margin-bottom:30px;

    letter-spacing:1px;

}

.loader-logo span{

    color:var(--primary);

}

.loader-line{

    width:220px;

    height:5px;

    background:rgba(103,61,230,.15);

    border-radius:50px;

    overflow:hidden;

    margin:0 auto 22px;

}

.loader-line span{

    display:block;

    width:45%;

    height:100%;

    background:linear-gradient(90deg,#673DE6,#8B5CF6);

    border-radius:50px;

    animation:loaderMove 1.4s infinite ease-in-out;

}

.loader p{

    color:var(--text-color);

    font-size:15px;

    letter-spacing:1px;

}

@keyframes loaderMove{

    0%{

        transform:translateX(-100%);

    }

    100%{

        transform:translateX(320%);

    }

}
