/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* 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: "Open Sans", sans-serif, "Open-Sans-SemiBold"; */

  /* New Font  */
  --default-font: "Exo", sans-serif;
  --heading-font: "Exo", sans-serif;
  --nav-font: "Exo", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --black-color: #000000;
  --blue-color: #0f4ba1;
  --orange-color: #ff6200;
  --white-color: #ffffff;
  --white-text: #ffffff;
  --topbar-bg-color: #0f4ba1;
  --footer-bg-color: #00244d;
  --lightgray: #cbd5e1;
  /* --darkgray: #9CA3AF; */
  --darkgray: #64748b;
  --page-title-bg-color: #f5f8fc; /* Background color for the page title section */
  /* --heading-color: #0f4ba1; */
  /* --background-color: #ffffff;  */
  --contrast-color: #ff6200;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color: #0f4ba1;
  --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 for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  /* --contrast-color: #ffffff; */
  /* --contrast-color: #3B82F6; */
  /* --contrast-color: #ff5c1a; */
  --header-text: #ffffff; /* White text/icons */

  /* Button Background Color */
  /* --button-color: #e85a4f; */
  --button-color: #ff6200; /* Button Background Color */
  /* --footer-bg-color: #00213d; */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #0f4ba1; /* The default color of the main navmenu links */
  --nav-hover-text: #1a86ff; /* Hover Blue */
  --nav-hover-color: #ff6200; /* 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: #ff6200; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* button colors */
:root {
  --btn-color: #ff6200;
  --btn-hover-color: #0f4ba1;
  --btn-text-color: #ffffff;
}
/* button colors */
:root {
  --table-bg-color: #ffece0;
  --table-th-color: #ffad7a;
  --table-border: #ffad7a;
  --table-th-text: #572905;
}

/* 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: #f5f9ff;
  --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;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  /* line-height: 1.8; */
  color: var(--default-color);
  background-color: var(--white-color);
  font-family: var(--default-font);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--blue-color);
  font-family: var(--heading-font);
}
.form-label {
  margin-bottom: 0.1rem !important;
}
/*--------------------------------------------------------------
# Global Footer Start
--------------------------------------------------------------*/
.footer {
  background-image: url("/image/footer.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
  background-color: var(--footer-bg-color);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer .footer-top .support {
  font-size: small;
  padding-left: 25px;
  font-weight: 400;
}
.footer .footer-top .miniflag {
  width: 26px;
  height: 26px;
  margin-left: 10px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--orange-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--orange-color), transparent 20%);
  margin-left: 12px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--orange-color);
  border-color: var(--orange-color);
}

.footer h4 {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: var(--white-text);
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--white-text), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--orange-color);
}

/* .footer .footer-about img {
  max-width: 160px;
  margin-bottom: 10px;
  background: var(--white-color);
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */

.footer .icon {
  color: var(--orange-color);
}
.footer .email {
  color: var(--orange-color);
  border-bottom: 1px dashed #fc59004d;
}
.footer .email:hover {
  color: var(--orange-color);
  border-bottom-color: var(--orange-color);
}

.footer .copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2px solid color-mix(in srgb, var(--orange-color), transparent 0%);
  text-align: center;
}

.footer .copyright p {
  font-size: 16px;
}

.footer .footer-contact p {
  text-align: center;
}

.circle-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  bottom: 25px;
}

.textcircle {
  width: 100%;
  height: 100%;
  animation: rotateIt 15s linear infinite;
}

.textcircle text {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  fill: var(--orange-color);
  letter-spacing: 2px;
}

@keyframes rotateIt {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; /* logo size */
  height: 100px;
  border-radius: 50px;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: black;
  z-index: 2; /* keep logo above rotating text */
}

.footer .logo img {
  width: 55%;
  height: 100%;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Global Footer End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Header Start
--------------------------------------------------------------*/
.topbar {
  background-color: var(--topbar-bg-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.topbar .contact-info i {
  color: var(--white-color);
}

.topbar .contact-info span {
  color: var(--white-text);
  font-size: 14px;
  font-weight: 500;
}

/* @media (max-width: 575px) {
  .topbar .contact-info span {
    font-size: 13px;
  }
} */
/* .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
} */
/* .topbar .contact-info i a:hover {
  color: var(--default-color);
  text-decoration: underline;
  font-weight: 600;
} */
.topbar .social-links a {
  color: var(--white-color);
  line-height: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block; /* Important for transform to work */
  margin-left: 20px;
}
.topbar .social-links a:hover {
  color: var(--orange-color);
  transform: scale(1.2); /* Zoom effect */
}
/* -- Topbar section end -- */
.gf-header {
  background: var(--white-color);
  min-height: 60px;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.gf-logo img {
  max-height: 45px;
  margin-right: 8px;
}

.gf-nav-links li a {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
  color: var(--nav-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .gf-nav-links li a {
    font-size: 11px;
    font-weight: 800;
  }
}

/* Hover underline animation */
.gf-nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* adjust spacing below text */
  width: 100%;
  height: 2px;
  background-color: var(--nav-hover-color);
  /* Use scaleX for smooth left → right and right → left */
  transform: scaleX(0);
  transform-origin: right; /* start animation from left */
  transition: transform 0.3s ease-in-out;
}

.gf-nav-links li a:hover {
  color: var(--nav-hover-text);
}

.gf-nav-links li a:hover::after {
  transform: scaleX(1); /* expand underline */
  transform-origin: left;
}

/* Optional: active link style */
.gf-nav-links li a.active::after {
  transform: scaleX(1);
}

/* Reset list style */
.gf-nav-links li {
  list-style: none;
}

/* =================================== */
/* ---- animeted buttons effect ---- */
/* =================================== */
.button {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  padding: 0.3rem 0.5rem;
  margin: 0;
  position: relative;
  display: inline-block;
}
.btn:hover {
  color: var(--btn-text-color) !important;
  background-color: var(--btn-hover-color);
  /* border-color: var(--bs-btn-hover-border-color); */
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--mimas {
  letter-spacing: 0.05rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0.3rem;
  overflow: hidden;
  color: var(--btn-text-color);
  background: var(--btn-color);
  transition: background 0.3s;
}

.button--mimas span {
  position: relative;
}

.button--mimas::before {
  content: "";
  background: var(--btn-color);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--mimas:hover::before {
  transform: translate3d(100%, 0, 0);
}
/*--------------------------------------------------------------
# Global Header End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Mobile Togal Manu Start
--------------------------------------------------------------*/
.offcanvas-body i {
  color: var(--blue-color);
}

/*--------------------------------------------------------------
# Mobile Togal Manu End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Page Title & Breadcrumbs Section Start
--------------------------------------------------------------*/
.page-title {
  background-color: var(--page-title-bg-color, #f8f9fa);
  padding: 30px 0;
  position: relative;
}

.page-title h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--black-color, #212529);
  margin: 0;
  line-height: 1.2;
}

.page-title .sub-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--black-color, #212529);
  margin: 0;
  padding: 10px 0;
  text-align: justify;
}

/* Banner wrapper */
.banner-img {
  width: 100%;
  min-height: 201px;
  max-width: 160px;
  overflow: hidden;
  border-radius: 8px;
}

.banner-img img.fixed-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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

/* Tablets (>=768px and <992px) */
@media (max-width: 992px) {
  .page-title h2 {
    font-size: 32px;
  }
  .page-title .sub-title {
    font-size: 18px;
    letter-spacing: 0.1px;
  }
  .banner-img {
    max-width: 180px;
  }
}

/* Large Mobile (>=426px and <768px) */
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 28px;
  }
  .page-title .sub-title {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.1px;
  }
  .banner-img {
    max-width: 160px;
  }
}

/* Medium Mobile (>=376px and <767px) */
@media (max-width: 767px) {
  .page-title h2 {
    font-size: 24px;
  }
  .page-title .sub-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .banner-img {
    display: none;
  }
}

/* Small Mobile (>=321px and <376px) */
@media (max-width: 375px) {
  .page-title h2 {
    font-size: 22px;
  }
  .page-title .sub-title {
    font-size: 15px;
  }
  .banner-img {
    display: none;
  }
}

/* Extra Small (<=320px) */
@media (max-width: 320px) {
  .page-title h2 {
    font-size: 20px;
  }
  .page-title .sub-title {
    font-size: 14px;
    line-height: 1.4;
  }
  .banner-img {
    display: none;
  }
}
/*--------------------------------------------------------------
# Page Title & Breadcrumbs Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section Start
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 55vh; */
  background-color: var(--white-color);
}

/* .hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
} */

/* .hero h1 span {
  color: var(--accent-color);
} */

/* .hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
} */

/* .hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
} */

/* .hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 1px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
} */

.carousel-inner .img-box {
  /* width: 400px; */
  /* height: 400px; */
  overflow: hidden;
}
.carousel-inner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Options: cover | contain | fill */
}

/* Custom Hero Slider Styles Start */
.hero .carousel {
  /* min-height: 50vh; */
  display: flex;
  align-items: center;
}

/* .hero .carousel-item {
  padding: 60px 0;
} */

/* .hero .carousel-indicators {
  bottom: 70px;
} */
/* Default (Laptop/Desktop) */
.hero .carousel-indicators {
  bottom: 70px;
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .hero .carousel-indicators {
    bottom: 60px;
  }
  .hero .carousel-indicators button {
    width: 30px !important;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .hero .carousel-indicators {
    bottom: 55px;
  }
  .hero .carousel-indicators button {
    width: 20px !important;
  }
}

.hero .carousel-indicators button {
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--orange-color);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
  opacity: 1;
}

.hero .carousel-indicators button.active {
  background-color: var(--blue-color);
  transform: scale(1.2);
}

/* .hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 25px;
  height: 25px;
  background-color: rgba(0, 0, 128, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
} */

/* .hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1;
  background-color: #000080;
} */

/* .hero .carousel-control-prev {
  left: -95px;
} */

/* .hero .carousel-control-next {
  right: -95px;
} */
/* .carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 1rem !important;
  height: 1rem !important;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
} */
/* Custom Hero Slider Styles End */

/* @media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
} */

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

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

/*--------------------------------------------------------------
# Hero Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# forms Section Start
--------------------------------------------------------------*/
.forms {
  background-color: var(--white-color);
  /* padding: 0px 0px 30px 0; */
}

/* Search Code Start */
.forms .search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-color);
  border: 1px solid var(light); /* light gray border */
  border-radius: 50px;
  padding: 8px 15px;
  width: 100%; /* take full width */
  max-width: 500px; /* limit max width */
  margin: 15px auto; /* center */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.forms .search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--black-color);
  background: transparent;
}

.forms .search-box input::placeholder {
  color: var(--darkgray);
}

.forms .search-box button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--darkgray);
  font-size: 16px;
  padding-left: 10px;
}

.forms .search-box button:hover {
  color: var(--blue-color);
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .forms .search-box {
    padding: 6px 12px;
    max-width: 90%; /* shrink on mobile */
  }
  .forms .search-box input {
    font-size: 13px;
  }
}

/* Search Code End */
.forms .forms-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .forms .forms-filters {
    gap: 6px;
    margin: 20px 0;
  }
}

.forms .forms-filters li {
  position: relative;
  overflow: hidden;
  padding: 6px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0.3rem;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--btn-hover-color);
  color: var(--white-text);
  z-index: 1;
}

@media (max-width: 768px) {
  .forms .forms-filters li {
    padding: 4px 18px;
    font-size: 12px;
  }
}

/* Hover animation (shine) */
.forms .forms-filters li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--button-color);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: 0;
}

/* Hover shine effect only for non-active tabs */
.forms .forms-filters li:hover:not(.filter-active)::before {
  transform: translate3d(100%, 0, 0);
}

.forms .forms-filters li span {
  position: relative;
  z-index: 1;
}

/* Hover animation only for non-active tabs */
.forms .forms-filters li:hover:not(.filter-active) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, #d34747, transparent 75%);
}

/* ✅ Active tab: fixed blue, no hover override */
.forms .forms-filters li.filter-active {
  background: var(--blue-color) !important;
  color: var(--white-text) !important;
  box-shadow: 0 6px 20px color-mix(in srgb, #2b8ae3, transparent 70%) !important;
  transform: none !important;
}

/* Disable hover animation on active tab */
.forms .forms-filters li.filter-active::before {
  background: none !important;
  transform: none !important;
}

.tab-content {
  display: none;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.tab-content.active {
  display: block;
}
/* Outer card background */
/* Outer card background */
.forms-tabs .tab-content {
  border-radius: 12px;
  padding: 0;
  margin: 0;
  /* padding: 15px;
  margin: 20px 0; */
}
.forms-tabs h3 {
  font-weight: 600;
  font-size: 14px;
}

/* Table base */
.forms-tabs table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--table-border);
}

/* Table header */
.forms-tabs table thead {
  background: var(--table-th-color);
}

.forms-tabs table th {
  font-weight: 600;
  text-align: left;
  padding: 12px;
  letter-spacing: 0.5px;
  color: var(--table-th-text);
}

/* Table rows */
.forms-tabs table td {
  padding: 16px 12px 12px 12px;
  color: #333;
  vertical-align: middle;
  border-top: 1px solid var(--table-border);
}

.forms-tabs td:last-child {
  white-space: nowrap; /* prevents text wrap inside the button cell */
}

.forms-tabs td .btn,
td button {
  white-space: nowrap; /* prevents wrapping inside the button itself */
}

/* Hover effect */
.forms-tabs table tbody tr:hover {
  background: var(--table-bg-color);
  transition: 0.3s;
}

.btn-create-pdf {
  background-color: #16a34a; /* $green-600 hex */
  border-color: #16a34a;
  color: #fff; /* Text color */
}

.btn-create-pdf:hover {
  background-color: #15803d; /* slightly darker on hover */
  border-color: #15803d;
}

.btn-favorites-red {
  background-color: #f87171; /* Replace with your $red-400 hex code */
  border-color: #f87171;
  color: #fff; /* Text color */
}

.btn-favorites-red:hover {
  background-color: #ef4444; /* Optional: slightly darker on hover */
  border-color: #ef4444;
}

/* Button style */
.forms-tabs .load-more {
  margin-top: 15px;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.3s;
}

/*--------------------------------------------------------------
# forms Section Start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Counter Section Start
--------------------------------------------------------------*/

.counter {
  min-height: 20vh;
  display: flex;
  align-items: center;
  background-image: url("/image/counterback.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* padding: 30px 0; */
  background-attachment: fixed;
}

.counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
}

.counter .container {
  position: relative;
  z-index: 1;
}

/* Animated highlights layer */
.counter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      600px 400px at 12% 25%,
      rgba(0, 31, 103, 0.1),
      transparent 60%
    ),
    radial-gradient(
      500px 300px at 88% 30%,
      rgba(3, 102, 214, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 50% 85%,
      rgba(255, 92, 26, 0.1),
      transparent 60%
    ),
    linear-gradient(120deg, rgba(13, 110, 253, 0.08), rgba(255, 255, 255, 0));
  background-size: 140% 140%;
  animation: counterMove 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes counterMove {
  0% {
    background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%;
  }
  50% {
    background-position: 30% 20%, 70% 10%, 40% 80%, 50% 50%;
  }
  100% {
    background-position: 60% 40%, 40% 20%, 30% 70%, 100% 100%;
  }
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

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

.counter-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-color);
  line-height: 1;
}

.counter-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: -3rem !important;
  margin-left: 15%;
}

@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  /* .counter-grid {
    grid-template-columns: fr;
  } */
  /* .counter {
    padding: 20px 0;
  } */
  .counter-number {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Counter Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Section Heading-Title Start
--------------------------------------------------------------*/

.heading-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 20px;
  text-align: center;
  flex-direction: column;
  /* padding: 0 15px; */
}

/* Watermark text */
.heading-title .water-mark-text {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 70px;
  color: #f3f3f3;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Subtitle */
.heading-title .sub-title {
  position: relative;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 700;
  color: #292626;
  z-index: 2;
  margin-bottom: 0;
  word-break: break-word; /* breaks long words on small screens */
}

/* 🔹 Responsive breakpoints */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .heading-title .water-mark-text {
    font-size: 50px;
  }
  .heading-title .sub-title {
    font-size: 22px;
    line-height: 1.5;
  }
}

/* Large mobile (425px - 768px) */
@media (max-width: 768px) {
  .heading-title .water-mark-text {
    font-size: 40px;
  }
  .heading-title .sub-title {
    font-size: 20px;
  }
}

/* Medium mobile (376px - 425px) */
@media (max-width: 425px) {
  .heading-title .water-mark-text {
    font-size: 32px;
  }
  .heading-title .sub-title {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* Small mobile (up to 375px) */
@media (max-width: 375px) {
  .heading-title .water-mark-text {
    font-size: 26px;
  }
  .heading-title .sub-title {
    font-size: 17px;
  }
}

/* Extra small (up to 320px) */
@media (max-width: 320px) {
  .heading-title .water-mark-text {
    font-size: 22px;
  }
  .heading-title .sub-title {
    font-size: 16px;
    line-height: 1.3;
  }
}
/*--------------------------------------------------------------
# Section Heading-Title End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# About Home Page Mini Section Start
--------------------------------------------------------------*/
.about-sect-image img {
  width: 400px;
  margin: auto;
  display: block;
  border-radius: 8px;
}

.mission-icon {
  padding: 4px 13px !important;
}

.mission-icon i {
  font-size: 30px !important;
}
.vision-icon {
  padding: 4px 13px !important;
}
.vision-icon i {
  font-size: 30px !important;
}

/* Tablet */
@media (max-width: 992px) {
  .about-sect-image img {
    max-width: 300px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-sect-image img {
    max-width: 220px;
  }
}

.about-right-bx p {
  font-size: 20px !important;
  line-height: 28px !important;
  margin-top: 10px;
}

.who-we-are-content-box h4 {
  margin-bottom: 15px;
  margin-top: 15px;
  font-family: var(--font-bold);
}

.who-we-are-content-box li {
  position: relative;
  padding: 0px 0px 10px 40px;
  line-height: 24px;
  font-size: 18px;
}

.who-we-are-content-box li:before {
  content: "";
  background-image: url(../image/pro.gif);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  position: absolute;
  top: 1px;
  left: 0;
}
/*--------------------------------------------------------------
# About Home Page Mini Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# How To Work Section Start
--------------------------------------------------------------*/
.howtowork {
  background-color: #f9f9f980;
}

.howtowork .card-section {
  /* background-color: var(--white-color); */
  /* padding: 40px 30px; */
  border-radius: 20px;
  /* box-shadow: 0 0 20px #ebeaea; */
  border: 0;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-main-sec .card {
  border: 1px dashed var(--blue-color);
  box-shadow: 0 0 6px #a5a5a5;
  padding: 40px 30px 20px;
  color: var(--default-color);
  position: relative;
  border-radius: 20px;
  transition: all 0.4s;
}

.testimonial-main-sec .icon-background-circle {
  position: absolute;
  right: 80px;
  top: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.testimonial-main-sec .icon-background-circle span {
  font-weight: 900;
  font-size: 35px;
}

.testimonial-main-sec .icon-background-circle:after {
  content: "";
  top: 40px;
  display: block;
  position: absolute;
  bottom: 0;
  background: #f9f9f9;
  height: 30px;
  width: 62px;
  z-index: -1;
  border-radius: 0 0 60px 60px;
  border: 1px dashed var(--blue-color);
  border-top: 0;
  box-shadow: 0 -5px 1px #f9f9f9;
}

.testimonial-main-sec .icon-background-circle .icon {
  width: 40px;
  height: 40px;
  background-color: var(--white-colore);
  border: 1px dashed var(--blue-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  position: relative;
}

.testimonial-main-sec .icon-background-circle .icon img {
  width: 20px;
  /* display: flex; */
}

.testimonial-main-sec .card .test-content {
  margin: 0 auto;
  text-align: left;
}

.testimonial-main-sec .card .test-content .testimonial-description p {
  /* font-family: var(--font-regular); */
  font-size: 16px;
  line-height: 26px;
  min-height: 150px;
  font-weight: 600;
}

.testimonial-main-sec .card .test-content .testimonial-auther {
  font-family: var(--font-bold);
  font-size: var(--fs-26);
  line-height: 40px;
  margin-top: 30px;
}

.testimonial-main-sec .card .test-content .testimonial-company {
  font-size: 18px;
  line-height: 30px;
  margin-top: 10px;
  color: var(--footer-bg-color);
}
.testimonial-main-sec .card .testimonial-auther {
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
}
.text-footer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--secondary-9);
  margin-top: 10px;
  padding-top: 10px;
}
.flag-icon img {
  height: 32px;
}
.test-ft-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

/*--------------------------------------------------------------
# How To Work Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# cta-section Section Start
--------------------------------------------------------------*/
/* .cta-section {
  padding: 60px 0px;
} */
.cta-section .cta-card {
  background-color: var(--blue-color);
  padding: 30px 50px;
  position: relative;
  border-radius: 20px;
}

.cta-section .cta-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--white-color) !important;
}
.cta-section .cta-card p {
  font-size: 20px;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.moving-y {
  animation: floatY 3s ease-in-out infinite;
}

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

.pulse {
  animation: pulse 2s ease-in-out infinite;
}
/* Make all testimonial cards equal height */
.card-section > div {
  display: flex;
}

.testimonial-main-sec,
.testimonial-main-sec .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*--------------------------------------------------------------
# cta-section Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Contact Us Page Css Start
--------------------------------------------------------------*/
.contact-page-contact-us-form {
  background: #cdefff; /* light blue */
  padding: 50px;
  border-radius: 10px;
  height: 100%;
}

.contact-lets-tack-image {
  display: flex !important;
  justify-content: end;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .contact-lets-tack-image img {
    display: none;
  }
}

.contact-lets-tack-image .img-fluid {
  max-width: 55% !important;
  height: auto;
}

/*--------------------------------------------------------------
Contact Us Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
About Us Page Css End
--------------------------------------------------------------*/
.darkbackground {
  background-color: #f9f9f9;
}

/* # Steps Section css Start */
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(
    in srgb,
    var(--header-hover-text),
    transparent 85%
  );
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.steps .step-item:last-child {
  margin-bottom: 0;
}

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: #fff0e9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--contrast-color);
}

.steps p {
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 14px;
  }

  .steps p {
    font-size: 13.6px;
  }
}
/* # Steps Section css End */

/*--------------------------------------------------------------
About Us Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
FAQ Page Css Start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--button-color);
}

.faq .faq-container .faq-item {
  /* background-color: #fff0e9; */
  border: 1px dashed var(--header-hover-text);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.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 h3 {
  color: var(--accent-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);
}

/* tabb code  */
/* Tabs container */
.tabs {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0 0 20px 0;
}

/* Each tab */
/* Default (Desktop & Laptop) */
.tabs li {
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  color: #333;
  font-size: 16px; /* default bigger */
  font-weight: 500;
}

/* Tablet screens (max-width: 991px) */
@media (max-width: 991px) {
  .tabs li {
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Small Tablets & Large Mobiles (max-width: 768px) */
@media (max-width: 768px) {
  .tabs li {
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (min-width: 992px) and (max-width: 1276px) {
  .tabs li {
    padding: 8px 18px; /* thodu kam / balanced padding */
    font-size: 10px; /* smaller font for medium-large screens */
  }
}
@media (min-width: 1277px) and (max-width: 1399px) {
  .tabs li {
    padding: 8px 18px; /* thodu kam / balanced padding */
    font-size: 13px; /* smaller font for medium-large screens */
  }
}

/* Hover effect */
.tabs li:hover {
  background: #afccee;
}

/* Active tab */
.tabs li.active {
  background: var(--white-color);
  color: var(--accent-color);
  border-bottom: 3px solid var(--button-color);
  font-weight: 600;
}
.tabs-dropdown {
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

/*--------------------------------------------------------------
FAQ Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Disclaimer Page Css Start
--------------------------------------------------------------*/
.point-section {
  padding: 20px 0px;
}
.point-section h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.point-section p {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  line-height: 2;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.disclaimer-point {
  position: relative;
  padding: 12px 12px;
  border: 3px dashed var(--button-color);
  border-radius: 6px; /* optional smooth edges */
  margin-top: 10px;
}
.disclaimer-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--default-color);
  font-weight: 600;
}
/* Icon circle on border */
.disclaimer-icon-right {
  position: absolute;
  bottom: -25px; /* place outside box */
  right: 20px; /* spacing from right */
  width: 60px;
  height: 60px;
  background-color: var(--white-color); /* match page bg */
  border: 3px dashed var(--button-color); /* circle border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* keep above box */
}

.disclaimer-icon-right img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  /* 🔥 Shake animation */
  animation: shake 1.2s infinite ease-in-out;
}
/* Shake keyframes */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  20% {
    transform: translateX(-3px) rotate(-5deg);
  }
  40% {
    transform: translateX(3px) rotate(5deg);
  }
  60% {
    transform: translateX(-3px) rotate(-3deg);
  }
  80% {
    transform: translateX(3px) rotate(3deg);
  }
}

/* Mobile (<=576px) */
@media (max-width: 576px) {
  .disclaimer-icon-right {
    width: 40px;
    height: 40px;
    bottom: -20px;
    right: 15px;
  }

  .disclaimer-icon-right img {
    width: 18px;
    height: 18px;
  }

  .disclaimer-point {
    margin: 15px 10px 35px; /* extra bottom space for icon */
  }
}

/* Tablets (577px–768px) */
@media (max-width: 768px) {
  .disclaimer-icon-right {
    width: 48px;
    height: 48px;
    bottom: -22px;
    right: 18px;
  }

  .disclaimer-icon-right img {
    width: 20px;
    height: 20px;
  }
}

/* Highlight text underline style */
.highlight-text {
  background-color: #f8f9fa;
  padding: 2px 4px;
  border-radius: 3px;
  color: var(--header-hover-text);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--header-hover-text);
  border-radius: 2px;
}

/*--------------------------------------------------------------
Disclaimer Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 Privacy Policy Page Css Start
--------------------------------------------------------------*/

.privacy-policy {
  padding: 10px 0px;
}
.privacy-policy h2 {
  font-size: 25px;
  line-height: 42px;
  font-weight: 600;
  color: var(--accent-color);
}
.privacy-policy p {
  font-size: 20px;
  font-weight: 400;
  color: var(--default-color);
  line-height: 36px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.privacy-policy a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

/*--------------------------------------------------------------
 Privacy Policy Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 Terms and Conditions Page Css Start
--------------------------------------------------------------*/

.terms-conditions {
  padding: 10px 0px;
}
.terms-conditions h2 {
  font-size: 25px;
  line-height: 42px;
  font-weight: 600;
  color: var(--accent-color);
}
.terms-conditions p {
  font-size: 20px;
  font-weight: 400;
  color: var(--default-color);
  line-height: 36px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.terms-conditions a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.terms-conditions ul {
  padding-left: 1.6rem;
}
.terms-conditions li {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-left: 0;
}

/*--------------------------------------------------------------
 Terms and Conditions Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 All Forms Page Css start
--------------------------------------------------------------*/
/* add provide to title section for new add forms code Start */
.add-container {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    var(--contrast-color),
    var(--accent-color) 25%,
    var(--accent-color) 75%,
    var(--contrast-color)
  );
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  position: relative;
  border-radius: 50px 20px;
}

.scrolling-text {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.scrolling-text span {
  display: inline-block;
  margin: 0 2rem;
}

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

/* Optional: pause on hover */
.add-container:hover .scrolling-text {
  animation-play-state: paused;
}
/* add provide to title section for new add forms code End */
.all-forms {
  min-height: 80vh;
  /* background-color: #f8f9fa; */
  background-color: #ffece0;
  /* background-color: #f6f9fe; */
  /* background-color: #f6f9fe; */
}
.all-forms .search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 8px 15px;
  width: 100%;
  max-width: 500px;
  /* margin: 15px; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.all-forms .search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #333;
  background: transparent;
}

.all-forms .search-box input::placeholder {
  color: #9ca3af;
}

.all-forms .search-box button {
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  font-size: 14px;
  padding-right: 10px;
}

.all-forms .search-box button:hover {
  color: #2563eb;
}

@media (max-width: 576px) {
  .all-forms .search-box {
    padding: 6px 12px;
    max-width: 90%;
  }
  .all-forms .search-box input {
    font-size: 13px;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.badge-soft {
  border-radius: 999px;
  font-weight: 600;
  padding: 1px 10px;
  font-size: 0.75rem;
  text-transform: capitalize;
}
.badge-soft.blue {
  background: #e7f1ff;
  color: #0d6efd;
  border: 1px dashed;
}
.badge-soft.gray {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid;
}
.like {
  color: #a60100;
}

.unlike {
  color: #ffffff;
}
/*--------------------------------------------------------------
All Forms Page Css End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Floating feedback button Css Start
--------------------------------------------------------------*/
/* Floating Feedback Button */
.feedback-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  transition: all 0.3s ease;
  z-index: 9999;
}
.feedback-btn:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* Feedback Popup */
.feedback-popup {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

/* Active state (open) */
.feedback-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feedback-header {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 4px;
}

@media (max-width: 576px) {
  .feedback-popup {
    right: 10px;
    bottom: 70px;
    width: 90%;
  }
  .feedback-btn {
    right: 10px;
    bottom: 15px;
    padding: 8px 14px;
  }
}
/*--------------------------------------------------------------
Floating feedback button Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 Flash Msg Page Css Start
--------------------------------------------------------------*/
/* Flash Messages Styling */
.flash-messages-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  width: 90%;
}

.flash-message {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 8px;
  margin-bottom: 10px;
  animation: slideInRight 0.5s ease-out;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .flash-messages-container {
    top: 70px;
    right: 10px;
    left: 10px;
    max-width: none;
    width: auto;
  }
}

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

/* Alert color variations */
.alert-success {
  background-color: #d1eddd;
  color: #0f5132;
  border-left: 4px solid #198754;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #0dcaf0;
}
/*--------------------------------------------------------------
 Flash Msg Page Css End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials Section Start
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}
.testimonials .card {
  box-shadow: 6px 6px 5px #e6c5ad;
}
.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

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

.swiper.mySwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding: 16px !important;
}

.testimonials .swiper-navigation {
  position: relative;
  margin: 25px 0 7px 0;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  /* background: var(--accent-color); */
  border: 1px dashed var(--blue-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}
.mySwiper .swiper-wrapper {
  align-items: stretch; /* Ensures slides align in height */
}

.mySwiper .swiper-slide {
  display: flex;
  height: auto; /* Let content dictate height */
}

.mySwiper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  min-height: 200px; /* optional: ensures visual consistency */
  transition: all 0.3s ease;
}

.mySwiper .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
/*--------------------------------------------------------------
# Testimonials Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
Blog Section Start
--------------------------------------------------------------*/

.card-img-top {
  width: 100%;
  height: 200px; /* or adjust to your preference */
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.Blog .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.Blog .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.Blog .card-body {
  border: 1.5px dashed #327fea; /* 👈 dashed border */
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 20px;
  background: #fff;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}

.Blog .card-footer {
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  text-align: right;
}

/*--------------------------------------------------------------
Blog Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
 Blog Details Section Start
--------------------------------------------------------------*/
.blog-details {
  background-color: var(--table-bg-color);
}

.details-point {
  background-color: var(--white-color);
  border-radius: 8px;
  margin-bottom: 10px;
}
.blog-details .title {
  color: rgb(0, 0, 0);
  background: var(--table-border);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  margin: 0;
}
.blog-details .sub-title {
  border-bottom: 2px dashed var(--blue-color);
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color: var(--blue-color);
  font-weight: 600;
  text-transform: uppercase;
  /* line-height: 10px; */
}
.blog-details .title-description {
  border: 1px dashed var(--orange-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 10px;
}
.blog-details .work-flow {
  padding: 4px 8px;
  background-color: var(--darkgray);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block;
  color: #ffffff;
}
.workflow-point {
  list-style: decimal;
  padding-left: 16px;
  color: #333;
  line-height: 1.8;
  font-size: 1rem;
}

.workflow-point li:hover {
  background-color: #eef5ff;
}

.blog-details li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
}

/* Accordion Wrapper */
.faq .details-point {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Title Style */
.faq .details-point .title {
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Body Hidden but animated */
.faq .details-point .title-description {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  border: none;
  transition: max-height 0.35s ease-in-out, padding 0.3s ease;
}

/* When open */
.faq .details-point.active .title-description {
  padding: 16px;
  border: 1px dashed var(--contrast-color);
  border-top: none;
}

/* Arrow Icon */
.arrow-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.details-point.active .arrow-icon {
  transform: rotate(90deg);
}

/* Footer Section Blog Details Start */
.footer-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px 30px;
  transition: all 0.3s ease;
}

.footer-header {
  background: linear-gradient(90deg, #b40000, #3636e2);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-header h5 {
  font-size: 18px;
  margin: 0;
}

.intro {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-left {
  flex: 1;
  min-width: 260px;
}

.footer-left h6 {
  color: #0f4ba1;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  background: #f0fff0;
  border-left: 4px solid #73d64c;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 15px;
}

.footer-warning {
  margin-top: 25px;
  background-color: #f4f8ff;
  border: 4px dashed #365ee2;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-body {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    margin-top: 10px;
  }
}

/* Footer Section Blog Details End */
/*--------------------------------------------------------------
 Blog Details Section End
--------------------------------------------------------------*/

.new-badge-orange {
  position: absolute;
  top: 1px;
  left: -5px;
  background: #ff3b30;
  color: white;
  padding: 0px 9px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.new-badge-blue {
  position: absolute;
  top: 1px;
  left: -5px;
  background: #0f4ba1;
  color: white;
  padding: 0px 9px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/*--------------------------------------------------------------
 Loader Css Start
--------------------------------------------------------------*/

/* Show loader===================================================================================== */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(180, 210, 255, 0.5),
    rgba(40, 80, 160, 0.9)
  );
  backdrop-filter: blur(8px);

  z-index: 10000;
  visibility: hidden; /* Initially hidden */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#loader.show {
  visibility: visible;
  opacity: 1;
}

/* Flexbox to align both loaders side by side */
.loader-container {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between loaders */
}

/* Modern Stylish Text Loader */
.loader {
  font-size: 23px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #403593; /* Darker shade for readability */
  background: conic-gradient(
        from -135deg at 100% 50%,
        #ffffff 90deg,
        transparent 0
      )
      text no-repeat,
    conic-gradient(from -135deg at 1lh 50%, transparent 90deg, #ffffff 0) text
      no-repeat;
  animation: loading-text 1.8s linear infinite;
  text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8);
}

.loader:before {
  content: "Creating Your PDF...";
}

@keyframes loading-text {
  0% {
    background-size: 0 200%;
    background-position: 0 0, 100% 0;
  }
  50% {
    background-size: calc(60% + 0.5lh) 200%;
    background-position: 0 0, 100% 0;
  }
  50.01% {
    background-size: calc(60% + 0.5lh) 200%;
    background-position: 0 100%, 100% 100%;
  }
  100% {
    background-size: 0 200%;
    background-position: 0 100%, 100% 100%;
  }
}

/* Smooth Glowing Spinner */
.spinner-border {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.spinner-border::before,
.spinner-border::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #ffffff; /* White border for contrast */
  animation: prixClipFix 1.5s linear infinite;
}

.spinner-border::after {
  border-color: #ff3d00; /* Red color for better visibility */
  animation: prixClipFix 1.5s linear infinite,
    rotate 0.5s linear infinite reverse;
  inset: 6px;
}

/* Smooth rotation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Improved clip-path animation */
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

/*--------------------------------------------------------------
 Loader Css End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
  MODAL CSS START Popup WITH Forms Details
--------------------------------------------------------------*/
/* FIXED WIDTH + HEIGHT POPUP */
#reviewModal .modal-dialog {
  max-width: 600px; /* Fixed width */
  width: 95%;
}

#reviewModal .modal-content {
  height: 500px; /* FIXED HEIGHT */
  display: flex;
  flex-direction: column;
}

#reviewModal .modal-body {
  flex: 1;
  overflow-y: auto; /* SCROLLING CONTENT */
  padding: 0 !important;
}

#reviewModal .table-responsive {
  max-height: 100%;
  overflow-y: auto; /* TABLE SCROLLS */
}

/* MOBILE FIX */
@media (max-width: 576px) {
  #reviewModal .modal-content {
    height: 85vh; /* smaller height for mobile */
  }
  #reviewModal table {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
  MODAL CSS END Popup WITH Forms Details
--------------------------------------------------------------*/
