:root {
  --primary: #0077eb;
  --dark-blue: #000b8c;
}

@font-face {
    font-family: 'BYekanPlus';
    src: url('public/fonts/BYekanPlus-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BYekanPlus';
    src: url('public/fonts/BYekanPlus-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f9f9f9;
  font-family: "BYekanPlus", Arial, sans-serif;
  font-weight: normal;
}

button {
    font-family: "BYekanPlus", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'BYekanPlus', Arial, sans-serif;
    font-weight: bold;
}

nav {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  position: relative;
  z-index: 50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo img {
  height: 40px;
  transition: all 0.3s;
}

.logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 1rem;
  text-decoration: none;
  position: relative;
  color: var(--dark-blue);
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to left, var(--primary), var(--dark-blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: block;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid #eee;
  z-index: 40;
}

.mobile-menu.active {
  display: block;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: bold;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: linear-gradient(
    to left,
    var(--primary) / 5,
    var(--dark-blue) / 5
  );
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* hero */
.hero {
  position: relative;
  padding: 4rem 1rem 2.5rem;
  text-align: center;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.5);
  transition: all 0.5s ease-out;
  transition-delay: var(--delay);
  cursor: pointer;
}

.hero-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 10;
}

.hero-icon {
  width: 96px;
  height: 96px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.hero-icon:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000b8c;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 600ms;
}

.hero-subtitle span {
  background: linear-gradient(to right, #000b8c, #379eff);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.5s ease;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 700ms;
}

.hero-title span:hover {
  background: linear-gradient(to right, #000b8c, #379eff);
  -webkit-background-clip: text;
  color: transparent;
  cursor: default;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out 800ms;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-btn {
  background-color: #379eff;
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.hero-btn:hover {
  transform: translateY(-4px);
}

.hero-btn-secondary {
  background-color: transparent;       /* Transparent background for outline style */
  color: #379eff;                      /* Bluish text color matching primary */
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #a8cfff;           /* Light bluish/whitish border for subtle outline */
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-btn-secondary:hover {
  background-color: #379eff;            /* Fill with primary blue on hover */
  color: white;                        /* White text on hover */
  transform: translateY(-4px);         /* Same hover lift effect */
}


.hero-blur-bg,
.hero-blur-bg2 {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s ease-out;
}

.hero-blur-bg {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(55, 158, 255, 0.4),
    rgba(0, 11, 140, 0.3)
  );
  filter: blur(80px);
  transition-delay: 400ms;
}

.hero-blur-bg2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(55, 158, 255, 0.5),
    rgba(0, 11, 140, 0.4)
  );
  filter: blur(50px);
  transition-delay: 500ms;
}

/* services */
.services {
  background-color: white;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 100vw;
  overflow-x: hidden;
}

.services-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: inherit;
  cursor: pointer;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}

.service-img {
  width: 6rem;
  height: 6rem;
  background: #f8f9fc;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
  object-fit: contain;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  user-select: none;
}

/* about */
.about-section {
  margin-top: 9rem; /* ~ mt-36 */
  color: #484856;
  direction: rtl;
  max-width: 80rem; /* ~ max-w-5xl = 80rem */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* ~ px-4 */
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .about-section {
    padding-left: 1.5rem; /* ~ md:px-6 */
    padding-right: 1.5rem;
  }
}

.about-title {
  font-weight: 700;
  font-size: 1.875rem; /* ~ text-3xl */
  text-align: center;
  margin-bottom: 3rem;
  color: #484856;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem; /* ~ text-4xl */
    margin-bottom: 5rem;
  }
}

.about-text p {
  margin-bottom: 1.25rem; /* ~ space-y-5 between paragraphs */
  line-height: 1.7;
  font-size: 1rem;
}

/* download section */
.download-section {
  position: relative;
  background: linear-gradient(
    90deg,
    #60a5fa,
    #3b82f6
  ); /* from-blue-400 to-blue-500 */
  border-radius: 1.5rem; /* md:rounded-3xl */
  padding: 2rem;
  max-width: 72rem; /* max-w-6xl */
  margin: 8rem auto 0; /* mt-32 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow-y: hidden;
  color: white;
  text-align: right;
  direction: rtl;
}

@media (min-width: 1024px) {
  .download-section {
    flex-direction: row;
  }
}

.download-phone {
  position: absolute;
  left: 2.5rem;
  bottom: -2.5rem;
  width: 300px;
  height: 500px;
  object-fit: contain;
  max-width: 90vw;
  max-height: 90vh;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .download-phone {
    left: -7rem;
  }
}

@media (max-width: 640px) {
  .download-phone {
    bottom: -20rem;
    left: 5rem;
    width: 200px;
    height: auto;
  }
}

/* Services Section Styles */
.services-section {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 1.5rem 0.75rem;
    background-color: white;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-reversed {
    flex-direction: row-reverse;
}

.feature-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 75%;
    height: auto;
    max-width: 120px;
}

.feature-text {
    width: 50%;
    text-align: right;
    padding: 0 0.25rem;
}

.feature-reversed .feature-text {
    padding-right: 0.25rem;
}

.feature-text h2 {
    font-size: 0.75rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.25;
}

.feature-text p {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Responsive Design */
@media (min-width: 640px) {
    .services-section {
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-image img {
        width: 66.67%;
        max-width: 150px;
    }
    
    .feature-text {
        padding: 0 0.5rem;
    }
    
    .feature-reversed .feature-text {
        padding-right: 0.5rem;
    }
    
    .feature-text h2 {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {
    .services-section {
        padding: 2.5rem 2.5rem;
    }
    
    .feature-item {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-image img {
        width: 50%;
        max-width: none;
    }
    
    .feature-text {
        padding: 0 1rem;
    }
    
    .feature-reversed .feature-text {
        padding-right: 1rem;
    }
    
    .feature-text h2 {
        font-size: 1.125rem;
    }
    
    .feature-text p {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 2.5rem 3.5rem;
    }
    
    .feature-item {
        gap: 2.5rem;
    }
    
    .feature-text {
        padding: 0 2rem;
    }
    
    .feature-reversed .feature-text {
        padding-right: 2rem;
    }
    
    .feature-text h2 {
        font-size: 1.5rem;
    }
    
    .feature-text p {
        font-size: 1rem;
    }
}

.download-content {
  flex: 1 1 60%;
  max-width: 40rem;
  padding-bottom: 6.25rem; /* ~ max-sm:pb-[25rem] loosely */
  z-index: 1;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.feature p {
  color: rgba(255 255 255 / 0.9);
  line-height: 1.6;
  margin: 0;
}

.button-wrapper {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .button-wrapper {
    justify-content: center;
  }
}

.btn-login {
  background-color: white;
  color: #3b82f6; /* blue-500 */
  padding: 1rem 2rem;
  border-radius: 9999px; /* full rounded */
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4),
    0 4px 6px -2px rgba(59, 130, 246, 0.2);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  text-align: center;
}

.btn-login:hover {
  background-color: #eff6ff; /* blue-50 */
  color: #2563eb; /* blue-600 */
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4),
    0 10px 10px -5px rgba(37, 99, 235, 0.2);
  transform: translateY(-0.25rem);
}

.btn-login:active {
  background-color: #bfdbfe; /* blue-100 */
  transform: scale(0.95);
}

.btn-login:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* faq */
/* FAQ Section Styles */
.faq-section {
  background-color: #f9fafb;
  padding: 1rem;
  margin-top: 9rem;
  direction: rtl;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 2rem;
  }
}

.faq-container {
  max-width: 72rem;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
  }
}

.tabs-container {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .tabs-container {
    margin-bottom: 2rem;
  }
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  min-width: max-content;
  padding: 0 1rem;
}

.tab-button {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  font-size: 0.875rem;
  background-color: white;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.tab-button:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
  background-color: #3b82f6;
  color: white;
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .faq-items {
    gap: 1rem;
  }
}

.faq-item {
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
}

.faq-item.expanded {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 1.5rem;
  }
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-item.expanded .faq-question {
  background-color: #3b82f6;
}

.faq-item.expanded .faq-question:hover {
  background-color: #3b82f6;
}

.faq-question-text {
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
}

@media (min-width: 768px) {
  .faq-question-text {
    font-size: 1.125rem;
  }
}

.faq-item.expanded .faq-question-text {
  color: white;
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .faq-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.faq-item.expanded .faq-icon {
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: white;
  color: #4b5563;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

.faq-item.expanded .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* footer */
/* Main Footer Styles */
.footer-main {
    background-color: #d4dee8;
    text-align: right;
    padding: 2.5rem 1.5rem;
    direction: rtl;
}

@media (min-width: 768px) {
    .footer-main {
        padding: 2.5rem 5rem;
    }
}

/* Mobile Layout */
.footer-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-mobile {
        display: none;
    }
}

.footer-logo {
    width: 60px;
    height: 60px;
}

.footer-title-section {
    text-align: center;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-app-button {
    padding: 0.5rem 1.5rem;
    border: 2px solid #60a5fa;
    border-radius: 0.75rem;
    color: #3b82f6;
    background-color: transparent;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-app-button:hover {
    background-color: #dbeafe;
}

.footer-services-contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 24rem;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.footer-services,
.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-services h3,
.footer-contact h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-services a {
    color: #374151;
    text-decoration: none;
}

.footer-services a:hover {
    text-decoration: underline;
}

.footer-contact-info {
    line-height: 1.625;
}

/* Desktop Layout */
.footer-desktop {
    display: none;
}

@media (min-width: 768px) {
    .footer-desktop {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2.5rem;
    }
}

.footer-logo-desktop {
    width: 60px;
    height: 45px;
}

.footer-services-desktop,
.footer-contact-desktop {
    font-size: 0.875rem;
    color: #374151;
    text-align: right;
}

.footer-services-desktop {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-services-desktop h3,
.footer-contact-desktop h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-services-desktop div {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-services-desktop a {
    color: #374151;
    text-decoration: none;
}

.footer-services-desktop a:hover {
    text-decoration: underline;
}

.footer-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-download-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-app-button-desktop {
    padding: 0.5rem 1.5rem;
    border: 2px solid #60a5fa;
    border-radius: 0.75rem;
    color: #3b82f6;
    background-color: white;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-app-button-desktop:hover {
    background-color: #dbeafe;
}

/* Footer Services Section */
.footer-services-section {
    background-color: #AEB6C1;
    padding: 1.5rem 1rem;
}

.footer-services-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-verifications {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .footer-verifications {
        display: flex;
    }
}

.footer-verification-badge {
    width: 60px;
    height: 45px;
    object-fit: contain;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-text {
    font-size: 0.875rem;
    color: #374151;
    text-align: right;
}

.footer-social-icons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 640px) {
    .footer-social-icons {
        text-align: center;
    }
}

.footer-social-icon {
    color: #4b5563;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    color: #1f2937;
}

.footer-social-icon:nth-child(1):hover {
    color: #dc2626;
}

.footer-social-icon:nth-child(2):hover {
    color: #16a34a;
}

.footer-social-icon:nth-child(3):hover {
    color: #3b82f6;
}

.footer-social-icon:nth-child(4):hover {
    color: #ec4899;
}

.footer-social-icon:nth-child(5):hover {
    color: #1e40af;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    padding-top: 2.5rem;
    color: #374151;
}

.footer-social-icons {
  display: flex;
  gap: 16px; /* Adjust spacing between icons */
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.footer-social-icon img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}

.footer-social-icon img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
