/* Our Common Utility CSS  */

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #f46d22;
  --grey: #373737;
  --yellow: #fd9539;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
  background: #fff;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Oswald", sans-serif;
}

b,
strong {
  font-weight: 800 !important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-margin {
  margin-bottom: 100px;
}

.top-margin {
  margin-top: 100px;
}

.bottom-padding {
  padding-bottom: 100px;
}

.top-padding {
  padding-top: 100px;
}

/* Max Width  */

.max-1280 {
  max-width: 83%;
}

/* Heading  */

.main-heading {
  font-weight: 500;  
  font-size: 63px;
  text-transform: capitalize;
  color: var(--black);
  font-family: "Barlow", sans-serif;
  line-height: 1.071428571428571;
  
}

.new-banner .main-heading {
  color: var(--white);
}

.primary-heading {
  font-weight: 600;
  font-size: 60px;
  color: var(--black);
}

.secondry-heading {
  font-weight: 600;
  font-size: 50px;
  color: var(--black);
}

p {
  font-size: 22px;
  line-height: 1.5;
}

/* Primary Button  */

.common-primary-btn {
  border-radius: 80px;
  background: linear-gradient(90deg, #f89d1b 0%, #e95a24 100%);
  font-weight: 600;
  font-size: 20px;
  padding: 5px 25px 5px 5px;
  text-decoration: none;
  color: var(--white);
  transition: background-color 0.4s ease-in-out;
  display: flex;
  align-items: center;
}

.common-primary-btn:hover {
  background: linear-gradient(90deg, #e95a24 0%, #f89d1b 100%);
}

.common-primary-btn i {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--black);
  font-size: 18px;
  flex-shrink: 0;
}

/* Secondry Button  */

.common-secondry-btn {
  border-radius: 80px;
  font-weight: 600;
  font-size: 20px;
  background: transparent;
  padding: 5px 25px 5px 5px;
  border: 1px solid var(--orange);
  text-decoration: none;
  color: var(--black);
}

.common-secondry-btn:hover {
  background: linear-gradient(90deg, #f89d1b 0%, #e95a24 100%);
  color: var(--white);
}

.common-secondry-btn i {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #f89d1b 0%, #e95a24 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--white);
  font-size: 18px;
}

/* The actual fix */
.common-secondry-btn:hover i {
  background: var(--white);
  color: var(--black);
}

/* Image  */

img {
  border-style: none;
}

/* Responsive  */

@media (max-width: 1850px) {
  /* Spacing  */

  .bottom-margin {
    margin-bottom: 80px;
  }

  .top-margin {
    margin-top: 80px;
  }

  .bottom-padding {
    padding-bottom: 80px;
  }

  .top-padding {
    padding-top: 80px;
  }

  /* Max Width  */

  .max-1280 {
    max-width: 85%;
  }

  /* Heading  */

  .main-heading {
    font-size: 50px;
  }

  .primary-heading {
    font-size: 45px;
  }

  .secondry-heading {
    font-size: 38px;
  }

  p {
    font-size: 17px;
    line-height: 1.6;
  }

  /* Primary Button  */

  .common-primary-btn {
    font-weight: 500;
    font-size: 16px;
    padding: 5px 20px 5px 5px;
  }

  .common-primary-btn i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 7px;
    font-size: 14px;
  }

  /* Secondry Button  */

  .common-secondry-btn {
    font-weight: 500;
    font-size: 16px;
    padding: 5px 20px 5px 5px;
  }

  .common-secondry-btn i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 7px;
    font-size: 14px;
  }
}

@media (max-width: 1439px) {
  /* Spacing  */

  .bottom-margin {
    margin-bottom: 70px;
  }

  .top-margin {
    margin-top: 70px;
  }

  .bottom-padding {
    padding-bottom: 70px;
  }

  .top-padding {
    padding-top: 70px;
  }

  .max-1280 {
    max-width: 87%;
  }

  /* Heading  */

  .main-heading {
    font-size: 50px;
  }

  .primary-heading {
    font-size: 38px;
  }

  .secondry-heading {
    font-size: 32px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Primary Button  */

  .common-primary-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-primary-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }

  /* Secondry Button  */

  .common-secondry-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-secondry-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }
}

@media (max-width: 1199px) {
  /* Spacing  */

  .bottom-margin {
    margin-bottom: 60px;
  }

  .top-margin {
    margin-top: 60px;
  }

  .bottom-padding {
    padding-bottom: 60px;
  }

  .top-padding {
    padding-top: 60px;
  }

  .max-1280 {
    max-width: 90%;
  }

  /* Heading  */

  .main-heading {
    font-size: 45px;
  }

  .primary-heading {
    font-size: 35px;
  }

  .secondry-heading {
    font-size: 30px;
  }

  p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Primary Button  */

  .common-primary-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-primary-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }

  /* Secondry Button  */

  .common-secondry-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-secondry-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }
}

@media (max-width: 991px) {
  /* Spacing  */

  .bottom-margin {
    margin-bottom: 50px;
  }

  .top-margin {
    margin-top: 50px;
  }

  .bottom-padding {
    padding-bottom: 50px;
  }

  .top-padding {
    padding-top: 50px;
  }

  .max-1280 {
    max-width: 95%;
  }

  /* Heading  */

  .main-heading {
    font-size: 40px;
  }

  .primary-heading {
    font-size: 30px;
  }

  .secondry-heading {
    font-size: 26px;
  }

  p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Primary Button  */

  .common-primary-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-primary-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }

  /* Secondry Button  */

  .common-secondry-btn {
    font-weight: 500;
    font-size: 14px;
    padding: 4px 17px 4px 4px;
  }

  .common-secondry-btn i {
    width: 35px;
    height: 35px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 13px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {
  /* Spacing  */
  .max-1280 {
    max-width: 100%;
  }

  /* Heading  */

  .main-heading {
    font-size: 35px;
  }

  .primary-heading {
    font-size: 30px;
  }

  .secondry-heading {
    font-size: 30px;
  }

  p {
    font-size: 17px;
    line-height: 1.6;
  }

  /* Primary Button  */

  .common-primary-btn {
    font-weight: 500;
    font-size: 17px;
    padding: 5px 25px 5px 5px;
  }

  .common-primary-btn i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 15px;
  }

  /* Secondry Button  */

  .common-secondry-btn {
    font-weight: 500;
    font-size: 17px;
    padding: 5px 25px 5px 5px;
  }

  .common-secondry-btn i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 6px;
    font-size: 15px;
  }
}

/* Comman FAQ Section  */

.faq-section {
  background: url("https://tdd.demotoday.info/wp-content/uploads/2025/11/faq-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-section * {
  transition: 0.3s ease;
}

.faq-section .primary-heading {
  color: var(--white);
}

.faq-section .faq-btn {
  font-family: "Barlow", sans-serif;
  background: #1b1b1b;
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 20px;
  font-size: 26px;
  line-height: 1.8;
  text-transform: capitalize;
  border: 2px solid rgba(235, 97, 35, 0.3);
  box-shadow: none;
  outline: none;
}

.faq-section .faq-btn:hover {
  border: 2px solid var(--orange);
}

.faq-section .accordion-collapse {
  transition: height 0.4s ease;
}

.faq-section .accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(90.56deg, #e95a24 0.24%, #f89d1b 107.81%);
  color: var(--white);
  border-radius: 20px 20px 0 0;
}

.faq-section
  .accordion-item:last-of-type
  > .accordion-header
  .accordion-button.collapsed {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.faq-section
  .accordion-item:first-of-type
  > .accordion-header
  .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.faq-section .accordion-item {
  background: transparent;
}

.faq-section .accordion-body {
  background: linear-gradient(90deg, #141414 2.28%, #272727 100%);
  color: var(--white);
  padding: 20px;
  border-radius: 0 0 20px 20px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.faq-section .accordion-body ol,
.faq-section .accordion-body ul {
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-chevron-down' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

/* FAQ Responsive */

@media (max-width: 1850px) {
  .faq-section .faq-btn {
    padding: 10px 20px;
    font-size: 20px;
  }

  .faq-section .accordion-body {
    padding: 20px;
    font-weight: 500;
    font-size: 17px;
  }
}

@media (max-width: 1439px) {
  .faq-section .faq-btn {
    padding: 9px 18px;
    font-size: 17px;
  }

  .faq-section .accordion-body {
    padding: 18px;
    font-weight: 400;
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .faq-section .faq-btn {
    font-size: 18px;
  }

  .faq-section .accordion-body {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .faq-section .faq-btn {
    font-size: 19px;
  }

  .faq-section .accordion-body {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .faq-section .faq-btn {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
  }

  .faq-section .accordion-body {
    padding: 20px;
    font-weight: 500;
    font-size: 18px;
  }
}

/* Sub Menu DropDown  */

@media (min-width: 768px) {
  .menu-item-has-children .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
    z-index: 999;
  }

  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  .sub-menu li {
    list-style: none;
  }

  .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
  }

  .sub-menu li a:hover {
    background: #f5f5f5;
    padding-left: 25px;
  }

  .menu-item-has-children > a::after {
    content: "\f107";
    font-size: 16px;
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
  }

  .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
}


.color-orange {
  color: var(--orange) !important;
}

.text-orange {
  color: var(--orange) !important;
}