@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

::selection {
  background-color: black;
  color: white;
}

html {
  scroll-behavior: smooth;
}

#footer {
  cursor: auto;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);

  width: 92%;
  max-width: 1400px;

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

  padding: 18px 40px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);

  z-index: 1000;

  transition: all 0.35s ease;
}

/* ===========================
   LOGO
=========================== */

.logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.logo a {
  text-decoration: none;
  color: #111;

  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 12px;

  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.7;
}

/* ===========================
   NAV LINKS
=========================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;

  text-decoration: none;
  color: #111;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;

  padding: 10px;

  padding-left: 20px;
  padding-right: 20px;

  border-radius: 999px;

  transition: all 0.3s ease;
}

/* Active Page */

.nav-links a.active {
  background: #111;

  color: white;
}

/* Hover */

.nav-links a:hover {
  background: #111;

  color: white;

  transform: translateY(-2px);
}

/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle {
  display: none;

  background: none;
  border: none;

  font-size: 24px;

  cursor: pointer;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 20px);
    max-width: 85dvw;

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

    padding: 16px 20px;

    border-radius: 18px;
  }

  .logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;

    margin: 0;
  }

  .logo a {
    margin: 0;
    font-size: 22px;
    letter-spacing: 8px;
  }

  .menu-toggle {
    display: block;

    background: none;
    border: none;

    font-size: 22px;

    cursor: pointer;
  }

  .nav-links {
    position: absolute;
    margin-top: -5px;

    top: calc(100% + 12px);
    left: 0;

    width: 100%;

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

    gap: 24px;

    padding: 28px 0;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 13px;
  }
}

/* ===================================
   SECTION HEADINGS
=================================== */

.heading {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}

.heading .small-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3mm;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}

.heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 30px;
  text-transform: capitalize;
  color: #111;
}

.heading .description {
  width: 90%;
  margin: 0 auto;

  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;

  color: #555;
}

/* Mobile */

@media (max-width: 768px) {
  .heading {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .heading .small-title {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    letter-spacing: 2mm;
    margin-bottom: 15px;
  }

  .heading h2 {
    font-size: 26px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px !important;
    text-transform: capitalize;
  }

  .description {
    width: 100% !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
    font-weight: 300;
    line-height: 1.8;
    margin-top: 0;
  }
}

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

.services-hero {
  position: relative;

  width: 100%;
  min-height: 100dvh;

  display: flex;
  align-items: center;

  background: #000;

  overflow: hidden;
}

/* Optional subtle gradient */

.services-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: black;
}

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

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 90%;

  margin: auto;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Small Title */

.hero-content .small-title {
  font-family: "Poppins", sans-serif;

  font-size: 14px;
  font-weight: 500;

  letter-spacing: 4mm;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.65);

  margin-top: 250px !important;
}

/* Main Heading */

.hero-content h1 {
  font-family: "Poppins", sans-serif;

  font-size: 65px;

  font-weight: 400;

  line-height: 1.08;

  letter-spacing: 1mm;

  color: #fff;

  max-width: 1600px;

  margin-bottom: 0px;
}

/* Description */

.hero-description {
  font-family: "Poppins", sans-serif;

  width: 800px;
  max-width: 100%;

  font-size: 18px;
  font-weight: 300;

  line-height: 2;

  color: rgba(255, 255, 255, 0.72);

  margin-bottom: 20px;
}

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

.hero-buttons {
  display: flex;
  gap: 18px;
  padding-bottom: 150px;
}

.primary-btn,
.secondary-btn {
  font-family: "Poppins", sans-serif;

  text-decoration: none;

  padding: 16px 34px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2mm;

  transition: 0.35s ease;
}

/* Primary */

.primary-btn {
  background: #fff;
  color: #000;

  border: 1px solid white;
}

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

  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

/* Secondary */

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);

  color: white;

  background: transparent;
}

.secondary-btn:hover {
  background: white;
  color: black;

  transform: translateY(-4px);
}

/* ==========================
   SCROLL INDICATOR
========================== */

.scroll-indicator {
  position: absolute;

  left: 5%;
  bottom: 45px;

  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-indicator span {
  width: 70px;
  height: 2px;

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

  position: relative;

  overflow: hidden;
}

.scroll-indicator span::before {
  content: "";

  position: absolute;

  width: 22px;
  height: 100%;

  background: white;

  animation: scrollLine 2s linear infinite;
}

.scroll-indicator p {
  font-family: "Poppins", sans-serif;

  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 3px;

  text-transform: uppercase;
}

@keyframes scrollLine {
  from {
    transform: translateX(-22px);
  }

  to {
    transform: translateX(70px);
  }
}

/* The bottom row */
.services-hero .bottom-row {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0px;
  text-align: center;
  margin-top: 25px;
}

.services-hero .bottom-row > .box {
  grid-area: 2 / 1;
  background-color: white;
  width: 30px;
  height: 30px;
  margin-left: 0px;
  transition: all ease-in-out 0.3s;
  border-radius: 100%;
}

.services-hero .bottom-row > .box:hover {
  transform: scale(1.2) !important;
}

.services-hero .bottom-row > .apps {
  grid-area: 2 / 2;
  text-align: center;
}

.services-hero .bottom-row > .apps > p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 1.2mm;
  color: white;
}

.services-hero .bottom-row > .socials {
  grid-area: 2 / 3;
  text-align: end;
  margin-right: 0px;
}

.services-hero .bottom-row > .socials {
  display: flex;
  justify-content: end; /* centers icons horizontally */
  align-items: end;
  gap: 0.5rem; /* space between icons */
  margin-bottom: 15px;
}

.services-hero .bottom-row > .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.services-hero .bottom-row > .socials a:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.services-hero .bottom-row > .socials img {
  width: 30px;
  height: 30px;
}

/* ==========================
   MOBILE
========================== */

/* ===================================
   HERO - MOBILE
=================================== */

@media (max-width: 768px) {
  .services-hero {
    min-height: 100dvh;
    padding-top: 0px;

    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 90%;
    max-width: 100%;
  }

  .hero-content .small-title {
    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 2mm;

    margin-bottom: 20px;

    text-align: center;

    margin: 0 auto;
  }

  .hero-content h1 {
    font-family: "Poppins", sans-serif;

    font-size: 32px;
    font-weight: 400;

    line-height: 1.2;

    letter-spacing: -1px;

    margin-bottom: 25px;

    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }

  .hero-description {
    width: 100%;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 300;

    line-height: 1.9;

    margin-bottom: 35px;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;

    gap: 15px;

    width: 100%;

    padding-bottom: 0px !important;
  }

  .primary-btn,
  .secondary-btn {
    width: 80%;

    text-align: center;

    padding: 15px 20px;

    font-size: 12px;
    margin: 0 auto;
  }

  .scroll-indicator {
    display: none;
  }

  /* The bottom row */
  .services-hero .bottom-row {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .services-hero .bottom-row > .box {
    grid-area: 2 / 1;
    background-color: white;
    width: 10px;
    height: 10px;
    transition: all ease-in-out 0.3s;
    border-radius: 100%;
    margin: auto;
    display: none;
  }

  .services-hero .bottom-row > .box:hover {
    transform: scale(1.2) !important;
  }

  .services-hero .bottom-row > .apps {
    grid-area: 1 / 1;
    text-align: center;
  }

  .services-hero .bottom-row > .apps > p {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    letter-spacing: 1.2mm;
    margin-bottom: 25px !important;
    color: white;
  }

  .services-hero .bottom-row > .socials {
    grid-area: 3 / 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 10px;
  }

  .services-hero .bottom-row > .socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4px;
    height: 4px;
    transition: all 0.3s ease;
  }

  .services-hero .bottom-row > .socials a:hover {
    transform: scale(1.2);
  }

  .services-hero .bottom-row > .socials img {
    width: 25px;
    height: 25px;
  }
}

/* ===================================
   OUR STORY
=================================== */

.story {
  width: 90%;
  max-width: 1300px;

  margin: 140px auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;

  align-items: flex-start;
}

/* Left Side */

.story-left {
  position: sticky;
  top: 140px;
}

.section-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;

  letter-spacing: 3mm;
  text-transform: uppercase;

  margin-bottom: 25px;
}

.story-left h3 {
  font-family: "Poppins", sans-serif;

  font-size: 48px;
  font-weight: 400;

  line-height: 1.2;

  color: #111;
}

/* Right Side */

.story-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-right p {
  font-family: "Poppins", sans-serif;

  font-size: 17px;
  font-weight: 300;

  color: #555;

  line-height: 2;
}

/* Optional first paragraph emphasis */

.story-right p:first-child {
  font-size: 22px;
  font-weight: 400;
  color: #111;
  line-height: 1.7;
}

/* Divider */

.story::after {
  content: "";

  grid-column: 1 / -1;

  width: 100%;
  height: 1px;

  background: #e8e8e8;

  margin-top: 70px;
}

/* ===================================
   OUR STORY - MOBILE
=================================== */

@media (max-width: 768px) {
  .story {
    width: 90%;
    margin: 70px auto 80px;

    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  .story-left {
    position: static;

    text-align: center;
    margin: 0 auto;
  }

  .section-label {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;

    letter-spacing: 2mm;
    text-transform: uppercase;

    text-align: center;

    margin-bottom: 12px;

    margin: 0 auto;
  }

  .story-left h3 {
    font-family: "Poppins", sans-serif;

    font-size: 26px;
    font-weight: 400;

    line-height: 1.3;

    text-align: center;

    margin-bottom: 0;
  }

  .story-right {
    display: flex;
    flex-direction: column;
    gap: 18px;

    text-align: center;

    margin: 0 auto;
  }

  .story-right p {
    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;

    color: #555;

    margin: 0;
  }

  .story-right p:first-child {
    font-size: 17px;
    font-weight: 400;

    line-height: 1.6;

    color: #111;
  }

  .story::after {
    margin-top: 20px;
  }
}

/* ===================================
   OUR serviceS
=================================== */

.services {
  width: 90%;
  max-width: 90%;
  margin: 140px auto;
}

/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 70px;
}

/* Card */

.service-card {
  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 24px;

  padding: 45px;

  transition: all 0.35s ease;

  position: relative;

  overflow: hidden;
}

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

  border-color: #111;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Number */

.service-card span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 200;
  color: #bdbdbd;
  margin-bottom: 10px;
}

/* Heading */

.service-card h3 {
  font-family: "Poppins", sans-serif;

  font-size: 28px;
  font-weight: 400;

  margin-bottom: 18px;

  color: #111;
}

/* Description */

.service-card p {
  font-family: "Poppins", sans-serif;

  font-size: 16px;
  font-weight: 300;

  color: #666;

  line-height: 1.9;
}

/* Decorative Line */

.service-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: #111;

  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

/* ===================================
   OUR SERVICES - MOBILE
=================================== */

@media (max-width: 768px) {
  .services {
    width: 95%;
    max-width: 100%;

    margin: 80px auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;

    margin-top: 50px;
  }

  .service-card {
    padding: 30px 25px;

    border-radius: 18px;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .service-card span {
    font-size: 34px;

    margin-bottom: 12px;

    text-align: center;
  }

  .service-card h3 {
    font-size: 22px;

    margin-bottom: 14px;

    line-height: 1.3;

    text-align: center;
  }

  .service-card p {
    font-size: 15px;

    line-height: 1.8;

    text-align: center;
  }

  .service-card::before {
    height: 3px;
  }
}

/* ===================================
   OUR PROCESS
=================================== */

.process {
  width: 90%;
  max-width: 100%;
  margin: 140px auto;
}

/* Timeline Grid */

.timeline {
  display: grid;

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

  gap: 80px 60px;

  margin-top: 90px;

  align-items: start;
}

/* Shared Step */

.step {
  position: relative;

  width: 90%;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 28px;

  padding: 45px;

  transition: 0.35s ease;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

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

  border-color: #111;
}

/* ===================================
   ZIG-ZAG LAYOUT
=================================== */

/* Second card in every row drops down */

.step:nth-child(2),
.step:nth-child(4),
.step:nth-child(6),
.step:nth-child(8),
.step:nth-child(10) {
  margin-top: 0px;
}

/* ===================================
   NUMBER
=================================== */

.step .number {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: #111;
  color: white;

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

  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;

  margin-bottom: 30px;

  transition: 0.35s;
}

.step:hover .number {
  transform: scale(1.08);
}

/* ===================================
   HEADING
=================================== */

.step h3 {
  font-family: "Poppins", sans-serif;

  font-size: 30px;
  font-weight: 400;

  color: #111;

  margin-bottom: 18px;
}

/* ===================================
   DESCRIPTION
=================================== */

.step p {
  font-family: "Poppins", sans-serif;

  font-size: 17px;
  font-weight: 300;

  color: #666;

  line-height: 1.9;
}

/* Left card → right */

.step:nth-child(odd)::after {
  right: -60px;
}

/* Right card ← left */

.step:nth-child(even)::after {
  left: -60px;
}

/* Remove connector on last card */

.step:last-child::after {
  display: none;
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .process {
    width: 90%;
    margin: 80px auto;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;

    justify-items: center;

    gap: 30px;

    margin-top: 50px;
  }

  .step {
    width: 90%;
    max-width: 90%;

    margin: 0 !important;

    padding: 30px;

    text-align: center;
  }

  .step::after {
    display: none;
  }

  .step .number {
    width: 50px;
    height: 50px;

    font-size: 16px;

    margin-bottom: 20px;

    text-align: center;

    margin: 0 auto;
  }

  .step h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ===================================
   EXPERTISE
=================================== */

.expertise {
  width: 90%;
  max-width: 100%;
  margin: 140px auto;
}

/* Grid */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-top: 70px;
}

/* Cards */

.tech-grid div {
  position: relative;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 24px;

  padding: 40px 30px;

  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;

  color: #111;

  text-align: center;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* Top Accent */

.tech-grid div::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 4px;

  background: #111;

  transition: width 0.35s ease;
}

.tech-grid div:hover::before {
  width: 100%;
}

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

  border-color: #111;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {
  .expertise {
    width: 95%;
    max-width: 100%;
    margin: 40px auto;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 45px;
  }

  .tech-grid div {
    padding: 20px 18px;

    font-size: 12px;

    border-radius: 18px;
  }
}

/* ===================================
   CTA
=================================== */

.cta {
  width: 90%;
  max-width: 90%;

  margin: 20px auto;

  background: black;
  color: #fff;

  border-radius: 36px;

  padding: 110px 80px;

  text-align: center;

  position: relative;
  overflow: hidden;
}

/* Decorative Glow */

.cta::before {
  content: "";

  position: absolute;

  top: -180px;
  right: -180px;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );

  pointer-events: none;
}

.cta .heading {
  margin-bottom: 0;
}

.cta .small-title {
  color: rgba(255, 255, 255, 0.75);
}

.cta .heading h2 {
  color: #fff;
}

.cta .description {
  width: 60%;
  margin: 35px auto 50px;

  color: rgba(255, 255, 255, 0.75);
}

/* Button */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 42px;

  background: #fff;
  color: #111;

  font-family: "Poppins", sans-serif;

  text-decoration: none;

  padding: 16px 34px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.2mm;

  transition: 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

/* ===================================
   CTA - MOBILE
=================================== */

@media (max-width: 768px) {
  .cta {
    width: 85%;

    margin: 20px auto;

    padding: 70px 25px;

    border-radius: 24px;
  }

  .cta .description {
    width: 100%;

    margin: 25px auto 35px;
  }

  .cta-btn {
    width: 80%;

    padding: 16px 25px;

    font-size: 12px !important;
  }

  .cta::before {
    width: 260px;
    height: 260px;

    top: -100px;
    right: -100px;
  }
}

/* ===========================
   FOOTER
=========================== */

#footer {
  width: auto;
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-container {
  width: 90%;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: #d6d6d6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: #d6d6d6;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-bottom {
  margin-top: 30px;

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

.footer-bottom p {
  font-family: "Poppins", sans-serif;
  color: #bdbdbd;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    padding: 60px 0 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px !important;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }
}
