/* ==============================
   ROOT VARIABLES
================================ */
:root{
  --bg-dark:#050812;
  --bg-mid:#0a0f1e;
  --surface:#0f172a;
  --text:#f1f5ff;
  --muted:#94a3b8;
  --accent:#60a5fa;
  --accent2:#22d3ee;
  --border:rgba(148,163,184,.25);
  --radius:18px;
  --max:1100px;
}

/* ==============================
   RESET & BASE
================================ */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:linear-gradient(180deg,var(--bg-dark),var(--bg-mid));
  color:var(--text);
  line-height:1.6;
}

a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

/* ==============================
   LAYOUT
================================ */
.container{
  max-width:var(--max);
  margin:auto;
  padding:24px;
}

section{
  position:relative;
}

/* ==============================
   HEADER / NAVBAR
================================ */
header{
  position:sticky;
  top:0;
  background:rgba(5,8,18,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  z-index:100;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav a{
  margin-left:16px;
  color:var(--muted);
}

.nav a:hover{
  color:var(--text);
}

/* ==============================
   HERO PROFILE (MAIN)
================================ */
.hero-profile{
  padding:90px 0 40px;
}

.profile-card{
  background:linear-gradient(
    180deg,
    rgba(15,23,42,0.95),
    rgba(15,23,42,0.85)
  );
  border:1px solid var(--border);
  border-radius:28px;
  padding:42px;
}

.profile-header{
  display:flex;
  gap:24px;
  align-items:center;
  margin-bottom:20px;
}

.profile-avatar img {
  width: 120px;          /* control size */
  height: 120px;
  object-fit: cover;    /* crop nicely */
  border-radius: 50%;   /* make it circular */
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;       /* prevent shrinking */
}


.profile-name{
  font-size:42px;
  margin-bottom:4px;
}

.profile-role{
  color:var(--accent);
  font-weight:600;
}

.profile-intro{
  color:var(--muted);
  font-size:16px;
  max-width:820px;
  margin-bottom:28px;
}

.profile-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.profile-tags span{
  display:inline-block;
  margin:6px 6px 0 0;
  padding:8px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.profile-status{
  margin-top:28px;
  padding:18px;
  border-radius:16px;
  background:rgba(96,165,250,0.08);
  border:1px solid rgba(96,165,250,0.25);
  font-size:14px;
  color:var(--muted);
}

.profile-status .highlight{
  color:var(--text);
  font-weight:600;
}

/* ==============================
   GENERIC CARDS
================================ */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* ==============================
   TYPOGRAPHY
================================ */
h1{
  font-size:40px;
  margin-bottom:12px;
}

h2{
  font-size:32px;
  margin-bottom:16px;
}

.muted{
  color:var(--muted);
}

/* ==============================
   BUTTONS
================================ */
.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:14px;
  border:1px solid var(--border);
  color:var(--text);
}

.btn.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#020617;
  font-weight:700;
}

/* ==============================
   GRID
================================ */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* ==============================
   SERVICES
================================ */
.services{
  padding:80px 0;
  text-align:center;
}

.section-title{
  font-size:36px;
  margin-bottom:10px;
}

.section-subtitle{
  color:var(--muted);
  max-width:700px;
  margin:0 auto 50px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.service-card{
  background:linear-gradient(
    180deg,
    rgba(15,23,42,0.95),
    rgba(15,23,42,0.85)
  );
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  text-align:left;
  transition:all 0.35s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.45);
  border-color:var(--accent);
}

.service-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:20px;
}

.service-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:16px;
}

.service-card ul{
  list-style:none;
}

.service-card li{
  color:var(--muted);
  font-size:14px;
  margin-bottom:8px;
  padding-left:16px;
  position:relative;
}

.service-card li::before{
  content:"▸";
  position:absolute;
  left:0;
  color:var(--accent);
}

/* ==============================
   CONTACT
================================ */
.contact{
  padding:90px 0;
}

.contact-intro{
  text-align:center;
  color:var(--muted);
  margin-bottom:40px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.contact-card{
  background:linear-gradient(
    180deg,
    rgba(15,23,42,0.95),
    rgba(15,23,42,0.85)
  );
  border:1px solid var(--border);
  border-radius:24px;
  padding:36px;
}

.contact-card h3{
  margin-bottom:24px;
}

.contact-item{
  display:flex;
  gap:16px;
  margin-bottom:20px;
  align-items:center;
}

.contact-item .icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.contact-item small{
  color:var(--muted);
  font-size:12px;
}

.contact-actions{
  margin-top:30px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.quick-item{
  margin-bottom:20px;
}

.quick-item p{
  color:var(--muted);
  font-size:14px;
}

.expect-box{
  margin-top:28px;
  padding:18px;
  border-radius:14px;
  background:rgba(96,165,250,0.08);
  border:1px solid rgba(96,165,250,0.25);
}

/* ==============================
   FOOTER
================================ */
footer{
  text-align:center;
  color:var(--muted);
  padding:40px 0;
  border-top:1px solid var(--border);
}

/* ==============================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .grid,
  .services-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .profile-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .profile-name{
    font-size:34px;
  }
}



