* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none !important;
  list-style: none;
  text-decoration: none;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Luciole-Regular";
  background-color: var(--white);
  position: relative;
}

html.dark-mode body{
  background-color: var(--black);
}
label {
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

li {
  margin: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: unset;
}

a:hover {
  text-decoration: none;
  color: unset;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--secondary-color);
}

html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6 {
  color: var(--white);
}

p {
  margin-bottom: 0;
  margin-top: 0;
}

@font-face {
  font-family: "Luciole-Bold";
  src: url("../fonts/Luciole-Bold.woff2") format("woff2"),
    url("../fonts/Luciole-Bold.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Luciole-Regular";
  src: url("../fonts/Luciole-Regular.woff2") format("woff2"),
    url("../fonts/Luciole-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #10c3bd;
  --secondary-color: rgba(0, 0, 0, 0.8);
  --white: #fff;
  --gray: rgba(0, 0, 0, 0.03);
  --light-text: rgba(0, 0, 0, 0.55);
  --orange: #f27721;
}

/* Dark Mode Color Variables */
html.dark-mode {
  --primary-color: #10c3bd;
  --secondary-color: #ffffff1c;
  --white: #fffaf2;
  --gray: rgba(0, 0, 0, 0.03);
  --light-text: #ffffffb3;
  --black: #040404;
  --blur: blur(8px);
  --border: 1px solid #ffffff1a;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1224px;
  }
}

/* Section Styles */

h1 {
  font-size: 50px;
}

.title-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.title-box p {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: var(--secondary-color);
  font-size: 18px;
}

html.dark-mode .title-box p {
  color: var(--light-text);
}

.title-box h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

html.dark-mode .title-box h2 {
  color: var(--white);
}

.title-box span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.title-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pad-top {
  padding-top: 120px;
}

.pad-bottom {
  padding-bottom: 120px;
}

.btn-primary {
  font-size: 16px;
  outline: none;
  text-transform: capitalize;
  padding: 8px 32px;
  color: var(--white);
  background-color: var(--secondary-color);
  border: unset;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: unset;
  display: inline-block;
}

html.dark-mode .btn-primary {
  border: var(--border);
  backdrop-filter: var(--blur);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: var(--primary-color);
  box-shadow: unset !important;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: unset;
}
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: unset;
}
.header-actions .btn-text:hover {
  background-color: var(--gray);
  border-radius: unset;
}
.card-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--secondary-color);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.card-btn:hover {
  background: var(--gray);
  color: var(--secondary-color);
}

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

.sub-menu-item .showOnHover {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 4px;
  left: 0;
}

.ant-dropdown-menu-vertical::after {
  content: " ";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-135deg) translateY(-0.5px);
  top: -7px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.1);
  transform: rotate(-135deg) translateY(-0.5px);
  position: absolute;
  z-index: -1;
  display: block;
  width: 11.3137085px;
  height: 11.3137085px;
  background: linear-gradient(135deg, transparent 40%, var(--white) 0);
  border-radius: 0 0 2px;
  pointer-events: none;
}

html.dark-mode .ant-dropdown-menu-vertical::after {
    background: linear-gradient(135deg, transparent 40%, var(--secondary-color) 0);
}
/* Header and Navigation Styles */
.header {
  background: var(--white);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

html.dark-mode .header {
  background: var(--black);
}
.header.scrolled {
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html.dark-mode .header.scrolled {
  border-bottom: 1px solid #ffffff1c;
  background: var(--black);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0px;
}

.mobile-nav-toggle {
  width: 100%;
  display: block;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
}

.hamburger-icon {
  margin-left: 8px;
}
.mobile-nav-actions {
  display: flex;
}
.desktop-nav {
  display: none;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu-items {
  display: flex;
  align-items: center;
  margin-left: 32px;
}

.nav-item {
  padding: 0px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item:hover .nav-link {
  color: var(--primary-color);
}

html.dark-mode .nav-item:hover {
  color: var(--primary-color);
}

html.dark-mode .dropdown-arrow {
  filter: invert(503%) sepia(879%) saturate(100%) hue-rotate(0deg)
    brightness(130%) contrast(80%) !important;
}

.nav-item:hover .dropdown-arrow,
.nav-item .nav-link:hover .dropdown-arrow {
  filter: invert(76%) sepia(79%) saturate(3761%) hue-rotate(132deg)
    brightness(95%) contrast(87%) !important    ;
}

.navbar-logo {
  text-decoration: none;
}

.navbar-logo img,
.mobile-nav-logo img,
.drawer-header img {
  max-width: 150px;
}

/* Logo theme switching */
.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

html.dark-mode .logo-light {
  display: none;
}

html.dark-mode .logo-dark {
  display: block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.dropdown-arrow {
  margin-left: 4px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary-color);
  padding: 0;
  font-size: 16px;
}

html.dark-mode .nav-link {
  color: var(--white);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

/* Active navigation styles */
.nav-item.active .nav-link,
.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-item.active {
  color: var(--primary-color);
}
html.dark-mode .ant-dropdown-menu-item .sub-menu-item,
html.dark-mode .sub-menu-item {
    color: var(--white);
  }
/* Submenu active styles */
.ant-dropdown-menu-item.active .sub-menu-item,
.sub-menu-item.active {
  color: var(--primary-color) !important;
}
.ant-dropdown-menu-item:hover .sub-menu-item,
.sub-menu-item:hover {
  color: var(--primary-color) !important;
}
.mobile-submenu .sub-menu-item.active .showOnHover {
    opacity: 1;
}
.mobile-submenu .sub-menu-item.active img:not(.showOnHover) {
    opacity: 0;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

html.dark-mode .header-actions .btn {
  color: var(--white);
}

html.dark-mode .ant-dropdown-menu {
  background: var(--black) !important;
  border: 1px solid var(--secondary-color) !important;
}
/* Mobile Drawer Styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease;
}

.mobile-drawer.drawer-open {
  visibility: visible;
  opacity: 1;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-open .drawer-mask {
  opacity: 1;
}

.drawer-content-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.drawer-open .drawer-content-wrapper {
  transform: translateX(0);
}

.drawer-content {
  height: 100%;
  background: var(--white);
  overflow: auto;
  border-radius: 0 8px 8px 0;
}

html.dark-mode .drawer-content {
  background: var(--black);
  border: var(--border);
}

.drawer-wrapper-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.drawer-header {
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html.dark-mode .drawer-header {
  border-bottom: var(--border);
}

.drawer-header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.drawer-title {
  display: flex;
  align-items: center;
}

.mobile-divider {
  height: 1px;
  background-color: #f0f0f0;
  margin-top: 12px;
}

html.dark-mode .mobile-divider {
  background-color: #ffffff1a;
}

/* Mobile Menu Styles */
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  margin-top: 12px;
}

.mobile-menu-item {
  position: relative;
  display: block;
}

.mobile-menu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-title:hover {
  color: var(--primary-color);
}

html.dark-mode .mobile-menu-title {
  color: var(--white);
}
.menu-title-content {
  flex: 1;
}

.menu-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Mobile dropdown items styling */
.mobile-submenu .ant-menu-item {
  padding: 12px 24px 12px 24px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

html.dark-mode .mobile-submenu .ant-menu-item {
  border-bottom:  var(--border);
}

.mobile-submenu .ant-menu-item:hover {
  background-color: #f5f5f5;
}
html.dark-mode .mobile-submenu .ant-menu-item:hover {
  background-color: var(--secondary-color);
}
.mobile-submenu .ant-menu-item:last-child {
  border-bottom: none;
}
html.dark-mode .mobile-submenu .ant-menu-item:last-child {
    border-bottom: none;
  }
.mobile-submenu .ant-menu-title-content {
  display: flex;
  align-items: center;
}

.mobile-submenu .sub-menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  position: relative;
  gap: 12px;
}

.mobile-submenu .sub-menu-item:hover {
  color: var(--primary-color);
}

html.dark-mode .mobile-submenu .sub-menu-item {
  color: var(--white);
}
.mobile-submenu .css-1hy690m {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
}

.mobile-submenu .showOnHover {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-submenu .sub-menu-item:hover .showOnHover {
  opacity: 1;
}

.mobile-submenu .sub-menu-item:hover img:not(.showOnHover) {
  opacity: 0;
}

.mobile-submenu img {
  transition: opacity 0.3s ease;
}

.mobile-nav-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

html.dark-mode .mobile-nav-item {
  border-bottom: var(--border);
}
.mobile-nav-item:last-child {
  border-bottom: none;
}

html.dark-mode .mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 12px 24px;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
}
html.dark-mode .mobile-nav-link  {
  color: var(--white);
}

.mobile-text-primary {
  font-size: 16px;
  font-weight: var(--font-weight-bolder);
  color: var(--primary-color);
  text-align: inherit;
  font-family: inherit;
  margin-bottom: unset;
  padding: 12px 24px;
}

/* Desktop dropdown styles */
.ant-dropdown-menu {
  list-style: none;
  margin: 0;
  border: none;
  background: transparent;
  position: relative;
  display: none;
}

.ant-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: transparent;
}

.ant-dropdown-menu-item {
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
}

.ant-dropdown-menu-item:hover {
  background-color: #f5f5f5;
}
html.dark-mode .ant-dropdown-menu-item:hover {
  background-color: var(--secondary-color);
}

.ant-dropdown-menu-title-content {
  display: flex;
  align-items: center;
}

.ant-dropdown-menu-title-content .sub-menu-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  padding: 4px 0;
  position: relative;
  gap: 12px;
  color: var(--secondary-color);
}

.ant-dropdown-menu-title-content .sub-menu-item img {
  width: 32px;
  height: 32px;
}

.ant-dropdown-menu .sub-menu-item:hover {
  color: var(--primary-color);
}

.ant-dropdown-menu-title-content .css-1hy690m {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
  font-size: 14px;
}



.ant-dropdown-menu-title-content .showOnHover {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ant-dropdown-menu-title-content .sub-menu-item:hover .showOnHover {
  opacity: 1;
}

.ant-dropdown-menu-title-content .sub-menu-item:hover img:not(.showOnHover) {
  opacity: 0;
}

.ant-dropdown-menu-title-content .sub-menu-item.active .showOnHover {
  opacity: 1;
}

.ant-dropdown-menu-title-content img {
  transition: opacity 0.3s ease;
}

.mobile-submenu {
  border-right: none;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  /* Hidden by default */
}

/* Ensure mobile dropdown is hidden by default */
#mobile_products_dropdown {
  display: none !important;
}

/* Only show when explicitly opened via JavaScript */
#mobile_products_dropdown.show {
  display: block !important;
}

/* header-end */

/* footer-start */

.footer {
  background: var(--secondary-color);
  color: white;
}

html.dark-mode .footer {
  background: unset;
  border-top: var(--border);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-address {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: normal;
  font-size: 14px;
  max-width: 70%;
}

.footer-email {
  color: var(--primary-color);
  margin-top: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--secondary-color);
  padding: 32px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

html.dark-mode .footer-bottom {
  border-top: 1px solid var(--secondary-color);
  color: white;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-support p {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 14px;
}

.support-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.support-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 14px;
}

.support-icon {
  width: 20px;
  height: 20px;
}

.footer .footer-section-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* FAQ Section */
.faq-wrapper .title-box {
  text-align: left;
  margin: unset;
  width: 100%;
}
.faq-wrapper .title-box p {
  max-width: 100%;
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin: 0;
}

.faq-title-highlight {
  color: var(--primary-color);
  display: block;
}

.faq-contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px ;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray);
}

html.dark-mode .faq-contact-card {
  background: var(--secondary-color);
  border: var(--border);
  backdrop-filter: var(--blur);
}

.faq-contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 0 0 15px 0;
}

html.dark-mode .faq-contact-title {
  color: var(--white);
}

.faq-contact-text {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 25px 0;
}

html.dark-mode .faq-contact-text {
  color: var(--light-text);
}

.faq-contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-contact-phone:last-child {
  margin-bottom: 0;
}

.faq-contact-phone img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.faq-right {
  display: flex;
  flex-direction: column;
}

/* Bootstrap FAQ Accordion Custom Styling */
.faq-right .accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-right .accordion-item {
  background: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

html.dark-mode .faq-right .accordion-item {
  background: var(--secondary-color);
  border: var(--border);
  backdrop-filter: var(--blur);
}

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

.faq-right .accordion-button {
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  color: var(--secondary-color);
}

html.dark-mode .faq-right .accordion-button.collapsed .faq-question-text {
  color: var(--black);
}
.faq-right .accordion-button:not(.collapsed) {
  background: var(--gray);
  color: var(--white);
}

.faq-right .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-right .accordion-button::after {
  display: none; /* Hide Bootstrap's default arrow */
}

.faq-question-text {
  font-size: 18px;
  color: var(--secondary-color);
  transition: color 0.3s ease;
  flex: 1;
  margin-right: 10px;
}

html.dark-mode .faq-question-text {
  color: var(--white);
}

.faq-icon {
  font-size: 26px;
  color: var(--secondary-color);
  transition: all 0.4s ease-in-out;
  line-height: 1;
  min-width: 20px;
  text-align: center;
  padding-bottom: 6px;
}

.faq-right .accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(90deg);
}
.faq-right .accordion-button:focus {
  border: unset;
  box-shadow: unset;
}
.faq-right .accordion-collapse {
  transition: all 0.3s ease;
}

.faq-right .accordion-body {
  padding: 16px;
  background: var(--gray);
  border-top: 1px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(16, 195, 189, 0.25); /* Enhanced shadow */
}

.faq-right .accordion-body p {
  margin: 0;
  color: var(--light-text);
  font-size: 16px;
}

.faq-right .accordion-item:first-of-type {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.faq-right .accordion-item:last-of-type {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Creative CTA Banner */
.pricing-section {
  background: var(--primary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

html.dark-mode .pricing-section {
  background: var(--secondary-color);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 30px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.badge-icon {
  font-size: 1.2rem;
  margin-right: 8px;
  animation: sparkle 1.5s ease-in-out infinite;
}

.badge-text {
  color: var(--white);
  font-size: 14px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  max-width: 800px;
  margin: auto;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 550px;
  margin: auto;
  margin-bottom: 40px;
}

.btn-primary.secondary {
  min-width: 160px;
  padding: 16px 32px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: var(--primary-color);
  border: none;
  color: var(--white);
  text-align: center;
  display: inline-block;
}

html.dark-mode .btn-primary.secondary {
  background: var(--secondary-color);
  color: white;
  backdrop-filter: var(--blur);
  border: var(--border);
}

.btn-primary.secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}
.btn-primary.secondary:hover::before {
  left: 100%;
}

.btn-primary.secondary:hover {
  background-color: var(--secondary-color);
}

.pricing-section .btn-primary.secondary {
  background: var(--secondary-color);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
/* Trust indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.trust-number {
  display: block;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trust_label {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE CSS - ORGANIZED BY BREAKPOINT
   ======================================== */

/* Large Desktop - 1400px and up */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1224px;
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .hero-section {
    grid-template-areas:
      "content image"
      "actions image";
    text-align: left;
  }

  .app-downloads {
    justify-content: flex-start;
  }

  .mobile-only {
    display: none;
  }
}

/* Large Tablet - 1199px and down */
@media (max-width: 1199px) {
  .nav-item {
    padding: 0px 12px;
  }

  .nav-link {
    font-size: 14px;
  }

  .navbar .btn-primary {
    font-size: 14px;
  }
}

/* Tablet - 1024px and down */
@media (max-width: 1024px) {
  .btn-primary {
    padding: 6px 8px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-section {
    padding: 0 20px;
    text-align: center;
  }

  .app-downloads {
    justify-content: center;
  }

  .sub-menu-item .showOnHover {
    top: 0px;
    left: 0;
  }

  .title-box h2 {
    font-size: 32px;
  }

  .title-box span {
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)) !important;
    gap: 50px !important;
  }

  .footer .footer-section-links {
    justify-content: unset !important;
    gap: 50px !important;
  }

  .faq-container {
    gap: 20px;
  }

  .faq-title {
    font-size: 2.5rem;
  }
}

/* Small Tablet - 991px and down */
@media (max-width: 991px) {
  h3 {
    font-size: 22px;
  }

  .section-title {
    font-size: 24px;
  }
}

/* Mobile Large - 768px and down */
@media (max-width: 768px) {
  .footer-address {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 16px 0px;
  }

  .pad-top {
    padding-top: 60px;
  }

  .pad-bottom {
    padding-bottom: 60px;
  }

  .title-box {
    margin-bottom: 40px;
  }

  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-contact-card {
    padding: 20px;
  }

  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .cta-main-btn,
  .cta-secondary-btn {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    font-size: 1rem;
  }

  .trust-indicators {
    gap: 30px;
  }

  .trust-number {
    font-size: 2rem;
  }

  .trust_label {
    font-size: 0.8rem;
  }

  .decoration-circle {
    display: none;
  }

  .pattern-line {
    display: none;
  }
  .faq-wrapper .title-box {
    text-align: center;
}
}

/* Mobile Medium - 575px and down */
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 42px;
  }

  h4 {
    font-size: 20px;
  }

  .title-box span {
    font-size: 16px;
  }

  .pad-top {
    padding-top: 30px;
  }

  .pad-bottom {
    padding-bottom: 30px;
  }

  .title-box {
    margin-bottom: 30px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .navbar-logo img,
  .mobile-nav-logo img,
  .drawer-header img {
    max-width: 120px;
  }

  .cta-badge {
    padding: 6px 14px;
    animation: unset;
  }

  .badge-icon {
    font-size: 1rem;
  }
}

/* plugin Styles */
.page.type-page.status-publish.hentry .entry-header {
  display: none;
}

.page.type-page.status-publish.hentry {
  padding: 100px 0px;
}

.um input[type="submit"].um-button {
  background: var(--secondary-color) !important;
}

.um input[type="submit"].um-button:hover {
  background-color: var(--primary-color) !important;
  box-shadow: unset !important;
}
.um-half {
  position: relative;
  overflow: hidden;
}
.um-half::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}
.um-half:hover::before {
  left: 100%;
}
.um-field-label label {
  font-weight: unset !important;
}

.um .um-field-label,
.um-field-checkbox-option,
.um-field-radio-option {
  color: var(--light-text) !important;
}

.um .um-form input:-webkit-autofill {
  -webkit-text-fill-color: var(--secondary-color) !important;
}
.um-887.um .um-profile-body {
  max-width: unset !important;
}
input[name="confirm_user_password-885"]::placeholder {
  color: transparent !important;
}

.theme-toggle-btn {
  background-color: transparent;
}
.theme-toggle-btn i {
  color: var(--white);
}

html.dark-mode .hero-subtitle {
  color: var(--light-text);
}

.theme-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 1000;
  background-color: var(--secondary-color);
  padding: 5px 10px 5px 10px;
  border-radius: 50% 0 0 50%;
}

html.dark-mode .theme-toggle-btn {
    background-color: var(--primary-color);
}


.blog-card:empty,
.ajax-response:empty {
    display: none !important;
}
