/* =====================================================
   GLOBAL RESET
===================================================== */

:root {
  --primary: #8b5cf6;
  --accent: #06b6d4;

  --background: #020617;

  --text: #e2e8f0;

  --muted: #94a3b8;

  --card: rgba(255, 255, 255, 0.05);

  /* ===== Layout System ===== */

  --container-width: 1200px;

  --container-padding: clamp(24px, 4vw, 48px);

  --section-space: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #0f172a, #020617);

  color: var(--text);

  overflow-x: hidden;
}

img {
  width: 100%;

  display: block;
}

a {
  color: inherit;

  text-decoration: none;
}

/* =====================================================
   GLOBAL CONTAINER
===================================================== */

.container{
  width:min(
      calc(100% - (var(--container-padding) * 2)),
      var(--container-width)
  );

  margin-inline:auto;
}

/* =====================================================
   COMMON SECTION STYLES
===================================================== */

.section-header {
  max-width: 700px;

  text-align: center;

  margin: 0 auto 60px;
}

.section-tag {
  color: #06b6d4;

  font-size: 12px;

  letter-spacing: 3px;

  font-weight: 600;
}

.section-header h2 {
  margin-top: 12px;

  font-size: 46px;

  font-weight: 800;

  color: white;
}

.section-header p {
  margin-top: 15px;

  color: #94a3b8;

  line-height: 1.8;
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar-card {
  position: fixed;

  top: -120px;

  left: 50%;

  transform: translateX(-50%);

  width: 220px;

  height: 70px;

  background: rgba(0, 0, 0, 0.9);

  backdrop-filter: blur(12px);

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);

  transition: all 0.9s cubic-bezier(0.17, 0.67, 0.3, 1.2);

  z-index: 9999;

  overflow: visible;
}

.navbar-card.drop {
  top: 20px;
}

.navbar-card.expanded {
  width: 95%;

  height: 75px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.9),
    rgba(6, 182, 212, 0.9)
  );

  backdrop-filter: blur(20px);
}

/* LOGO */

.logo-wrapper {
  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
  font-size: 22px;

  font-weight: 900;

  letter-spacing: 3px;

  color: white;

  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.navbar-card.expanded .logo-wrapper {
  left: 40px;

  top: 50%;

  transform: translateY(-50%);
}

/* NAV LINKS */

.nav-links {
  position: absolute;

  right: 40px;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  gap: 30px;

  list-style: none;
}

.nav-links li {
  opacity: 0;

  transform: translateY(15px);
}

.nav-links.show li {
  animation: fadeUp 0.6s forwards;
}

.nav-links.show li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links.show li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-links.show li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-links.show li:nth-child(4) {
  animation-delay: 0.4s;
}

.nav-links.show li:nth-child(5) {
  animation-delay: 0.5s;
}

.nav-links.show li:nth-child(6) {
  animation-delay: 0.6s;
}

.nav-links a {
  font-size: 14px;

  font-weight: 500;

  position: relative;

  color: white;

  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -6px;

  width: 0%;

  height: 2px;

  background: white;

  transition: 0.35s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  font-weight: 700;
}

.hire {
  padding: 9px 18px;

  background: white;

  color: #111 !important;

  border-radius: 12px;

  font-weight: 600;
}

.hire::after {
  display: none;
}

/* =====================================================
   HAMBURGER MENU
===================================================== */

.menu-toggle {
  display: none;

  position: absolute;

  right: 25px;

  top: 50%;

  transform: translateY(-50%);

  width: 35px;

  height: 30px;

  cursor: pointer;

  flex-direction: column;

  justify-content: space-between;

  z-index: 10000;
}

.menu-toggle span {
  width: 100%;

  height: 3px;

  background: white;

  border-radius: 10px;

  transition: 0.3s;
}

/* Mobile Navbar */



/* =====================================================
   HERO SECTION
===================================================== */

.hero {
  width: 90%;

  max-width: 1400px;

  min-height: 100vh;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  padding-top: 100px;

  opacity: 0;

  transform: translateY(40px);

  transition: 1s ease;
}

.hero.show {
  opacity: 1;

  transform: translateY(0);
}

.hero-left {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 8px 15px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 50px;

  color: #94a3b8;

  font-size: 13px;

  opacity: 0;

  animation: fadeUp 0.8s forwards;
}

.dot {
  width: 8px;

  height: 8px;

  background: #22c55e;

  border-radius: 50%;

  box-shadow: 0 0 15px #22c55e;
}

.hero-title {
  margin-top: 20px;

  font-size: clamp(45px, 5vw, 75px);

  line-height: 1.05;

  font-weight: 800;

  opacity: 0;

  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title span {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 25px;

  line-height: 1.8;

  font-size: 16px;

  color: #94a3b8;

  opacity: 0;

  animation: fadeUp 0.8s 0.4s forwards;
}

.buttons {
  display: flex;

  gap: 15px;

  margin-top: 35px;

  opacity: 0;

  animation: fadeUp 0.8s 0.6s forwards;
}

.btn {
  padding: 14px 28px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.primary {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  color: white;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;
}

.primary:hover,
.secondary:hover {
  transform: translateY(-5px);
}

/* =====================================================
   HERO IMAGE
===================================================== */

.hero-right {
  width: 500px;

  height: 560px;

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;
}

.glow {
  position: absolute;

  width: 380px;

  height: 380px;

  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.5;

  animation: pulse 4s infinite alternate;
}

.portrait {
  width: 360px;

  height: 470px;

  border-radius: 40px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);

  animation: imageShow 1s ease forwards;
}

.portrait img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

/* FLOATING INFO CARDS */

.float {
  position: absolute;

  padding: 15px 22px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  border-radius: 18px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

  animation: floating 4s infinite;
}

.float small {
  color: #06b6d4;
}

.float h3 {
  margin-top: 5px;

  font-size: 17px;
}

.one {
  top: 80px;

  left: 0;
}

.two {
  right: 0;

  top: 220px;

  animation-delay: 1s;
}

.three {
  bottom: 70px;

  left: 50px;

  animation-delay: 2s;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
  padding: 120px 8%;

  overflow: hidden;
}

.about-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 70px;
}

.about-left {
  flex: 1;

  opacity: 0;

  transform: translateY(50px);

  transition: 1s;
}

.about-left.show {
  opacity: 1;

  transform: translateY(0);
}
.about-tag {
  color:#06b6d4 !important;
}

.about-title {
  font-size: 48px;

  font-weight: 800;

  background: linear-gradient(90deg, #8b5cf6, #06b6d4);

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.about-desc {
  margin-top: 20px;

  max-width: 540px;

  color: #94a3b8;

  line-height: 1.9;

  font-size: 15px;
}

.about-desc strong {
  color: white;
}

/* =====================================================
   ABOUT BUTTONS + STATS
===================================================== */

.about-buttons {
  display: flex;

  gap: 15px;

  margin-top: 35px;
}

.btn-primary,
.btn-outline {
  padding: 13px 25px;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  color: white;
}

.btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);

  transform: translateY(-5px);
}

/* STATS */

.stats {
  display: flex;

  gap: 25px;

  margin-top: 45px;
}

.stat {
  padding: 15px 20px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 18px;

  backdrop-filter: blur(15px);
}

.stat h3 {
  font-size: 24px;
}

.stat p {
  font-size: 12px;

  color: #94a3b8;
}

/* =====================================================
   ABOUT VISUAL
===================================================== */

.about-right {
  flex: 1;

  height: 600px;

  position: relative;

  display: flex;

  justify-content: flex-end;

  align-items: center;

  opacity: 0;

  transform: translateY(50px) translateX(-20px);

  transition: 1s;
  
}

.about-right.show {
  opacity: 1;

  transform: translateY(0) translateX(0);
}





/* glow */

.about-glow{

  position:absolute;

  width:360px;

  height:360px;


  background:
  linear-gradient(
      135deg,
      #8b5cf6,
      #06b6d4
  );


  border-radius:50%;


  filter:blur(100px);


  opacity:.45;

}

.designer-info{
  margin-top:25px;
  text-align:center;
}


.designer-skills{
  margin-top:15px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}


.designer-skills span{
  padding:8px 14px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}


.designer-status{
  margin-top:20px;
  text-align:center;
}


/* IMAGE */

.about-visual{

  width:420px;

  height:520px;

  position:relative;

}


.about-visual img{


  width:100%;

  height:100%;


  object-fit:cover;


  border-radius:40px;


  border:
  1px solid rgba(255,255,255,.2);


  box-shadow:
  0 40px 80px rgba(0,0,0,.5);


}



/* SMALL FLOAT CARDS */


.about-note{


  position:absolute;
  z-index:2;


  background:
  rgba(255,255,255,.08);


  border:
  1px solid rgba(255,255,255,.15);


  backdrop-filter:blur(20px);


  border-radius:18px;


  color:white;


  box-shadow:
  0 20px 50px rgba(0,0,0,.35);


  animation:floating 4s infinite;


}



/* designer badge */


.note-one{


  top:30px;


  left:-55px;


  padding:14px 22px;


  font-size:14px;


  font-weight:600;


}



.note-one span{

  color:#06b6d4;

  margin-right:8px;

}




/* project count */


.note-two{


  right:-45px;


  top:190px;


  padding:18px 25px;


}



.note-two strong{


  display:block;


  font-size:30px;


}



.note-two p{


  color:#94a3b8;

  font-size:13px;

}




/* availability */


.note-three{


  bottom:50px;


  left:20px;


  padding:13px 20px;


  display:flex;


  align-items:center;


  gap:10px;


  font-size:13px;


}



.note-three span{


  width:8px;


  height:8px;


  background:#22c55e;


  border-radius:50%;


  box-shadow:
  0 0 15px #22c55e;


}

/* =====================================================
   FLOATING SKILL TAGS
===================================================== */

.skill {
  position: absolute;

  padding: 10px 16px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(15px);

  font-size: 12px;

  font-weight: 600;

  animation: floating 4s infinite;
}

.skill:hover {
  background: rgba(139, 92, 246, 0.3);

  transform: scale(1.1);
}

.s1 {
  top: 60px;

  left: 20px;
}

.s2 {
  top: 120px;

  right: 20px;
}

.s3 {
  bottom: 120px;

  left: 30px;
}

.s4 {
  bottom: 60px;

  right: 40px;
}

.s5 {
  top: 250px;

  left: 0;
}

/* =====================================================
   SKILLS SECTION
===================================================== */

.skills-section {
  padding: 90px 8%;
}


/* RESPONSIVE */

@media (max-width: 1100px) {
  .tools-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-list {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TOOL 3D FLIP CARDS
===================================================== */

.tools-list {
  max-width: 1200px;

  margin: 60px auto 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

/* CARD CONTAINER */

.tool-card {
  height: 330px;

  perspective: 1200px;
  perspective-origin: center;

  background: transparent;

  border: none;

  cursor: pointer;
}

/* FLIP INNER */

.tool-inner {
  width: 100%;
  height: 100%;

  position: relative;

  transform-style: preserve-3d;

  transition: transform 0.8s ease;

  will-change: transform;
}

.tool-card:hover .tool-inner {
  transform: rotateY(180deg);
}

/* FRONT + BACK */

.tool-front,
.tool-back {
  position: absolute;

  width: 100%;

  height: 100%;

  padding: 35px 25px;

  border-radius: 25px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(20px);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

/* FRONT SIDE */

.tool-front {
  z-index: 2;
}

.tool-front img {
  width: 100px;

  height: 100px;

  object-fit: contain;

  padding: 15px;

  background: #111827;

  border-radius: 22px;
}

.tool-front h3 {
  margin-top: 25px;

  font-size: 22px;

  color: white;
}

.tool-front span {
  margin-top: 12px;

  color: #94a3b8;

  font-size: 13px;
}

/* BACK SIDE */

.tool-back {
  transform: rotateY(180deg);

  text-align: center;
}

.tool-back::before {
  content: "";

  position: absolute;

  width: 150px;

  height: 150px;

  background: #06b6d4;

  filter: blur(90px);

  opacity: 0.35;
}

.tool-category {
  position: relative;

  padding: 6px 15px;

  border-radius: 50px;

  background: rgba(6, 182, 212, 0.15);

  color: #06b6d4;

  font-size: 12px;

  font-weight: 600;
}

.tool-back h3 {
  margin-top: 18px;

  font-size: 22px;

  color: white;
}

.tool-back p {
  margin-top: 10px;

  color: #94a3b8;

  font-size: 14px;

  line-height: 1.6;
}

.progress {
  width: 100%;

  height: 8px;

  margin-top: 25px;

  background: rgba(255, 255, 255, 0.12);

  border-radius: 20px;

  overflow: hidden;
}

.progress span {
  display: block;

  height: 100%;

  background: linear-gradient(90deg, #8b5cf6, #06b6d4);

  border-radius: 20px;
}

.percentage {
  margin-top: 15px;

  font-size: 26px;

  font-weight: 800;

  color: #06b6d4;
}

/* HOVER EFFECT */

.tool-card:hover .tool-front,
.tool-card:hover .tool-back {
  border-color: #06b6d4;

  box-shadow: 0 30px 70px rgba(6, 182, 212, 0.35);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .tools-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-list {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   WORK SECTION
===================================================== */

.work-section {
  padding: 90px 8%;
}

.work-header {
  max-width: 750px;

  margin: auto;

  text-align: center;

  margin-bottom: 70px;
}

.sub-title {
  font-size: 12px;

  letter-spacing: 4px;

  color: #06b6d4;

  font-weight: 600;
}

.work-header h2 {
  margin-top: 15px;

  font-size: 42px;

  font-weight: 800;
}

.work-header p {
  margin-top: 15px;

  color: #94a3b8;

  line-height: 1.7;
}

/* PROJECT GRID */

.work-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.work-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 25px;

  overflow: hidden;

  backdrop-filter: blur(20px);

  transition: 0.5s;

  opacity: 0;

  transform: translateY(50px);
}

.work-card.show {
  opacity: 1;

  transform: translateY(0);
}

.work-card:hover {
  transform: translateY(-12px);

  border-color: rgba(6, 182, 212, 0.5);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* PROJECT IMAGE */

.project-image {
  height: 230px;

  overflow: hidden;
}

.project-image img {
  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.work-card:hover img {
  transform: scale(1.12);
}

/* PROJECT CONTENT */

.work-content {
  padding: 25px;
}

.tag {
  font-size: 11px;

  letter-spacing: 2px;

  color: #06b6d4;

  font-weight: 600;
}

.work-content h3 {
  font-size: 22px;

  margin-top: 12px;

  color: white;
}

.work-content p {
  margin-top: 10px;

  font-size: 14px;

  color: #94a3b8;

  line-height: 1.6;
}

.skills {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;

  margin-top: 20px;
}

.skills span {
  padding: 6px 12px;

  font-size: 11px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #cbd5e1;
}

/* CASE STUDY BUTTON */

.case-btn {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 22px;

  padding: 12px 20px;

  border-radius: 12px;

  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  color: white;

  font-size: 13px;

  font-weight: 600;

  transition: 0.3s;
}

.case-btn:hover {
  transform: translateY(-4px);
}

/* =====================================================
   CASE STUDIES SECTION
===================================================== */

.case-section {
  padding: 90px 8%;
}

.case-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.case-card {
  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 24px;

  overflow: hidden;

  backdrop-filter: blur(25px);

  transition: 0.4s ease;

  position: relative;

  transform-style: preserve-3d;
}

.case-card:hover {
  border-color: #06b6d4;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.case-image {
  height: 220px;

  overflow: hidden;
}

.case-image img {
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.case-card:hover img {
  transform: scale(1.08);
}

.case-content {
  padding: 26px;
}

.case-tag {
  color: #06b6d4;

  font-size: 11px;

  letter-spacing: 2px;

  font-weight: 600;
}

.case-content h3 {
  margin-top: 12px;

  font-size: 22px;

  color: white;
}

.case-content p {
  margin-top: 12px;

  color: #94a3b8;

  line-height: 1.7;

  font-size: 14px;
}

.case-meta {
  list-style: none;

  margin-top: 20px;

  display: flex;

  flex-direction: column;

  gap: 10px;
}

.case-meta li {
  background: rgba(255, 255, 255, 0.05);

  padding: 10px 14px;

  border-radius: 12px;

  font-size: 13px;

  color: #e2e8f0;
}

/* =====================================================
   UNIVERSAL REVEAL ANIMATION
===================================================== */

.reveal {
  opacity: 0;

  transform: translateY(50px);

  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
   PROCESS SECTION
===================================================== */

.process-section {
  padding: 90px 8%;
}

.process-grid {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 24px;

  padding: 35px;

  backdrop-filter: blur(20px);

  transition: 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);

  border-color: #06b6d4;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.process-number {
  font-size: 42px;

  font-weight: 800;

  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;

  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 24px;

  color: white;

  margin-bottom: 15px;
}

.process-card p {
  color: #94a3b8;

  line-height: 1.8;

  font-size: 15px;
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
  padding: 90px 8%;
}

.contact-wrapper {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 40px;
}

.contact-info,
.contact-form {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 24px;

  padding: 35px;

  backdrop-filter: blur(25px);
}

.contact-info h3 {
  color: white;

  font-size: 26px;
}

.contact-info p {
  color: #94a3b8;

  margin-top: 15px;

  line-height: 1.7;
}

.info-item {
  margin-top: 25px;
}

.info-item span {
  color: #06b6d4;

  font-size: 13px;
}

.info-item a {
  display: block;

  margin-top: 5px;

  color: white;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;

  margin-bottom: 8px;

  color: #cbd5e1;

  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 16px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: white;

  outline: none;

  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;

  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #06b6d4;
}

.contact-form button {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 14px;

  cursor: pointer;

  color: white;

  font-weight: 600;

  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-5px);
}

/* =====================================================
   FOOTER TOP CTA
===================================================== */

.footer {
  padding: 120px 8% 40px;
}

.footer-box {
  max-width: 1200px;

  margin: auto;
}

.footer-top {
  text-align: center;

  padding: 60px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top h2 {
  font-size: 48px;

  color: white;
}

.footer-top h2 span {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.footer-top p {
  margin: 20px auto;

  max-width: 600px;

  color: #94a3b8;
}

.footer-buttons {
  display: flex;

  justify-content: center;

  gap: 15px;

  margin-top: 30px;
}

.primary-btn,
.cv-btn {
  padding: 14px 25px;

  border-radius: 14px;
}

.primary-btn {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.cv-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.available {
  margin-top: 30px;

  color: #94a3b8;
}

.available span {
  display: inline-block;

  width: 8px;

  height: 8px;

  background: #22c55e;

  border-radius: 50%;

  margin-right: 10px;
}

/* =====================================================
   HIRE SECTION
===================================================== */

.hire-section {
  padding: 90px 8%;

  text-align: center;
}

.hire-section .section-header {
  max-width: 850px;
}

.hire-section h2 {
  margin-top: 15px;

  font-size: 56px;

  font-weight: 800;

  color: white;
}

.hire-section p {
  margin: 25px auto 0;

  max-width: 700px;

  color: #94a3b8;

  line-height: 1.8;

  font-size: 17px;
}

.hire-section .btn {
  display: inline-flex;

  margin-top: 35px;

  padding: 16px 35px;

  border-radius: 16px;

  font-size: 16px;
}

/* =====================================================
   FOOTER CONTENT
===================================================== */

.footer-content {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 40px;

  margin-top: 45px;
}

.footer-logo {
  font-size: 32px;

  letter-spacing: 4px;

  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;
}

.about {
  margin-top: 15px;

  color: #94a3b8;

  line-height: 1.8;
}

.footer-content h3 {
  color: white;

  font-size: 18px;

  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #06b6d4;

  padding-left: 8px;
}

/* SOCIAL ICONS */

.social {
  display: flex;

  gap: 12px;
}

.social a {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: white;

  font-size: 13px;

  font-weight: 600;

  transition: 0.35s;
}

.social a:hover {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);

  transform: translateY(-5px);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
  margin-top: 45px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  justify-content: space-between;

  color: #64748b;

  font-size: 13px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes pulse {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1.15);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes imageShow {
  from {
    opacity: 0;

    transform: translateY(50px) scale(0.9);
  }

  to {
    opacity: 1;

    transform: translateY(0) scale(1);
  }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;

    text-align: center;
  }

  .hero-right {
    margin-top: 50px;
  }

  .about-container {
    flex-direction: column;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  
  /* =========================
   MOBILE NAVBAR FIX
========================= */

.navbar-card {
  width: 220px;
}

.navbar-card.expanded {
  width: 90%;
  height: 70px;
}
.logo-wrapper {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar-card.expanded .logo-wrapper {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
/* Hide hamburger until navbar expansion finishes */

.menu-toggle{
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
}

/* Show hamburger only after expand animation */

.navbar-card.expanded .menu-toggle{
  opacity:1;
  visibility:visible;
  transform: translateY(0, -50%);
  transition-delay:.8s;
}

.menu-toggle {

  display: flex;

  width: 38px;
  height: 32px;

  right: 20px;

  z-index: 10001;

  background: rgba(255,255,255,0.12);

  border: 1px solid rgba(255,255,255,0.25);

  border-radius: 10px;

  padding: 7px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(-50%) translateX(15px);

  transition: all .45s ease;
}

.menu-toggle.show{

  opacity:1;

  visibility:visible;

  transform:translateY(-50%) translateX(0);

}


.nav-links{
  position:absolute;
  top:75px;
  left:50%;
  transform:translateX(-50%) translateY(-20px);

  width:90%;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;

  padding:30px 0;
  max-height:70vh;
  overflow-y:auto;


  background:rgba(15,23,42,.96);

  border-radius:20px;

  opacity:0;
  pointer-events:none;

  transition:.4s ease;
}


.nav-links.mobile-show {

  opacity: 1;

  pointer-events: auto;

  
  transform: translateX(-50%) translateY(0);

}


.nav-links li {

  opacity: 0;

  transform: translateY(20px);

  transition: .4s ease;

}


.nav-links.mobile-show li {

  opacity: 1;

  transform: translateY(0);

}


.nav-links.mobile-show li:nth-child(1){
  transition-delay:.1s;
}

.nav-links.mobile-show li:nth-child(2){
  transition-delay:.2s;
}

.nav-links.mobile-show li:nth-child(3){
  transition-delay:.3s;
}

.nav-links.mobile-show li:nth-child(4){
  transition-delay:.4s;
}

.nav-links.mobile-show li:nth-child(5){
  transition-delay:.5s;
}

.nav-links.mobile-show li:nth-child(6){
  transition-delay:.6s;
}

.hero {
  width: 90%;
  min-height: auto;
  padding-top: 130px;
  padding-bottom: 40px;
  flex-direction: column;
  gap: 10px;
}
.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin: bottom 14px;
}

.hero-desc {

  font-size: 15px;

  line-height: 1.7;

  margin-top: 15px;

}

.hero-right {
  width: 100%;
  height: 350px;
  margin-top: 0px;
  order:2;
}
.glow {
  width: 280px;
  height: 280px;
  filter: blur(70px);
}


.hero-left {
  display: contents;
}


.hero-title {
  order:1;
}


.hero-desc {
  order:3;
}


.buttons {
  order:4;
}

.portrait {
  width: 260px;
  height: 350px;
  border-radius: 30px;
}
/* MOBILE HERO FLOATING CARDS FIX */

.float {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11px;
  backdrop-filter: blur(12px);
}


.float h3 {
  font-size: 14px;
}


.float small {
  font-size: 10px;
}


/* reposition floating cards */




.two {
  top: 220px;
  right: 0;
}


.three {
  bottom: 0px;
  left: 20px;
}

.about-section,
.skills-section,
.work-section,
.case-section,
.process-section,
.contact-section {
  padding: 80px 5%;
}

/* =========================
   ABOUT TAG
========================= */

.about-tag{

  display:inline-block;

  color:#06b6d4;

  font-size:13px;

  font-weight:600;

  letter-spacing:4px;

  margin-bottom:15px;

}


/* ABOUT TITLE */

.about-title{

  font-size:50px;

  font-weight:800;

  line-height:1.1;

  background:
  linear-gradient(90deg,#8b5cf6,#06b6d4);

  background-clip:text;

  -webkit-background-clip:text;

  color:transparent;

}

.about-title {
  font-size: 36px;
}

.tools-grid {
  grid-template-columns: 1fr;
}

.work-grid {
  grid-template-columns: 1fr;
}

.case-grid {
  grid-template-columns: 1fr;
}

.process-grid {
  grid-template-columns: 1fr;
}

.contact-wrapper {
  grid-template-columns: 1fr;
}

.footer-content {
  grid-template-columns: 1fr;
}

.footer-bottom {
  flex-direction: column;

  gap: 10px;
}


/* =========================
   ABOUT MOBILE ORDER
========================= */

.about-container {

  flex-direction: column;
  gap: 25px;

}


/* TITLE + HEADING FIRST */

.about-left {

  order:1;
  text-align:center;

}


/* IMAGE SECOND */

.about-right {

  order:2;

  width:100%;

  height:380px;

  display:flex;

  justify-content:center;

  align-items:center;

  transform:translateY(50px) translateX(0);

}


.about-right.show {

  transform:translateY(0) translateX(0);

}


/* CONTENT AFTER IMAGE */

.about-content {

  order:3;

  text-align:center;

}


/* ABOUT IMAGE MOBILE SIZE */

.about-visual {

  width:280px;

  height:380px;

  margin:auto;

}
.about-right {
  margin-bottom:10px;
}
/* ABOUT IMAGE FLOATING CARDS MOBILE ASSEMBLE */

.note-one {

  top:10px;
  left:-15px;

  transform:scale(.72);

}


.note-two {

  top:170px;
  right:-25px;

  transform:scale(.72);

}


.note-three {

  bottom:15px;
  left:0px;

  transform:scale(.72);

}




/* MOBILE HERO FLOAT FIX */

.hero-right .one {
  top: 20px;
  left: 5px;
  transform: scale(0.85);
}

.hero-right .two {
  top: 140px;
  right: 5px;
  transform: scale(0.85);
}

.hero-right .three {
  bottom: 20px;
  left: 20px;
  transform: scale(0.85);
}

/* MOBILE HERO FLOATING CARDS */

.float {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11px;
}


.float h3 {
  font-size: 14px;
}


.float small {
  font-size: 10px;
}


.one {
  top: 20px;
  left: -10px;
}


.two {
  top: 150px;
  right: -10px;
}


.three {
  bottom: 20px;
  left: 10px;
}
/* Hamburger Animation */

.menu-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
} }@media(max-width:768px){

  .about-container{
      width:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
  }


  .about-left,
  .about-right{

      width:100%;
      flex:none;

  }


  .about-left{

      text-align:center;

  }


  .about-right{

      order:2;
      height:380px;

      display:flex;
      justify-content:center;
      align-items:center;

      opacity:1;
      transform:none;

  }


  .about-visual{

      width:260px;
      height:340px;

  }


  .about-buttons{

      justify-content:center;

  }


  .stats{

      justify-content:center;
      flex-wrap:wrap;

  }

}

@media(max-width:768px){

  .about-container{
    display:flex;
    flex-direction:column;
  }

  .about-left{
    order:1;
  }

  .about-right{
    order:2;
  }

}

/* =========================================
   FINAL MOBILE SECTION SPACING FIX
   ONLY SPACING - NO LAYOUT CHANGES
========================================= */

@media (max-width:768px){

  /* Hero bottom spacing */
  .hero{
    padding-bottom:80px;
  }


  /* About section */
  .about-section{
    padding-top:70px;
    padding-bottom:90px;
  }


  /* Skills */
  .skills-section{
    padding-top:80px;
    padding-bottom:90px;
  }


  /* Work */
  .work-section{
    padding-top:80px;
    padding-bottom:90px;
  }


  /* Case studies */
  .case-section{
    padding-top:80px;
    padding-bottom:90px;
  }


  /* Process */
  .process-section{
    padding-top:80px;
    padding-bottom:90px;
  }


  /* Contact */
  .contact-section{
    padding-top:80px;
    padding-bottom:90px;
  }


  /* Footer */
  .footer{
    padding-top:90px;
    padding-bottom:40px;
  }


  /* Section headings spacing */
  .section-header{
    margin-bottom:40px;
  }


  .work-header{
    margin-bottom:45px;
  }


  /* Prevent cards touching each other */
  .work-grid,
  .case-grid,
  .process-grid{
    gap:25px;
  }

}