*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #fff;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 90px;
}

section {
  scroll-margin-top: 90px;
}

/* CONTAINER */
section {
  padding: 80px 40px;
  width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-sizing: border-box;
}

.logo {
  font-weight: 700;
  font-size: 24px;
  color: #3b82f6;
  flex-shrink: 0;
}

.logo-subtitle {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #3b82f6;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(59, 130, 246, 0.22);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.hero-feature-list span {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.16);
  color: #cbd5e1;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.14);
  color: #e2e8f0;
  font-size: 14px;
  box-shadow: 0 18px 45px rgba(7, 22, 52, 0.2);
}

.hero-image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease-out;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(7, 22, 52, 0.35);
  object-fit: cover;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  top: -20px;
  right: 8px;
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.08);
  bottom: -20px;
  left: 10px;
  z-index: -1;
}


.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 120px);
  padding: 80px 0;
  margin-top: 60px;
  background: linear-gradient(180deg, #071020 0%, #0c1731 100%);
}

.hero-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  top: -80px;
  right: -90px;
  filter: blur(28px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  bottom: -40px;
  left: -40px;
  filter: blur(22px);
  z-index: 0;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hero-image {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(7, 22, 52, 0.35);
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
  color: #3b82f6;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 20px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.image-placeholder svg {
  width: 80%;
  height: 80%;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 0;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #0c1731 0%, #0f172a 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.stats > div {
  padding: 20px 30px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  font-weight: 600;
  font-size: 16px;
}

/* PROJECTS */
.projects {
  background: linear-gradient(180deg, #0a111e 0%, #0f172a 100%);
  padding: 80px 40px;
}

.projects h2 {
  margin-bottom: 50px;
  font-size: 36px;
  text-align: center;
}

.project-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.project-card {
  cursor: pointer;
  position: relative;
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.project-card > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card .project-preview {
  height: 140px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.1));
  margin-bottom: 18px;
  overflow: hidden;
}

.project-card .project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card .project-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #cbd5e1;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.project-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #3b82f6;
  color: white;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.modal-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.modal-tech .project-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.project-card:hover .project-action {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.project-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.project-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-card {
  position: relative;
  width: min(960px, calc(100% - 40px));
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  z-index: 1001;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 1002;
}

.modal-image {
  min-height: 320px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image::before {
  content: "Full page screenshot preview";
  color: rgba(203, 213, 225, 0.7);
  font-size: 16px;
  text-align: center;
  max-width: 80%;
}

.modal-image.has-image::before {
  content: "";
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-copy h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.modal-copy p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 30px;
}

.modal-copy .btn {
  width: fit-content;
}

@media (max-width: 920px) {
  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-copy {
    text-align: center;
  }

  .modal-tech {
    justify-content: center;
  }

  .modal-copy .btn {
    margin: 0 auto;
  }
}


.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  transition: all 0.6s ease-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  background: #334155;
}

/* CASE STUDIES */
.case-studies {
  background: linear-gradient(180deg, #0f172a 0%, #1a2942 100%);
  padding: 80px 40px;
}

.case-studies h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-studies > p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.case-study-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.case-study-header {
  margin-bottom: 20px;
}

.case-study-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #3b82f6;
}

.case-study-tech {
  font-size: 14px;
  color: #06b6d4;
  font-weight: 500;
}

.case-study-content h4 {
  font-size: 16px;
  color: #f1f5f9;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.case-study-content p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 15px;
}

.case-study-content ul {
  color: #cbd5e1;
  padding-left: 20px;
  margin-bottom: 20px;
}

.case-study-content li {
  margin-bottom: 5px;
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(30, 41, 59, 0.14) 100%);
  padding: 80px 40px;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 36px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.service {
  background: rgba(15, 23, 42, 0.9);
  padding: 24px;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 18px 45px rgba(7, 22, 52, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 90px;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(7, 22, 52, 0.2);
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #071020 0%, #0c1731 100%);
  padding: 80px 40px;
  text-align: center;
}

.about h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.skill-category h3 {
  color: #3b82f6;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #cbd5e1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

/* CONTACT */
.contact {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, #0f172a 0%, #1a2942 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.contact-item {
  background: rgba(30, 41, 59, 0.5);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  font-size: 16px;
  color: #cbd5e1;
}

.contact-item strong {
  color: #3b82f6;
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.25s ease;
}

.contact-item a:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-1px);
}

.contact-item a[href^="mailto:"]::before {
  content: "✉️";
}

.contact-item a[href*="wa.me"]::before {
  content: "💬";
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid;
  font-size: 16px;
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077b5 0%, #0a66c2 100%);
  border-color: #0077b5;
}

.linkedin-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 119, 181, 0.4);
}

.instagram-btn {
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 100%);
  border-color: #e1306c;
}

.instagram-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
  .case-study-content p {
    text-align: left;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 16px 24px;
    gap: 18px;
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    z-index: 998;
  }

  .nav-links.active li {
    width: 100%;
  }

  .nav-links.active a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    display: block;
  }

  .nav-links.active a:hover {
    color: #7dd3fc;
  }

  section {
    padding: 60px 20px;
  }

  section h2 {
    text-align: center;
  }

  section h1,
  section h3,
  section p {
    text-align: center;
  }

  .case-studies {
    text-align: center;
  }

  .case-studies > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .case-study-grid {
    padding: 0 20px;
  }

  .case-study-card {
    text-align: left;
  }

  .service-grid {
    padding: 0 20px;
  }

  .project-grid {
    padding: 0 20px;
  }

  .contact-info {
    padding: 0 20px;
  }

  .skills-grid {
    padding: 0 20px;
  }

  .hero {
    padding: 40px 0 50px;
    margin-top: 70px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 16px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-tag {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-feature-list {
    justify-content: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-highlights .hero-chip {
    justify-content: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .btn {
    width: min(100%, 320px);
    max-width: 100%;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .hero-image::before,
  .hero-image::after {
    display: none;
  }

  .image-placeholder {
    max-width: 100%;
  }

  .case-study-header h3{
    text-align: left;
  }


  .project-card {
    max-width: 100%;
    min-width: auto;
  }

  .project-preview {
    height: 180px;
  }

  .project-card .project-preview img {
    object-position: center top;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-study-card {
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-tags {
    justify-content: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px;
  }

  .stats > div {
    padding: 15px 20px;
    text-align: center;
  }

  .about,
  .contact {
    padding: 60px 20px;
  }

  .about h2,
  .contact h2 {
    font-size: 28px;
  }

  .social-links {
    gap: 15px;
  }

  .social-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
