/*
================================================
TABLE OF CONTENTS
================================================
1.  :root Variables and Global Styles
2.  Liquid Background & Cursor
3.  Site Header & Navigation
4.  Footer
5.  Buttons & Forms
6.  Utility & Section Styling
7.  Hero Section
8.  Services Section
9.  Process Section
10. Calculator Section
11. Testimonials Section
12. Industry Section
13. Report Section
14. CTA Section
15. Legal & Content Pages
16. Live Chat Widget
17. Keyframe Animations
18. Responsive Design (Media Queries)
================================================
*/

/* 1. :root Variables and Global Styles */
:root {
  --bg-color: #0c001f;
  --text-color: #e0e0ff;
  --primary-accent: #ff3c78;
  --secondary-accent: #00f2ea;
  --violet-accent: #8e44ad;
  --card-bg: rgba(23, 10, 48, 0.6);
  --border-color: rgba(142, 68, 173, 0.3);
  --font-primary: "Lato", sans-serif;
  --font-display: "Montserrat", sans-serif;
  --transition-speed: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #fff;
}

a {
  color: var(--secondary-accent);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover,
button:hover {
  cursor: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* 2. Liquid Background & Cursor */
.liquid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  filter: blur(100px) saturate(1.2);
  opacity: 0.6;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.blob1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-accent), transparent 70%);
  animation: move-blob1 25s infinite alternate ease-in-out;
}

.blob2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary-accent), transparent 70%);
  animation: move-blob2 30s infinite alternate-reverse ease-in-out;
}

.blob3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--violet-accent), transparent 70%);
  animation: move-blob3 28s infinite alternate ease-in-out;
}

.blob4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff9a00, transparent 70%);
  animation: move-blob4 32s infinite alternate-reverse ease-in-out;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
body:hover .cursor-dot,
body:hover .cursor-outline {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-accent);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-accent);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}

.cursor-interact {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: #fff;
}

/* 3. Site Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(12, 0, 31, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  filter: invert(1);
  transition: transform var(--transition-speed) ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

.main-nav .nav-links {
  display: flex;
  gap: 40px;
}

.main-nav .nav-links li a {
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  font-size: 14px;
}

.main-nav .nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-accent),
    var(--primary-accent)
  );
  transition: width var(--transition-speed) ease;
}

.main-nav .nav-links li a:hover::after,
.main-nav .nav-links li a.active::after {
  width: 100%;
}

.header-cta {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all var(--transition-speed) ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 4. Footer */
.site-footer {
  background-color: rgba(12, 0, 31, 0.7);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-color);
  margin-top: 100px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column .logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-accent),
    var(--primary-accent)
  );
}

.footer-column p {
  color: var(--text-color);
  margin-bottom: 10px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-color);
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 14px;
}

/* 5. Buttons & Forms */
.cta-button {
  font-family: var(--font-display);
  padding: 12px 30px;
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  transition: all var(--transition-speed) ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondary-accent),
    var(--primary-accent)
  );
  z-index: -1;
  transition: transform var(--transition-speed) ease;
  transform: scaleX(0);
  transform-origin: right;
}

.cta-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-cta {
  background: linear-gradient(
    90deg,
    var(--primary-accent),
    var(--violet-accent)
  );
  color: #fff;
}
.primary-cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 60, 120, 0.3);
}

.secondary-cta {
  border-color: var(--secondary-accent);
  color: var(--secondary-accent);
}
.secondary-cta:hover {
  color: var(--bg-color);
}
.secondary-cta::before {
  background: var(--secondary-accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-group {
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--card-bg);
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: 16px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-accent);
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
}
.form-status-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.form-status-message.success {
  background-color: rgba(0, 242, 234, 0.2);
  color: var(--secondary-accent);
}
.form-status-message.error {
  background-color: rgba(255, 60, 120, 0.2);
  color: var(--primary-accent);
}

/* 6. Utility & Section Styling */
.content-section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff;
}
.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--text-color);
}
.highlight {
  color: var(--primary-accent);
}
.page-title {
  font-size: 6rem;
  line-height: 1;
}
.page-subtitle {
  font-size: 20px;
  max-width: 700px;
}
.page-header-section {
  padding: 200px 0 100px;
  text-align: center;
}
.page-header-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 7. Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-content {
  flex: 1;
}
.hero-title {
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-title span {
  display: block;
}
.hero-title .line1 {
  animation: slide-in-left 1s 0.2s both;
}
.hero-title .line2 {
  animation: slide-in-left 1s 0.4s both;
}
.hero-subtitle {
  font-size: 20px;
  max-width: 500px;
  margin-bottom: 40px;
  animation: fade-in 1s 0.6s both;
}
.hero-cta-group {
  display: flex;
  gap: 20px;
  animation: fade-in 1s 0.8s both;
}
.hero-visual {
  flex: 0 0 40%;
  position: relative;
  height: 400px;
  perspective: 1000px;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  animation: float 6s ease-in-out infinite;
}
.orb1 {
  width: 150px;
  height: 150px;
  top: 0;
  left: 20%;
  background-color: var(--primary-accent);
  animation-delay: 0s;
}
.orb2 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 60%;
  background-color: var(--secondary-accent);
  animation-delay: -2s;
}
.orb3 {
  width: 80px;
  height: 80px;
  top: 70%;
  left: 10%;
  background-color: var(--violet-accent);
  animation-delay: -4s;
}

/* 8. Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  backdrop-filter: blur(5px);
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--secondary-accent);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    var(--primary-accent),
    var(--violet-accent)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.service-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

/* 9. Process Section */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--border-color),
    var(--primary-accent)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.process-step {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.process-step:nth-child(odd) {
  left: 0;
  text-align: right;
}
.process-step:nth-child(even) {
  left: 50%;
  text-align: left;
}
.process-number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 2rem;
  font-family: var(--font-display);
  color: #fff;
  background: var(--bg-color);
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.process-step:nth-child(odd) .process-number {
  right: -30px;
}
.process-step:nth-child(even) .process-number {
  left: -30px;
}
.process-content {
  padding: 30px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  position: relative;
}
.process-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* 10. Calculator Section */
.calculator-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.calculator-tool {
  margin-top: 30px;
}
.calculator-tool .form-group {
  margin-bottom: 30px;
}
.calculator-tool label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-primary);
  font-weight: 700;
}
.calculator-tool input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 5px;
  outline: none;
  padding: 0;
}
.calculator-tool input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-accent);
  cursor: pointer;
  border: 3px solid var(--bg-color);
  box-shadow: 0 0 10px var(--secondary-accent);
}
.calculator-results {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}
.calculator-results h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.result-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.result-box:last-child {
  border-bottom: none;
}
.result-label {
  font-weight: 700;
}
.result-value {
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: var(--secondary-accent);
}

/* 11. Testimonials Section */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--card-bg);
  padding: 30px;
  border-left: 5px solid var(--primary-accent);
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}
.testimonial-author {
  text-align: right;
}
.author-name {
  display: block;
  font-weight: 700;
  color: #fff;
}
.author-title {
  font-size: 14px;
  color: var(--text-color);
}

/* 12. Industry Section */
.industry-section {
  text-align: center;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.tag {
  padding: 10px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.tag:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #fff;
  transform: scale(1.05);
}

/* 13. Report Section */
.report-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.report-visual {
  flex: 1;
  perspective: 1500px;
}
.report-visual img {
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s;
}
.report-visual:hover img {
  transform: rotateY(-15deg) rotateX(10deg) scale(1.05);
}
.report-content {
  flex: 1;
}
.report-content .section-title,
.report-content .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* 14. CTA Section */
.cta-section {
  padding: 80px 0;
  margin-top: 100px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://i.imgur.com/gKjW2j0.jpg") no-repeat center center/cover;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 60, 120, 0.3),
    rgba(12, 0, 31, 0.9)
  );
}
.cta-section h2 {
  font-size: 4rem;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* 15. Legal & Content Pages */
.legal-content {
  padding: 0;
}
.legal-content h2 {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-accent);
  padding-left: 15px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.legal-content ul {
  padding-left: 20px;
  list-style: disc;
}
.legal-content ul li {
  margin-bottom: 10px;
}
.contact-container {
  display: flex;
  gap: 50px;
  background: var(--card-bg);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}
.contact-form-wrapper,
.contact-info-wrapper {
  flex: 1;
}
.contact-info-block {
  margin-bottom: 30px;
}
.contact-info-block h3 {
  font-size: 2rem;
  color: var(--secondary-accent);
  margin-bottom: 10px;
}

/* 16. Live Chat Widget */
.live-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--primary-accent),
    var(--violet-accent)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: none;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.live-chat-widget:hover {
  transform: scale(1.1) rotate(15deg);
}
.live-chat-widget svg {
  width: 30px;
  height: 30px;
}

/* 17. Keyframe Animations */
@keyframes move-blob1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30vw, 40vh) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes move-blob2 {
  0% {
    transform: translate(90vw, 80vh) scale(1);
  }
  50% {
    transform: translate(40vw, 20vh) scale(0.8);
  }
  100% {
    transform: translate(90vw, 80vh) scale(1);
  }
}
@keyframes move-blob3 {
  0% {
    transform: translate(80vw, 10vh) scale(1);
  }
  50% {
    transform: translate(20vw, 70vh) scale(1.3);
  }
  100% {
    transform: translate(80vw, 10vh) scale(1);
  }
}
@keyframes move-blob4 {
  0% {
    transform: translate(10vw, 90vh) scale(1);
  }
  50% {
    transform: translate(60vw, 30vh) scale(1.1);
  }
  100% {
    transform: translate(10vw, 90vh) scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 18. Responsive Design (Media Queries) */
@media (max-width: 992px) {
  .section-title,
  .page-title {
    font-size: 4rem;
  }
  .hero-title {
    font-size: 5rem;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .report-container {
    flex-direction: column;
  }
  .report-content .section-title,
  .report-content .section-subtitle {
    text-align: center;
  }
  .calculator-container {
    grid-template-columns: 1fr;
  }
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  .main-nav.active {
    right: 0;
  }
  .main-nav .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .main-nav .nav-links li a {
    font-size: 1.5rem;
  }

  .section-title,
  .page-title {
    font-size: 3rem;
  }
  .hero-title {
    font-size: 3.5rem;
  }

  .process-timeline::after {
    left: 30px;
  }
  .process-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
  }
  .process-step:nth-child(even) {
    left: 0;
  }
  .process-number {
    left: 0;
  }
  .process-step:nth-child(odd) .process-number,
  .process-step:nth-child(even) .process-number {
    left: 0;
  }
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-title,
  .page-title {
    font-size: 2.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .cta-section h2 {
    font-size: 3rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-heading {
    display: block;
  }
  .footer-heading::after {
    margin: 0 auto;
  }
}
