:root {
  /* Backgrounds & Main Tones */
  --color-blue-light-bg: #e3eaff;
  --color-off-white-bg: #fbfcfe;
  --color-soft-light-bg: #f5f9ff;
  --color-light-bg-alpha: rgba(255, 255, 255, 0.9);
  --color-pastel-bg: #f7f3f8;
  --color-light-gray-f8f8f8: #f9f9f9;
  --color-about-btn-hover: #e6e8f3;

  /* Overlay & Gradient Tones */
  --color-overlay-gradient-start: rgba(4,
      81,
      135,
      0.85);
  /* Primary with opacity */
  --color-overlay-gradient-end: rgba(4, 81, 135, 0.65);
  --color-gradient-fade-transparent: rgba(4, 81, 135, 0);
  --color-blue-overlay-subtle: rgba(4, 81, 135, 0.07);

  /* Primary & Accent Blues */
  --color-primary-blue: #045187;
  /* Updated primary */
  --color-primary-blue-rgb: 4, 81, 135;
  --color-brand-blue-dark: #03345a;
  /* Darker variant for hover/active */
  --color-deep-blue: #022a45;
  /* Even deeper shade */
  --color-dark-blue-hover: #033a68;
  --color-pagination-active-blue: #045187;
  --color-topbar-blue: #034066;
  --color-light-blue-hover-link: #4d87b7;
  /* lighter accent for hover */
  --color-accent-blue-footer: #045187;
  --color-logo-hover-dark: #012a45;
  --color-heading-dark-blue: #045187;
  --color-light-underline-blue: #6fa3c9;
  --color-strong-blue-heading: #045187;
  --color-medium-blue-underline: #045187;
  --color-blue-stat-heading: #045187;

  /* Text & Neutral Colors */
  --color-text-dark: #222222;
  --color-text-neutral: #3a3a3a;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dropdown-text-dark: #444444;
  --color-icon-bg-light-gray: #dfe5ef;
  --color-icon-dark: #666666;
  --color-medium-gray: #777777;
  --color-light-gray-date: #888888;
  --color-hero-heading-dark: #212147;
  --color-hero-paragraph-dark: #343a7a;
  --color-darker-heading-footer: #151515;
  --color-subtle-border-eee: #ddd;
  --color-light-grey-e6eef7: #e9f0ff;
  --color-superheadline-dark: #0a0f33;
  --color-border-light-gray: #bbb;
  --color-black-parallax-text: #1d1d1d;
  --color-services-heading-dark: #1b1b1b;
  --color-services-item-heading-dark: #262626;
  --color-services-paragraph-dark: #666666;

  /* Button Specifics & Shadows */
  --color-whatsapp-green: #25d366;
  --color-shadow-soft-black: rgba(0, 0, 0, 0.06);
  --color-shadow-medium-black: rgba(0, 0, 0, 0.18);
  --color-shadow-tint-blue: rgba(4, 81, 135, 0.12);
  --color-shadow-tint-blue-hover: rgba(4, 81, 135, 0.18);
  --color-shadow-primary-button: rgba(4, 81, 135, 0.18);
  --color-shadow-cta-button: rgba(4, 81, 135, 0.35);
  --color-shadow-team-member: rgba(4, 81, 135, 0.25);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:-webkit-any-link:hover {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:root {
  --navbar-height: 150px; /* fallback */
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: var(--navbar-height);
}



body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--color-off-white-bg);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-black);
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  color: var(--color-text-neutral);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* Links */
a {
  color: var(--color-primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-brand-blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Layout */
/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

section {
  padding: 60px 0;
  /* Global padding for most sections */
}

/* Full-page overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Icon with subtle pulse */
.loader-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  animation: pulse 0.2s infinite ease-in-out;
}

/* Loading dots */
.loader-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #045187;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Loader text */
.loader-text {
  font-size: 1rem;
  color: #045187;
  font-weight: 500;
  text-align: center;
}

/* Pulse animation for icon */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Bounce animation for dots */
@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }
}

/* Fade-out overlay */
#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}


/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  transition: bottom 0.3s ease;
}

/* Common button styles */
.floating-buttons a,
.floating-buttons button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* Enquiry Button */
.enquiry-btn {
  background-color: var(--color-primary-blue);
}

.enquiry-btn:hover {
  background-color: var(--color-strong-blue-heading);
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Chat bubble styling */
.chat-bubble {
  position: absolute;
  right: 60px;
  /* distance from button */
  background-color: var(--color-primary-blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}

/* Show chat bubble on hover */
.whatsapp-btn:hover .chat-bubble,
.enquiry-btn:hover .chat-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal content box */
.modal-content {
  background: #fff;
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  max-width: fit-content;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease-out;
}

/* Close button */
.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
}

.close-modal:hover {
  color: #000;
}

/* ==================== Animations ==================== */
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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

/* ==================== Floating Buttons ==================== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  /* so scroll-top comes at bottom */
  gap: 14px;
  z-index: 99999;
}

.floating-buttons a,
.floating-buttons button,
.scroll-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  background: var(--color-primary-blue);
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* ==================== Scroll-to-top ==================== */
.scroll-top {
  opacity: 0;
  pointer-events: none;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==================== Tablet (<=1024px) ==================== */
@media (max-width: 1024px) {
  .floating-buttons {
    bottom: 15px;
    right: 22px;
    gap: 12px;
  }

  .floating-buttons a,
  .floating-buttons button,
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* ==================== Mobile (<=767px) ==================== */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 12px;
    right: 25px;
    gap: 10px;
  }

  .floating-buttons a,
  .floating-buttons button,
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ==================== Extra Small (<=480px) ==================== */
@media (max-width: 480px) {
  .floating-buttons {
    bottom: 10px;
    right: 25px;
  }

  .floating-buttons a,
  .floating-buttons button,
  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* ------------------- Footer Section ------------------- */
/* ==============================
   FOOTER STYLING
   ============================== */
.site-footer {
  background-color: var(--color-accent-blue-footer);
  /* primary background */
  color: var(--color-black-parallax-text);
  /* light text */
  padding: 80px 40px 30px;
  font-size: 0.98rem;
  line-height: 1.6;
  font-family: 'Nunito', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

/* Divider */
hr.footer-divider {
  border: none;
  height: 2px;
  max-width: 250px;
  margin: 0 auto 60px;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0));
  border-radius: 9999px;
}

/* Footer grid */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-column {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: var(--color-off-white-bg);
  font-size: 1.35rem;
  margin-bottom: 25px;
  padding-bottom: 8px;
  font-weight: 600;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-light-blue-hover-link);
  /* accent underline */
  border-radius: 2px;
}

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

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

.footer-column ul li a,
.footer-column p a {
  color: var(--color-about-btn-hover);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-column ul li a:hover,
.footer-column p a:hover {
  color: var(--color-border-light-gray);
  transform: translateX(5px);
}

.footer-column p {
  margin: 10px 0;
  color: var(--color-off-white-bg);
  font-weight: 400;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-off-white-bg);
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.footer-socials a i {
  font-size: 20px;
  color: var(--color-blue-primary);
  /* contrast */
}

.footer-socials a:hover {
  background-color: var(--color);
  /* Circle turns brand color */
  color: #fff;
  /* Icon becomes white */
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-socials a:hover i {
  color: var(--color-off-white-bg);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--color-blue-light-bg);
  padding-top: 30px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--color-off-white-bg);
  margin-top: 40px;
}

.footer-bottom p {
  color: var(--color-border-light-gray);
}

.footer-links a {
  color: var(--color-off-white-bg);
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-light-blue-hover-link);
  transform: translateY(-2px);
}

/* Heart animation */
.heart-icon {
  color: red;
  /* accent heart */
  animation: pulse 1.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.made-with {
  margin-left: 8px;
  font-weight: 500;
  color: var(--color-off-white-bg);
}

.made-with a {
  color: var(--color-off-white-bg);
  text-decoration: none;
  transition: color 0.4s ease;
}

.made-with a:hover {
  color: var(--color-light-gray-date);
}

/* ==============================
   RESPONSIVE FOOTER STYLING
   ============================== */

/* Tablet (up to ~1024px) */
@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 30px 25px;
    font-size: 0.95rem;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }
}

/* Mobile (up to ~768px) */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 20px 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 0.85rem;
  }
}

/* Small phones (up to ~480px) */
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 15px 15px;
    font-size: 0.9rem;
  }

  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-socials a {
    width: 36px;
    height: 36px;
  }

  .footer-socials a i {
    font-size: 18px;
  }

  .footer-links a {
    margin: 0 6px;
    font-size: 0.85rem;
  }
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-deep-blue);
  color: var(--color-white);
  font-size: 1.6rem;
  text-align: center;
  border-radius: 50%;
  z-index: 99999;
  box-shadow: 0 2px 6px var(--color-shadow-medium-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top.show:hover {
  background-color: var(--color-light-blue-hover-link);
  box-shadow: 0 0 8px var(--color-brand-blue-dark);
}

/* ------------------- Topbar ------------------- */
.topbar {
  background-color: var(--color-white);
  color: var(--color-primary-blue);
  font-size: 0.95rem;
  padding: 8px 0;
  font-family: "Nunito", sans-serif;
  box-shadow: 0 2px 8px rgba(var(--color-primary-blue-rgb), 0.15);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* vertically center */
  max-width: 95%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Left Logo */
.navbar-logo {
  max-height: 70px;
  /* adjust as needed */
  width: auto;
}

/* Center Topbar Image */
.topbar-center-logo {
  max-height: 75px;
  /* adjust as needed */
  width: auto;
}

/* Social Icons */
.topbar-right a {
  margin-left: 8px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  text-decoration: none;
}

.topbar-right a.facebook {
  background-color: #1877f2;
}

.topbar-right a.twitter {
  background-color: #000000;
}

.topbar-right a.linkedin {
  background-color: #0a66c2;
}

.topbar-right a.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.topbar-right a:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ------------------- Responsive ------------------- */

/* Large tablets and small laptops (≤1024px) */
@media screen and (max-width: 1024px) {
  .topbar-content {
    max-width: 98%;
    padding: 0 10px;
  }

  .navbar-logo {
    max-height: 45px;
  }

  .topbar-center-logo {
    max-height: 65px;
  }
}

/* Tablets (≤768px) */
@media screen and (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    background-color: rgb(101 191 255 / 70%);
    /* translucent deep blue */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }


  .navbar-logo,
  .topbar-center-logo {
    max-height: 70px;
  }

  .topbar-right a {
    margin: 5px;
  }
}

/* Small phones (≤480px) */
@media screen and (max-width: 480px) {

  .navbar-logo,
  .topbar-center-logo {
    max-height: 45px;
  }

  .topbar-right a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* Extra small phones (≤360px) */
@media screen and (max-width: 360px) {
  .topbar {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .navbar-logo,
  .topbar-center-logo {
    max-height: 30px;
  }

  .topbar-right a {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin: 3px;
  }
}

/* Stats Section */

.about-arnav {
  font-family: 'Nunito', sans-serif;
  padding: 80px 0;
  background-color: var(--color-soft-light-bg);
  /* Soft, clean light background */
  color: var(--color-text-dark);
}

/* ---------------- Partner Carousel - Clean Logos ---------------- */
.partner-carousel {
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  background-color: var(--color-off-white-bg);
}

.partner-carousel h2 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: var(--color-superheadline-dark);
  font-weight: 700;
  line-height: inherit;
}

.partner-carousel h2 u {
  border-bottom: 4px solid var(--color-accent-blue-footer);
  padding-bottom: 4px;
  text-decoration: none;
  color: var(--color-accent-blue-footer);

}

@media (max-width:792px) {
  .partner-carousel h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: inherit;
  }

  .partner-carousel h2 u {
    border-bottom: 4px solid #045187;
    padding-bottom: 6px;
    text-decoration: none;
    color: #045187;
    line-height: inherit;
  }
}
/* Wrapper with fade edges */
.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right,
      var(--color-off-white-bg),
      var(--color-gradient-fade-transparent));
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left,
      var(--color-off-white-bg),
      var(--color-gradient-fade-transparent));
}

/* Track */
.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll 35s linear infinite;
  will-change: transform;
}

.carousel-track-inner {
  display: flex;
  gap: 70px;
  align-items: center;
  padding: 0 35px;
}

/* Logos */
.carousel-track img {
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.85;
  transition: filter 0.4s ease, transform 0.35s ease, opacity 0.35s ease;
  cursor: pointer;
}

.carousel-track img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

/* Infinite scroll keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track-inner {
    gap: 40px;
    padding: 0 30px;
  }

  .carousel-track img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .carousel-track-inner {
    gap: 25px;
    padding: 0 20px;
  }

  .carousel-track img {
    max-height: 38px;
  }
}



/* News Section */

/* --- Base Button Styles --- */
.btn,
.btn-secondary,
.toggle-buttons button,
.toggle-buttons a {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Nunito', sans-serif;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* --- Primary Button --- */
.btn,
.toggle-buttons button.active,
.toggle-buttons a.active {
  max-inline-size: max-content;
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  border-color: var(--color-primary-blue);
}

/* --- Secondary Button --- */
.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary-blue);
  border: 2px solid var(--color-primary-blue);
}

/* --- Hover Effects --- */
.btn:hover,
.toggle-buttons button.active:hover,
.toggle-buttons a.active:hover {
  background-color: var(--color-brand-blue-dark);
  border-color: var(--color-brand-blue-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover,
.toggle-buttons button:hover,
.toggle-buttons a:hover {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  border-color: var(--color-primary-blue);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.12);
}

/* --- Active Click Effect --- */
.btn:active,
.btn-secondary:active,
.toggle-buttons button:active,
.toggle-buttons a:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

  .btn,
  .btn-secondary,
  .toggle-buttons button,
  .toggle-buttons a {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {

  .btn,
  .btn-secondary,
  .toggle-buttons button,
  .toggle-buttons a {
    padding: 8px 18px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  }
}

/* --- Form Container --- */
form {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 16px var(--shadow-soft-black);
  font-family: "Nunito", sans-serif;
}

/* --- Form Fields --- */
form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  margin: 12px 0;
  border-radius: 6px;
  border: 1px solid var(--color-border-light-gray);
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

/* --- Focus State --- */
form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 2px rgba(var(--color-primary-blue-rgb), 0.2);
  outline: none;
}

/* --- Form Submit Button (inherits .btn style) --- */
form .btn {
  margin-top: 15px;
}

/* --- Hidden Section Toggle --- */
.hidden {
  display: none;
}

/* About Section */

.about-section {
  padding: 60px 20px;
}

.about-section.light {
  background: var(--color-blue-light-bg);
}

.about-section h2 {
  color: var(--color-superheadline-dark);
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-section p,
.about-section li {
  color: var(--color-dropdown-text-dark);
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-section ul {
  list-style-type: disc;
  padding-left: 24px;
}

/* Services Section */

.services-section {
  padding: 60px 20px;
}

.services-section.light {
  background: var(--color-light-underline-blue);
}

.services-section h2 {
  color: var(--color-brand-blue-dark);
  margin-bottom: 20px;
  font-size: 2rem;
}

.services-section ul {
  list-style-type: square;
  padding-left: 24px;
}

.services-section ul li {
  margin-bottom: 10px;
  color: var(--color-text-dark);
  font-size: 1.05rem;
}

/* --- Responsive Adjustments for all Sections --- */

/* Tablet & Smaller Desktop Screens (e.g., 769px to 1024px) */
@media (max-width: 1024px) {

  /* Form Adjustments */
  form {
    max-width: 580px;
    padding: 25px;
  }

  /* Section Adjustments */
  .about-section,
  .services-section {
    padding: 50px 20px;
  }

  .about-section h2,
  .services-section h2 {
    font-size: 1.8rem;
  }

  .about-section p,
  .about-section li,
  .services-section ul li {
    font-size: 1rem;
  }
}

/* Mobile Devices (e.g., up to 768px) */
@media (max-width: 768px) {

  /* Form Adjustments */
  form {
    max-width: 100%;
    padding: 10px;
  }

  form input,
  form textarea,
  form select {
    padding: 10px 12px;
    margin: 10px 0;
    font-size: 0.95rem;
  }

  /* Section Adjustments */
  .about-section,
  .services-section {
    padding: 40px 15px;
  }

  .about-section h2,
  .services-section h2 {
    font-size: 1.6rem;
  }

  .about-section p,
  .about-section li,
  .services-section ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}