Ye raha complete cleaned CSS file. Maine `:root` variables add kiye, `@keyframes progress` add kiya, aur saari duplicate definitions hata di hain.

```css
/* ==========================
   ROOT VARIABLES
========================== */
:root{
    --container:1200px;
    --white:#ffffff;
    --aqua:#00E5FF;
    --text:#94A3B8;
    --dark:#05070B;
    --card:#0B1118;
    --border:#1E293B;
}

@keyframes progress{
    from{ stroke-dashoffset:200; }
    to{ stroke-dashoffset:0; }
}

@keyframes blink-pulse{
    0%,100%{ opacity:.5; }
    50%{ opacity:1; }
}

/* ==========================
   RESET
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#05070b;
    color:#ffffff;
    font-family:Arial,Helvetica,sans-serif;
}

.test{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

.test h1{
    font-size:60px;
    color:#ff8a00;
}

.test p{
    margin-top:20px;
    color:#a1a1aa;
    font-size:20px;
}

/* ==========================
   NAVBAR
========================== */
.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(5,7,11,.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    height:80px;
    padding:0 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:26px;
    font-weight:700;
    letter-spacing:1px;
    margin-left:-12px;
}

.logo span{
    color:#00E5FF;
}

.nav-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-menu a{
    color:#a1a1aa;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu .active{
    color:#00E5FF;
}

.nav-button{
    background:#00E5FF;
    color:#05070b;
    padding:11px 22px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    transition:.3s;
}

.nav-button:hover{
    background:#00B8D4;
}

.menu-toggle{
    display:none;
    width:40px;
    height:40px;
    border:1px solid #00E5FF;
    border-radius:6px;
    background:transparent;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.menu-toggle span{
    width:20px;
    height:2px;
    background:#00E5FF;
    transition:.3s;
}
/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #00E5FF;
    color: #00E5FF;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
}

/* MOBILE CTA HIDDEN ON DESKTOP */
.mobile-cta {
    display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {

    .nav-container {
        width: calc(100% - 30px);
        min-height: 75px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
    }

    .desktop-cta {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 25px 20px;
        background: #05070B;
        border-top: 1px solid #1E293B;
        border-bottom: 1px solid #00E5FF;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 10px;
    }

    .mobile-cta {
        display: block;
        margin-top: 12px;
    }

    .mobile-cta .nav-button {
        background: #00E5FF;
        color: #05070B;
        border-radius: 6px;
    }
}
@media(max-width:900px){
    .nav-container{
        height:70px;
        padding:0 20px;
    }
    .logo{
        font-size:22px;
    }
    .menu-toggle{
        display:flex;
    }
    .nav-menu{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#05070B;
        border-top:1px solid #1E293B;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
        transform:translateY(-120%);
        opacity:0;
        pointer-events:none;
        transition:.35s ease;
    }
    .nav-menu.active{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }
    .nav-menu a{
        font-size:15px;
    }
    .nav-button{
        display:none;
    }
}

@media(max-width:480px){
    .logo{
        font-size:19px;
    }
    .nav-container{
        padding:0 15px;
    }
    .menu-toggle{
        width:36px;
        height:36px;
    }
}

/* ==========================
   HERO SECTION
========================== */
.hero{
    min-height:100vh;
    padding-top:120px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero-badge{
    display:inline-block;
    padding:7px 15px;
    border:1px solid #00E5FF;
    border-radius:30px;
    color:#00E5FF;
    font-size:10px;
    letter-spacing:1px;
}

.hero-content h1{
    margin-top:25px;
    font-size:25px;
    line-height:1;
    font-weight:900;
    letter-spacing:-2px;
    color:#fff;
}

.hero-content h1 span{
    color:#00E5FF;
}

.hero-content p{
    margin-top:25px;
    max-width:520px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:12px;
    margin-top:35px;
    flex-wrap:wrap;
}

.hero-buttons a{
    padding:13px 22px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}

.primary-btn{
    background:#00E5FF;
    color:#05070B;
}

.secondary-btn{
    border:1px solid #00E5FF;
    color:#00E5FF;
}

.outline-btn{
    border:1px solid #1E293B;
    color:#fff;
}

.hero-social{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-social span{
    color:#64748B;
    font-size:10px;
}

.social-box{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #1E293B;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
}

.hero-image{
    height:520px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-card{
    width:300px;
    height:380px;
    overflow:hidden;
    border-radius:10px;
    border:1px solid #00E5FF;
    position:relative;
    z-index:2;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.diamond{
    position:absolute;
    width:360px;
    height:360px;
    border:2px solid rgba(0,229,255,.5);
    transform:rotate(45deg);
    border-radius:25px;
}

.info-card{
    position:absolute;
    right:20px;
    top:120px;
    width:160px;
    padding:15px;
    background:#0B1118;
    border:1px solid #00E5FF;
    border-radius:8px;
    z-index:3;
}

.info-card small{
    color:#00E5FF;
    font-size:10px;
}

.info-card p{
    margin-top:8px;
    color:#fff;
    font-size:11px;
    line-height:1.6;
}

.availability{
    position:absolute;
    left:40px;
    bottom:80px;
    padding:10px 15px;
    background:#0B1118;
    border:1px solid #00E5FF;
    color:#00E5FF;
    border-radius:20px;
    font-size:10px;
    z-index:3;
}

@media(max-width:1000px){
    .hero{
        min-height:auto;
        padding:100px 0 60px;
    }
    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }
    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }
    .hero-buttons,
    .hero-social{
        justify-content:center;
    }
    .hero-image{
        height:450px;
    }
}

@media(max-width:600px){
    .hero-container{
        width:calc(100% - 30px);
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.1;
    }

    .hero-content p{
        font-size:13px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        margin-top:35px;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }

    .hero-image{
        height:350px;
    }

    .image-card{
        width:210px;
        height:290px;
    }

    .diamond{
        width:240px;
        height:240px;
    }

    .info-card{
        right:0;
        top:40px;
        width:120px;
    }

    .info-card p{
        font-size:9px;
    }

    .availability{
        left:0;
        bottom:25px;
        font-size:9px;
    }
}
/* ==========================
   STATS SECTION
========================== */
.stats-section{
    padding:80px 0;
    background:#0B1118;
    border-top:1px solid #1E293B;
    border-bottom:1px solid #1E293B;
}

.stats-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    text-align:center;
    padding:35px 20px;
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:10px;
    transition:.35s;
    position:relative;
}

.stat-card:hover{
    transform:translateY(-8px);
    border-color:#00E5FF;
    box-shadow:0 15px 40px rgba(0,229,255,.15);
}

.stat-icon{
    width:50px;
    height:50px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #00E5FF;
    color:#00E5FF;
    font-size:20px;
    border-radius:10px;
}

.stat-number{
    display:inline-block;
    color:#fff;
    font-size:48px;
    font-weight:900;
    line-height:1;
}

.stat-plus{
    color:#00E5FF;
    font-size:36px;
    font-weight:800;
}

.stat-card p{
    margin-top:12px;
    color:#94A3B8;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width:900px){
    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .stats-container{
        grid-template-columns:1fr;
    }
    .stat-number{
        font-size:40px;
    }
}

/* ==========================
   FEATURED SERVICES SECTION
========================== */
.featured-services{
    padding:100px 0;
}

.featured-services-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.featured-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:50px;
}

.featured-title .section-tag{
    color:#00E5FF;
    font-size:10px;
    letter-spacing:2px;
}

.featured-title h2{
    margin-top:15px;
    color:#fff;
    font-size:45px;
    line-height:1.1;
    font-weight:900;
}

.featured-title h2 span{
    color:#00E5FF;
}

.featured-title p{
    margin-top:15px;
    max-width:500px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
}

.featured-btn{
    background:transparent;
    border:1px solid #00E5FF;
    color:#00E5FF;
    padding:12px 22px;
    border-radius:6px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
    white-space:nowrap;
}

.featured-btn:hover{
    background:#00E5FF;
    color:#05070B;
}

.featured-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.featured-service-card{
    background:#0B1118;
    border:1px solid #1E293B;
    padding:35px 28px;
    border-radius:10px;
    transition:.35s;
    position:relative;
}

.featured-service-card:hover{
    transform:translateY(-10px);
    border-color:#00E5FF;
    box-shadow:0 20px 45px rgba(0,229,255,.15);
}

.featured-service-card.highlight{
    border-color:#00E5FF;
    background:linear-gradient(180deg,rgba(0,229,255,.05),#0B1118);
}

.popular-badge{
    position:absolute;
    top:-11px;
    right:20px;
    background:#00E5FF;
    color:#05070B;
    padding:5px 12px;
    border-radius:20px;
    font-size:9px;
    font-weight:800;
    letter-spacing:1px;
}

.fs-icon{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #00E5FF;
    color:#00E5FF;
    font-size:22px;
    border-radius:12px;
    margin-bottom:22px;
}

.featured-service-card h3{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
}

.featured-service-card p{
    color:#94A3B8;
    font-size:13px;
    line-height:1.7;
    margin-bottom:22px;
}

.fs-link{
    color:#00E5FF;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
}

.fs-link:hover{
    letter-spacing:2px;
}

@media(max-width:1000px){
    .featured-services-grid{
        grid-template-columns:1fr;
    }
    .featured-header{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:600px){
    .featured-title h2{
        font-size:32px;
    }
    .featured-service-card{
        padding:28px 22px;
    }
}

/* ==========================
   FEATURED PROJECTS SECTION
========================== */
.featured-projects{
    padding:100px 0;
    background:#0B1118;
    border-top:1px solid #1E293B;
    border-bottom:1px solid #1E293B;
}

.featured-projects-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.featured-projects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.featured-project-card{
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:12px;
    overflow:hidden;
    transition:.35s;
}

.featured-project-card:hover{
    transform:translateY(-10px);
    border-color:#00E5FF;
    box-shadow:0 25px 50px rgba(0,229,255,.15);
}

.fp-image{
    height:260px;
    position:relative;
    overflow:hidden;
}

.fp-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.featured-project-card:hover .fp-image img{
    transform:scale(1.1);
}

.fp-tag{
    position:absolute;
    top:15px;
    left:15px;
    background:#00E5FF;
    color:#05070B;
    padding:6px 12px;
    border-radius:5px;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
}

.fp-content{
    padding:28px;
}

.fp-content h3{
    color:#fff;
    font-size:22px;
    margin-bottom:12px;
}

.fp-content p{
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
}

.fp-link{
    color:#00E5FF;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
}

.fp-link:hover{
    letter-spacing:2px;
}

@media(max-width:800px){
    .featured-projects-grid{
        grid-template-columns:1fr;
    }
    .fp-image{
        height:220px;
    }
}

/* ==========================
   CTA BANNER SECTION
========================== */
.cta-banner{
    padding:100px 0;
}

.cta-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    background:linear-gradient(135deg,#0B1118 0%,#05070B 100%);
    border:1px solid #00E5FF;
    border-radius:20px;
    padding:80px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-glow{
    position:absolute;
    top:-100px;
    left:50%;
    transform:translateX(-50%);
    width:400px;
    height:400px;
    background:radial-gradient(circle,rgba(0,229,255,.15) 0%,transparent 70%);
    pointer-events:none;
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:750px;
    margin:auto;
}

.cta-content .section-tag{
    color:#00E5FF;
    font-size:11px;
    letter-spacing:2px;
    display:inline-block;
    padding:8px 16px;
    border:1px solid #00E5FF;
    border-radius:20px;
}

.cta-content h2{
    margin-top:25px;
    color:#fff;
    font-size:55px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-2px;
}

.cta-content h2 span{
    color:#00E5FF;
}

.cta-content p{
    margin-top:25px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.8;
    max-width:550px;
    margin-left:auto;
    margin-right:auto;
}

.cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-primary{
    background:#00E5FF;
    color:#05070B;
    padding:15px 30px;
    border-radius:7px;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
}

.cta-primary:hover{
    background:#00B8D4;
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(0,229,255,.3);
}

.cta-secondary{
    background:transparent;
    color:#fff;
    padding:15px 30px;
    border:1px solid #1E293B;
    border-radius:7px;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-decoration:none;
    transition:.3s;
}

.cta-secondary:hover{
    border-color:#00E5FF;
    color:#00E5FF;
}

@media(max-width:700px){
    .cta-container{
        padding:60px 25px;
    }
    .cta-content h2{
        font-size:35px;
        letter-spacing:-1px;
    }
    .cta-content p{
        font-size:13px;
    }
    .cta-buttons{
        flex-direction:column;
    }
    .cta-primary,
    .cta-secondary{
        width:100%;
    }
}

/* ==========================
   ABOUT SECTION
========================== */

.about{
    padding:120px 0;
    overflow:hidden;
}

.about-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    align-items:center;
    gap:80px;
}

.about-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.image-frame{
    width:300px;
    height:420px;
    position:relative;
    overflow:hidden;
    border-radius:8px;
    border:1px solid #1e293b;
}

.image-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.image-badge{
    position:absolute;
    top:-10px;
    right:-20px;
    background:#0B1118;
    border:1px solid #00E5FF;
    color:#00E5FF;
    padding:12px 22px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
}

.image-name{
    position:absolute;
    bottom:12px;
    right:20px;
    color:#00E5FF;
    font-size:18px;
    font-style:italic;
    font-weight:600;
}

.corner-line{
    position:absolute;
    width:55px;
    height:35px;
    bottom:-10px;
    left:70px;
    border-left:2px solid #00E5FF;
    border-bottom:2px solid #00E5FF;
}

.section-tag{
    color:#00E5FF;
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:45px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.about-content h2 span{
    color:#00E5FF;
}

.about-content p{
    color:#94A3B8;
    font-size:14px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-content strong{
    color:#fff;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 50px;
    margin:30px 0;
}

.about-features ul{
    list-style:none;
}

.about-features li{
    color:#fff;
    font-size:13px;
    margin-bottom:15px;
    position:relative;
    padding-left:20px;
}

.about-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#00E5FF;
}

.about-btn{
    display:inline-block;
    text-decoration:none;
    border:1px solid #00E5FF;
    color:#00E5FF;
    padding:14px 25px;
    border-radius:5px;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#00E5FF;
    color:#05070B;
}

@media(max-width:1000px){
    .about{
        padding:80px 0;
    }
    .about-container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .about-image{
        order:2;
    }
    .about-content{
        text-align:center;
    }
    .about-content p{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
        margin-top:10px;
    }
    .about-features{
        justify-content:center;
        text-align:left;
    }
}

@media(max-width:600px){
    .about-container{
        width:calc(100% - 30px);
        gap:35px;
    }
    .image-frame{
        width:230px;
        height:330px;
    }
    .image-badge{
        top:-15px;
        right:-10px;
        padding:10px 15px;
        font-size:11px;
    }
    .image-name{
        font-size:15px;
        right:10px;
    }
    .corner-line{
        left:30px;
    }
    .about-content h2{
        font-size:32px;
        line-height:1.2;
    }
    .about-content p{
        font-size:13px;
    }
    .about-features{
        grid-template-columns:1fr;
        gap:0;
        margin:25px 0;
    }
    .about-features li{
        font-size:12px;
    }
    .about-btn{
        width:100%;
        text-align:center;
    }
}

@media(max-width:400px){
    .image-frame{
        width:200px;
        height:290px;
    }
    .about-content h2{
        font-size:28px;
    }
}

/* ==========================
   SERVICES
========================== */
.services{
    width:100%;
    padding:80px 0;
    overflow:hidden;
}

.services-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 30px;
}

.section-header{
    width:100%;
}

.section-header h2{
    color:#fff;
    font-size:42px;
    margin:15px 0;
    line-height:1.2;
}

.section-header p{
    max-width:600px;
    color:#94A3B8;
    line-height:1.7;
    font-size:14px;
}

.services-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:50px;
}

.service-card{
    width:100%;
    min-width:0;
    overflow:hidden;
    background:#0B1118;
    border:1px solid #1e293b;
    padding:25px;
    border-radius:8px;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#00E5FF;
    box-shadow:0 10px 40px rgba(0,229,255,.15);
}

.service-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.service-icon{
    flex-shrink:0;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #00E5FF;
    color:#00E5FF;
    border-radius:6px;
}

.service-top small{
    color:#00E5FF;
    border:1px solid rgba(0,229,255,.4);
    padding:5px 8px;
    font-size:9px;
    white-space:nowrap;
}

.service-card h3{
    color:#fff;
    font-size:18px;
    margin:25px 0 12px;
}

.service-card p{
    color:#94A3B8;
    font-size:13px;
    line-height:1.6;
}

.service-card ul{
    margin-top:15px;
    padding-left:15px;
}

.service-card li{
    color:#cbd5e1;
    font-size:12px;
    margin-bottom:8px;
}

.service-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-top:25px;
}

.service-footer button{
    background:transparent;
    border:1px solid #00E5FF;
    color:#00E5FF;
    padding:7px 12px;
    font-size:10px;
    border-radius:4px;
    cursor:pointer;
}

.service-order-btn{
    background:#00E5FF;
    color:#05070B;
    padding:9px 18px;
    font-size:11px;
    border-radius:4px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.service-order-btn:hover{
    background:#00B8D4;
}

@media(max-width:1100px){
    .services-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px){
    .services{
        padding:60px 0;
    }
    .services-container{
        padding:0 20px;
    }
    .section-header h2{
        font-size:32px;
    }
    .services-grid{
        grid-template-columns:1fr;
        gap:15px;
        margin-top:35px;
    }
    .service-card{
        padding:20px;
    }
}

@media(max-width:480px){
    .services-container{
        padding:0 15px;
    }
    .section-header h2{
        font-size:28px;
    }
    .service-top{
        flex-wrap:wrap;
    }
    .service-card h3{
        font-size:16px;
    }
    .service-footer{
        flex-direction:column;
        align-items:stretch;
    }
    .service-footer button{
        width:100%;
    }
}

/* ==========================
   INNER PAGES: COMMON HEADER
========================== */
.page-header{
    width:100%;
    padding:140px 0 80px;
    background:linear-gradient(180deg,#05070b 0%,#0b1118 100%);
    border-bottom:1px solid #1E293B;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.header-glow{
    position:absolute;
    top:-150px;
    left:50%;
    transform:translateX(-50%);
    width:500px;
    height:300px;
    background:radial-gradient(circle,rgba(0,229,255,.12) 0%,transparent 75%);
    pointer-events:none;
}

.header-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    position:relative;
    z-index:2;
}

.breadcrumb{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

.breadcrumb li,
.breadcrumb a{
    color:#94A3B8;
    font-size:12px;
    text-decoration:none;
    letter-spacing:1px;
    text-transform:uppercase;
}

.breadcrumb li.active{
    color:#00E5FF;
    font-weight:700;
}

.page-header h1{
    font-size:50px;
    font-weight:900;
    color:#fff;
    line-height:1.2;
}

.page-header h1 span{
    color:#00E5FF;
}

.page-header p{
    margin-top:15px;
    color:#94A3B8;
    font-size:15px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.6;
}

@media(max-width:768px){
    .page-header{
        padding:120px 0 60px;
    }
    .page-header h1{
        font-size:34px;
    }
    .page-header p{
        font-size:13px;
    }
}

/* ==========================
   ABOUT HERO (CYBER CONSOLE)
========================== */
.about-hero{
    width:100%;
    padding:170px 0 110px;
    background:#05070b;
    border-bottom:1px solid rgba(255,255,255,.04);
    position:relative;
    overflow:hidden;
}

.about-grid-bg{
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0,229,255,.02) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,229,255,.02) 1px,transparent 1px);
    background-size:30px 30px;
    background-position:center;
    mask-image:radial-gradient(ellipse at center,black 40%,transparent 80%);
    -webkit-mask-image:radial-gradient(ellipse at center,black 40%,transparent 80%);
}

.about-hero-glow{
    position:absolute;
    top:-150px;
    right:10%;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(0,229,255,.08) 0%,transparent 70%);
    pointer-events:none;
    z-index:1;
}

.about-hero-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

.about-hero-content{
    position:relative;
}

.about-hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 14px;
    background:rgba(0,229,255,.05);
    border:1px solid rgba(0,229,255,.15);
    border-radius:30px;
    margin-bottom:25px;
}

.badge-dot{
    width:6px;
    height:6px;
    background:#00E5FF;
    border-radius:50%;
    box-shadow:0 0 8px #00E5FF;
}

.about-hero-badge span{
    color:#00E5FF;
    font-size:9px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-hero-content h1{
    font-size:52px;
    font-weight:900;
    color:#fff;
    line-height:1.1;
    letter-spacing:-2px;
}

.about-hero-content h1 span{
    color:#00E5FF;
    text-shadow:0 0 30px rgba(0,229,255,.15);
}

.about-hero-content p{
    margin-top:22px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.8;
    max-width:580px;
}

.about-hero-tags{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.about-hero-tags span{
    color:rgba(255,255,255,.4);
    font-size:12px;
    font-family:monospace;
}

.about-hero-decoration{
    display:flex;
    justify-content:flex-end;
}

.tech-console{
    width:100%;
    max-width:440px;
    background:rgba(11,17,24,.8);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.05);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 30px 60px rgba(0,0,0,.5);
}

.console-header{
    background:#05070b;
    padding:12px 20px;
    display:flex;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.console-dots{
    display:flex;
    gap:6px;
}

.dot-c{
    width:9px;
    height:9px;
    border-radius:50%;
}

.dot-c.red{ background:rgba(255,95,86,.6); }
.dot-c.yellow{ background:rgba(255,189,46,.6); }
.dot-c.green{ background:rgba(39,201,63,.6); }

.console-tab{
    color:#64748B;
    font-size:11px;
    font-family:monospace;
    margin-left:20px;
}

.console-body{
    padding:25px;
}

.console-log{
    margin-bottom:25px;
    font-family:monospace;
    font-size:12px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.log-cmd{
    color:#94A3B8;
}

.log-success{
    color:#22c55e;
}

.lighthouse-dashboard{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-bottom:25px;
    background:rgba(5,7,11,.5);
    padding:20px 15px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.02);
}

.lh-circle-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
    width:90px;
}

.lh-svg{
    width:60px;
    height:60px;
    transform:rotate(-90deg);
}

.lh-bg-circle{
    fill:none;
    stroke:rgba(34,197,94,.1);
    stroke-width:3;
}

.lh-stroke-circle{
    fill:none;
    stroke:#22c55e;
    stroke-width:3;
    stroke-linecap:round;
    animation:progress 1s ease-out forwards;
}

.lh-percentage{
    position:absolute;
    top:18px;
    font-size:15px;
    font-weight:bold;
    color:#22c55e;
    font-family:monospace;
}

.lh-label{
    margin-top:10px;
    font-size:10px;
    color:#94A3B8;
    text-transform:uppercase;
    font-weight:bold;
    letter-spacing:.5px;
    text-align:center;
}

.console-footer{
    border-top:1px solid rgba(255,255,255,.03);
    padding-top:15px;
    font-family:monospace;
}

.footer-msg{
    color:#00E5FF;
    font-size:10px;
    letter-spacing:1px;
}

/* CODE WINDOW (alternate decoration) */
.code-window{
    width:100%;
    max-width:400px;
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.4);
}

.window-header{
    background:#0B1118;
    padding:12px 16px;
    display:flex;
    align-items:center;
    gap:6px;
    border-bottom:1px solid #1E293B;
}

.window-header .dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.window-header .red{ background:#ff5f56; }
.window-header .yellow{ background:#ffbd2e; }
.window-header .green{ background:#27c93f; }

.window-title{
    color:#64748B;
    font-size:11px;
    font-family:monospace;
    margin-left:10px;
}

.window-body{
    padding:22px;
    font-family:'Courier New',Courier,monospace;
}

.window-body pre{
    margin:0;
}

.window-body code{
    color:#cbd5e1;
    font-size:13px;
    line-height:1.6;
}

.window-body .key{
    color:#00E5FF;
}

.window-body .val{
    color:#ffbd2e;
}

@media(max-width:900px){
    .about-hero-container{
        grid-template-columns:1fr;
        gap:45px;
    }
    .about-hero-decoration{
        justify-content:center;
    }
    .tech-console,
    .code-window{
        max-width:100%;
    }
}

@media(max-width:600px){
    .about-hero{
        padding:120px 0 70px;
    }
    .about-hero-content h1{
        font-size:34px;
        letter-spacing:-1px;
    }
    .about-hero-content p{
        font-size:13px;
    }
    .lighthouse-dashboard{
        padding:15px 10px;
    }
    .lh-circle-box{
        width:80px;
    }
    .lh-svg{
        width:50px;
        height:50px;
    }
    .lh-percentage{
        top:15px;
        font-size:13px;
    }
}

/* ==========================
   TIMELINE SECTION
========================== */
.timeline-section{
    padding:100px 0;
    background:#05070B;
}

.timeline-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.timeline-header{
    max-width:650px;
    margin-bottom:60px;
}

.timeline-header h2{
    margin-top:15px;
    font-size:45px;
    font-weight:900;
    color:#fff;
}

.timeline-header h2 span{
    color:#00E5FF;
}

.timeline-header p{
    margin-top:15px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
}

.timeline{
    position:relative;
    max-width:850px;
    margin:0 auto;
    padding-left:30px;
    border-left:2px solid #1E293B;
}

.timeline-item{
    position:relative;
    margin-bottom:50px;
}

.timeline-item:last-child{
    margin-bottom:0;
}

.timeline-dot{
    position:absolute;
    left:-37px;
    top:5px;
    width:12px;
    height:12px;
    background:#00E5FF;
    border:3px solid #05070B;
    border-radius:50%;
    box-shadow:0 0 10px #00E5FF;
}

.timeline-date{
    font-size:13px;
    font-weight:700;
    color:#00E5FF;
    letter-spacing:1px;
    margin-bottom:8px;
    text-transform:uppercase;
}

.timeline-content{
    background:#0B1118;
    border:1px solid #1E293B;
    padding:25px;
    border-radius:8px;
    transition:.3s;
}

.timeline-content:hover{
    border-color:#00E5FF;
    box-shadow:0 10px 30px rgba(0,229,255,.08);
}

.timeline-content h3{
    color:#fff;
    font-size:18px;
    margin-bottom:5px;
}

.timeline-company{
    font-size:12px;
    color:#94A3B8;
    margin-bottom:12px;
    font-style:italic;
}

.timeline-content p{
    color:#CBD5E1;
    font-size:13px;
    line-height:1.6;
}

@media(max-width:600px){
    .timeline-header h2{
        font-size:32px;
    }
    .timeline{
        padding-left:20px;
    }
    .timeline-dot{
        left:-27px;
    }
    .timeline-content{
        padding:20px;
    }
}

/* ==========================
   SERVICES HERO SECTION
========================== */
.services-hero{
    width:100%;
    padding:150px 0 90px;
    background:linear-gradient(180deg,#05070B 0%,#0B1118 100%);
    border-bottom:1px solid #1E293B;
    position:relative;
    overflow:hidden;
}

.services-hero-glow{
    position:absolute;
    top:-100px;
    left:10%;
    width:450px;
    height:450px;
    background:radial-gradient(circle,rgba(0,229,255,.1) 0%,transparent 70%);
    pointer-events:none;
}

.services-hero-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:60px;
}

.services-hero-content{
    position:relative;
    z-index:2;
}

.services-hero-badge{
    display:inline-block;
    padding:6px 14px;
    background:rgba(0,229,255,.08);
    border:1px solid rgba(0,229,255,.4);
    border-radius:30px;
    margin-bottom:25px;
}

.services-hero-badge span{
    color:#00E5FF;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.services-hero-content h1{
    font-size:48px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    letter-spacing:-1px;
}

.services-hero-content h1 span{
    color:#00E5FF;
}

.services-hero-content p{
    margin-top:20px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.7;
    max-width:580px;
}

.services-hero-checklist{
    display:flex;
    justify-content:flex-end;
}

.checklist-box{
    width:100%;
    max-width:380px;
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:12px;
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.check-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.check-icon{
    width:24px;
    height:24px;
    background:rgba(0,229,255,.1);
    border:1px solid #00E5FF;
    color:#00E5FF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:bold;
    flex-shrink:0;
}

.check-item strong{
    color:#fff;
    font-size:14px;
    display:block;
    margin-bottom:3px;
}

.check-item p{
    color:#94A3B8;
    font-size:12px;
}

@media(max-width:900px){
    .services-hero-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .services-hero-checklist{
        justify-content:center;
    }
    .checklist-box{
        max-width:100%;
    }
}

@media(max-width:600px){
    .services-hero{
        padding:110px 0 60px;
    }
    .services-hero-content h1{
        font-size:32px;
    }
}

/* ==========================
   PROCESS / WORKFLOW SECTION
========================== */
.process-section{
    padding:100px 0;
    background:#05070B;
}

.process-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.process-header{
    max-width:650px;
    margin-bottom:60px;
}

.process-header h2{
    margin-top:15px;
    font-size:45px;
    font-weight:900;
    color:#fff;
}

.process-header h2 span{
    color:#00E5FF;
}

.process-header p{
    margin-top:15px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-card{
    background:#0B1118;
    border:1px solid #1E293B;
    padding:30px 25px;
    border-radius:10px;
    position:relative;
    transition:.3s;
}

.process-card:hover{
    border-color:#00E5FF;
    transform:translateY(-6px);
}

.step-num{
    display:block;
    font-size:36px;
    font-weight:900;
    color:rgba(0,229,255,.15);
    line-height:1;
    margin-bottom:20px;
}

.process-card:hover .step-num{
    color:#00E5FF;
}

.process-card h3{
    color:#fff;
    font-size:18px;
    margin-bottom:12px;
}

.process-card p{
    color:#94A3B8;
    font-size:13px;
    line-height:1.6;
}

@media(max-width:1000px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:550px){
    .process-grid{
        grid-template-columns:1fr;
    }
    .process-header h2{
        font-size:32px;
    }
}

/* ==========================
   VALUE PROPOSITION SECTION
========================== */
.value-section{
    padding:100px 0;
    background:#0B1118;
    border-top:1px solid #1E293B;
}

.value-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.value-left h2{
    margin-top:15px;
    font-size:42px;
    font-weight:900;
    color:#fff;
    line-height:1.2;
}

.value-left h2 span{
    color:#00E5FF;
}

.value-left p{
    margin-top:20px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.8;
}

.value-mini-grid{
    margin-top:35px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.v-mini-item h4{
    color:#fff;
    font-size:15px;
    margin-bottom:8px;
    position:relative;
    padding-left:15px;
}

.v-mini-item h4::before{
    content:"■";
    position:absolute;
    left:0;
    color:#00E5FF;
    font-size:10px;
}

.v-mini-item p{
    margin-top:0;
    font-size:12px;
    color:#94A3B8;
}

.value-right{
    display:flex;
    justify-content:flex-end;
}

.cta-mini-card{
    background:#05070B;
    border:1px solid #00E5FF;
    border-radius:12px;
    padding:35px;
    width:100%;
    max-width:380px;
    position:relative;
}

.cta-mini-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:12px;
}

.cta-mini-card p{
    color:#94A3B8;
    font-size:13px;
    line-height:1.6;
    margin-bottom:25px;
}

.cta-mini-card a{
    display:block;
    text-align:center;
    background:#00E5FF;
    color:#05070B;
    padding:14px;
    border-radius:6px;
    font-size:12px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.cta-mini-card a:hover{
    background:#00B8D4;
    box-shadow:0 10px 25px rgba(0,229,255,.2);
}

@media(max-width:900px){
    .value-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .value-right{
        justify-content:center;
    }
    .cta-mini-card{
        max-width:100%;
    }
}

@media(max-width:600px){
    .value-left h2{
        font-size:30px;
    }
    .value-mini-grid{
        grid-template-columns:1fr;
        gap:15px;
    }
}

/* ==========================
   PROJECTS HERO SECTION
========================== */
.projects-hero{
    width:100%;
    padding:150px 0 90px;
    background:linear-gradient(180deg,#05070B 0%,#0B1118 100%);
    border-bottom:1px solid #1E293B;
    position:relative;
    overflow:hidden;
}

.projects-hero-glow{
    position:absolute;
    top:-100px;
    right:15%;
    width:450px;
    height:450px;
    background:radial-gradient(circle,rgba(0,229,255,.1) 0%,transparent 70%);
    pointer-events:none;
}

.projects-hero-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:60px;
}

.projects-hero-content{
    position:relative;
    z-index:2;
}

.projects-hero-badge{
    display:inline-block;
    padding:6px 14px;
    background:rgba(0,229,255,.08);
    border:1px solid rgba(0,229,255,.4);
    border-radius:30px;
    margin-bottom:25px;
}

.projects-hero-badge span{
    color:#00E5FF;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.projects-hero-content h1{
    font-size:48px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    letter-spacing:-1px;
}

.projects-hero-content h1 span{
    color:#00E5FF;
}

.projects-hero-content p{
    margin-top:20px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.7;
    max-width:580px;
}

.projects-hero-monitor{
    display:flex;
    justify-content:flex-end;
}

.monitor-box{
    width:100%;
    max-width:380px;
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:12px;
    padding:25px;
}

.monitor-header{
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom:1px solid #1E293B;
    padding-bottom:15px;
    margin-bottom:20px;
}

.live-indicator{
    width:8px;
    height:8px;
    background:#22c55e;
    border-radius:50%;
    box-shadow:0 0 8px #22c55e;
}

.monitor-header strong{
    font-size:11px;
    color:#00E5FF;
    letter-spacing:1px;
    font-family:monospace;
}

.monitor-metrics{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.metric-item span{
    display:block;
    font-size:32px;
    font-weight:900;
    color:#fff;
    line-height:1;
}

.metric-item small{
    display:block;
    margin-top:8px;
    color:#94A3B8;
    font-size:11px;
}

@media(max-width:900px){
    .projects-hero-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .projects-hero-monitor{
        justify-content:center;
    }
    .monitor-box{
        max-width:100%;
    }
}

@media(max-width:600px){
    .projects-hero{
        padding:110px 0 60px;
    }
    .projects-hero-content h1{
        font-size:32px;
    }
}

/* ==========================
   FEATURED CASE STUDY SECTION
========================== */
.case-study-section{
    padding:100px 0;
    background:#0B1118;
}

.case-study-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.case-study-tag{
    display:inline-block;
    color:#00E5FF;
    font-size:10px;
    letter-spacing:2px;
    font-weight:bold;
    border-bottom:2px solid #00E5FF;
    padding-bottom:5px;
    margin-bottom:40px;
}

.case-study-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.case-study-image{
    width:100%;
    height:380px;
    border-radius:12px;
    border:1px solid #1E293B;
    overflow:hidden;
}

.case-study-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.case-study-grid:hover .case-study-image img{
    transform:scale(1.05);
}

.cs-category{
    color:#00E5FF;
    font-size:11px;
    font-weight:bold;
    letter-spacing:1px;
}

.case-study-content h2{
    font-size:36px;
    font-weight:900;
    color:#fff;
    margin:15px 0 20px;
    line-height:1.2;
}

.case-study-content p{
    color:#94A3B8;
    font-size:14px;
    line-height:1.8;
}

.cs-results{
    display:flex;
    gap:15px;
    margin:25px 0;
}

.result-badge{
    background:#05070B;
    border:1px solid #1E293B;
    padding:10px 15px;
    border-radius:6px;
    color:#94A3B8;
    font-size:12px;
}

.result-badge strong{
    color:#00E5FF;
}

.cs-tech-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:30px;
}

.cs-tech-tags span{
    background:rgba(0,229,255,.05);
    border:1px solid rgba(0,229,255,.2);
    color:#00E5FF;
    padding:5px 12px;
    border-radius:4px;
    font-size:11px;
}

.cs-btn{
    display:inline-block;
    background:#00E5FF;
    color:#05070B;
    padding:14px 28px;
    border-radius:6px;
    font-size:12px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.cs-btn:hover{
    background:#00B8D4;
    box-shadow:0 10px 25px rgba(0,229,255,.25);
    transform:translateY(-2px);
}

@media(max-width:900px){
    .case-study-grid{
        grid-template-columns:1fr;
        gap:35px;
    }
    .case-study-image{
        height:280px;
    }
    .case-study-content h2{
        font-size:28px;
    }
}

/* ==========================
   TECHNOLOGIES & SEO TOOLS
========================== */
.tools{
    padding:100px 0;
}

.tools-container{
    max-width:1200px;
    margin:auto;
    padding:0 30px;
}

.tools-header{
    max-width:650px;
}

.tools-header .section-tag{
    color:#00E5FF;
    font-size:10px;
    letter-spacing:2px;
}

.tools-header h2{
    margin-top:15px;
    font-size:45px;
    line-height:1.1;
    color:#ffffff;
    font-weight:800;
}

.tools-header h2 span{
    color:#00E5FF;
}

.tools-header p{
    margin-top:20px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
}

.tools-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.tool-card{
    background:#0B1118;
    border:1px solid #1e293b;
    padding:22px;
    border-radius:8px;
    min-height:220px;
    transition:.35s;
    position:relative;
}

.tool-card:hover{
    transform:translateY(-8px);
    border-color:#00E5FF;
    box-shadow:0 15px 35px rgba(0,229,255,.12);
}

.tool-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.tool-icon{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    border:1px solid #00E5FF;
    color:#00E5FF;
    font-size:15px;
    transition:.3s;
}

.tool-card:hover .tool-icon{
    background:#00E5FF;
    color:#05070B;
}

.tool-top span{
    font-size:9px;
    color:#00E5FF;
    border:1px solid rgba(0,229,255,.4);
    padding:4px 8px;
    border-radius:3px;
}

.tool-card h3{
    margin-top:25px;
    font-size:18px;
    color:#ffffff;
}

.tool-card p{
    margin-top:12px;
    color:#94A3B8;
    font-size:13px;
    line-height:1.6;
}

.tool-tags{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-top:25px;
}

.tool-tags small{
    color:#cbd5e1;
    font-size:9px;
    border:1px solid #334155;
    padding:5px 7px;
    border-radius:3px;
}

@media(max-width:1000px){
    .tools-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .tools-grid{
        grid-template-columns:1fr;
    }
    .tools-header h2{
        font-size:32px;
    }
}

/* ==========================
   PROJECTS SECTION
========================== */
.projects{
    padding:100px 0;
    overflow:hidden;
}

.projects-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.projects-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
}

.projects-title span{
    color:#00E5FF;
    font-size:10px;
    letter-spacing:2px;
}

.projects-title h2{
    margin-top:15px;
    color:#fff;
    font-size:45px;
    line-height:1.1;
    font-weight:900;
}

.projects-title p{
    margin-top:15px;
    max-width:600px;
    color:#94A3B8;
    font-size:14px;
}

.project-filter{
    display:flex;
    gap:10px;
}

.project-filter button{
    background:#0B1118;
    border:1px solid #1E293B;
    color:#94A3B8;
    padding:8px 15px;
    border-radius:5px;
    font-size:10px;
    cursor:pointer;
    transition:.3s;
}

.project-filter button:hover,
.project-filter button.active{
    color:#05070B;
    background:#00E5FF;
    border-color:#00E5FF;
}

.projects-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.project-card{
    background:#0B1118;
    border:1px solid #1E293B;
    border-radius:10px;
    overflow:hidden;
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
    border-color:#00E5FF;
    box-shadow:0 20px 40px rgba(0,229,255,.12);
}

.project-image{
    height:220px;
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-result{
    position:absolute;
    right:15px;
    bottom:15px;
    background:#00E5FF;
    color:#05070B;
    padding:6px 10px;
    border-radius:5px;
    font-size:10px;
    font-weight:800;
}

.project-content{
    padding:22px;
}

.project-content h3{
    color:#fff;
    font-size:18px;
    line-height:1.4;
}

.project-content p{
    margin-top:12px;
    color:#94A3B8;
    font-size:13px;
    line-height:1.6;
}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:18px;
}

.project-tags span{
    padding:5px 8px;
    border:1px solid #1E293B;
    color:#CBD5E1;
    border-radius:4px;
    font-size:9px;
}

.project-footer{
    padding:0 22px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.project-footer a{
    color:#00E5FF;
    font-size:12px;
    text-decoration:none;
}

.project-footer span{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #1E293B;
    color:#fff;
    border-radius:5px;
}

@media(max-width:1000px){
    .projects-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .projects{
        padding:70px 0;
    }
    .projects-container{
        width:calc(100% - 30px);
    }
    .projects-title h2{
        font-size:32px;
    }
    .projects-title p{
        font-size:13px;
    }
    .project-filter{
        width:100%;
        overflow-x:auto;
    }
    .projects-grid{
        grid-template-columns:1fr;
        gap:15px;
    }
    .project-image{
        height:200px;
    }
    .project-content{
        padding:18px;
    }
    .project-content h3{
        font-size:16px;
    }
    .project-footer{
        padding:0 18px 18px;
    }
}

/* ==========================
   TESTIMONIALS
========================== */
.testimonials{
    padding:100px 0;
}

.testimonials-container{
    width:min(100% - 60px,1200px);
    margin:auto;
}

.testimonial-header{
    max-width:650px;
}

.testimonial-header h2{
    margin-top:15px;
    color:#fff;
    font-size:45px;
    line-height:1.1;
    font-weight:900;
}

.testimonial-header h2 span{
    color:#00E5FF;
}

.testimonial-header p{
    margin-top:15px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.7;
}

.testimonial-grid{
    margin-top:45px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.testimonial-card{
    background:#0B1118;
    border:1px solid #1E293B;
    padding:25px;
    border-radius:10px;
    min-height:260px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#00E5FF;
    box-shadow:0 15px 40px rgba(0,229,255,.15);
}

.testimonial-card:first-child{
    border-color:#00E5FF;
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.quote-icon{
    width:30px;
    height:30px;
    border:1px solid #00E5FF;
    color:#00E5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
}

.review-badge{
    color:#00E5FF;
    border:1px solid rgba(0,229,255,.5);
    padding:5px 10px;
    border-radius:20px;
    font-size:9px;
}

.stars{
    margin-top:20px;
    color:#00E5FF;
    letter-spacing:3px;
    font-size:13px;
}

.review-text{
    margin-top:15px;
    color:#CBD5E1;
    font-size:13px;
    line-height:1.7;
    font-style:italic;
}

.client-info{
    margin-top:25px;
    padding-top:15px;
    border-top:1px solid #1E293B;
    display:flex;
    align-items:center;
    gap:12px;
}

.client-info img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
    border:1px solid #00E5FF;
}

.client-info h4{
    color:#fff;
    font-size:13px;
}

.client-info span{
    color:#94A3B8;
    font-size:10px;
}

.slider-dots{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:8px;
}

.slider-dots span{
    width:7px;
    height:7px;
    background:#1E293B;
    border-radius:20px;
}

.slider-dots .active{
    width:25px;
    background:#00E5FF;
}

@media(max-width:1000px){
    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .testimonials{
        padding:70px 0;
    }
    .testimonials-container{
        width:calc(100% - 30px);
    }
    .testimonial-header h2{
        font-size:32px;
    }
    .testimonial-grid{
        grid-template-columns:1fr;
    }
    .testimonial-card{
        min-height:auto;
        padding:20px;
    }
    .review-text{
        font-size:12px;
    }
}

/* ==========================
   CONTACT HERO SECTION
========================== */
.contact-hero{
    width:100%;
    padding:150px 0 90px;
    background:linear-gradient(180deg,#05070B 0%,#0B1118 100%);
    border-bottom:1px solid #1E293B;
    position:relative;
    overflow:hidden;
}

.contact-hero-glow{
    position:absolute;
    top:-100px;
    right:20%;
    width:450px;
    height:450px;
    background:radial-gradient(circle,rgba(0,229,255,.1) 0%,transparent 70%);
    pointer-events:none;
}

.contact-hero-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:60px;
}

.contact-hero-content{
    position:relative;
    z-index:2;
}

.contact-hero-badge{
    display:inline-block;
    padding:6px 14px;
    background:rgba(0,229,255,.08);
    border:1px solid rgba(0,229,255,.4);
    border-radius:30px;
    margin-bottom:25px;
}

.contact-hero-badge span{
    color:#00E5FF;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.contact-hero-content h1{
    font-size:48px;
    font-weight:900;
    color:#fff;
    line-height:1.15;
    letter-spacing:-1px;
}

.contact-hero-content h1 span{
    color:#00E5FF;
}

.contact-hero-content p{
    margin-top:20px;
    color:#94A3B8;
    font-size:15px;
    line-height:1.7;
    max-width:580px;
}

.contact-hero-status{
    display:flex;
    justify-content:flex-end;
}

.status-panel{
    width:100%;
    max-width:380px;
    background:#05070B;
    border:1px solid #1E293B;
    border-radius:12px;
    padding:30px;
}

.status-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.pulse-green{
    width:9px;
    height:9px;
    background:#22c55e;
    border-radius:50%;
    box-shadow:0 0 10px #22c55e;
    animation:blink-pulse 2s infinite ease-in-out;
}

.status-row strong{
    font-size:11px;
    color:#00E5FF;
    letter-spacing:1.5px;
    font-family:monospace;
}

.status-panel p{
    color:#cbd5e1;
    font-size:13px;
    line-height:1.5;
    margin:0;
}

.status-divider{
    height:1px;
    background:#1E293B;
    margin:20px 0;
}

.status-meta{
    display:flex;
    flex-direction:column;
}

.meta-item small{
    display:block;
    color:#64748B;
    font-size:11px;
    margin-bottom:5px;
}

.meta-item strong{
    color:#fff;
    font-size:18px;
    font-weight:800;
}

@media(max-width:900px){
    .contact-hero-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .contact-hero-status{
        justify-content:center;
    }
    .status-panel{
        max-width:100%;
    }
}

@media(max-width:600px){
    .contact-hero{
        padding:110px 0 60px;
    }
    .contact-hero-content h1{
        font-size:32px;
    }
}

/* ==========================
   FAQ SECTION
========================== */
.faq-section{
    padding:100px 0;
    background:#05070B;
}

.faq-container{
    width:min(100% - 60px,900px);
    margin:auto;
}

.faq-header{
    text-align:center;
    margin-bottom:60px;
}

.faq-header h2{
    margin-top:15px;
    font-size:45px;
    font-weight:900;
    color:#fff;
}

.faq-header h2 span{
    color:#00E5FF;
}

.faq-header p{
    margin-top:15px;
    color:#94A3B8;
    font-size:14px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.7;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-item{
    background:#0B1118;
    border:1px solid #1E293B;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
}

.faq-item[open]{
    border-color:#00E5FF;
}

.faq-question{
    padding:22px 25px;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    list-style:none;
    position:relative;
    user-select:none;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    color:#00E5FF;
    font-size:20px;
    transition:.3s;
}

.faq-item[open] .faq-question::after{
    content:"-";
    font-size:24px;
}

.faq-question::-webkit-details-marker{
    display:none;
}

.faq-answer{
    padding:0 25px 22px;
    border-top:1px solid rgba(30,41,59,.5);
    background:rgba(5,7,11,.2);
}

.faq-answer p{
    margin-top:15px;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.7;
}

@media(max-width:600px){
    .faq-header h2{
        font-size:32px;
    }
    .faq-question{
        font-size:14px;
        padding:18px 20px;
    }
    .faq-answer p{
        font-size:12px;
    }
}

/* ==========================
   CONTACT SECTION
========================== */
.contact{
    padding:120px 0;
    overflow:hidden;
}

.contact-container{
    width:min(100% - 60px,1200px);
    margin:auto;
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:70px;
    align-items:center;
}

.contact-content .section-tag{
    color:#00E5FF;
    font-size:10px;
    letter-spacing:2px;
}

.contact-content h2{
    margin-top:18px;
    color:#fff;
    font-size:55px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-2px;
}

.contact-content h2 span{
    color:#00E5FF;
}

.contact-content p{
    margin-top:25px;
    max-width:430px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.8;
}

.contact-info{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #00E5FF;
    border-radius:8px;
    color:#00E5FF;
    background:#0B1118;
}

.contact-item small{
    display:block;
    color:#64748B;
    font-size:10px;
}

.contact-item strong{
    display:block;
    margin-top:4px;
    color:#fff;
    font-size:13px;
}

.availability-box{
    margin-top:30px;
    padding:15px;
    background:#0B1118;
    border:1px solid #00E5FF;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:12px;
}

.availability-box span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#22c55e;
}

.availability-box strong{
    color:#fff;
    font-size:11px;
}

.availability-box p{
    margin:3px 0 0;
    font-size:10px;
    color:#94A3B8;
}

.contact-form-box{
    background:#0B1118;
    border:1px solid #1E293B;
    padding:30px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.contact-form-box label{
    color:#94A3B8;
    font-size:9px;
    letter-spacing:1px;
    display:block;
    margin-bottom:8px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{
    width:100%;
    background:#05070B;
    border:1px solid #1E293B;
    color:#fff;
    padding:14px;
    border-radius:7px;
    outline:none;
    font-size:12px;
    transition:.3s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus{
    border-color:#00E5FF;
    box-shadow:0 0 15px rgba(0,229,255,.15);
}

.contact-form-box textarea{
    height:130px;
    resize:none;
}

.contact-form-box button{
    margin-top:20px;
    width:100%;
    height:48px;
    background:#00E5FF;
    border:none;
    border-radius:7px;
    color:#05070B;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.contact-form-box button:hover{
    background:#00B8D4;
    transform:translateY(-3px);
}

@media(max-width:900px){
    .contact-container{
        grid-template-columns:1fr;
        gap:50px;
    }
    .contact-content h2{
        font-size:42px;
    }
}

@media(max-width:600px){
    .contact{
        padding:80px 0;
    }
    .contact-container{
        width:calc(100% - 30px);
    }
    .contact-content h2{
        font-size:34px;
        letter-spacing:-1px;
    }
    .contact-content p{
        font-size:13px;
    }
    .contact-form-box{
        padding:20px;
    }
    .form-grid{
        grid-template-columns:1fr;
    }
    .contact-item strong{
        font-size:12px;
    }
    .contact-form-box button{
        height:45px;
    }
}

/* ==========================
   FOOTER SECTION
========================== */
.footer{
    width:100%;
    padding:80px 0 25px;
    background:#05070B;
    border-top:1px solid #1E293B;
}

.footer-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:80px;
}

.footer-brand h3{
    color:#fff;
    font-size:26px;
    font-weight:800;
    letter-spacing:1px;
}

.footer-brand h3 span{
    color:#00E5FF;
}

.footer-brand p{
    margin-top:20px;
    max-width:420px;
    color:#94A3B8;
    font-size:14px;
    line-height:1.8;
}

.footer-brand small{
    display:block;
    margin-top:30px;
    color:#64748B;
    font-size:12px;
}

.footer h4{
    color:#00E5FF;
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.links-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.links-grid a{
    color:#94A3B8;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
}

.links-grid a:hover{
    color:#00E5FF;
    transform:translateX(5px);
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #1E293B;
    border-radius:8px;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.social-links a:hover{
    color:#00E5FF;
    border-color:#00E5FF;
    transform:translateY(-5px);
}

.social-links i{
    line-height:1;
}

.status-badge{
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 15px;
    border:1px solid #00E5FF;
    border-radius:20px;
    color:#00E5FF;
    font-size:10px;
}

.status-badge::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:#22c55e;
}

.footer-bottom{
    width:100%;
    max-width:1400px;
    margin:60px auto 0;
    padding:25px 40px 0;
    border-top:1px solid #1E293B;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom span{
    color:#94A3B8;
    font-size:12px;
}

.top-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#00E5FF;
    color:#05070B;
    border-radius:8px;
    font-size:20px;
    font-weight:800;
    text-decoration:none;
    transition:.3s;
}

.top-btn:hover{
    background:#00B8D4;
    transform:translateY(-5px);
}

@media(max-width:1200px){
    .footer-container{
        padding:0 30px;
        gap:50px;
    }
    .footer-bottom{
        padding-left:30px;
        padding-right:30px;
    }
}

@media(max-width:900px){
    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }
    .footer-brand{
        grid-column:1/-1;
    }
}

@media(max-width:600px){
    .footer{
        padding:60px 0 20px;
    }
    .footer-container{
        padding:0 20px;
        grid-template-columns:1fr;
        gap:35px;
    }
    .footer-brand h3{
        font-size:22px;
    }
    .footer-brand p{
        font-size:13px;
    }
    .links-grid{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }
    .social-links{
        gap:10px;
    }
    .footer-bottom{
        padding:25px 20px 0;
        margin-top:40px;
        flex-direction:column;
        gap:20px;
        text-align:center;
    }
    .top-btn{
        width:38px;
        height:38px;
    }
}

@media(max-width:400px){
    .links-grid{
        grid-template-columns:1fr;
    }
    .footer-brand h3{
        font-size:20px;
    }
}
```

## ✅ Kya kya fix/change kiya:

1. **`:root` variables add kiye** — `--container`, `--white`, `--aqua`, `--text` ab defined hain
2. **`@keyframes progress` add kiya** — lighthouse circle animation ab kaam karega
3. **`@keyframes blink-pulse` upar move kiya** — organized
4. **Saari duplicates hata di:**
   - `.about-hero` (3 → 1)
   - `.about-hero-container`, `.about-hero-decoration`, `.about-hero-badge`
   - `.contact` / `.contact-container` (2 → 1)
   - `.social-links a` (2 → 1)
5. **Missing colors add kiye** — `.v-mini-item p`, `.availability-box p` ko `color` diya
6. **Sab kuch properly organized aur indent kiya**

Ab ye file error-free hai. Copy karke apni `style.css` me paste kar dein.