* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.fa-arrow-right {
  padding-left: 5px;
}

.app-wrapper {
  font-family: "Inter", sans-serif;
  background-color: #020617;
  border-top: 1px solid rgb(32, 40, 60);
  color: #f8fafc;
  line-height: 1.5;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================== 404 PAGE ============================== */

.error-404 {
  background: #020409;
  color: #e5e7eb;
  padding: 100px 20px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  color: #22d3ee; /* Your theme's Cyan color */
  margin-bottom: 0;
  line-height: 1;
}

.error-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.error-message {
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto 30px;
}

.error-404 .cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #22d3ee;
  color: #020617;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.error-404 .cta-btn:hover {
  transform: translateY(-3px);
}

/* ============================== HEADER ============================== */

html {
  scroll-behavior: smooth;
}

.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a0c14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 80px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.header-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.header-logo .dev {
  color: #22d3ee;
}

.header-logo .portfolio {
  color: #fff;
}

.menu-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .menu-desktop {
    display: flex;
    gap: 8px;
  }
}

.menu-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
}

.menu-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.menu-link.active {
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.1);
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: block;
  }
}

.cta-button {
  background: linear-gradient(to right, #22d3ee, #0891b2);
  color: #0a0c14;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  height: 2px;
  background: #fff;
}

.menu-mobile {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0a0c14;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  gap: 24px;
  transition: 0.4s;
}

.menu-mobile.open {
  right: 0;
}

.menu-mobile .menu-link {
  font-size: 20px;
  width: 100%;
  text-align: center;
  padding: 16px;
}

.menu-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ============================== FOOTER ============================== */

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #070e1a, #030812);
  padding: 70px 0 30px;
  color: #9fb3c8;
  border-top: 1px solid rgb(32, 40, 60);
}

/* CONTAINER */
.footer-container {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 60px;
}

/* BRAND */
.footer-brand h3 {
  color: #00e5ff;
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand h3 span {
  color: #fff;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  color: #9fb3c8;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.social-icons a:hover {
  background: rgba(0, 229, 255, 0.18);
  color: #00e5ff;
}

/* NAV */
.footer-nav h4,
.footer-contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-nav ul {
  list-style: none;
}
.footer-nav li {
  margin-bottom: 10px;
}
.footer-nav a {
  text-decoration: none;
  color: #9fb3c8;
  font-size: 14px;
  transition: 0.3s;
}
.footer-nav a:hover {
  color: #00e5ff;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-email {
  color: #00e5ff;
  text-decoration: none;
  font-weight: 500;
}
.footer-email:hover {
  text-decoration: underline;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #7f95ad;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============================== HERO SECTION ============================== */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(0, 216, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #020409, #060b14);
}

.hero-content {
  max-width: 900px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  font-size: 14px;
  color: #4de6ff;
  background: rgba(0, 216, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.25);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #4de6ff;
  border-radius: 50%;
}

/* Heading */
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: #28d8ff;
}

/* Description */
.hero-desc {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #9fb0c0;
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #28d8ff;
  color: #000;
}

.btn.primary:hover {
  background: #1fc7ec;
}

.btn.outline {
  border: 1px solid #1fc7ec;
  color: #ffffff;
}

.btn.outline:hover {
  /* background: rgba(255, 255, 255, 0.08); */
  border: 1px solid #28d8ff;
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

/* ============================== ABOUT SECTION ============================== */

.p-about-section-wrapper {
  font-family: "Inter", sans-serif;
  background-color: #020617;
  color: #ffffff;
  line-height: 1.6;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

/* Explicitly setting box-sizing for section children only */
.p-about-section-wrapper div,
.p-about-section-wrapper section,
.p-about-section-wrapper h2,
.p-about-section-wrapper h3,
.p-about-section-wrapper p,
.p-about-section-wrapper span,
.p-about-section-wrapper a,
.p-about-section-wrapper i {
  box-sizing: border-box;
}

.p-about-inner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.p-about-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .p-about-grid-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
  }
}

/* CSS KEYFRAME ANIMATIONS - Scoped name */
@keyframes pAboutFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Side Content */
.p-about-text-content {
  opacity: 0;
  animation: pAboutFadeInUp 0.8s ease-out forwards;
  animation-delay: 0.1s;
}

.p-about-tagline {
  color: #22d3ee;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  display: block;
  margin-bottom: 20px;
}

.p-about-main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 24px 0;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .p-about-main-title {
    font-size: 32px;
  }
  .p-about-description {
    font-size: 16px;
  }
}

.p-about-description {
  color: #94a3b8;
  font-size: 18px;
  margin: 0 0 40px 0;
}

.p-about-description p {
  margin: 0 0 16px 0;
}

.p-about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background-color: rgba(30, 41, 59, 0.4);
  border: 1px solid #1e293b;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-about-cta-link:hover {
  background-color: #1e293b;
  border-color: #334155;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.p-about-cta-link i {
  transition: transform 0.3s ease;
}

.p-about-cta-link:hover i {
  transform: translateX(6px);
}

/* Skills Grid */
.p-about-skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .p-about-skills-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.p-about-skill-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid #1e293b;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  animation: pAboutFadeInUp 0.7s ease-out forwards;
  transition: all 0.3s ease;
}

.p-about-skill-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.5);
}

/* Animation Delays for items */
.p-about-delay-1 {
  animation-delay: 0.2s;
}
.p-about-delay-2 {
  animation-delay: 0.4s;
}
.p-about-delay-3 {
  animation-delay: 0.6s;
}
.p-about-delay-4 {
  animation-delay: 0.8s;
}

.p-about-icon-container {
  background: rgba(34, 211, 238, 0.1);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #22d3ee;
  font-size: 20px;
}

.p-about-card-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.p-about-card-text {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* ================= FEATURES SECTION ================= */

.features {
  padding: 80px 24px;
  background-color: #020617;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .features {
    padding: 50px 20px;
  }
}

.features-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.features-header p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

.features-container {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* CARD STYLING */
.feature-card {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* ICON BOX STYLING */
.feature-card .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #22d3ee;
  font-size: 18px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Mobile Adjustments for Grid */
@media (max-width: 640px) {
  .features-container {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 30px;
  }
}

/* ============================== SERVICES SECTION ============================== */

.services-section {
  box-sizing: border-box;
  padding: 80px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 48px 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.services-title-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.services-tag {
  box-sizing: border-box;
  color: #06b6d4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 12px 0;
  padding: 0;
  display: block;
}

.services-header h2 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.all-services-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.all-services-btn:hover {
  border-color: #334155;
  background: rgba(30, 41, 59, 0.6);
}

.services-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Card Styling */
.service-card {
  box-sizing: border-box;
  background: #0b1120;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 20px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.service-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  transform: translateY(-4px);
}

.icon-box {
  box-sizing: border-box;
  width: 38px;
  height: 38px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px 0;
  padding: 0;
  color: #06b6d4;
  font-size: 15px;
}

.service-card h3 {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.service-card p {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
}

/* List with small cyan dots */
.service-list {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.service-list li {
  box-sizing: border-box;
  margin: 0 0 12px 0;
  padding: 0;
  font-size: 14.5px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #06b6d4;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Learn More Link */
.learn-more {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06b6d4;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.learn-more:hover {
  gap: 12px;
  color: #22d3ee;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .all-services-btn {
    align-self: flex-start;
  }
}

/* ================= PROCESS SECTION ================= */

.process-section {
  box-sizing: border-box;
  padding: 100px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Styles */
.process-header {
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 64px 0;
  padding: 0;
}

.process-tag {
  box-sizing: border-box;
  color: #06b6d4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 16px 0;
  padding: 0;
  display: block;
}

.process-header h2 {
  box-sizing: border-box;
  margin: 0 0 20px 0;
  padding: 0;
  font-size: clamp(32px, 5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.process-header p {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  color: #64748b;
  max-width: 650px;
  line-height: 1.6;
}

/* Grid Layout */
.process-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Step Card Styling */
.step-card {
  box-sizing: border-box;
  background: #0b1120;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.step-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  transform: translateY(-5px);
}

/* Visual Connector Line for Desktop */
/* This simulates the connecting line between steps seen in the image */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 24px;
  height: 1px;
  border-top: 1px solid #1e293b;
  z-index: 0;
}

.step-number {
  box-sizing: border-box;
  color: #06b6d4;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 24px 0;
  padding: 0;
  opacity: 0.3; /* Muted appearance like the reference */
}

.step-card h3 {
  box-sizing: border-box;
  margin: 0 0 16px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.step-card p {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-card {
    height: 280px;
  }
  .step-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    height: auto;
    min-height: 240px;
  }
  .process-header h2 {
    font-size: 32px;
  }
  .process-section {
    padding: 50px 20px;
  }
  .app-wrapper {
    min-height: 1200px; /* Taller for vertical stack */
  }
}

/* ================= PROJECTS SECTION ================= */

.projects {
  border-top: 1px solid rgb(32, 40, 60);
  padding: 80px 40px;
  font-family: Inter, system-ui, sans-serif;
  color: #e5e7eb;
  background: #020617;
}

@media (max-width: 1024px) {
  .projects {
    padding: 50px 20px;
  }

  .projects-header h2 {
    font-size: 32px;
  }
  .all-projects {
    font-size: 16px;
  }
}

.projects-header {
  max-width: 1240px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.projects-header p {
  margin-top: 8px;
  color: #94a3b8;
}

.all-projects {
  text-decoration: none;
  color: #e5e7eb;
  border: 1px solid #1e293b;
  padding: 10px 16px;
  border-radius: 10px;
}

.all-projects:hover {
  background: #191f2e;
  transition: all 0.35s ease;
}

.projects-grid {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Mobile */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
  transform: scale(1.03);
  border-color: rgba(0, 216, 255, 0.35);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

/* .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.fullstack {
  background: #22d3ee;
  color: #020617;
}

.frontend {
  background: #22c55e;
  color: #020617;
} */

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin: 0 0 8px;
}

.project-content p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #94a3b8;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tags span {
  padding: 4px 10px;
  border: 1px solid #1e293b;
  border-radius: 999px;
  font-size: 12px;
}

.details-link {
  color: #22d3ee;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.details-link span {
  transition: transform 0.3s ease;
}

.project-card:hover .details-link span {
  transform: translateX(6px);
}

/* ================= REVIEWS SECTION ================= */

.testimonials-section {
  box-sizing: border-box;
  padding: 80px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 50px 20px;
  }
}

/* Header Area */
.testimonials-header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 56px 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.header-title-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.testimonials-tag {
  box-sizing: border-box;
  color: #06b6d4;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 12px 0;
  padding: 0;
  display: block;
}

.testimonials-header h2 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: clamp(32px, 5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.view-all-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid #1e293b;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  border-color: #334155;
  background: rgba(30, 41, 59, 0.6);
}

/* Grid Layout */
.testimonials-grid {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
}

/* Testimonial Card */
.testimonial-card {
  box-sizing: border-box;
  background: #0b1120;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  transform: translateY(-5px);
}

.quote-icon {
  box-sizing: border-box;
  color: #06b6d4;
  font-size: 32px;
  margin: 0 0 20px 0;
  padding: 0;
  opacity: 0.4;
}

.star-rating {
  box-sizing: border-box;
  display: flex;
  gap: 4px;
  color: #06b6d4;
  font-size: 14px;
  margin: 0 0 24px 0;
  padding: 0;
}

.testimonial-body {
  box-sizing: border-box;
  margin: 0 0 32px 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  flex-grow: 1;
  font-style: normal;
}

.card-divider {
  box-sizing: border-box;
  height: 1px;
  background: #1e293b;
  margin: 0 0 24px 0;
  padding: 0;
  border: none;
}

.author-info {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.author-name {
  box-sizing: border-box;
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.author-role {
  box-sizing: border-box;
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .app-wrapper {
    min-height: 1400px;
  }
}

/* ============================== FAQ SECTION ============================== */

.faq-section {
  box-sizing: border-box;
  padding: 80px 24px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Header Area */
.faq-header {
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 48px 0;
  padding: 0;
}

.faq-header h2 {
  box-sizing: border-box;
  margin: 0 0 16px 0;
  padding: 0;
  font-size: clamp(32px, 5vw, 36px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.faq-header p {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
}

/* Accordion Container */
.faq-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

/* FAQ Item */
.faq-item {
  box-sizing: border-box;
  background: #0b1120;
  border: 1px solid #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(0, 216, 255, 0.35);
}

/* Question Button */
.faq-question {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  outline: none;
}

.faq-question:hover {
  color: #06b6d4;
}

.faq-icon {
  box-sizing: border-box;
  font-size: 14px;
  color: #94a3b8;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #06b6d4;
}

/* MODERN ACCORDION ANIMATION USING GRID */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive Breakpoints */
@media (max-width: 640px) {
  .faq-section {
    padding: 50px 20px;
  }
  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
  }
  .faq-answer-content {
    padding: 0 24px 24px 24px;
    font-size: 14.5px;
  }
  .app-wrapper {
    min-height: auto;
    padding: 0;
  }
}

/* ============================== FINAL CTA SECTION ========================== */

.cta-section {
  width: 100%;
  padding: 100px 20px;
  border-top: 1px solid rgb(32, 40, 60);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Arial, sans-serif;
}
@media (max-width: 1024px) {
  .cta-section {
    padding: 50px 20px;
  }
}

.cta-content {
  max-width: 700px;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

.cta-content p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #22d3ee;
  color: #020617;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(34, 211, 238, 0);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
}

/* ============================== PROJECT PAGE  ========================== */
/* ============================== 1ST SECTION SECTION ========================== */

.projects-wrapper {
  width: 100%;
  background-color: #020617;
  padding-top: 150px;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .projects-wrapper {
    padding-top: 50px;
  }

  .projects-title {
    font-size: 34px;
  }
}

.projects-container {
  width: 100%;
  max-width: 1240px;
  padding: 0 24px;
  box-sizing: border-box;
}

.projects-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.projects-description {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

/* ============================== PROJECT FILTER SECTION ========================== */

.projects-page {
  background-color: #030712;
  padding: 80px 40px;
  font-family: Inter, system-ui, sans-serif;
  color: #e5e7eb;
}

@media (max-width: 1024px) {
  .projects-page {
    padding: 40px 20px;
  }
}

/* Filter Button Container */
.filter-container {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto 48px;
}

.filter-btn {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #1e293b;
  color: #94a3b8;
  padding: 8px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #1e293b;
  color: #fff;
}

.filter-btn.active {
  background: #22d3ee; /* Cyan color from image */
  color: #020617;
  font-weight: 600;
}

/* Logic for Hiding Cards */
.project-card.hide {
  display: none;
}

/* ============================== PROJECT PEGINATION SECTION ========================== */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 40px 0;
  background-color: #030712;
}

.pag-btn,
.page-num {
  background: #020617;
  border: 1px solid #1e293b;
  color: #94a3b8;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-num.active {
  background: #22d3ee;
  color: #020617;
  border-color: #22d3ee;
}

.pag-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pag-btn:hover:not(:disabled) {
  border-color: #22d3ee;
  color: #fff;
}

/* ============================== PROJECT DETAIL PAGE  ========================== */
/* ============================== 1ST SECTION SECTION ========================== */

/* Section Background */
.project-hero-section {
  background:
    radial-gradient(circle at top, rgba(0, 216, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #060b14, #020409);
  padding: 120px 24px 60px;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .project-hero-section {
    padding: 50px 20px;
  }
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Back Link with Icon Alignment */
.back-navigation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 35px;
  transition: color 0.3s ease;
}

.back-navigation:hover {
  color: #22d3ee; /* Theme Cyan */
}

/* Category Badge */
.project-category {
  display: inline-block;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(34, 211, 238, 0.2);
  margin-bottom: 20px;
}

/* Title & Subtitle */
.project-main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.project-description {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Live Project Button with Icon */
.btn-view-live {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Icon specific size adjustment */
.btn-view-live i {
  font-size: 14px;
}

/* ============================== SLIDER SECTION ========================== */

.project-slider-section {
  background: #020409;
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .project-slider-section {
    padding-bottom: 0px;
  }
}

.slider-container {
  max-width: 1240px;
  margin: 0 auto;
  background: #0a1120;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #1e293b;
}

/* Main Display */
.main-slider {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2, 6, 23, 0.7);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.nav-arrow:hover {
  background: #22d3ee;
  color: #020617;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Thumbnails */
.thumbnail-row {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.thumb {
  width: 100px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumb.active {
  border-color: #22d3ee;
  opacity: 1;
}

.thumb:hover {
  opacity: 1;
}

/* ============================== DETAILS SECTION ========================== */

.project-info-section {
  background-color: #020409;
  padding: 60px 24px;
}

.info-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr; /* Sidebar is smaller than content */
  gap: 60px;
}

/* Left Column Styling */
.content-group {
  margin-bottom: 40px;
}

.info-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.info-text {
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8; /* Slate gray */
}

/* Features List with Custom Bullets */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 16px;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #22d3ee;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

/* Sidebar Styling */
.info-card {
  background: #0a1120;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #1e293b;
  color: #e2e8f0;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #334155;
}

/* Sidebar Links */
.live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00e5ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.live-link:hover {
  text-decoration: underline;
}

/* Responsive for Mobile */
@media (max-width: 850px) {
  .info-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================== CONTACT PAGE  ========================== */

.contact-wrapper {
  background-color: #030712;
  color: #f8fafc;
}
.contact-page-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 20px;

  .contact-header-wrapper {
    margin-bottom: 3.5rem;

    .contact-tagline-text {
      color: #22d3ee;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      display: block;
      margin-bottom: 1.25rem;
    }

    .contact-main-heading {
      font-size: clamp(36px, 8vw, 48px);
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
      line-height: 1.1;
    }

    .contact-subtext-para {
      color: #94a3b8;
      font-size: 18px;
      max-width: 650px;
    }
  }

  @media (max-width: 1024px) {
    .contact-page-section {
      padding: 50px 16px;
    }
  }

  .contact-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;

    @media (min-width: 1024px) {
      grid-template-columns: 1.8fr 1fr;
    }

    .contact-form-panel {
      background-color: #0f172a;
      border: 1px solid #1e293b;
      border-radius: 1.25rem;
      padding: 20px;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);

      .contact-panel-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 2.5rem;
        color: #f8fafc;
      }

      .contact-input-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 10px;

        @media (min-width: 640px) {
          grid-template-columns: 1fr 1fr;
        }
      }

      .contact-input-block {
        margin-bottom: 1.75rem;

        .contact-field-label {
          display: block;
          font-size: 0.9rem;
          font-weight: 600;
          color: #94a3b8;
          margin-bottom: 0.6rem;
        }

        .contact-input-element,
        .contact-select-element,
        .contact-textarea-element {
          width: 100%;
          background-color: #030712;
          border: 1px solid #1e293b;
          border-radius: 0.6rem;
          padding: 0.85rem 1.1rem;
          color: #f8fafc;
          font-family: inherit;
          font-size: 1rem;
          transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

          &:focus {
            outline: none;
            border-color: rgba(0, 216, 255, 0.35);
          }
        }

        .contact-textarea-element {
          resize: none;
          min-height: 160px;
        }
      }

      .contact-action-btn {
        background-color: #22d3ee;
        color: #0f172a;
        font-weight: 700;
        padding: 1rem 2.25rem;
        border: none;
        border-radius: 0.6rem;
        cursor: pointer;
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        gap: 0.85rem;
        transition: all 0.3s ease;
        text-decoration: none;

        &:hover {
          background-color: #67e8f9;
          transform: translateY(-2px);
          box-shadow: 0 10px 20px -5px rgba(34, 211, 238, 0.3);
        }

        &:active {
          transform: translateY(0);
        }
      }
    }

    .contact-sidebar-panel {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;

      .contact-sidebar-card {
        background-color: #0f172a;
        border: 1px solid #1e293b;
        border-radius: 1.25rem;
        padding: 20px;

        .contact-sidebar-title {
          font-size: 1.15rem;
          font-weight: 700;
          margin-bottom: 1.75rem;
          color: #f8fafc;
        }

        .contact-info-list {
          .contact-info-item {
            display: flex;
            gap: 1.25rem;
            margin-bottom: 1.75rem;

            &:last-child {
              margin-bottom: 0;
            }

            .contact-icon-box {
              background: rgba(34, 211, 238, 0.1);
              color: #22d3ee;
              width: 44px;
              height: 44px;
              border-radius: 0.75rem;
              display: flex;
              align-items: center;
              justify-content: center;
              flex-shrink: 0;
              font-size: 1.2rem;
            }

            .contact-info-content {
              h4 {
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 0.2rem;
              }
              p,
              a {
                font-size: 0.9rem;
                color: #94a3b8;
                text-decoration: none;
                transition: color 0.2s ease;
              }
              a:hover {
                color: #22d3ee;
              }
            }
          }
        }

        .contact-availability-row {
          display: flex;
          align-items: center;
          gap: 0.85rem;
          margin-bottom: 1.25rem;

          .contact-pulse-container {
            position: relative;
            width: 14px;
            height: 14px;

            .contact-pulse-dot {
              width: 14px;
              height: 14px;
              background-color: #22d3ee;
              border-radius: 50%;
            }

            .contact-pulse-wave {
              position: absolute;
              top: 0;
              left: 0;
              width: 14px;
              height: 14px;
              background-color: #22d3ee;
              border-radius: 50%;
              animation: contact-pulse-anim 2s infinite;
            }
          }

          h3 {
            font-size: 1.05rem;
            font-weight: 700;
          }
        }

        .contact-expect-list {
          list-style: none;

          .contact-expect-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            font-size: 0.9rem;
            color: #cbd5e1;
            margin-bottom: 1.1rem;

            &:last-child {
              margin-bottom: 0;
            }

            i {
              color: #22d3ee;
              flex-shrink: 0;
            }
          }
        }

        .contact-ghost-btn {
          width: 100%;
          background: transparent;
          border: 1px solid #1e293b;
          color: #f8fafc;
          padding: 0.9rem;
          border-radius: 0.75rem;
          font-weight: 600;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 0.85rem;
          transition: all 0.3s ease;
          text-decoration: none;

          &:hover {
            background-color: #1e293b;
            border-color: #22d3ee;
            transform: translateY(-1px);
          }
        }
      }
    }
  }
}

@keyframes contact-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #030712;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #030712;

  &:hover {
    background: #334155;
  }
}

/* Modern Reset & Global Styles */

/* Layout Container */
.about-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Spacing */
.about-section {
  padding: 80px 0;
}

/* Typography Helpers */
.about-text-cyan {
  color: #22d3ee;
}

.about-text-slate {
  color: #94a3b8;
}

/* Badge Component */
.about-section-badge {
  display: inline-block;
  background-color: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Hero Section */
.about-hero-section {
  padding-top: 120px;
  padding-bottom: 40px;
}

.about-hero-section h1 {
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-hero-section p {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #94a3b8;
  max-width: 720px;
}

/* Bio & Sidebar Grid */
.about-profile-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: flex-start;
}

.about-bio-content h2 {
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-bio-content p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Quick Facts Sidebar Card */
.about-facts-card {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 40px;
  z-index: 10;
}

.about-facts-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-facts-card h3 i {
  color: #22d3ee;
  font-size: 20px;
}

.about-fact-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #1e293b;
}

.about-fact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.about-fact-label {
  color: #64748b;
  font-weight: 500;
}

.about-fact-value {
  font-weight: 700;
  color: #f8fafc;
}

.about-fact-value.about-active {
  color: #22d3ee;
}

/* Experience Section */
.about-experience-header {
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-experience-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
}

.about-experience-header i {
  color: #22d3ee;
  font-size: 28px;
}

.about-experience-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-job-card {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 20px;
  padding: 40px;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.about-job-card:hover {
  transform: translateY(-6px);
  border-color: #22d3ee;
  box-shadow: 0 10px 30px -15px rgba(34, 211, 238, 0.2);
}

.about-job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.about-job-title {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
}

.about-job-date {
  font-size: 14px;
  font-weight: 600;
  color: #22d3ee;
  background-color: rgba(34, 211, 238, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.about-job-company {
  display: block;
  color: #64748b;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-job-desc {
  color: #94a3b8;
  font-size: 17px;
  max-width: 800px;
}

/* Call To Action */
.about-cta-wrap {
  background-color: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 32px;
  padding: clamp(60px, 10vw, 100px) 40px;
  text-align: center;
  background-image: radial-gradient(
    circle at top right,
    rgba(34, 211, 238, 0.05),
    transparent
  );
  overflow: hidden;
  margin-bottom: 80px;
}

.about-cta-wrap h2 {
  font-size: clamp(32px, 6vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-cta-wrap p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 48px;
}

.about-btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.about-btn-primary {
  background-color: #22d3ee;
  color: #020617;
}

.about-btn-primary:hover {
  background-color: #67e8f9;
  transform: scale(1.02);
}

.about-btn-outline {
  background-color: transparent;
  color: #f8fafc;
  border: 2px solid #1e293b;
}

.about-btn-outline:hover {
  border-color: #22d3ee;
  color: #22d3ee;
}

.about-btn-full {
  width: 100%;
  margin-top: 10px;
}

/* Responsive Design Glitch Fixes */
@media (max-width: 1024px) {
  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-facts-card {
    position: static;
    width: 100%;
    margin-top: 20px;
  }

  .about-hero-section {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 30px 0;
  }

  .about-job-card {
    padding: 24px;
  }

  .about-btn-group {
    flex-direction: column;
  }

  .about-btn {
    width: 100%;
  }

  .about-cta-wrap {
    padding: 60px 24px;
  }
}
