/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #2563eb;
  cursor: pointer;
}

.navbar {
  height: 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 8%;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(37, 99, 235, 0.08);

  position: sticky;
  top: 0;

  z-index: 999;
}

.logo img {
  width: 70px;

  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.08);
}

nav {
  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #374151;

  font-weight: 600;

  transition: 0.3s;
}

nav a:hover {
  color: #2563eb;
}

/*=========================
      BUTTONS
=========================*/

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);

  color: #fff;

  border: none;

  padding: 14px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.35s;

  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.25);
}

.btn-outline {
  background: #fff;

  border: 2px solid #2563eb;

  color: #2563eb;

  padding: 14px 30px;

  border-radius: 50px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.35s;
}

.btn-outline:hover {
  background: #2563eb;

  color: #fff;

  transform: translateY(-5px);
}


/* =====================================================
   GLOBAL STYLES
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111827;
}

/* ===========================
   BACK TO HOME
=========================== */

.back-home {
  position: fixed;
  top: 25px;
  left: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #2563eb;
  text-decoration: none;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-home i {
  font-size: 14px;
}

.back-home:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  transform: translateX(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
  position: relative;

  text-align: center;

  padding: 100px 20px 70px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(99, 102, 241, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #fafcff, #ffffff);
}

.hero h1 {
  font-size: 60px;

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -2px;

  margin-bottom: 22px;

  background: linear-gradient(90deg, #111827, #374151, #6b7280);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 760px;

  margin: auto;

  color: #64748b;

  font-size: 20px;

  line-height: 1.8;
}

/* =====================================================
   DEVELOPER PRICING SECTION
===================================================== */

.pricing-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 32px;

  padding: 60px 8% 90px;
}

/* =====================================================
   CARD
===================================================== */

.card {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  background: #ffffff;

  border: 1px solid #eceff5;

  border-radius: 24px;

  padding: 40px 30px;

  overflow: hidden;

  transition: 0.35s ease;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Top Accent */

.card::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 5px;

  background: linear-gradient(90deg, #8b5cf6, #c084fc);

  transform: scaleX(0);

  transform-origin: left;

  transition: 0.35s;
}

/* Decorative Glow */

.card::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  right: -120px;

  top: -120px;

  border-radius: 50%;

  background: rgba(139, 92, 246, 0.05);
}

/* Hover */

.card:hover {
  transform: translateY(-10px);

  border-color: #8b5cf6;

  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.18);
}

.card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.card h2 {
  position: relative;

  z-index: 2;

  font-size: 24px;

  font-weight: 700;

  color: #111827;

  margin-bottom: 20px;
}

.developer {
  position: relative;

  z-index: 2;

  font-size: 16px;

  font-weight: 500;

  color: #64748b;

  line-height: 1.6;

  margin-bottom: 20px;
}

.price {
  position: relative;

  z-index: 2;

  font-size: 20px;

  font-weight: 700;

  color: #0f766e;

  margin-bottom: 30px;
}

/* =====================================================
   HIRE BUTTON
===================================================== */

.hire-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  padding: 13px 30px;

  border-radius: 50px;

  background: linear-gradient(90deg, #7858c5, #a74dbb);

  color: #ffffff;

  font-size: 14px;

  font-weight: 600;

  transition: 0.35s;
}

.hire-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.3);
}

/* =====================================================
   TECHNOLOGY STACK
===================================================== */

.technology-stack {
  padding: 90px 8%;

  background: #ffffff;
}

.stack-header {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 55px;
}

.stack-header h2 {
  font-size: 48px;

  font-weight: 800;

  letter-spacing: -1px;

  margin-bottom: 18px;

  background: linear-gradient(90deg, #111827, #374151, #6b7280);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stack-header p {
  font-size: 18px;

  color: #64748b;

  line-height: 1.8;
}

/* =====================================================
   TECHNOLOGY GRID
===================================================== */

.tech-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 22px;
}

.tech-card {
  background: #ffffff;

  border: 1px solid #eceff5;

  border-radius: 18px;

  padding: 20px;

  color: #334155;

  font-size: 16px;

  font-weight: 500;

  transition: 0.35s;

  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.tech-card:hover {
  transform: translateY(-8px);

  border-color: #8b5cf6;

  box-shadow: 0 18px 35px rgba(139, 92, 246, 0.15);
}

/* =====================================================
   CONTACT SECTION
===================================================== */

.developer-contact {
  padding: 50px 8%;

  background:
    radial-gradient(
      circle at top right,
      rgba(139, 92, 246, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(99, 102, 241, 0.05),
      transparent 35%
    ),
    linear-gradient(180deg, #fafcff, #ffffff);
}

.contact-content {
  max-width: 1400px;

  margin: auto;

  text-align: center;
}

.contact-content h2 {
  font-size: 48px;

  font-weight: 800;

  letter-spacing: -1px;

  margin-bottom: 18px;

  background: linear-gradient(90deg, #111827, #374151, #6b7280);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-content > p {
  max-width: 700px;

  margin: 0 auto 60px;

  font-size: 18px;

  color: #64748b;

  line-height: 1.8;
}

/* =====================================================
   CONTACT GRID
===================================================== */

.contact-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  align-items: stretch;
}

/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 20px;

  padding: 38px 30px;
  min-height: 520px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* =====================================================
   ICON
===================================================== */

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;

  font-size: 32px;

  background: #eef4ff;
  color: #2563eb;
}

/* WhatsApp */

.whatsapp-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);

  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.25);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;

  margin-bottom: 10px;
  line-height: 1.3;
}

.contact-desc {
  font-size: 15px;
  color: #6b7280;

  line-height: 1.7;
  margin-bottom: 28px;
}

.person {
  width: 100%;
  text-align: center;
  padding: 6px 0;
}

/* Office */

.contact-card .person p {
  letter-spacing: 0.2px;
}

.person strong {
  display: block;
  font-size: 18px;
  color: #111827;
  margin-bottom: 14px;
}

.person p {
  margin: 8px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.contact-card hr {
  width: 100%;
  margin: 28px 0;
  border: none;
  border-top: 1px solid #edf2f7;
}

/* ==========================================
   SOCIAL CARD
========================================== */

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: 0.35s ease;
}

/* WhatsApp */

.social-links .whatsapp {
  background: #25d366;
}

.social-links .linkedin {
  background: #0a66c2;
}

.social-links .instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-links .facebook {
  background: #1877f2;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.12);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}
.social-links .gmail {
  background: #ea4335; /* Gmail red */
}

.social-links .gmail:hover {
  background: #d93025;
}

/* LinkedIn */

.linkedin-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 12px;

  color: #0a66c2;
  text-decoration: none;
  font-weight: 600;
}

.linkedin-profile:hover {
  color: #004182;
}

/* Floating Animation */

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.social-links a {
  animation: floatIcon 3s ease-in-out infinite;
}

.social-links a:nth-child(2) {
  animation-delay: 0.3s;
}

.social-links a:nth-child(3) {
  animation-delay: 0.6s;
}

.social-links a:nth-child(4) {
  animation-delay: 0.9s;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }

  .stack-header h2 {
    font-size: 40px;
  }

  .contact-content h2 {
    font-size: 40px;
  }

  .pricing-container {
    padding: 50px 40px;
  }

  .technology-stack {
    padding: 70px 40px;
  }

  .developer-contact {
    padding: 70px 40px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
.menu-toggle {
  display: block;
}

   .navbar {
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .logo img {
    width: 55px;
  }

  /* Hide Get Started button */
  .navbar .btn-primary {
    display: none;
  }

  /* Show hamburger icon */
  .menu-toggle {
    display: block;
  }

  /* Navigation Menu */
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;

    max-height: 0;
    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  /* Open menu */
  nav.active {
    max-height: 450px;
    padding: 15px 0;
    background: #ffffff;
    color: #2563eb;
  }

  nav a {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.3s;
  }

  nav a:hover {
    background: #f5f9ff;
    color: #2563eb;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .hero h1 {
    font-size: 38px;

    letter-spacing: -1px;
  }

  .hero p {
    font-size: 17px;
  }

  .pricing-container {
    padding: 40px 20px;
  }

  .technology-stack {
    padding: 60px 20px;
  }

  .developer-contact {
    padding: 60px 20px;
  }

  .stack-header h2 {
    font-size: 34px;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .stack-header p,
  .contact-content > p {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 22px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-desc {
    font-size: 14px;
  }

  .person strong {
    font-size: 16px;
  }

  .person p {
    font-size: 13px;
  }
}
