:root{
    --primary:#38bdf8;
    --secondary:#2563eb;
    --success:#22c55e;
    --dark:#020617;
    --card:#111827;
    --text:#ffffff;
    --muted:#cbd5e1;
    --border:rgba(255,255,255,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(180deg,#020617,#0f172a,#111827);
    color:#fff;
    overflow-x:hidden;
}

/* Navbar */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 7%;
    background:rgba(2,6,23,.88);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section img{
    width:60px;
    height:60px;
    border-radius:14px;
}

.logo-section h2{
    font-size:26px;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

nav a:hover,
nav a.active{
    color:var(--primary);
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

/* Hero */

.hero{
    padding:170px 8% 100px;
    text-align:center;
    background:radial-gradient(circle at top,#2563eb33,transparent 70%);
}

.hero-tag{
    display:inline-block;
    background:#1e293b;
    color:#38bdf8;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-size:14px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    max-width:750px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
}

/* Team */

.team{
    padding:70px 20px 100px;
}

.team h2{
    text-align:center;
    font-size:42px;
    margin-bottom:10px;
}

.team-subtitle{
    text-align:center;
    color:#cbd5e1;
    margin-bottom:60px;
}

.team-grid{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* Card - Centered via Flexbox */
.tech-card{
    width:100%;
    max-width:760px;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:45px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    
    /* Elements ko ek ke niche ek center alignment dene ke liye */
    display:flex;
    flex-direction:column;
    align-items:center;
}

.tech-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(37,99,235,.30);
}

/* Rounded Profile Photo */
.tech-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #38bdf8;
    margin-bottom:15px;
    display:block;
}

/* Centered Available Now Badge */
.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    background:rgba(34,197,94,.15);
    color:#22c55e;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    width:fit-content;
}

.rating{
    margin:15px 0;
    color:#fbbf24;
}

.rating span{
    color:#fff;
    margin-left:8px;
}

.experience{
    color:#38bdf8;
    margin-bottom:20px;
}

.skills{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.skills span{
    background:#2563eb;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
}

/* ===========================
   ACTION BUTTONS
=========================== */

.tech-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:30px;
    margin-bottom:25px;
}

.call-btn,
.whatsapp-btn,
.email-btn{
    padding:12px 20px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.3s;
    display:flex;
    align-items:center;
    gap:8px;
}

.call-btn{
    background:#2563eb;
}

.whatsapp-btn{
    background:#22c55e;
}

.email-btn{
    background:#f97316;
}

.call-btn:hover,
.whatsapp-btn:hover,
.email-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ===========================
   VERIFIED BADGE
=========================== */

.certified{
    margin-top:20px;
    padding:12px;
    border-radius:12px;
    background:rgba(56,189,248,.12);
    color:#38bdf8;
    font-size:15px;
    font-weight:500;
    width:100%;
}

.certified i{
    margin-right:8px;
}

/* ===========================
   CTA SECTION
=========================== */

.cta-section{
    padding:90px 8%;
    text-align:center;
    background:linear-gradient(135deg,#2563eb,#0f172a);
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#e5e7eb;
    margin-bottom:35px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    border-radius:50px;
    background:#fff;
    color:#2563eb;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}

.cta-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 35px rgba(0,0,0,.3);
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#010409;
    padding:60px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-content{
    max-width:900px;
    margin:auto;
}

.footer-content h3{
    font-size:30px;
    margin-bottom:15px;
}

.footer-content p{
    color:#cbd5e1;
    margin:10px 0;
    line-height:1.7;
}

.footer-contact{
    margin:25px 0;
}

.footer-contact p i{
    margin-right:10px;
    color:#38bdf8;
}

.copyright{
    margin-top:25px;
    font-size:14px;
    opacity:.75;
}

/* ===========================
   FLOATING WHATSAPP
=========================== */

.floating-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(37,211,102,.45);
    transition:.35s;
    z-index:999;
}

.floating-btn:hover{
    transform:scale(1.12);
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#38bdf8;
    border-radius:10px;
}

::-webkit-scrollbar-track{
    background:#07111f;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        height:auto;
        padding:18px;
    }

    .logo-section{
        flex-direction:column;
        text-align:center;
    }

    .logo-section h2{
        font-size:20px;
    }

    nav{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding-top:220px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .team h2{
        font-size:34px;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

    .tech-card{
        padding:25px;
    }

    .tech-card img{
        width:140px;
        height:140px;
    }

    .tech-actions{
        flex-direction:column;
    }

    .call-btn,
    .whatsapp-btn,
    .email-btn{
        justify-content:center;
    }

    .cta-section h2{
        font-size:30px;
    }

    .cta-section p{
        font-size:15px;
    }

    .floating-btn{
        width:58px;
        height:58px;
        font-size:28px;
        right:18px;
        bottom:18px;
    }
}