*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#081120;
    color:white;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

nav{
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:1000;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

.logo{
    font-size:25px;
    font-weight:bold;
    color:#00d4ff;
}
.logo img{
    max-width:140px;
    height:auto;
    object-fit:contain;
    display:block;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-size:16px;
}

nav ul li a:hover{
    color:#00d4ff;
}


/* TOGGLE BUTTON (hidden on desktop) */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#00d4ff;
}

/* MOBILE MENU */
@media(max-width:700px){

    .menu-toggle{
        display:block;
    }

    nav ul{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:rgba(0,0,0,0.9);
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    nav ul.show{
        display:flex;
    }
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8%;
    gap:40px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:300px;
    animation:slideLeft 1s ease;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#00d4ff;
}

.hero-text p{
    color:#b5c6d8;
    line-height:1.8;
    margin-bottom:30px;
    font-size:18px;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(45deg,#00d4ff,#0066ff);
    border-radius:40px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,212,255,0.4);
}

.hero-image{
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:center;
    align-items:center;
    animation:slideRight 1s ease;
}

/*.circle{*/
/*    width:350px;*/
/*    height:350px;*/
/*    border-radius:50%;*/
/*    background:linear-gradient(45deg,#00d4ff,#0044ff);*/
/*    position:relative;*/
/*    animation:float 4s ease-in-out infinite;*/
/*    box-shadow:0 0 60px rgba(0,212,255,0.4);*/
/*}*/

/*.circle::before{*/
/*    content:'DATABASE';*/
/*    position:absolute;*/
/*    inset:25px;*/
/*    background:#081120;*/
/*    border-radius:50%;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*    font-size:32px;*/
/*    font-weight:bold;*/
/*    color:#00d4ff;*/
/*}*/



/* OUTER CIRCLE */
.circle{
    width:350px;
    height:350px;
    border-radius:50%;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#22365f; /* inner circle color */
    overflow:hidden;
}

/* ROTATING OUTER RING */
.ring{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:6px solid transparent;
    border-top:6px solid #00d4ff;
    border-right:6px solid #ff4dff;
    border-bottom:6px solid #00ff99;
    border-left:6px solid #ffcc00;
    animation:spin 3.5s linear infinite;
}

/* CENTER TEXT AREA */
.center-text{
    position:absolute;
    text-align:center;
    z-index:2;
    width:80%;
}

/* WORDS */
.word{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:40px;
    font-weight:bold;
    color:white;
    opacity:0;
    transition:0.6s;
}

/* ACTIVE WORD */
.word.active{
    opacity:1;
}

/* ROTATION */
@keyframes spin{
    0%{ transform:rotate(0deg); }
    100%{ transform:rotate(360deg); }
}

/* ================= SERVICES ================= */

section{
    padding:80px 8%;
}

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h2{
    font-size:42px;
    color:#00d4ff;
    margin-bottom:10px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:35px;
    border-radius:20px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
    position:relative;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
    box-shadow:0 10px 30px rgba(0,212,255,0.2);
}

.card h3{
    margin-bottom:15px;
    color:#00d4ff;
    font-size:24px;
}

.card p{
    color:#c0d4e4;
    line-height:1.7;
}

/* ================= ABOUT ================= */

.about{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
    align-items:center;
}

.about-box{
    flex:1;
    min-width:300px;
}

.about-box h2{
    font-size:42px;
    color:#00d4ff;
    margin-bottom:20px;
}

.about-box p{
    color:#c0d4e4;
    line-height:1.8;
    margin-bottom:20px;
}

.about-design{
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:center;
}

.square{
    width:300px;
    height:300px;
    background:linear-gradient(45deg,#00d4ff,#0044ff);
    border-radius:30px;
    transform:rotate(45deg);
    animation:rotateAnim 6s linear infinite;
    box-shadow:0 0 50px rgba(0,212,255,0.4);
}

/* ===== 3D SCENE ===== */

.scene{
    width:210px;
    height:210px;
    perspective:1000px;
}

/* ===== CUBE ===== */

.cube{
    width:100%;
    height:100%;
    position:relative;
    transform-style:preserve-3d;
    animation:rotateCube 8s infinite linear;
}

/* ===== FACES ===== */

.face{
    position:absolute;
    width:210px;
    height:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
    color:#00d4ff;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,212,255,0.3);
    backdrop-filter:blur(10px);
}

/* Position each face */


.front  { transform:translateZ(105px); }
.back   { transform:rotateY(180deg) translateZ(105px); }
.right  { transform:rotateY(90deg) translateZ(105px); }
.left   { transform:rotateY(-90deg) translateZ(105px); }
.top    { transform:rotateX(90deg) translateZ(105px); }
.bottom { transform:rotateX(-90deg) translateZ(105px); }



@media (max-width: 700px){

    .scene{
        width:150px;   /* smaller cube on mobile */
        height:150px;
        perspective:800px;
        margin:auto;
        margin-top:40px;
    }

    .face{
        width:150px;
        height:150px;
        font-size:16px;
        margin-top:40px;
    }
    
    .word{
    font-size:30px;}

    /* adjust depth for smaller cube */
    .front  { transform:translateZ(75px); }
    .back   { transform:rotateY(180deg) translateZ(75px); }
    .right  { transform:rotateY(90deg) translateZ(75px); }
    .left   { transform:rotateY(-90deg) translateZ(75px); }
    .top    { transform:rotateX(90deg) translateZ(75px); }
    .bottom { transform:rotateX(-90deg) translateZ(75px); }
}
/* ===== ANIMATION ===== */

@keyframes rotateCube{
    0%{
        transform:rotateX(0deg) rotateY(0deg);
    }
    100%{
        transform:rotateX(360deg) rotateY(360deg);
    }
}

/* ================= CONTACT ================= */

.contact form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{
    padding:16px;
    border:none;
    outline:none;
    border-radius:12px;
    background:rgba(255,255,255,0.06);
    color:white;
    font-size:16px;
}

.contact textarea{
    height:150px;
    resize:none;
}

.contact button{
    border:none;
    cursor:pointer;
}

/* ================= FOOTER ================= */

footer{
    text-align:center;
    padding:30px;
    color:#9fb6c9;
    border-top:1px solid rgba(255,255,255,0.1);
}

/* ================= ANIMATIONS ================= */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rotateAnim{
    0%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(360deg);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:42px;
    }

    .about{
        flex-direction:column;
    }

}

@media(max-width:700px){

    nav ul{
        display:none;
    }

    .hero-text h1{
        font-size:34px;
    }

    .circle{
        width:250px;
        height:250px;
    }

    .circle::before{
        font-size:24px;
    }

    .title h2,
    .about-box h2{
        font-size:32px;
    }

}

/* ================= PORTFOLIO ================= */

.portfolio-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.project-card{
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,212,255,0.2);
}

.project-image{
    height:220px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.blue-theme{
    background:linear-gradient(45deg,#00d4ff,#0044ff);
}

.purple-theme{
    background:linear-gradient(45deg,#8b5cf6,#4c1d95);
}

.green-theme{
    background:linear-gradient(45deg, #3c5087, #001849);
}

.screen{
    width:180px;
    height:120px;
    background:#081120;
    border-radius:12px;
    position:relative;
    animation:float 4s ease-in-out infinite;
}

.screen::before{
    content:'';
    position:absolute;
    width:70%;
    height:12px;
    background:#00d4ff;
    top:20px;
    left:15%;
    border-radius:10px;
}

.screen::after{
    content:'';
    position:absolute;
    width:50%;
    height:12px;
    background:#ffffff;
    top:50px;
    left:15%;
    border-radius:10px;
}

.project-content{
    padding:25px;
}

.project-content h3{
    margin-bottom:15px;
    color:#00d4ff;
}

.project-content p{
    line-height:1.7;
    color:#c0d4e4;
    margin-bottom:20px;
}

.tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.tags span{
    padding:8px 14px;
    background:rgba(0,212,255,0.15);
    border-radius:30px;
    font-size:14px;
}

.project-btn{
    padding:12px 25px;
    border:none;
    border-radius:30px;
    background:linear-gradient(45deg,#00d4ff,#0066ff);
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.project-btn:hover{
    transform:scale(1.05);
}

/* ================= PROCESS ================= */

.process-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.process-box{
    text-align:center;
    padding:35px;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    transition:0.4s;
}

.process-box:hover{
    transform:translateY(-10px);
}

.number{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:linear-gradient(45deg,#00d4ff,#0066ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

/* ================= STATS ================= */

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    text-align:center;
    padding:40px;
    background:linear-gradient(45deg,#00d4ff,#0044ff);
    border-radius:20px;
    transition:0.4s;
}

.stat-box:hover{
    transform:scale(1.05);
}

.stat-box h2{
    font-size:48px;
    margin-bottom:10px;
}

/* ================= TESTIMONIALS ================= */

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,0.05);
    padding:35px;
    border-radius:20px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#00d4ff;
}

.testimonial-card p{
    line-height:1.8;
    color:#c0d4e4;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#00d4ff;
}




/* TECH */
.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
    gap:15px;
    text-align:center;
}

.tech{
    padding:15px;
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    transition:0.3s;
}

.tech:hover{
    background:#00d4ff;
    color:black;
}

/* PRICING */
/* ================= MODERN PRICING ================= */

.pricing-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:40px;
}

.price-card{
    position:relative;
    padding:40px 30px;
    border-radius:28px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    overflow:hidden;
    transition:0.45s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.25),
        inset 0 1px 1px rgba(255,255,255,0.08);
}

/* glowing top effect */

.price-card::before{
    content:'';
    position:absolute;
    top:-120px;
    left:-60px;
    width:220px;
    height:220px;
    background:radial-gradient(circle,#00d4ff55,transparent 70%);
    transition:0.5s;
}

.price-card:hover::before{
    transform:scale(1.4);
}

/* hover */

.price-card:hover{
    transform:translateY(-14px);
    border-color:#00d4ff;
    box-shadow:
        0 15px 40px rgba(0,212,255,0.25),
        0 0 25px rgba(0,212,255,0.15);
}

/* title */

.price-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#ffffff;
    position:relative;
    z-index:2;
}

/* price */

.price-card h1{
    font-size:54px;
    margin-bottom:25px;
    color:#00d4ff;
    font-weight:800;
    position:relative;
    z-index:2;
}
/* Renewal Price */
.price-card .renewal-price {
    font-size: 10px;
    color: #00d4ff;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
/* features */

.price-card p{
    margin:8px 0;
    color:#c9d7e6;
    font-size:15px;
    line-height:1.6;
    position:relative;
    z-index:2;
}

/* button */

.price-card button{
    margin-top:28px;
    width:100%;
    padding:14px;
    border:none;
    border-radius:14px;
    background:linear-gradient(45deg,#00d4ff,#0066ff);
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.35s;
    position:relative;
    z-index:2;
}

.price-card button:hover{
    transform:scale(1.03);
    box-shadow:0 10px 20px rgba(0,212,255,0.35);
}

/* MOST POPULAR CARD */

.popular{
    border:2px solid #00d4ff;
    transform:scale(1.03);
}

/* badge */

.popular::after{
    content:'MOST POPULAR';
    position:absolute;
    top:30px;
    right:-60px;
    background:#00d4ff;
    color:#081120;
    padding:10px 50px;
    font-size:12px;
    font-weight:bold;
    transform:rotate(45deg);
    letter-spacing:1px;
}

/* responsive */

@media(max-width:700px){

    .price-card{
        padding:35px 25px;
    }

    .price-card h1{
        font-size:42px;
    }

    .price-card h3{
        font-size:24px;
    }
    
    
    .footer{
        text-align:center;
    }

    .socials{
        justify-content:center;
    }

    .legal-links{
        flex-direction:column;
        gap:10px;
    }

    .footer-bottom{
        gap:20px;
    }
    
    .footer-logo img{
    margin-bottom: 10px;
}
}

.popular{
    border:2px solid #00d4ff;
}

/* FAQ */
.faq-item{
    background:rgba(255,255,255,0.05);
    padding:20px;
    margin-bottom:10px;
    border-radius:10px;
    cursor:pointer;
}

.answer{
    display:none;
    margin-top:10px;
    color:#b5c6d8;
}

/* NEWSLETTER */
.newsletter-box{
    text-align:center;
    padding:50px;
    background:linear-gradient(45deg,#00d4ff,#0044ff);
    border-radius:20px;
}

.newsletter-box input{
    padding:10px;
    width:60%;
    margin-top:15px;
    border:none;
    border-radius:10px;
}

/* COUNTER */
.counter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    text-align:center;
}

.num{
    font-size:50px;
    color:#00d4ff;
}


/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER
========================= */

.footer{
    background: rgb(0 0 0 / 40%);
    color: #fff;
    padding: 25px 15px 10px;
    width: 100%;
}

.footer-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}

.footer-logo img{
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover{
    color: #cfe2ff;
}

.socials{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.socials a img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.socials a img:hover{
    transform: scale(1.1);
}

.footer-bottom{
    text-align: center;
    padding: 15px 10px 20px;
}

.copyright{
    font-size: 14px;
    line-height: 1.6;
}

.legal-links{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.legal-links a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.legal-links a:hover{
    color: #cfe2ff;
}


/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position: fixed;
    width: 55px;
    height: 55px;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-float img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: 0.3s;
}

.whatsapp-float img:hover{
    transform: scale(1.1);
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

    .footer{
        text-align: center;
        padding: 20px 10px;
    }

    .footer-top{
        flex-direction: column;
        padding: 15px 10px;
    }

    .footer-logo img{
        max-width: 120px;
        margin: auto;
    }

    .footer-links{
        
        gap: 10px;
    }

    .socials{
        justify-content: center;
    }

    .legal-links{
        flex-direction: column;
        gap: 10px;
    }

    .copyright{
        font-size: 13px;
    }

    .whatsapp-float{
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}