/*====================================
        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;

    scroll-behavior:smooth;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:#F8FBFF;

    color:#0F172A;

    overflow-x:hidden;

}

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

.container{

    width:min(92%,1300px);

    margin:auto;

}

/*====================================
        LINKS
====================================*/

a{

    text-decoration:none;

}

/*====================================
        BUTTONS
====================================*/

.btn-primary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 30px;

    border-radius:14px;

    background:#2563EB;

    color:white;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:#1D4ED8;

    box-shadow:0 15px 35px rgba(37,99,235,.25);

}

.btn-secondary{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 30px;

    border-radius:14px;

    border:2px solid #2563EB;

    color:#2563EB;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#2563EB;

    color:white;

}

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

.section-title{

    margin-bottom:70px;

}

.section-title.center{

    text-align:center;

}

.section-title.left{

    text-align:left;

}

.section-title h2{

    font-size:4.3rem;

    font-weight:800;

    letter-spacing:3px;

    text-transform:uppercase;

    color:transparent;

    -webkit-text-stroke:2px #2563EB;

    margin-bottom:20px;

}

.section-title p{

    max-width:760px;

    font-size:1.1rem;

    line-height:1.9;

    color:#64748B;

}

.section-title.center p{

    margin:auto;

}

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

.navbar{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:92%;

    max-width:1450px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 30px;

    background:rgba(120,170,255,.12);

    backdrop-filter:blur(18px);

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

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

    border-radius:22px;

    box-shadow:0 10px 35px rgba(37,99,235,.10);

    z-index:1000;

}

.nav-left{

    flex:none;

    width:auto;

    display:flex;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:52px;

    height:52px;

    object-fit:contain;

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.logo-title{

    font-size:1rem;

    font-weight:700;

    letter-spacing:1px;

    color:#111827;

}

.logo-subtitle{

    margin-top:4px;

    font-size:.75rem;

    letter-spacing:3px;

    color:#2563EB;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:32px;

}

.nav-links a{

    position:relative;

    color:#334155;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#2563EB;

}

.nav-links a.active{

    color:#2563EB;

    font-weight:700;

}

.nav-links a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:3px;

    border-radius:20px;

    background:#2563EB;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.phone{

    color:#334155;

    font-weight:500;

    transition:.3s;

}

.phone:hover{

    color:#2563EB;

}

.nav-demo{

    padding:12px 24px;

    background:#2563EB;

    color:white;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.nav-demo:hover{

    background:#1D4ED8;

    transform:translateY(-2px);

}

/*====================================
        BOOK DEMO SECTION
====================================*/

.demo{

    padding:140px 8%;

    text-align:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:white;

}

.demo h2{

    font-size:3rem;

    margin-bottom:20px;

}

.demo p{

    max-width:720px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.9;

    opacity:.92;

}

.demo-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.demo .btn-secondary{

    color:white;

    border-color:white;

}

.demo .btn-secondary:hover{

    background:white;

    color:#2563EB;

}

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

.footer{

    background:#08111F;

    color:white;

    padding:80px 8% 35px;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    gap:80px;

    flex-wrap:wrap;

}

.footer-about{

    max-width:340px;

}

.footer-about h2{

    color:#3B82F6;

    margin-bottom:20px;

}

.footer-about p{

    color:#CBD5E1;

    line-height:1.9;

}

.footer-links{

    display:flex;

    gap:80px;

    flex-wrap:wrap;

}

.footer-links div{

    display:flex;

    flex-direction:column;

}

.footer-links h4{

    margin-bottom:20px;

}

.footer-links a{

    color:#94A3B8;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover{

    color:#3B82F6;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

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

    text-align:center;

    color:#94A3B8;

}

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

@media(max-width:992px){

   .navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:nowrap;

    padding:14px 18px;

}

    

    .nav-left{

    flex:none;

    width:auto;

    display:flex;

    align-items:center;

}

    

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

    }

    .footer-container{

        flex-direction:column;

    }

}

@media(max-width:768px){

    .section-title h2{

        font-size:2.8rem;

        -webkit-text-stroke:1.5px #2563EB;

    }

    .section-title{

        text-align:center;

    }

    .section-title p{

        margin:auto;

    }

    .demo{

        padding:90px 6%;

    }

    .demo-buttons{

        flex-direction:column;

        align-items:center;

    }

    .nav-right{

        flex-direction:column;

        width:100%;

    }

    .nav-demo{

        width:100%;

        text-align:center;

    }

}

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

.footer{

    background:#07121F;

    color:white;

    padding:90px 8% 35px;

}

.footer-top{

    display:grid;

    grid-template-columns:1.2fr 2fr;

    gap:80px;

    align-items:start;

}

.footer-brand img{

    width:85px;

    margin-bottom:10px;

}

.footer-brand h2{

    font-size:2rem;

    margin-bottom:18px;

    letter-spacing:1px;

}

.footer-brand p{

    color:#B6C2D1;

    line-height:1.9;

    max-width:420px;

}

.footer-links{

    display:grid;

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

    gap:40px;

}

.footer-links h3{

    margin-bottom:22px;

    color:white;

    font-size:1.1rem;

}

.footer-links a{

    display:block;

    margin-bottom:14px;

    color:#AAB8C7;

    transition:.3s;

}

.footer-links a:hover{

    color:#60A5FA;

    padding-left:6px;

}

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

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

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94A3B8;

}

.social-links{

    display:flex;

    gap:20px;

}

.social-links a{

    color:#94A3B8;

    transition:.3s;

    font-weight:500;

}

.social-links a:hover{

    color:#60A5FA;

}

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr;

}

.footer-links{

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

}

}

@media(max-width:768px){

.footer{

padding:70px 6% 25px;

}

.footer-links{

grid-template-columns:1fr;

gap:30px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.social-links{

justify-content:center;

}

}

/*====================================
        HAMBURGER
====================================*/

.hamburger{

    display:none;

    background:none;

    border:none;

    cursor:pointer;

    flex-direction:column;

    gap:6px;

}

.hamburger span{

    width:28px;

    height:3px;

    background:#2563EB;

    border-radius:20px;

    transition:.35s;

}

/*==============================*/

.mobile-menu{

    position:fixed;

    top:90px;

    left:50%;

    transform:translateX(-50%) scaleY(0);

    transform-origin:top;

    width:90%;

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

    backdrop-filter:blur(18px);

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:18px;

    z-index:2000;

    transition:.35s;

    opacity:0;

    pointer-events:none;

}

.mobile-menu.active{

    transform:translateX(-50%) scaleY(1);

    opacity:1;

    pointer-events:auto;

}

.mobile-menu a{

    text-decoration:none;

    color:#0F172A;

    font-weight:600;

}

.mobile-demo{

    background:#2563EB;

    color:white !important;

    text-align:center;

    padding:14px;

    border-radius:12px;

}

/*==============================*/

@media (max-width:768px){

    /* Hide Desktop Items */

    .nav-links,
    .nav-right{

        display:none;

    }

    /* Navbar */

    .navbar{

        display:flex;

        justify-content:space-between;

        align-items:center;

        flex-wrap:nowrap;

        width:92%;

        padding:14px 18px;

    }

    /* Logo */

    .nav-left{

        display:flex;

        align-items:center;

        flex:0 0 auto;

        gap:0;

    }

    .logo{

        display:flex;

        align-items:center;

        gap:10px;

        text-decoration:none;

    }

    .logo img{

        width:42px;

        height:42px;

        flex-shrink:0;

    }

    .logo-text{

        display:flex;

        flex-direction:column;

        line-height:1;

    }

    .logo-title{

        font-size:0.95rem;

    }

    .logo-subtitle{

        font-size:0.65rem;

    }

    /* Hamburger */

    .hamburger{

        display:flex;

        margin-left:auto;

        flex-shrink:0;

    }

}

/*====================================
      NAVBAR OVER FOOTER
====================================*/

.footer-navbar{

    background:rgba(8,18,38,.72);

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

    backdrop-filter:blur(20px);

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

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

    transition:.35s ease;

}

.footer-navbar .nav-links a{

    color:#F8FAFC;

}

.footer-navbar .phone{

    color:#F8FAFC;

}

.footer-navbar .logo-title,

.footer-navbar .logo-subtitle{

    color:#F8FAFC;

}

.footer-navbar .hamburger span{

    background:#ffffff;

}

.footer-navbar .nav-demo{

    background:#ffffff;

    color:#2563EB;

}