/* =========================
   GLOBAL SETTINGS
========================= */

:root{
    --bg-color:#050816;
    --bg-soft:#0b1124;
    --primary:#7c3aed;
    --secondary:#06b6d4;
    --white:#ffffff;
    --text:#cbd5e1;
    --glass:rgba(255,255,255,0.08);
    --border:rgba(255,255,255,0.12);
    --shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
     scroll-behavior:smooth;
}

body{
    font-family:"Manrope",sans-serif;
    background:
    radial-gradient(circle at top left,
    rgba(124,58,237,.25),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(6,182,212,.20),
    transparent 35%),
    var(--bg-color);
    color:var(--white);
    overflow-x:hidden;
}
a{
    text-decoration:none;
    color:inherit;
}
img{
    max-width:100%;
}
/* =========================
   HEADER NAVBAR
   ========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}
.navbar{
    width:90%;
    max-width:1200px;
    margin:25px auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:20px;
}
.logo{
    font-family:"Space Grotesk";
    font-size:25px;
    font-weight:700;
}
.logo span{
    color:#8b5cf6;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}
.nav-links a{
    color:#cbd5e1;
    font-size:15px;
    transition:.3s;
}
.nav-links a:hover{
    color:white;
}
.nav-button{
    padding:12px 25px;
    border-radius:50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-weight:600;
}
.menu-icon{
    display:none;
    font-size:25px;
}

/* =========================
 HERO SECTION
========================= */

.hero{
    min-height:100vh;
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    padding-top:120px;
}
.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.07);
    padding:10px 18px;
    border-radius:50px;
    color:#ddd;
    margin-bottom:25px;
    border:1px solid var(--border);
}
.hero-tag span{
    height:8px;
    width:8px;
    border-radius:50%;
    background:#22c55e;
}
.hero h1{
    font-family:"Space Grotesk";
    font-size:clamp(45px,5vw,75px);
    line-height:1.05;
    letter-spacing:-2px;
}

.hero h1 span{
    background: linear-gradient(90deg, #8b5cf6, #06b6d4);
    -webkit-background-clip:text;
    color:transparent;
}
.hero p{
    margin-top:25px;
    color:var(--text);
    font-size:18px;
    line-height:1.8;
    max-width:550px;
}
.hero-actions{
    margin-top:40px;
    display:flex;
    gap:20px;
}
.primary-btn,
.secondary-btn{
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.primary-btn{
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
}
.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
}
.secondary-btn{
    border:1px solid var(--border);
    background:rgba(255,255,255,.05);
}
/* =========================
 HERO VISUAL
========================= */

.hero-visual{
    position:relative;
    height:550px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.glow-circle{
    position:absolute;
    width:350px;
    height:350px;
    background: linear-gradient(135deg, #7c3aed, #06b6d4);
    filter:blur(90px);
    opacity:.5;
}
.app-card{
    position:relative;
    width:260px;
    height:480px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:40px;
    padding:20px;
    box-shadow:var(--shadow);
}
.phone{
    height:100%;
    border-radius:30px;
    background:#020617;
    display:flex;
    align-items:center;
    justify-content:center;
}
.phone-screen{
    text-align:center;
}
.phone-screen i{
    font-size:70px;
    color:#8b5cf6;
}
.phone-screen h3{
    margin-top:20px;
    font-family:"Space Grotesk";
}
.phone-screen p{
    font-size:14px;
}
.floating-card{
    position:absolute;
    display:flex;
    gap:15px;
    align-items:center;
    padding:15px 20px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    border:1px solid var(--border);
    border-radius:18px;
}
.floating-card i{
    font-size:25px;
    color:#06b6d4;
}
.floating-card small{
    display:block;
    color:#aaa;
}
.card-one{
    left:0;
    top:100px;
}
.card-two{
    right:0;
    bottom:100px;
}
/* =========================
   COMMON SECTION STYLE
========================= */

section{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:120px 0;
}
.section-title{
    text-align:center;
    margin-bottom:70px;
}
.section-title span{
    color:#06b6d4;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
}

.section-title h2{
    margin-top:15px;
    font-family:"Space Grotesk";
    font-size:45px;
    letter-spacing:-1px;
}

/* =========================
   ABOUT SECTION
========================= */
.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
.about-text p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:18px;
    margin-bottom:25px;
}
.about-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
.about-box div{
    padding:35px 20px;
    text-align:center;
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    border-radius:25px;
    backdrop-filter:blur(20px);
}
.about-box strong{
    display:block;
    font-size:35px;
    font-family:"Space Grotesk";
    color:white;
}
.about-box span{
    color:#94a3b8;
}

/* =========================
 SERVICES SECTION
========================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.service-card{
    padding:35px;
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    border-radius:30px;
    transition:.4s;
}
.service-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,.12);
}
.service-card i{
    font-size:40px;
    color:#8b5cf6;
    margin-bottom:25px;
}

.service-card h3{
    font-family:"Space Grotesk";
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#94a3b8;
    line-height:1.7;
}

/* =========================
 PRODUCTS SECTION
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.product-card{
    padding:35px;
    text-align:center;
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    border-radius:30px;
    transition:.4s;
}
.product-card:hover{
    transform:translateY(-10px);
    box-shadow: 0 20px 60px rgba(124,58,237,.25);
}
.product-card img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:25px;
    margin-bottom:25px;
}
.product-card h3{
    font-family:"Space Grotesk";
    font-size:22px;
}
.product-card p{
    color:#94a3b8;
    margin-top:10px;
}

/* =========================
 CONTACT SECTION
========================= */
.contact-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 22px;
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
    border-radius:18px;
    color:white;
    outline:none;
    font-size:16px;
}
.contact-form textarea{
    height:180px;
    resize:none;
}
.contact-form button{
    padding:18px;
    border:none;
    border-radius:50px;
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    background: linear-gradient(135deg,#7c3aed,#06b6d4);
}
/* =========================
 FOOTER
========================= */
.footer{
    width:100%;
    padding:50px 20px;
    text-align:center;
    border-top:1px solid var(--border);
    background:rgba(255,255,255,.03);
}
.footer h3{
    font-family:"Space Grotesk";
    font-size:30px;
}

.footer p{
    color:#94a3b8;
    margin:15px 0;
}
.social-icons{
    display:flex;
    justify-content:center;
    gap:20px;
}
.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    transition:.3s;
}
.social-icons a:hover{
    background:#7c3aed;
    transform:translateY(-5px);
}
/* =========================
 MOBILE RESPONSIVE
========================= */

@media(max-width:1000px){
    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero p{
        margin-left:auto;
        margin-right:auto;
    }
    .hero-actions{
        justify-content:center;
    }
    .hero-visual{
        height:500px;
    }
    .about-content{
        grid-template-columns:1fr;
    }
    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:700px){
    .navbar{
        padding:15px 20px;
    }
    .nav-links,
    .nav-button{
        display:none;
    }
    .menu-icon{
        display:block;
    }
    .hero h1{
        font-size:42px;
    }
    .hero-actions{
        flex-direction:column;
    }
    .section-title h2{
        font-size:35px;
    }
    .about-box{
        grid-template-columns:1fr;
    }
        .service-grid,
    .product-grid{
          grid-template-columns:1fr;
    }
    .floating-card{
        transform:scale(.8);
    }
}
/* =========================
   MOBILE MENU ACTIVE
========================= */

@media(max-width:700px){
    .nav-links.active{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        padding:30px;
        gap:25px;
        background:rgba(5,8,22,.92);
        backdrop-filter:blur(20px);
        border-radius:25px;
        border:1px solid var(--border);
      }
}
/* =========================
   FLOATING ANIMATIONS
========================= */
.app-card{
    animation: floating 5s ease-in-out infinite;
}
.floating-card{
    animation: floatingSmall 4s ease-in-out infinite;
}
.card-two{
    animation-delay:1s;
}

@keyframes floating{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0);
    }
}

@keyframes floatingSmall{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

/* =========================
   BACKGROUND ORBS
========================= */

body::before{
    content:"";
    position:fixed;
    width:400px;
    height:400px;
    top:20%;
    left:-150px;
    background:#7c3aed;
    filter:blur(150px);
    opacity:.25;
    z-index:-1;
}
body::after{
    content:"";
    position:fixed;
    width:350px;
    height:350px;
    bottom:10%;
    right:-100px;
    background:#06b6d4;
    filter:blur(140px);
    opacity:.20;
    z-index:-1;
}
/* =========================
   SECTION HOVER DETAILS
========================= */

.service-card,
.product-card,
.about-box div{
    position:relative;
    overflow:hidden;
}

.service-card::before,
.product-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:
    linear-gradient(135deg, #7c3aed, #06b6d4);
    filter:blur(70px);
    opacity:0;
    transition:.4s;
}
.service-card:hover::before,
.product-card:hover::before{
    opacity:.5;
}
/* =========================
   BUTTON GLOW
========================= */
.primary-btn{
    box-shadow: 0 0 30px rgba(124,58,237,.35);
}
.primary-btn:hover{
       box-shadow: 0 0 50px rgba(6,182,212,.5);
}


/* =========================
 CONTACT INFORMATION
========================= */


.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}



.contact-info h3{

    font-family:"Space Grotesk";

    font-size:35px;

    margin-bottom:20px;

}



.contact-info p{

    color:#94a3b8;

    line-height:1.8;

    margin-bottom:35px;

}




.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    padding:20px;


    margin-bottom:15px;


    background:rgba(255,255,255,.06);


    border:1px solid var(--border);


    border-radius:20px;


}



.contact-item i{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;


    border-radius:50%;


    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #06b6d4
    );

}



.contact-item strong{

    display:block;

    font-size:16px;

}


.contact-item span{
    color:#94a3b8;
    font-size:14px;
}
@media(max-width:900px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

}