/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* HEADER */
.header {
  width: 100%;
  background: linear-gradient(135deg, #0b0f19, #111827);
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  position: relative;
}

/* GOLD GLOW */
.header::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.25), transparent);
  top: -150px;
  right: -150px;
  z-index: -1;
}

/* TOP ROW */
.logo-section {
  display: flex;
  align-items: center;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* PROFILE */
.profile-pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffaa00;
  transition: 0.3s;
}

.profile-pic:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffaa00;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

/* ICONS */
.nav-right a {
  color: #ddd;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}

.nav-right a:hover {
  background: #ffaa00;
  color: #000;
  transform: translateY(-3px);
}

/* MENU ICON */
#bx-menu {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

/* NAVBAR (DESKTOP) */
.navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,170,0,0.2);
}

.navbar a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* underline effect */
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffaa00;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: none;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px); /* glass effect */
    -webkit-backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255,170,0,0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);

    padding: 18px 12px;
    z-index: 999;

    transition: all 0.3s ease;
  }

  .navbar.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .navbar a {
    padding: 8px 14px;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;

    transition: all 0.25s ease;
  }

  .navbar a:hover {
    background: rgba(255,170,0,0.15);
    color: #ffaa00;
    transform: translateY(-2px);
  }

  .navbar a.active {
    background: #ffaa00;
    color: #000;
    font-weight: 500;
  }

  #bx-menu {
    display: block;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    margin-left: auto;

    transition: transform 0.3s ease, color 0.3s ease;
  }

  #bx-menu:hover {
    color: #ffaa00;
    transform: rotate(90deg);
  }

  .nav-right {
    display: none;
  }

  /* Smooth dropdown animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}



/* SECTION */
.home {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  display: flex;
  align-items: center;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

/* ✨ GLOW BACKGROUND */
.home::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.2), transparent);
  top: -100px;
  left: -100px;
  filter: blur(80px);
}

/* CONTAINER */
.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* ========== ROOT DESIGN SYSTEM ========== */
:root {
  --primary: #ffaa00;
  --primary-dark: #ff7a00;
  --bg-glass: rgba(255, 255, 255, 0.06);
  --text-light: #ffffff;
  --text-muted: #cbd5e1;
  --green: #22c55e;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ========== LEFT CONTENT CARD STYLE ========== */
.home-content { max-width: 550px; color: #fff;
padding-left: 10px; }



/* =========================
   GLOBAL TYPOGRAPHY CONTROL
========================= */
.home-content {
  max-width: 580px;
  color: #fff;
  animation: fadeUp 0.8s ease;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* smooth text rendering */
.home-content * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   TYPOGRAPHY (50%)
========================= */

/* SMALL HEADING */
.home-content h3 {
  font-size: 14px;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

/* MAIN HEADING */
.home-content h1 {
  font-size: 56px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin: 10px 0 14px;

  background: linear-gradient(135deg, #ffffff, #ffe08a, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUB TITLE / TAGLINE */
.tagline {
  font-size: 20px;
  font-weight: 600;
  color: #ffb703;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  position: relative;
}

/* underline accent */
.tagline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffaa00, transparent);
  border-radius: 50px;
}

/* DESCRIPTION */
.usp {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 12px;
}

/* TRUST TEXT */
.trust p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 6px 0;
  padding-left: 10px;
  border-left: 2px solid rgba(255,170,0,0.35);
}

/* =========================
   SPACING SYSTEM (30%)
   (Consistency rule)
========================= */

.home-content h3,
.home-content h1,
.tagline,
.usp,
.trust,
.cta,
.social-media,
.download-btn {
  margin-top: 0;
}

/* consistent vertical rhythm */
.tagline {
  margin-top: 8px;
}

.usp {
  margin-top: 10px;
}

.trust {
  margin-top: 10px;
}

.cta {
  margin-top: 22px;
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
}

.social-media {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.download-btn {
  margin-top: 16px;
}

/* =========================
   BADGE (CLEAN UI)
========================= */

.availability {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(34,197,94,0.25);
  margin-top: 12px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* PRIMARY */
.primary-btn {
  background: linear-gradient(135deg, #ffaa00, #ff7a00);
  color: #111;
  box-shadow: 0 10px 25px rgba(255,170,0,0.25);
}

.primary-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(255,170,0,0.35);
}

/* SECONDARY */
.secondary-btn {
  border: 1px solid rgba(255,170,0,0.8);
  color: #ffaa00;
  background: transparent;
}

.secondary-btn:hover {
  background: #ffaa00;
  color: #111;
  transform: translateY(-3px);
}

/* WHATSAPP */
.whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,211,102,0.25);
}

.whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(37,211,102,0.35);
}

/* =========================
   SOCIAL ICONS
========================= */

.social-media a {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  transition: 0.3s ease;
}

.social-media a:hover {
  color: #ffaa00;
  transform: translateY(-3px) scale(1.15);
}

/* =========================
   MICRO ANIMATIONS (20%)
========================= */

/* fade up entry */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* subtle float effect */
.tagline {
  animation: floatText 4s ease-in-out infinite;
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* glow hover micro effect */
.primary-btn:hover,
.whatsapp:hover {
  filter: brightness(1.05);
}

/* 🎥 VIDEO */
.home-video video {
  padding: 4px;
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border: 10px;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .home-container {
    flex-direction: column;
    text-align: center;
  }

  .home-content {
    max-width: 100%;
  }

  .home-content h1 {
    font-size: 30px;
  }

  .tagline {
    font-size: 16px;
  }

  .cta {
    justify-content: center;
  }


  .home-video video {
    width: 1000px;
    height: 200px;
  }
}




  
  


/* SECTION */
.home {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  display: flex;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* ✨ GLOW BACKGROUND */
.home::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.2), transparent);
  top: -100px;
  left: -100px;
  filter: blur(80px);
}

/* CONTAINER */
.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

/* LEFT CONTENT */
.home-content {
  max-width: 550px;
  color: #fff;
}

/* TEXTS */
.home-content h3 {
  font-size: 18px;
  color: #aaa;
}

.home-content h1 {
  font-size: 42px;
  font-weight: 600;
  margin: 10px 0;
}

.mp-text {
  color: #ffaa00;
}

/* TAGLINE */
.tagline {
  font-size: 20px;
  margin: 15px 0;
  color: #ffaa00;
}

/* DESCRIPTION */
.usp {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* TRUST */
.trust p {
  font-size: 14px;
  color: #ddd;
  margin: 4px 0;
}

/* AVAILABILITY */
.availability {
  margin: 10px 0;
  color: #22c55e;
  font-weight: 500;
}

/* CTA BUTTONS */
.cta {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* PRIMARY */
.primary-btn {
  background: linear-gradient(135deg, #ffaa00, #ff7a00);
  color: #000;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255,170,0,0.6);
}

/* SECONDARY */
.secondary-btn {
  border: 1px solid #ffaa00;
  color: #ffaa00;
}

.secondary-btn:hover {
  background: #ffaa00;
  color: #000;
}

/* WHATSAPP */
.whatsapp {
  background: #25D366;
  color: #fff;
}

.whatsapp:hover {
  box-shadow: 0 0 10px #25D366;
}

/* SOCIAL */
.social-media {
  margin-top: 15px;
}

.social-media a {
  color: #ccc;
  font-size: 20px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-media a:hover {
  color: #ffaa00;
}

/* DOWNLOAD */
.download-btn {
  display: inline-block;
  margin-top: 15px;
  border: 1px solid #ffaa00;
  color: #ffaa00;
}

.download-btn:hover {
  background: #ffaa00;
  color: #000;
}

/* 🎬 VIDEO SIDE */
.home-video {
  flex: 1;
  display: flex;
  justify-content: center;
}

.home-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;

  border: 2px solid rgba(255,170,0,0.3);

  box-shadow: 
    0 0 20px rgba(255,170,0,0.2),
    0 0 50px rgba(255,140,0,0.1);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .home-container {
    flex-direction: column;
    text-align: center;
  }

  .home-content {
    max-width: 100%;
  }

  .home-content h1 {
    font-size: 30px;
  }

  .tagline {
    font-size: 16px;
  }

  .cta {
    justify-content: center;
  }

  .home-video video {
    display: none;
  }
} 
/* =========================
   ABOUT SECTION
========================= */

.about {
  width: 100%;
  padding: 80px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow effect like home */
.about::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent);
  top: -120px;
  right: -120px;
  filter: blur(70px);
}

/* container */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* IMAGE SIDE */
.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  border: 2px solid rgba(255, 170, 0, 0.3);
  box-shadow:
    0 0 20px rgba(255, 170, 0, 0.15),
    0 0 60px rgba(255, 140, 0, 0.08);
  transition: 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255,170,0,0.4);
}

/* CONTENT SIDE */
.about-content {
  flex: 1.2;
  color: #fff;
}

/* HEADER */
.section-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
}

.section-header .subheading {
  color: #aaa;
  margin-top: 6px;
  font-size: 15px;
}

/* TEXT */
.about-text {
  margin: 20px 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 15px;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

/* CARD STYLE */
.card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 14px;
  padding: 18px;
  transition: 0.3s ease;
  position: relative;
}

/* hover effect */
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 15px rgba(255,170,0,0.15);
}

/* ICON */
.card .icon {
  font-size: 22px;
  margin-bottom: 8px;
}

/* TITLE */
.card h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

/* TEXT */
.card p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 2px 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    max-width: 300px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }
}




/* =========================
   SKILLS SECTION
========================= */

.skills {
  width: 100%;
  padding: 80px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.skills::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,170,0,0.18), transparent);
  top: -150px;
  left: -150px;
  filter: blur(80px);
}

/* HEADER */
.skills-header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.skills-header h2 {
  font-size: 36px;
  font-weight: 600;
}

.skills-header p {
  color: #aaa;
  margin-top: 8px;
  font-size: 15px;
}

/* GRID */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.skill-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover glow */
.skill-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.15);
}

/* top row */
.skill-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* icon */
.skill-top i {
  font-size: 22px;
  color: #ffaa00;
}

/* tag */
.skill-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 170, 0, 0.15);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

/* title */
.skill-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* description */
.skill-box p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* skill level */
.skill-level {
  margin: 10px 0;
  font-size: 14px;
  color: #22c55e;
  font-weight: 500;
}

/* list */
.skill-box ul {
  margin: 10px 0;
  padding-left: 18px;
}

.skill-box ul li {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 4px;
}

/* link */
.skill-box a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #ffaa00;
  text-decoration: none;
  transition: 0.3s;
}

.skill-box a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,170,0,0.6);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .skills-header h2 {
    font-size: 28px;
  }

  .skill-box {
    padding: 18px;
  }
}




/* =========================
   SERVICES SECTION
========================= */

.services {
  width: 100%;
  padding: 90px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.services::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent);
  top: -180px;
  right: -180px;
  filter: blur(90px);
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.services-header h2 {
  font-size: 38px;
  font-weight: 600;
}

.services-header p {
  color: #aaa;
  font-size: 15px;
  margin-top: 8px;
}

/* CATEGORY TITLE */
.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  font-size: 22px;
  color: #ffaa00;
  margin-bottom: 20px;
  border-left: 3px solid #ffaa00;
  padding-left: 10px;
}

/* GRID */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* SERVICE CARD */
.service-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.service-box:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.15);
}

/* icon */
.service-box i {
  font-size: 24px;
  color: #ffaa00;
  margin-bottom: 10px;
}

/* title */
.service-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* text */
.service-box p {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* list */
.service-box ul {
  margin: 10px 0;
  padding-left: 18px;
}

.service-box ul li {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 4px;
}

/* link */
.service-box a {
  display: inline-block;
  margin-top: 10px;
  color: #ffaa00;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.service-box a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,170,0,0.6);
}

/* =========================
   PROCESS SECTION
========================= */

.service-process {
  margin-top: 40px;
  color: #fff;
}

.service-process h3 {
  color: #ffaa00;
  margin-bottom: 15px;
}

.service-process ol {
  padding-left: 20px;
  color: #cbd5e1;
}

.service-process li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* =========================
   STATS
========================= */

.stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
}

.stats h3 {
  width: 100%;
  color: #ffaa00;
  margin-bottom: 10px;
}

.stats div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,170,0,0.15);
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
  color: #cbd5e1;
  transition: 0.3s;
}

.stats div:hover {
  transform: translateY(-5px);
  border-color: rgba(255,170,0,0.4);
}

.stats span {
  color: #22c55e;
  font-weight: bold;
  font-size: 18px;
}

/* =========================
   WHY ME
========================= */

.why-me {
  margin-top: 40px;
  color: #fff;
}

.why-me h3 {
  color: #ffaa00;
  margin-bottom: 10px;
}

.why-me ul {
  padding-left: 18px;
}

.why-me li {
  color: #cbd5e1;
  margin-bottom: 6px;
  font-size: 14px;
}

/* =========================
   CTA BUTTON
========================= */

.services-cta {
  margin-top: 40px;
  text-align: center;
}

.services-cta a {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, #ffaa00, #ff7a00);
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.services-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255,170,0,0.5);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }

  .service-category h3 {
    font-size: 18px;
  }

  .stats {
    flex-direction: column;
  }
}





/* =========================
   PROFILE SECTION
========================= */

#profile {
  width: 100%;
  padding: 80px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow effect */
#profile::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent);
  bottom: -150px;
  left: -150px;
  filter: blur(80px);
}

/* HEADER */
#profile header {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

#profile header h2 {
  font-size: 34px;
  font-weight: 600;
}

#profile header p {
  color: #aaa;
  font-size: 15px;
  margin-top: 6px;
}

/* BOX */
.profile-box {
  max-width: 850px;
  margin: auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  color: #cbd5e1;
  transition: 0.35s ease;
}

/* hover effect */
.profile-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.15);
}

/* text */
.profile-box p {
  font-size: 15px;
  line-height: 1.7;
}

/* highlights */
.profile-highlights {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* highlight badge */
.profile-highlights span {
  padding: 8px 14px;
  font-size: 13px;
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.3);
  background: rgba(255, 170, 0, 0.08);
  border-radius: 20px;
  transition: 0.3s;
}

/* hover badge */
.profile-highlights span:hover {
  background: #ffaa00;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  #profile header h2 {
    font-size: 26px;
  }

  .profile-box {
    padding: 18px;
  }

  .profile-box p {
    font-size: 14px;
  }
}



/* =========================
   EXPERIENCE SECTION
========================= */

#experience {
  width: 100%;
  padding: 80px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow */
#experience::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent);
  top: -180px;
  right: -180px;
  filter: blur(90px);
}

/* HEADER */
#experience header {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

#experience header h2 {
  font-size: 36px;
  font-weight: 600;
}

#experience header p {
  color: #aaa;
  margin-top: 6px;
}

/* TIMELINE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* center line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 170, 0, 0.2);
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

/* DATE */
.timeline-date {
  width: 45%;
  text-align: right;
  padding-right: 20px;
  color: #ffaa00;
  font-weight: 500;
  font-size: 14px;
}

/* CONTENT */
.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: #cbd5e1;
  transition: 0.3s;
}

/* hover */
.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.15);
}

/* JOB HEADER */
.job-header h3 {
  font-size: 18px;
  color: #fff;
}

.job-header h4 {
  font-size: 14px;
  color: #aaa;
  margin-top: 3px;
}

/* STATS */
.job-stats {
  margin: 10px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-stats span {
  font-size: 12px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* LIST */
.timeline-content ul {
  margin-top: 10px;
  padding-left: 18px;
}

.timeline-content li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #cbd5e1;
}

/* tools */
.timeline-content p {
  margin-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-date {
    width: 100%;
    text-align: left;
    padding-left: 25px;
    margin-bottom: 8px;
  }

  .timeline-content {
    width: 100%;
  }
}



/* =========================
   PORTFOLIO SECTION
========================= */

#portfolio {
  width: 100%;
  padding: 90px 8%;
  background: linear-gradient(135deg, #020617, #0b0f19, #111827);
  position: relative;
  overflow: hidden;
}

/* glow */
#portfolio::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.15), transparent);
  top: -150px;
  left: -150px;
  filter: blur(90px);
}

/* HEADER */
#portfolio header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

#portfolio header h2 {
  font-size: 38px;
  font-weight: 600;
}

#portfolio header p {
  color: #aaa;
  margin-top: 6px;
}

/* FILTER BUTTONS */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.portfolio-filters button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 170, 0, 0.3);
  background: rgba(255,255,255,0.04);
  color: #cbd5e1;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.portfolio-filters button:hover {
  background: #ffaa00;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(255,170,0,0.4);
}

/* GRID */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 170, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s ease;
  position: relative;
}

/* hover */
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.15);
}

/* IMAGE */
.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* zoom effect */
.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
  gap: 10px;
  text-align: center;
  padding: 10px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* overlay text */
.portfolio-overlay p {
  color: #fff;
  font-size: 13px;
}

/* overlay links */
.portfolio-overlay a {
  color: #ffaa00;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.portfolio-overlay a:hover {
  color: #fff;
}

/* INFO */
.portfolio-info {
  padding: 15px;
  color: #cbd5e1;
}

.portfolio-info h3 {
  color: #fff;
  font-size: 17px;
}

.portfolio-info p {
  font-size: 13px;
  margin-top: 5px;
}

/* TAGS */
.portfolio-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.3);
  background: rgba(255, 170, 0, 0.08);
}

/* STATS */
.portfolio-stats {
  margin-top: 10px;
  font-size: 12px;
  color: #22c55e;
  display: flex;
  gap: 10px;
}

/* FEATURED CARD */
.featured {
  border: 1px solid rgba(255, 170, 0, 0.5);
  box-shadow: 0 0 20px rgba(255,170,0,0.15);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  #portfolio header h2 {
    font-size: 28px;
  }

  .portfolio-image img {
    height: 180px;
  }
}






/* =========================
   🌌 CONTACT SECTION (CINEMATIC GOLD)
========================= */

#contact {
  background: linear-gradient(135deg, #0b0f19, #111827);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Gold glow effect */
#contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,170,0,0.18), transparent);
  top: -200px;
  left: -150px;
  z-index: 0;
}

#contact header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

#contact header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

#contact header p {
  color: #aaa;
  margin-top: 8px;
}

/* Main container */
.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Glass cards */
.contact-info,
.contact-form {
  flex: 1;
  min-width: 320px;
  padding: 25px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 170, 0, 0.15);

  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* Titles */
.contact-info h3 {
  color: #ffaa00;
  margin-bottom: 5px;
}

.contact-info p {
  color: #bbb;
}

/* Trust points */
.trust-points p {
  margin: 8px 0;
  color: #ddd;
}

/* Contact details */
.contact-details p {
  margin: 10px 0;
  color: #ccc;
}

.contact-details i {
  color: #ffaa00;
  margin-right: 8px;
}

/* Links */
.contact-details a {
  color: #fff;
  text-decoration: none;
}

.contact-details a:hover {
  color: #ffaa00;
}

/* Social section */
.contact-social {
  margin-top: 20px;
}

.contact-social h4 {
  color: #ffaa00;
  margin-bottom: 10px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 6px 10px 0 0;
  padding: 8px 12px;

  border-radius: 25px;
  background: rgba(255,255,255,0.05);

  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #ffaa00;
  color: #000;
  transform: translateY(-3px);
}

/* FORM INPUTS */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  color: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffaa00;
  box-shadow: 0 0 10px rgba(255,170,0,0.3);
}

/* Button */
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  background: #ffaa00;
  color: #000;
  font-weight: 600;

  transition: 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,170,0,0.5);
}

/* WhatsApp link */
.contact-form a {
  color: #25D366;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

/* FAQ */
.contact-faq {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-faq h3 {
  color: #ffaa00;
  margin-bottom: 15px;
}

.contact-faq p {
  color: #ccc;
  margin: 5px 0;
}

/* =========================
   🔻 FOOTER (GLASS GOLD STYLE)
========================= */

footer {
  background: #0b0f19;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,170,0,0.2);
  color: #aaa;
}

/* Footer logo */
.footer-left h3 {
  color: #ffaa00;
  letter-spacing: 1px;
}

/* Links */
.footer-center {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-center a {
  color: #aaa;
  text-decoration: none;
  position: relative;
}

.footer-center a:hover {
  color: #fff;
}

/* Social icons */
.footer-social a {
  color: #aaa;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffaa00;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-center {
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  /* Hide left section on mobile */
  .contact-info {
    display: none;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-center {
    justify-content: center;
  }
}
