/* =============================================================
   TABLE OF CONTENTS
   (Ordered to match HTML structure top → bottom)

   1.  RESET & BASE
   2.  GLOBAL SECTION TYPOGRAPHY (h2, h3)
   3.  HEADER & NAVBAR
   4.  HERO SECTION (#hero)
   5.  PROBLEMS SECTION (#problems)
   6.  ABOUT US SECTION (#about-us)
   7.  SERVICES SECTION (#blog)
   8.  WORK PROCESS SECTION (#work)
   9.  TESTIMONIALS SECTION (#testimonials)
   10. CONTACT SECTION (#contact) + TRUST SIDEBAR
   11. FOOTER
   12. SCROLL ANIMATIONS
   13. RESPONSIVE — TABLET (769px – 1024px)
   14. RESPONSIVE — MOBILE (≤ 768px)
   15. RESPONSIVE — EXTRA SMALL (≤ 480px)
============================================================= */

/* =============================================================
   1. RESET & BASE
============================================================= */
* {
  font-family: "Hanken Grotesk", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
}

/* =============================================================
   2. GLOBAL SECTION TYPOGRAPHY
============================================================= */
section h2 {
  font-size: 50px;
  font-weight: 700;
  background-image: linear-gradient(to right, rgb(7, 78, 206), rgb(213, 55, 231));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 30px auto;
}

section h3 {
  font-size: 24px;
  margin: 0px auto 50px auto;
  font-weight: 440;
  max-width: 80%;
  text-align: center;
}

#blog,
#about-us,
#problems,
#work,
#contact,
#testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* =============================================================
   3. HEADER & NAVBAR
============================================================= */
header {
  position: fixed;
  top: 0;
  background: transparent;
  z-index: 1000;
  display: flex;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: inline-flex;
  width: fit-content;
  background-color: #1a1a1a66;
  backdrop-filter: blur(10px);
  padding: 5px 24px;
  margin: 12px auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav li {
  line-height: 1;
}

nav a {
  color: white;
  text-decoration: none;
}

.nav-links {
  align-items: center;
  font-size: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 60px;
  width: auto;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;

  background-color: #1a1a1a66;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  list-style: none;
  padding-top: 5px;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li:hover {
  text-decoration: underline white;

}

.dropdown-menu a {
  display: block;
  font-size: 16px;
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown-arrow {
  font-size: 10px;
}

.mobile-brand {
  display: none;
}

.header-contact {
  padding: 8px 14px;
  border-radius: 25px;
  background: linear-gradient(to right, rgb(7, 78, 206), rgb(213, 55, 231)), white;
  background-size: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: left;
  transition: background-size 0.4s ease-out;
}

.header-contact a {
  background-image: linear-gradient(to right, rgb(7, 78, 206), rgb(213, 55, 231));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 550;
  transition: all 0.4s ease;
}

.header-contact:hover {
  background-size: 100% 100%, 100% 100%;
}

.header-contact:hover a {
  background-image: none;
  -webkit-text-fill-color: white;
  color: white;
}

/* =============================================================
   4. HERO SECTION (#hero)
============================================================= */
#hero {
  padding-top: 80px;
  background: linear-gradient(-45deg, #072356, #d537e7, #072356);
  background-size: 400% 400%;
  animation: gradient-animation 10s ease infinite;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
}

.hero-badge {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 48px;
  padding: 4px 24px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, rgba(220, 103, 234, 0.1) 10.89%, rgba(39, 100, 210, 0.1) 82.5%), #fff;
  box-shadow: 0 2px 8px 0 rgba(123, 47, 242, 0.08);
}

.hero-badge span {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  max-width: 750px;
  line-height: 62px;
  color: #ffffff;
  text-align: center;
  margin: 24px 0px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  width: 100%;
  max-width: 580px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin: 0px auto 35px auto;
  color: #ffffffb3;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  background: linear-gradient(-90deg, #074ece, #d537e7);
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  max-width: fit-content;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              color 0.3s ease;
}

.cta-button a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  transform: scale(1.06);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover a {
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-button {
  background: linear-gradient(-90deg, #074ece, #d537e7);
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0 auto 30px auto;
  cursor: pointer;
  color: white; /* Added: Text color */
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              color 0.3s ease; /* Added color transition */
}

.form-button:hover {
  display: inline-block;
    color: #fff;
    transform: scale(1.06);
    position: relative;
    z-index: 1;
    background: linear-gradient(270deg, rgba(220, 103, 234, 0.1) 10.89%, rgba(39, 100, 210, 0.1) 82.5%), #fff;
}

.form-button span:hover{
  text-align: center;
    font-size: 18px;
    line-height: 24px;
    background-image: linear-gradient(to right, #074ece, #d537e7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-image {
  width: 400px;
  border-radius: 12px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 99%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin: 0px auto 35px auto;
}

.clients-badge {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  margin: 0px auto 24px auto;
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
  width: 90%;
  position: relative;
  padding-bottom: 10px;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  flex-shrink: 0;
  font-weight: 600;
  color: #fff;
}

/* =============================================================
   5. PROBLEMS SECTION (#problems)
============================================================= */
.scroll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.scroll-card {
  text-align: left;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 2px rgba(0, 0, 5, 0.5);
}

.scroll-card:hover {
  box-shadow: 0 8px 24px rgba(213, 55, 231, 0.15);
  transform: translateY(-5px);
}

.scroll-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: black;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: black;
}

.scroll-card a {
  font-weight: 550;
  color: black;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
}

.scroll-card a:hover {
  background-image: linear-gradient(to right, #d537e7, #074ece);
}

/* =============================================================
   6. ABOUT US SECTION (#about-us)
============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
}

.about-text {
  max-width: 90%;
}

.about-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0px auto 30px auto;
  color: black;
}

.images {
  max-width: 300px;
  border-radius: 12px;
}

/* =============================================================
   7. SERVICES SECTION (#blog)
============================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.service-card {
  text-align: center;
  color: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 2px rgba(0, 0, 5, 0.5);
  background: linear-gradient(-65deg, #074ece, #d537e7);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(213, 55, 231, 0.15);
  transform: translateY(-5px);
}

.service-card h4 {
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.service-card hr {
  height: 1px;
  background-color: white;
}

.service-card p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
}

.service-card a {
  text-decoration: none;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: left;
}

.service-content li {
  font-size: 15px;
  list-style: none;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
  transform: translateX(10px);
}

.check-icon {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  transform: translateY(4px);
}

.service-cta {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 14px;
  position: relative;
  z-index: 1;
  background: linear-gradient(270deg, rgba(220, 103, 234, 0.1) 10.89%, rgba(39, 100, 210, 0.1) 82.5%), #fff;
}

.service-cta span {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* =============================================================
   8. WORK PROCESS SECTION (#work)
============================================================= */
.work-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
}

.work-image {
  transform: translateY(-50px);
}

.work-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 1000px;
}

.work-card {
  text-align: left;
  background: white;
  border: 1px solid transparent;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.work-card h4 {
  font-size: 17px;
  font-weight: bolder;
  line-height: 30px;
  color: black;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.work-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: black;
}

/* =============================================================
   9. TESTIMONIALS SECTION (#testimonials)
============================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.testimonial-card {
  text-align: left;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 2px rgba(0, 0, 5, 0.5);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(213, 55, 231, 0.15);
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: black;
}

.rating-img {
  max-width: 100px;
  align-self: center;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-img {
  max-width: 35px;
  max-height: 35px;
  border-radius: 50%;
  transform: translateY(-4px);
}

/* =============================================================
   10. CONTACT SECTION (#contact) + TRUST SIDEBAR
============================================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  align-items: start;
}

/* Trust Sidebar */
.trust-sidebar {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #074ece, #d537e7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.trust-content p {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.stat-box {
  background: white;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  background-image: linear-gradient(to right, #074ece, #d537e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  line-height: 1.3;
}

.recent-activity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 78, 206, 0.08);
  border-left: 3px solid #074ece;
  padding: 14px 16px;
  border-radius: 8px;
}

.activity-pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.activity-pulse::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: #22c55e;
  border-radius: 50%;
  opacity: 0.3;
  animation: ping-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-ring {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.recent-activity p {
  font-size: 14px;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.4;
}

.recent-activity strong {
  color: #074ece;
  font-weight: 600;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

.security-note svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* Form Panel */
.form-panel {
  width: 100%;
}

form {
  display: flex;
  background-color: #9ca3af;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 20px;
  gap: 16px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

form .cta-button {
  margin: 10px auto 0 auto;
  width: 100%;
}

.disabled-link {
  pointer-events: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

form label {
  color: white;
  font-size: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  background: white;
  color: #1a1a1a;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239ca3af' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #074ece;
  outline-offset: 2px;
}

/* =============================================================
   11. FOOTER
============================================================= */
footer {
  display: grid;
  grid-template-columns: 75% 25%;
  color: white;
  padding: 50px;
  text-align: left;
  background: linear-gradient(-45deg, #072356, #d537e7, #072356);
}

footer h2 {
  color: white;
  text-align: left;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

footer p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0px auto 30px auto;
}

.f-links {
  display: column;
  text-align: center;
}

footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
}

footer a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

/* =============================================================
   12. SCROLL ANIMATIONS
============================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-fade-in { opacity: 0; }
.anim-fade-left { opacity: 0; transform: translateX(-50px); }
.anim-fade-right { opacity: 0; transform: translateX(50px); }
.anim-scale-in { opacity: 0; transform: scale(0.88) translateY(24px); }

.anim-fade-up.is-visible { animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-fade-in.is-visible { animation: fadeIn 1.3s ease forwards; }
.anim-fade-left.is-visible { animation: fadeLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-fade-right.is-visible { animation: fadeRight 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-scale-in.is-visible { animation: scaleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

[data-delay="1"] { animation-delay: 0.05s; }
[data-delay="2"] { animation-delay: 0.15s; }
[data-delay="3"] { animation-delay: 0.25s; }
[data-delay="4"] { animation-delay: 0.35s; }
[data-delay="5"] { animation-delay: 0.45s; }
[data-delay="6"] { animation-delay: 0.55s; }
[data-delay="7"] { animation-delay: 0.65s; }
[data-delay="8"] { animation-delay: 0.75s; }
[data-delay="9"] { animation-delay: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-fade-in, .anim-fade-left, .anim-fade-right, .anim-scale-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =============================================================
   13. RESPONSIVE — TABLET (769px – 1024px)
============================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 40px !important;
    line-height: 50px !important;
    max-width: 90%;
  }

  #problems {
    padding: 10px 0;
    overflow: hidden;
  }

  .scroll-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 10px;
    scrollbar-width: none;
  }

  .scroll-grid::-webkit-scrollbar { display: none; }

  .scroll-card {
    flex: 0 0 45%;
    scroll-snap-align: start;
    min-height: 300px;
  }

  .services,
  .work-content,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
    padding: 0 40px;
  }

  .about-grid,
  .work-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .about-text {
    text-align: left;
    max-width: 100%;
  }

  .work-card { max-width: 100%; }

  .work-content {
    justify-content: space-between;
    align-items: left;
  }

  .work-image {
    transform: translateY(0);
    width: 60%;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  footer {
    grid-template-columns: 1fr 1fr !important;
    padding: 40px;
  }
}

/* =============================================================
   14. RESPONSIVE — MOBILE (≤ 768px)
============================================================= */
@media (max-width: 768px) {
  section h2,
  .hero-title,
  footer h2 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  section h3 {
    font-size: 18px;
    max-width: 95%;
    margin: 0px auto 30px auto;
  }

  header { padding: 10px 0; }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    position: relative;
    padding: 5px 15px;
  }

  .mobile-brand { display: block; }
  .desktop-logo { display: none; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }

  .bar {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  }

  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 30px;
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 30px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(-65deg, #074ece, #d537e7);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    list-style: none;
    border-radius: 0 0 25px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(10px) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 700;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin: 15px 0;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--i));
  }

  #hero { padding-top: 50px; }
  .hero-content { padding: 0 10px; }
  .hero-image { width: 90%; height: auto; }
  .hero-desc { font-size: 16px; padding: 0 15px; }
  .clients-badge { margin: 25px 0; line-height: 24px; }

  #problems { padding: 20px 0; overflow: hidden; }
  #problems h2, #problems h3 { padding: 0 20px; }

  .scroll-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .scroll-grid::-webkit-scrollbar { display: none; }

  .scroll-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-height: 175px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #about-us { padding: 20px 20px 0px 20px; }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 0px;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    text-align: left;
  }

  .about-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .hide { display: none; }

  .services {
    grid-template-columns: 1fr !important;
    gap: 15px;
    text-align: center;
  }

  .service-card {
    min-height: 230px;
    padding: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    text-align: center;
  }

  .work-content {
    grid-template-columns: 1fr !important;
    gap: 10px;
    text-align: center;
  }

  .work-image {
    transform: translateY(0);
    order: -1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 32px;
    max-width: 600px;
  }

  .trust-sidebar {
    padding: 24px 20px;
    gap: 20px;
  }

  .trust-item { gap: 12px; }
  .trust-icon { width: 40px; height: 40px; }
  .trust-content h4 { font-size: 15px; }
  .trust-content p { font-size: 13px; }
  .stats-grid { gap: 8px; }
  .stat-number { font-size: 20px; }
  .stat-label { font-size: 11px; }
  .recent-activity { padding: 12px; }
  .recent-activity p { font-size: 13px; }

  form {
    width: 100%;
  }

  form .cta-button {
    margin: 0 auto 10px auto;
  }

  footer {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 40px 20px 0px 20px;
    text-align: left;
  }

  .f-links { text-align: left; }
}

/* =============================================================
   15. RESPONSIVE — EXTRA SMALL (≤ 480px)
============================================================= */
@media (max-width: 480px) {
  .hero-title { font-size: 28px !important; }
  .nav-logo { height: 50px; }
}