:root {
  --bg-sec-button: #ffb046;
  --bg-primary-btn: #04a3da;
  --subtext:#04a3da;
  --bg-left: #f4f7ff;
  --bg-right: #fdeeee;
  --card: #ffffff;
  --muted: #6b7280;
  --text: #0f172a;
  --dot: #c8d0de;
  --dot-active: #4ade80;
  --ring: #eef1f7;
  --shadow: 0 10px 30px rgba(20, 24, 66, 0.1);
  --radius: 18px;
}

.footer {
  font-family: "Gilroy-Light", sans-serif;
  background: linear-gradient(
    135deg,
    #f8f9ff 0%,
    #fff0f5 35%,
    #f0fff8 65%,
    #fff8f0 85%,
    #f5f0ff 100%
  );
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  color: #222;
}

/* Top Section */
.footer-top {
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Brand Section */
.footer-brand {
  flex: 1;
  min-width: 250px;
  text-align: center; /* centers the logo and text */
}

.footer-logo-img {
  max-height: 180px; /* adjust as needed */
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo h2 {
  margin: 0;
  color: #003d2d;
  font-weight: 700;
}

.brand-tagline {
  color: var(--bg-primary-btn);
  font-size: 15px;
  margin-top: -4px;
}

.footer-desc {
  font-size: 14px;
  margin-top: 12px;
  max-width: 250px;
  line-height: 1.6;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 50px;
  flex: 2;
  justify-content: center;
}

.links-column {
  flex: 1;
  min-width: 150px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  transition: color 0.3s;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--bg-primary-btn);
}

/* Contact Section */
.footer-contact {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.footer-contact hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

.social-icons {
  display: flex;
  gap:30px;
}

.social-icons a {
  color: #222;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--bg-primary-btn);
}
/* Show sticky header only on desktop */
@media (max-width: 1024px) {
  .sticky-header {
    display: none !important;
  }
}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 16px 20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policy a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.footer-policy a:hover {
  color: var(--bg-primary-btn);
}

.footer-policy span {
  color: #666;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  .footer-top {
    padding: 30px 40px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }
}

/* Small Tablet Styles (600px - 768px) */
@media (max-width: 768px) {
  .footer-top {
    padding: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
    min-width: 100%;
  }

  .footer-desc {
    max-width: 100%;
    margin: 12px auto 0;
  }

  .footer-links {
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }

  .links-column {
    flex: 1;
  }

  .footer-contact {
    text-align: center;
    min-width: 100%;
  }

  .contact-item {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Mobile Styles (480px - 600px) */
@media (max-width: 600px) {
  .footer-top {
    padding: 24px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .links-column {
    min-width: 100%;
  }

  .footer-links ul {
    text-align: center;
  }

  .social-icons {
    gap: 16px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .footer-bottom {
    padding: 16px;
  }

  .footer-policy {
    flex-direction: column;
    gap: 4px;
  }

  .footer-policy span {
    display: none;
  }
}

/* Small Mobile Styles (320px - 480px) */
@media (max-width: 480px) {
  .footer-top {
    padding: 20px 16px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-brand .logo {
    flex-direction: column;
    gap: 8px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px 16px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .footer-bottom p {
    margin: 0;
  }
}

/* Large Desktop Styles (min-width: 1200px) */
@media (min-width: 1200px) {
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Extra Large Screens (min-width: 1400px) */
@media (min-width: 1400px) {
  .footer-content {
    max-width: 1320px;
  }
}

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