/**
* Template Name: BizLand
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Roboto",  sans-serif;
}


:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2A3855; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #2A3855; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2A3855; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fffaf5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
}

/* Accessibility: skip navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--heading-color);
  outline-offset: 2px;
}

.section-title h2.section-heading {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: clamp(1.35rem, 4vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  background: none;
  padding: 0 0.75rem 10px;
  border-radius: 0;
  font-family: var(--heading-font);
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.section-title h2.section-heading .description-title {
  color: #e8a317;
}

.section-title h2.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 96px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-color), #e8a317);
  opacity: 0.95;
}

.section-title .text-muted,
.section-title p:not(.section-heading) {
  font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.05rem);
  line-height: 1.65;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background: linear-gradient(90deg, #1e2a42 0%, #2A3855 55%, #1e2a42 100%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.topbar .topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.topbar .topbar-link:hover {
  opacity: 0.9;
  color: #ffffff;
}

.topbar .topbar-link i {
  color: #e8a317;
}

.topbar .topbar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.topbar .topbar-pill--outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.topbar .topbar-pill--outline:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 163, 23, 0.7);
}

.topbar .topbar-pill--solid {
  color: #0f172a;
  background: linear-gradient(135deg, #ffd36a 0%, #e8a317 55%, #d99410 100%);
  border: 1px solid rgba(255, 211, 106, 0.45);
}

.topbar .topbar-pill--solid:hover {
  transform: translateY(-1px);
}

@media (max-width: 575px) {
  .topbar > .container {
    flex-wrap: wrap;
    justify-content: center !important;
    row-gap: 8px;
  }

  .topbar .topbar-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar .topbar-link span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar .topbar-pill {
    padding: 6px 10px;
  }
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

/* Mobile header fixes */
@media (max-width: 575px) {
  .header .topbar {
    height: auto;
    padding: 6px 0;
  }

  .header .topbar .contact-info {
    flex-wrap: wrap;
    gap: 6px 14px;
    justify-content: center;
    text-align: center;
  }

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 12px;
  }

  .header .branding {
    min-height: 56px;
    padding: 8px 0;
  }

  .header .branding .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header .logo img {
    max-height: 32px;
  }
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
.navmenu ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navmenu ul li a:hover {
  color: #2A3855; /* Change to your accent color */
}

/* Animated underline effect */
.navmenu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background-color: #2A3855; /* Same as hover color */
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after {
  width: 100%;
}


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.3s;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: block;
    list-style: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 340px);
    padding: 84px 14px 18px;
    margin: 0;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    overflow-y: auto;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 9998;
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.18);
    transform: translateX(110%);
    opacity: 0;
    border-left: 1px solid rgba(42, 56, 85, 0.12);
  }

  .navmenu ul::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 340px);
    height: 72px;
    background: linear-gradient(90deg, rgba(42, 56, 85, 0.08), rgba(232, 163, 23, 0.10));
    border-radius: 18px 0 0 0;
    border-bottom: 1px solid rgba(42, 56, 85, 0.08);
    pointer-events: none;
    z-index: 0;
  }

  .navmenu ul > * {
    position: relative;
    z-index: 1;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1e2a42;
    padding: 12px 14px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 12px;
    margin: 4px 6px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(42, 56, 85, 0.08);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1e2a42;
    background: rgba(232, 163, 23, 0.14);
    box-shadow: 0 10px 24px rgba(42, 56, 85, 0.08);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #e8a317;
    color: #1e2a42;
    transform: none;
  }

  .navmenu li + li {
    margin-top: 2px;
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 32px;
    top: 10px;
    right: 10px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    transform: translateX(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-v2 {
  background: linear-gradient(180deg, #1e2a42 0%, #151d2e 100%);
  color: #b8c4d4;
  font-size: 14px;
  padding: 0;
  animation: none;
}

.footer-v2 .footer-main {
  padding: 56px 0 48px;
}

.footer-v2 .footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 10px;
}

.footer-v2 .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #e8a317;
  border-radius: 2px;
}

.footer-v2 .footer-brand-text {
  color: #9aa8bc;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-v2 .footer-menu li,
.footer-v2 .footer-contact li {
  margin-bottom: 10px;
}

.footer-v2 .footer-menu a,
.footer-v2 .footer-contact a,
.footer-v2 .footer-contact span {
  color: #b8c4d4;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-v2 .footer-menu a:hover,
.footer-v2 .footer-contact a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-v2 .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-v2 .footer-contact i {
  color: #e8a317;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-v2 .footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-v2 .footer-social-btn:hover {
  background: #e8a317;
  color: #1e2a42;
  transform: translateY(-2px);
}

.footer-v2 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-v2 .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-v2 .footer-copy,
.footer-v2 .footer-disclaimer {
  font-size: 13px;
  color: #8a97ab;
}

.footer-v2 .footer-copy a {
  color: #ffffff;
  font-weight: 600;
}

.footer-v2 .footer-disclaimer strong {
  color: #c5ced9;
}

/* Footer CTA bar */
.footer-cta-bar {
  background: #e8a317;
  padding: 18px 0;
}

.footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1e2a42;
}

.footer-cta-text > i {
  font-size: 28px;
  flex-shrink: 0;
}

.footer-cta-text strong {
  display: block;
  font-size: clamp(15px, 1.2vw + 12px, 18px);
  font-family: var(--heading-font);
}

.footer-cta-text span {
  font-size: clamp(13px, 0.6vw + 11px, 14px);
  opacity: 0.85;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-cta-btn--outline {
  background: transparent;
  border: 2px solid #1e2a42;
  color: #1e2a42;
}

.footer-cta-btn--outline:hover {
  background: #1e2a42;
  color: #ffffff;
}

.footer-cta-btn--solid {
  background: #1e2a42;
  color: #ffffff;
  border: 2px solid #1e2a42;
}

.footer-cta-btn--solid:hover {
  background: #151d2e;
  border-color: #151d2e;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-v2 .footer-main {
    padding: 40px 0 32px;
    text-align: center;
  }

  .footer-v2 .footer-brand-text {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-v2 .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-v2 .footer-social {
    justify-content: center;
  }

  .footer-v2 .footer-contact li {
    justify-content: center;
  }

  .footer-v2 .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-text {
    flex-direction: column;
  }

  .footer-cta-actions {
    justify-content: center;
  }
}

/* Legacy footer classes kept for compatibility */
.footer {
  background-color: #2A3855;
  color: #ffffff;
  font-size: 14px;
  padding: 60px 0 40px;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.footer p {
  color: #cdd3dc;
  margin: 10px 0;
  line-height: 1.6;
}

.footer a {
  text-decoration: none;
  color: #cdd3dc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

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

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

.footer-links ul li i {
  margin-right: 8px;
  color: #ffc107;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  font-size: 20px;
  margin-right: 15px;
  color: #cdd3dc;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #ffffff !important;
  transform: scale(1.2);
}

.footer i {
  display: inline-flex;
  align-items: center;
  font-style: normal;
  margin-top: 8px;
}

.footer i a,
.footer i span {
  margin-left: 8px;
  color: #cdd3dc;
}

.footer i a:hover {
  color: #ffffff;
}

.footer img {
  max-width: 200px;
  transition: transform 0.3s ease;
}

.footer .copyright {
  border-top: 1px solid #444f63;
  margin-top: 30px;
  padding-top: 20px;
  color: #aaa;
  font-size: 13px;
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

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

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  /* Skip scroll animations on mobile — faster paint & better PageSpeed */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  section,
  .section {
    padding: 40px 0;
  }

  .section-title {
    padding-bottom: 32px;
  }

  .section-title h2.section-heading {
    font-size: 1.35rem;
    line-height: 1.35;
    padding: 0 0.5rem;
  }

  .section-title h2.section-heading::after {
    width: 76px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .header .logo h1 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2:not(.section-heading) {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-v3 {
  padding: 0;
  background: #0f172a; /* fallback behind images */
}

.hero-v3 .hero-swiper {
  width: 100%;
}

.hero-v3 .hero-slide {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-v3 .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(15, 23, 42, 0.25) 100%),
    radial-gradient(900px circle at 20% 20%, rgba(232, 163, 23, 0.18), transparent 45%),
    radial-gradient(900px circle at 60% 60%, rgba(42, 56, 85, 0.18), transparent 55%);
}

.hero-v3 .hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(28px, 4vw, 64px) 12px;
  color: #ffffff;
}

.hero-v3 .hero-content .btn-get-started {
  position: relative;
  z-index: 5;
  touch-action: manipulation;
}

.hero-v3 .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-v3 .hero-title {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.8rem, 3.2vw + 1rem, 3.1rem);
  color: #ffffff;
  text-wrap: balance;
}

.hero-v3 .hero-title span {
  color: #e8a317;
}

.hero-v3 .hero-subtitle {
  margin: 14px 0 0;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.hero-v3 .btn-outline-hero {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.hero-v3 .btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-v3 .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  min-height: 46px;
}

.hero-v3 a.btn-get-started:not(.btn-outline-hero) {
  color: #0f172a;
  background: linear-gradient(135deg, #ffd36a 0%, #e8a317 55%, #d99410 100%);
  border: 1px solid rgba(255, 211, 106, 0.55);
  box-shadow: 0 18px 44px rgba(232, 163, 23, 0.32);
}

.hero-v3 a.btn-get-started:not(.btn-outline-hero):hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(232, 163, 23, 0.40);
}

.hero-v3 .btn-get-started:focus-visible {
  outline: 3px solid rgba(232, 163, 23, 0.55);
  outline-offset: 3px;
}

@media (max-width: 575px) {
  .hero-v3 .btn-get-started {
    width: 100%;
  }
}

.hero-v3 .hero-swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  z-index: 2;
}

.hero-v3 .hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.35;
  background: rgba(255, 255, 255, 0.9);
}

.hero-v3 .hero-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e8a317;
}

@media (max-width: 768px) {
  .hero-v3 .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(15, 23, 42, 0.30) 100%),
      radial-gradient(700px circle at 20% 20%, rgba(232, 163, 23, 0.18), transparent 45%);
  }

  .hero-v3 .hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  /* padding: 50px 30px; */
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .stretched-link {
  z-index: 2;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# All Services (Tabbed Catalog)
--------------------------------------------------------------*/
.all-services {
  background: #f8f9fb;
}

.all-services .section-title {
  padding-bottom: 36px;
}

.all-services .section-title .section-heading {
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.all-services .section-title .section-heading .description-title {
  color: #e8a317;
}

.all-services .section-title .section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.all-services .section-title .section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 96px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-color), #e8a317);
  opacity: 0.95;
}

.all-services .section-title .text-muted {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.all-services-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.all-services-tabs .nav-link {
  color: var(--heading-color);
  background: #ffffff;
  border: 1px solid #e4e8ee;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.all-services-tabs .nav-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.all-services-tabs .nav-link.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

.service-catalog-card {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42, 56, 85, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-catalog-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-catalog-card:hover .service-catalog-icon {
  background: var(--accent-color);
  color: #ffffff;
}

.service-catalog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-catalog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-color);
  margin-top: auto;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

.service-catalog-link i {
  transition: transform 0.25s ease;
}

.service-catalog-card:hover .service-catalog-link i {
  transform: translateX(4px);
}

.all-services-cta {
  padding-top: 8px;
  border-top: 1px solid #e4e8ee;
}

/* All services - chip navigation + grouped headings */
.all-services-chips .all-services-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e4e8ee;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.all-services-chips .all-services-chip:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-1px);
}

.all-services-chips .all-services-chip.is-active {
  background: #e8a317;
  border-color: #e8a317;
  color: #1e2a42;
}

.all-services-chips .all-services-chip.is-active i {
  color: #1e2a42;
}

.all-services-chips .all-services-chip:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  outline-offset: 2px;
}

.all-services-chips .all-services-chip i {
  color: var(--accent-color);
  font-size: 16px;
}

.all-services-group {
  scroll-margin-top: 92px;
}

.all-services-group {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
}

.all-services-group + .all-services-group {
  margin-top: 22px;
}

.all-services-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f5;
}

.all-services-group-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
}

.all-services-group-head p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .all-services-group {
    padding: 26px;
  }
}

@media (max-width: 768px) {
  .all-services-group-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Improve card layout density in groups */
.all-services-group .service-catalog-card {
  border-radius: 16px;
}

.all-services-group .service-catalog-card:hover {
  box-shadow: 0 18px 48px rgba(42, 56, 85, 0.14);
}

.all-services-group .service-catalog-card h3 {
  font-size: 17px;
}

.all-services-group .service-catalog-card p {
  color: #5b6678;
}

/* Section heading spacing on small devices */
@media (max-width: 575px) {
  .all-services .section-title {
    padding-bottom: 26px;
  }

  .all-services-chips {
    margin-bottom: 18px !important;
  }

  .all-services-group {
    padding: 18px;
  }
}

/* Brand buttons (match footer CTA bar color) */
.btn-brand {
  background: #e8a317;
  border-color: #e8a317;
  color: #1e2a42;
  font-weight: 700;
}

.btn-brand:hover {
  background: #d99410;
  border-color: #d99410;
  color: #1e2a42;
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid #e8a317;
  color: #1e2a42;
  font-weight: 700;
}

.btn-brand-outline:hover {
  background: #e8a317;
  border-color: #e8a317;
  color: #1e2a42;
}

/* Floating action chips */
/* Floating action chips removed (per request) */
.service-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.price-badge {
  margin-top: 12px;
  background-color: #2A3855;
  color: #fff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.price-badge:hover {
  background-color: #2A3855;
}

.ourservice{

  display: flex;
justify-content: center;
align-items: center;

   h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
  }
  
   span {
    color: var(--accent-color);
  }
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* mobile bottom navbar */
.mobile-bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #2A3855;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  animation: slideUp 0.5s ease-in-out;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

/* nav items */
.mobile-bottom-navbar .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
  color: #fff; /* white text for dark background */
  padding: 8px 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* icons */
.mobile-bottom-navbar .nav-item i {
  font-size: 20px;
  margin-bottom: 2px;
}

/* separators */
.mobile-bottom-navbar .nav-item:not(:first-child) {
  border-left: 1px solid #e4e6eb; /* lighter shade for border */
}

/* hover effect */
.mobile-bottom-navbar .nav-item:hover {
  color: #edcf0b;
}

/* slide animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* advertise popup */

/* Popup wrapper */
.advertise-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.4s ease-in-out;
}

/* Hidden by default */
.advertise-popup.hidden {
  display: none;
}

/* Popup box */
.popup-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: slideIn 0.5s ease;
  width: 50%;
  height: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Animation keyframes */
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.6);
  }
}
.hidden {
  display: none !important;
}


/* Modal Animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Tax Savers modal (callback) */
#advertise-popup .ts-modal {
  animation: slideInRight 0.55s ease-in-out;
  border-radius: 18px;
  overflow: hidden;
}

#advertise-popup .ts-modal-body {
  background: #ffffff;
  display: flex;
}

#advertise-popup .ts-modal-body > .row {
  flex: 1;
}

#advertise-popup .ts-modal-media {
  position: relative;
  min-height: 360px;
  height: 100%;
  align-self: stretch;
}

#advertise-popup .ts-modal-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

#advertise-popup .ts-modal-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.20) 0%, rgba(15, 23, 42, 0.78) 80%);
}

#advertise-popup .ts-modal-media-content {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
}

#advertise-popup .ts-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 163, 23, 0.92);
  color: #0f172a;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

#advertise-popup .ts-modal-media-title {
  font-family: var(--heading-font);
  font-weight: 800;
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
  line-height: 1.25;
  color: #ffffff;
}

#advertise-popup .ts-modal-media-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.55;
}

#advertise-popup .ts-modal-form {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#advertise-popup .ts-modal-form .banner_form {
  width: 100%;
}

#advertise-popup .ts-modal-media,
#advertise-popup .ts-modal-form {
  min-height: 360px;
}

#advertise-popup .ts-modal-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 56, 85, 0.08);
  color: #1e2a42;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#advertise-popup .ts-modal-title {
  color: #0f172a;
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: clamp(1.25rem, 0.8vw + 1.1rem, 1.65rem);
  letter-spacing: -0.01em;
}

#advertise-popup .ts-modal-desc {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
}

#advertise-popup .ts-modal-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #1e2a42;
  margin-bottom: 6px;
}

#advertise-popup .ts-modal-input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  font-size: 0.95rem;
}

#advertise-popup .ts-modal-input:focus {
  border-color: rgba(232, 163, 23, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(232, 163, 23, 0.22);
}

#advertise-popup .ts-modal-submit {
  height: 48px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #0f172a;
  background: linear-gradient(135deg, #ffd36a 0%, #e8a317 55%, #d99410 100%);
  border: 1px solid rgba(255, 211, 106, 0.55);
  box-shadow: 0 18px 44px rgba(232, 163, 23, 0.26);
}

#advertise-popup .ts-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(232, 163, 23, 0.34);
}

#advertise-popup .btn-close {
  background-color: rgba(15, 23, 42, 0.06);
  border-radius: 50%;
  padding: 0.6rem;
}

@media (max-width: 767px) {
  /* On small screens, stack naturally and allow scrolling */
  #advertise-popup .ts-modal-body {
    display: block;
  }

  #advertise-popup .ts-modal-body > .row {
    flex: none;
  }

  #advertise-popup .ts-modal {
    border-radius: 16px;
  }

  #advertise-popup .ts-modal-media {
    min-height: 220px;
  }

  #advertise-popup .ts-modal-media-content {
    padding: 16px;
  }

  #advertise-popup .ts-modal-form {
    padding-top: 6px;
    justify-content: flex-start;
  }

  #advertise-popup .modal-dialog {
    max-width: 96%;
    margin: auto;
  }

  #advertise-popup .modal-content {
    max-height: calc(100vh - 24px);
  }

  #advertise-popup .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  /* Tablet: keep equal feel but reduce heights and padding */
  #advertise-popup .ts-modal-media,
  #advertise-popup .ts-modal-form {
    min-height: 320px;
  }

  #advertise-popup .ts-modal-media-content {
    padding: 18px;
  }

  #advertise-popup .ts-modal-input,
  #advertise-popup .ts-modal-submit {
    height: 46px;
  }
}

@media (max-width: 420px) {
  #advertise-popup .ts-modal-title {
    font-size: 1.25rem;
  }

  #advertise-popup .ts-modal-desc {
    font-size: 0.95rem;
  }

  #advertise-popup .ts-modal-input,
  #advertise-popup .ts-modal-submit {
    height: 44px;
    border-radius: 11px;
  }
}

/* marque css */

/* Wrapper styling */
.marquee-wrapper {
  background-color: #F4F5F6;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Marquee container */
.marquee-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Headline text */
.marquee-wrapper h2 {
  font-size: 28px;
  font-weight: 600;
  color: #e53935;
}

.text-accent-1 {
  color: #f57c00;
}

.text-center {
  text-align: center;
}

/* Marquee lines (scrolling animation) */
.marquee-line {
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  animation: marquee-scroll 20s linear infinite;
  /* background-color: #9d7fd8; */
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  border-left: 5px solid #2A3855;
}

/* Animation keyframes */
@media (prefers-reduced-motion: reduce) {
  .marquee-line {
    animation: none;
    white-space: normal;
    transform: none;
  }
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100%);
  }

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

/* Responsive Typography */
@media (max-width: 768px) {
  .marquee-wrapper h2 {
    font-size: 22px;
  }

  .marquee-line {
    font-size: 16px;
    animation-duration: 25s;
  }
}

@media (max-width: 480px) {
  .marquee-wrapper {
    padding: 15px 10px;
  }

  .marquee-line {
    font-size: 15px;
    padding: 8px 12px;
    animation-duration: 28s;
  }

  .marquee-wrapper h2 {
    font-size: 20px;
  }
}


.custompointer {
  cursor: pointer;
  touch-action: manipulation;
}

/*--------------------------------------------------------------
# Updates & Reminders
--------------------------------------------------------------*/
.reminders .reminder-marquee {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
}

/* Make Reminders section visually distinct from About */
.reminders {
  --background-color: #ffffff;
}

.reminders.section {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.reminders .reminder-marquee-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(90deg, rgba(42, 56, 85, 0.04) 0%, rgba(232, 163, 23, 0.06) 100%);
  overflow: hidden;
}

.reminders .reminder-marquee-row:last-child {
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(232, 163, 23, 0.06) 0%, rgba(42, 56, 85, 0.04) 100%);
}

.reminders .reminder-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 18px;
  animation: ts-marquee 26s linear infinite;
}

.reminders .reminder-marquee-row--reverse .reminder-marquee-track {
  animation-direction: reverse;
  animation-duration: 30s;
}

.reminders .reminder-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.reminders .reminder-pill--yellow {
  background: rgba(232, 163, 23, 0.16);
  color: #1e2a42;
  border: 1px solid rgba(232, 163, 23, 0.35);
}

.reminders .reminder-pill--navy {
  background: rgba(42, 56, 85, 0.10);
  color: #1e2a42;
  border: 1px solid rgba(42, 56, 85, 0.18);
}

.reminders .reminder-pill--green {
  background: rgba(37, 211, 102, 0.14);
  color: #14532d;
  border: 1px solid rgba(37, 211, 102, 0.22);
}

.reminders .reminder-msg {
  color: #1e2a42;
  font-weight: 700;
  font-size: 14px;
}

.reminders .reminder-sep {
  color: rgba(15, 23, 42, 0.35);
  font-weight: 900;
}

@keyframes ts-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reminders .reminder-marquee-track {
    animation: none;
  }
}

.reminders .reminder-board {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
}

.reminders .reminder-board-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(90deg, rgba(42, 56, 85, 0.08) 0%, rgba(232, 163, 23, 0.12) 100%);
  border-bottom: 1px solid rgba(42, 56, 85, 0.08);
}

.reminders .reminder-board-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #1e2a42;
}

.reminders .reminder-board-sub {
  color: #556274;
  font-weight: 600;
  font-size: 13px;
}

.reminders .reminder-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e8a317;
  box-shadow: 0 0 0 6px rgba(232, 163, 23, 0.18);
}

.reminders .reminder-headlines {
  display: grid;
}

.reminders .reminder-headline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef1f5;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.reminders .reminder-headline:last-child {
  border-bottom: 0;
}

.reminders .reminder-headline:hover {
  background: rgba(42, 56, 85, 0.04);
}

.reminders .reminder-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.reminders .reminder-tag--yellow {
  background: rgba(232, 163, 23, 0.16);
  color: #1e2a42;
  border: 1px solid rgba(232, 163, 23, 0.35);
}

.reminders .reminder-tag--navy {
  background: rgba(42, 56, 85, 0.10);
  color: #1e2a42;
  border: 1px solid rgba(42, 56, 85, 0.18);
}

.reminders .reminder-tag--green {
  background: rgba(37, 211, 102, 0.14);
  color: #14532d;
  border: 1px solid rgba(37, 211, 102, 0.22);
}

.reminders .reminder-text {
  color: #1e2a42;
  font-weight: 650;
  line-height: 1.5;
}

.reminders .reminder-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: var(--accent-color);
  white-space: nowrap;
}

.reminders .reminder-cta i {
  transition: transform 0.2s ease;
}

.reminders .reminder-headline:hover .reminder-cta i {
  transform: translateX(3px);
}

.reminders .reminder-board-actions .btn {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

.reminders .reminder-card {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reminders .reminder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(42, 56, 85, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.reminders .reminder-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #e8a317, transparent 86%);
  color: #1e2a42;
  font-size: 22px;
  margin-bottom: 14px;
}

.reminders .reminder-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.reminders .reminder-card p {
  color: #556274;
  line-height: 1.65;
  margin-bottom: 14px;
  font-size: 14px;
}

.reminders .reminder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--accent-color);
}

.reminders .reminder-link i {
  transition: transform 0.2s ease;
}

.reminders .reminder-link:hover i {
  transform: translateX(3px);
}

.reminders .reminder-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(90deg, rgba(42, 56, 85, 0.08) 0%, rgba(232, 163, 23, 0.12) 100%);
  border: 1px solid rgba(42, 56, 85, 0.10);
  border-radius: 18px;
  padding: 16px 18px;
}

.reminders .reminder-strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e2a42;
  font-weight: 600;
}

.reminders .reminder-strip-left i {
  color: #e8a317;
  font-size: 18px;
}

.reminders .reminder-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 575px) {
  .reminders .reminder-headline {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .reminders .reminder-cta {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .reminders .reminder-strip {
    padding: 14px;
  }

  .reminders .reminder-strip-actions .btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About (refresh)
--------------------------------------------------------------*/
.about .about-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 56, 85, 0.08);
  color: #1e2a42;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.about .about-lead {
  color: #556274;
  line-height: 1.7;
  font-size: 15px;
}

.about .about-points {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.about .about-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #1e2a42;
  font-weight: 600;
  line-height: 1.55;
}

.about .about-point i {
  color: #e8a317;
  font-size: 18px;
  margin-top: 2px;
}

.about .about-note {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.about .about-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(42, 56, 85, 0.12);
  border: 1px solid rgba(42, 56, 85, 0.10);
}

.about .about-media img {
  width: 100%;
  height: auto;
  display: block;
}

.about .about-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.about .about-badge-num {
  background: #e8a317;
  color: #0f172a;
  font-weight: 900;
  border-radius: 12px;
  padding: 8px 10px;
  min-width: 68px;
  text-align: center;
}

.about .about-badge-text {
  font-weight: 700;
  opacity: 0.92;
}

/*--------------------------------------------------------------
# Contact (refresh)
--------------------------------------------------------------*/
.contact .contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact .contact-form-head {
  padding: 18px 18px 0;
}

.contact .contact-form-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 56, 85, 0.08);
  color: #1e2a42;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
}

.contact .contact-form-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.contact .contact-form-desc {
  margin: 0;
  color: #556274;
  line-height: 1.65;
  font-size: 14px;
}

.contact .contact-form-v2 .row {
  padding: 0 18px 18px;
}
.contact .contact-panel {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
}

.contact .contact-panel-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(42, 56, 85, 0.08);
  color: #1e2a42;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.contact .contact-panel-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.contact .contact-panel-desc {
  margin: 0 0 14px;
  color: #556274;
  line-height: 1.65;
  font-size: 14px;
}

.contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact .contact-tile {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact .contact-tile--wide {
  grid-column: 1 / -1;
}

.contact .contact-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #e8a317, transparent 86%);
  color: #1e2a42;
  font-size: 18px;
  flex-shrink: 0;
}

.contact .contact-tile-label {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #475569;
}

.contact .contact-tile-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 900;
  color: #1e2a42;
  text-decoration: none;
}

.contact .contact-tile-link:hover {
  color: var(--accent-color);
}

.contact .contact-tile-text {
  margin-top: 4px;
  color: #1e2a42;
  font-weight: 650;
  line-height: 1.5;
}

.contact .contact-tile--cta {
  background: linear-gradient(135deg, rgba(42, 56, 85, 0.06) 0%, rgba(232, 163, 23, 0.12) 100%);
  border-color: rgba(42, 56, 85, 0.10);
}

@media (max-width: 575px) {
  .contact .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact .contact-cards {
  display: grid;
  gap: 14px;
}

.contact .contact-card {
  background: #ffffff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 18px 44px rgba(42, 56, 85, 0.06);
}

.contact .contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.contact .contact-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.contact .contact-card p {
  margin: 0;
  color: #556274;
  line-height: 1.6;
  font-size: 14px;
}

.contact .contact-card a {
  color: var(--accent-color);
  font-weight: 800;
}

.contact .contact-card--cta {
  display: block;
}

.contact .contact-card--cta .contact-card-body h3 {
  margin-bottom: 8px;
}

.contact .contact-form-card {
  border-radius: 18px;
  border: 1px solid #eef1f5;
}

.contact .contact-form-card .form-control {
  border-radius: 12px;
  min-height: 48px;
  border-color: rgba(15, 23, 42, 0.14);
}

.contact .contact-form-card textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-card .form-control:focus {
  border-color: rgba(232, 163, 23, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(232, 163, 23, 0.18);
}

/* Ensure consistent card size */
.featured-services .service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  height: 100%;
}

/* Mobile responsiveness fix */
@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }

  .scroll-top {
    bottom: 75px;
  }
}

@media (max-width: 767px) {
  .footer-cta-btn {
    white-space: normal;
    text-align: center;
  }

  .featured-services .service-item {
    width: 100%;
    min-height: 300px; /* Adjust as needed for content */
  }

  .featured-services .icon i {
    font-size: 28px;
  }

  .featured-services .service-item h4 {
    font-size: 18px;
  }

  .featured-services .service-item p {
    font-size: 13px;
  }

  .price-badge {
    font-size: 0.85rem;
    padding: 5px 12px;
  }
}

