:root {
  /* Color Palette - Premium Corporate */
  --primary: #0A2540; /* Ultra Deep Blue (Stripe style) */
  --secondary: #635BFF; /* Royal Purple-Blue */
  --accent: #00D4FF; /* Cyan Glow */
  --gold: #AD8C3E; /* Sophisticated Gold */
  
  --bg: #FFFFFF;
  --bg-alt: #F6F9FC;
  --hero-grad: radial-gradient(circle at 80% 20%, #F0F7FF 0%, #FFFFFF 100%);
  
  --card: #FFFFFF;
  --border: #E6EBF1;
  --glass: rgba(255, 255, 255, 0.7);

  --t1: #1A1F36; /* Dark slate heading */
  --t2: #3C4257; /* Muted slate body */
  --t3: #697386; /* Lighter body */
  --t4: #8792A2;

  /* Shadows - Premium Elevation */
  --sh-sm: 0 2px 5px rgba(0,0,0,0.03);
  --sh-md: 0 7px 14px rgba(50,50,93,0.1), 0 3px 6px rgba(0,0,0,0.08);
  --sh-lg: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
  --sh-xl: 0 50px 100px -20px rgba(50,50,93,0.25), 0 30px 60px -30px rgba(0,0,0,0.3);

  /* Typography */
  --font-h1: 3.5rem;
  --font-h2: 2.5rem;
  --font-h3: 1.5rem;
  --font-h4: 1.1rem;
  --font-body: 1.05rem;
  --line-height: 1.65;
  --font-family: 'Inter', -apple-system, system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --transition: all 0.6s var(--ease);
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 91, 255, 0.03) 0, transparent 50%), 
    radial-gradient(at 50% 0%, rgba(0, 212, 255, 0.03) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(173, 140, 62, 0.03) 0, transparent 50%);
  color: var(--t2);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section {
  position: relative;
  padding: 140px 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-family);
  color: var(--t1);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--font-h1);
  font-weight: 800;
  margin-bottom: 32px;
}

h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: var(--font-h3);
  font-weight: 600;
  margin-bottom: 16px;
}

h4 {
  font-size: var(--font-h4);
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: var(--font-body);
  color: var(--t3);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: var(--transition);
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-alt {
  background: var(--bg-alt);
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  height: 75px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px; 
}

.nav-logo {
  margin-left: -60px; /* Move logo further to the left */
  margin-right: 40px; /* Push links to the right */
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: auto;
  max-height: 75px; /* Professional size for desktop */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
  display: block;
  image-rendering: -webkit-optimize-contrast; /* Sharpness */
}

.nav.scrolled .logo-img {
  max-height: 60px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-cta {
  margin-left: 60px; /* Push the button away from the links */
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--t2);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--r-md);
  font-size: var(--font-small);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(11, 60, 93, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 60, 93, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(11, 60, 93, 0.05);
  transform: translateY(-3px);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-grad);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 24px;
  animation: slideUp 0.8s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: slideUp 0.8s ease-out 0.4s both;
  margin-bottom: 40px;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--t4);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 20px;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--t4);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

.hero-visual {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

/* Hero Visual & Floating Cards */
.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.hero-main-img {
  max-width: 100%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  transition: all 0.4s var(--ease);
  cursor: default;
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.05) !important;
  background: #fff;
  box-shadow: var(--sh-xl);
  border-color: var(--accent);
}

.stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

/* Stat Icon Variations */
.stat-icon.uptime { background: rgba(0, 212, 255, 0.1); color: var(--accent); }
.stat-icon.trust { background: rgba(173, 140, 62, 0.1); color: var(--gold); }
.stat-icon.clients { background: rgba(99, 91, 255, 0.1); color: var(--secondary); }

.floating-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-num {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
  line-height: 1.2;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.stat-card-1 { top: 12%; right: -5%; animation: float1 6s ease-in-out infinite; }
.stat-card-2 { bottom: 25%; left: -8%; animation: float2 7s ease-in-out infinite; }
.stat-card-3 { bottom: 5%; right: 5%; animation: float3 8s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -15px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -10px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5px, -20px); }
}

/* Animation for initial reveal */
.reveal-delayed {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpReveal 1s var(--ease) forwards;
}

.stat-card-1.reveal-delayed { animation-delay: 0.8s; }
.stat-card-2.reveal-delayed { animation-delay: 1s; }
.stat-card-3.reveal-delayed { animation-delay: 1.2s; }

@keyframes fadeUpReveal {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .hero-img-wrapper {
    padding: 20px;
    margin-top: 40px;
  }
  .floating-card {
    padding: 10px 14px;
    border-radius: 12px;
    gap: 10px;
  }
  .stat-icon { width: 34px; height: 34px; }
  .stat-icon svg { width: 18px; height: 18px; }
  .stat-num { font-size: 0.95rem; }
  .stat-label { font-size: 0.6rem; }
  
  .stat-card-1 { right: 0; top: 5%; }
  .stat-card-2 { left: -5%; bottom: 20%; }
  .stat-card-3 { right: -5%; bottom: 0%; }
}

@media (max-width: 576px) {
  .floating-card {
    transform: scale(0.85) !important;
  }
  .stat-card-1 { right: -10px; }
  .stat-card-2 { left: -20px; }
  .stat-card-3 { right: -10px; }
}

.hero-shape {
  position: absolute;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.hero-shape-1 {
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.hero-shape-2 {
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

/* Section Layouts */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.section-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-head {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 992px) {
  .section-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .section-head {
    text-align: center;
  }
  
  .section-visual img {
    max-width: 250px;
  }
}

.section-head h2 {
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--r-full);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: var(--font-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  box-shadow: var(--sh-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--card);
  padding: 48px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 45, 114, 0.08);
  border-color: var(--accent-gold);
}

.service-card h3 {
  color: var(--t1);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.5);
  animation: iconFloat 4s ease-in-out infinite;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--secondary);
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-5px) rotate(8deg);
  background: var(--secondary);
  box-shadow: 0 15px 30px rgba(99, 91, 255, 0.3);
}

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg polyline,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle {
  stroke-dasharray: 100;
  animation: dash 1.5s linear forwards;
}

@keyframes dash {
  from { stroke-dashoffset: 100; }
  to { stroke-dashoffset: 0; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.service-card:nth-child(2n) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3n) .service-icon { animation-delay: 1s; }

.service-card:hover .service-icon svg {
  color: var(--accent);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
}

/* ── About & Why Us ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
}

.contact-form {
  background: #fff;
  padding: 56px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--t1);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* ── Footer ── */
.footer {
  background: var(--bg-alt);
  padding: 40px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo-img {
  height: auto;
  max-height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.footer-about p {
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-heading {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--t1);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(99, 91, 255, 0.35);
}

/* ── Standalone Social Section ── */
.social-banner {
  padding: 40px 0 !important;
  text-align: center !important;
}

.social-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-banner h2 {
  font-size: 1.25rem !important;
  margin-bottom: 12px !important;
  font-weight: 700;
  color: #1A1F36;
}

.social-banner p {
  display: none !important;
}

.standalone-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.standalone-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
}

.standalone-social-link svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.standalone-social-link:hover {
  transform: translateY(-2px);
}

.standalone-social-link:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--t4);
}

/* ── Animations ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Floating Animation for Images */
.float-anim {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Image Pulse */
.pulse-anim {
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.02); filter: brightness(1.1); }
  100% { transform: scale(1); filter: brightness(1); }
}

/* ── Section Specific Enhancements ── */
.hero-visual img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,0.2);
}

.about-image img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

.service-card {
  overflow: hidden;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, transparent 70%, rgba(20, 184, 166, 0.05));
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

/* Responsive */
@media (max-width: 1024px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .logo-img {
    max-height: 55px; /* Tablet size */
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-wrap {
    padding: 0 20px;
  }

  .nav-logo {
    margin-left: 0;
    margin-right: 0;
  }

  .logo-img {
    max-height: 45px; /* Mobile size */
  }

  .nav-cta {
    margin-left: 0;
  }

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

  .section {
    padding: 80px 0;
  }
}