.hidden {
  display: none !important;
}

.navbar .navbar-brand,
.signature {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  text-transform: lowercase;
}

.w3l-banner {
  background: url(../images/banner.webp) no-repeat center;
  background-size: cover;
}

.w3l-content-4 {
  background-color: inherit;
}

.w3l-clients-1 {
  background: var(--bg-lightgrey);
}

#call-to-action {
  background: url(../images/call-to-action-background.webp) no-repeat center;
  background-size: cover;
}

.w3l-copyright .main-social-footer-29 a {
  width: auto;
}
.w3l-copyright .main-social-footer-29 a.small {
  font-size: 12px;
  font-weight: 800;
  margin-left: inherit;
}

.capitalize {
  text-transform: capitalize;
  font-weight: 400;
}

.w3l-banner h1 {
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
}

/* Parallax sections */
#home,
#call-to-action {
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: background-position;
}

/* ===================================
   MODAL STYLING — yginwalla
   =================================== */

.modal-content {
  background: var(--bg-grey);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-full);
  color: var(--font-color);
}

.modal-header {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color-light);
  border-radius: var(--border-radius-full) var(--border-radius-full) 0 0;
  padding: 1.25rem 1.75rem;
}

.modal-header .modal-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
}

.modal-header .close {
  color: var(--font-color);
  opacity: 0.7;
  text-shadow: none;
  font-size: 24px;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.modal-header .close:hover {
  color: var(--primary-color);
  opacity: 1;
}

.modal-body {
  background: var(--bg-grey);
  padding: 2rem 1.75rem;
  color: var(--font-color);
  font-size: 15px;
  line-height: 1.8;
}

.modal-body h6 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  padding-left: 10px;
  border-left: 3px solid var(--primary-color);
}

.modal-body h6:first-child {
  margin-top: 0.5rem;
}

.modal-body p {
  color: var(--font-color);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.modal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.modal-body ul li {
  color: var(--font-color);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.modal-body ul li::marker {
  color: var(--primary-color);
}

.modal-body a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.modal-body a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.modal-body .text-muted.small {
  color: var(--font-color) !important;
  opacity: 0.6;
  font-size: 13px;
  margin-bottom: 1.5rem;
  display: block;
}

.modal-footer {
  background: var(--bg-color);
  border-top: 1px solid var(--border-color-light);
  border-radius: 0 0 var(--border-radius-full) var(--border-radius-full);
  padding: 1rem 1.75rem;
}

.modal-backdrop.show {
  opacity: 0.75;
}

/* Scrollbar styling inside modal */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: var(--bg-color);
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
  background: #059669;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-body {
    padding: 1.5rem 1.25rem;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-footer {
    padding: 0.75rem 1.25rem;
  }

  .modal-header .modal-title {
    font-size: 17px;
  }

  .modal-body h6 {
    font-size: 15px;
  }

  .modal-body p,
  .modal-body ul li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    margin: 0.75rem;
  }

  .modal-content {
    border-radius: 10px;
  }

  .modal-header {
    border-radius: 10px 10px 0 0;
  }

  .modal-footer {
    border-radius: 0 0 10px 10px;
  }
}

/* =================================== */

/* ===================================
   COOKIE CONSENT BANNER — yginwalla
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-grey);
  border-top: 2px solid var(--primary-color);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: none;
}

.cookie-banner.cookie-visible {
  display: block;
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.cookie-text i {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--font-color);
}

.cookie-text p strong {
  color: var(--heading-color);
}

.cookie-text p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-text p a:hover {
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn-outline-secondary {
  background: transparent;
  border: 1px solid var(--border-color-light);
  color: var(--font-color);
  padding: 8px 20px;
  font-size: 14px;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.cookie-actions .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.cookie-actions .btn-primary {
  padding: 8px 24px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .cookie-actions {
    flex-direction: column-reverse;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ================================== */
