:root {
  /* ----------------------------------- */
  /* ✅ Font Families                    */
  /* ----------------------------------- */
  --font-heading: "Outfit", sans-serif;
  --font-para: "Poppins", sans-serif;
  --font-button: "Poppins", sans-serif;
  --font-link: "Plus Jakarta Sans", sans-serif;
  --font-secondary: "Josefin Sans", sans-serif;

  /* ----------------------------------- */
  /* ✅ Font Sizes                       */
  /* ----------------------------------- */

  --font-size-h1: 3rem; /* Main heading */
  --font-size-h2: 2.5rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  /* ----------------------------------- */
  /* ✅ Color Palette                    */
  /* ----------------------------------- */
  --color-primary-bg: #000000;
  --color-secondary: #f4dfc8;
  --color-tirtary: #f4eae0;
  --color-quaternary: #faf6f0;
  --color-span: #faf6f0;
  --navbar-bg: #f7f7f7;

  /* ----------------------------------- */
  /* ✅ Spacing (Margin + Padding)       */
  /* ----------------------------------- */
  --spacing-xs: 0.5rem; /* 8px */
  --spacing-sm: 1rem; /* 16px */
  --spacing-md: 1.5rem; /* 24px */
  --spacing-lg: 2rem; /* 32px */
  --spacing-xl: 3rem; /* 48px */
  --spacing-xxl: 4rem; /* 64px */

  /* ----------------------------------- */
  /* ✅ Border Radius                    */
  /* ----------------------------------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* ----------------------------------- */
  /* ✅ Transitions                      */
  /* ----------------------------------- */
  --transition-fast: all 0.2s ease-in-out;
  --transition-default: all 0.3s ease-in-out;
  --transition-slow: all 0.5s ease;

  /* ----------------------------------- */
  /* ✅ Shadows                          */
  /* ----------------------------------- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 997px) {
  .footer-section-two {
    display: flex;
    justify-content: start !important;
    align-items: start !important;
    flex-direction: column;
  }
  .credit-section p {
    text-align: center;
  }
}

.footer-section {
  background-color: var(--color-primary-bg);
  padding: 50px 0px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.footer-section-two {
  display: flex;
  justify-content: end;
  align-items: end;
  flex-direction: column;
}
.social-icons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
}
/* Facebook - Blue */
.social-icons:nth-child(1) i {
  color: #3b5998;
}

/* Instagram - Gradient color (fallback to pink) */
.social-icons:nth-child(2) i {
  color: #e4405f;
}

/* LinkedIn - Blue */
.social-icons:nth-child(3) i {
  color: #0077b5;
}

/* YouTube - Red */
.social-icons:nth-child(4) i {
  color: #ff0000;
}

/* Optional Hover Effect */
.social-icons:hover {
  transform: scale(1.1);
  transition: 1s ease-in-out;
  cursor: pointer;
}
.footer-section-one p {
  color: var(--color-quaternary);
  font-family: var(--font-heading);
}
.social-heading {
  font-family: var(--font-button);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.credit-section {
  padding-top: 50px;
}
.credit-section p {
  font-family: var(--font-heading);
  color: white;
}
.footer-links-content {
  padding-bottom: 30px;
}
.footer-links-content h3 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 25px;
}
.footer-links-content ul {
  padding-left: 5px;
  list-style: none;
}
.footer-links-content ul li {
  font-family: var(--font-button);
  color: var(--color-span);
  font-size: 15px;
  margin-bottom: 10px;
   cursor: pointer;
}
.footer-links-content ul li::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--color-secondary);
  margin-top: 5px;

}
.footer-links-content ul li:hover::after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background-color: var(--color-secondary);
  margin-top: 5px;
  transition: width 0.3s ease-in-out;
 
}
.footer-top {
  background-color: #222222;
  padding: 20px 0px;
}
.term-condition a {
  color: var(--color-span);
  margin: 0px 10px;
}
.credit-section-right {
  padding-top: 50px;
  display: flex;
  justify-content: end;
}
