@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --bg-white: #ffffff;
  --topbar-bg: #04709b;
  --topbar-txt-color: #000000;
  --header-bg: #ffffff;
  --header-txt-color: #000000;
  --tts-buttton-bg: #ff6700;
  --tts-buttton-bg1: #04709b;
  --tts-buttton-txt: #ffffff;
  --tts-buttton-txt1: #ffffff;
  --footer-Bg: #04709b;
}

.light-background {
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg1), transparent 92%);
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  background: rgba(255, 255, 255, .05);
}

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

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

section,
.section {
  padding: 60px 0;
  overflow: clip;
}

@media (max-width: 1199px) {

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

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  width: 700px;
  margin: auto;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

.hide {
  display: none;
}

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

/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
} */

input[type="text"] {
  font-family: inherit;
}

/*header*/
.login-navbar {
  background-color: var(--tts-buttton-bg);
}

.login-navbar .navbar-brand img {
  width: 10rem;
  transition: transform 300ms ease;
  border-radius: 10px;
}

.login-navbar .navbar-toggler {
  border: none;
  background: none;
  outline: none;
}

.login-navbar .navbar-toggler i {
  font-size: 24px;
  color: #000000;
  transition: transform 300ms ease;
}

.login-navbar .navbar-toggler:hover i {
  transform: rotate(90deg);
}

.login-navbar .collapse {
  text-align: right;
}

.login-navbar .navbar-nav {
  gap: 16px;
}

z .login-navbar .navbar-nav .nav-item {
  position: relative;
}

.login-navbar .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 500;
  transition: background-color 300ms ease, transform 300ms ease;
  padding: 9.6px 19.2px;
}

.login-navbar .navbar-nav .nav-link:focus,
.login-navbar .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.login-navbar .navbar-nav .agent_btn .nav-link {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  padding: 9.6px 19.2px;
  border-radius: 5px;
}

.login-navbar .navbar-nav .agent_btn .nav-link:hover {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

@media (max-width: 991px) {
  .login-navbar .navbar-brand img {
    height: 50px;
  }

  .login-navbar .collapse {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    padding: 16px;
  }

  .login-navbar .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-navbar .navbar-nav .nav-link {
    padding: 8px;
    margin: 4.8px 0;
    text-align: left;
  }
}



/*New Login */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0px 70px 0px;
  /* background: linear-gradient(180deg, #f5fcff, #ffcfac); */
}

.login-wrap {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  /* main blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Banner Image & Carousel */
.login-page .banner_img {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.login-page .carousel-inner img {
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.login-page .carousel-inner .carousel-content {
  margin-top: 20px;
  color: #000;
}

.login-page .carousel-inner .carousel-content h2 {
  margin-bottom: 15px;
}

.login-page .carousel-inner .carousel-content .agent-slider-btn {
  background: #ffffff;
  font-weight: 500;
  border: none;
  color: var(--tts-buttton-bg);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
  display: inline-block;
}

.login-page .carousel-inner .carousel-content .agent-slider-btn:hover {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

/* Form Styling */
.login-page .login-top h3 {
  color: #000000;
  margin-bottom: 0px;
  font-weight: bold;
}

.login-page .login-top p {
  margin-bottom: 30px;
  color: #777;
}

.password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Buttons */
.login-page .btn-primary {
  background: var(--tts-buttton-bg);
  border: none;
  color: var(--tts-buttton-txt);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.login-page .btn-primary:hover {
  background: var(--tts-buttton-bg1);
}

.login-btn-fill {
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.forgot_passwd,
.forgotpasswd {
  color: var(--tts-buttton-bg);
  font-size: 14px;
  text-decoration: none;
}

.forgot_passwd:hover,
.forgotpasswd:hover {
  text-decoration: underline;
}

/* Error Message */
.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

/* OTP Section */
.card-body {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 600px) {

  .login-wrapper,
  .login-wrap {
    padding: 20px;
  }

  .form-floating input {
    padding: 8px;
  }

  .login-page .btn-primary {
    padding: 8px 16px;
  }
}





/* =========================================================
   FOOTER CTA
========================================================= */

.footer-call-to {
  position: relative;
  z-index: 2;
  margin-bottom: -55px;
}

.footer-call-to .footer-cta {
  padding: 28px 30px;
  color: var(--tts-buttton-txt);
  background: var(--tts-buttton-bg);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.footer-call-to .footer-cta h2,
.footer-call-to .footer-cta h3 {
  margin: 0 0 7px;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-call-to .footer-cta h2 {
  font-size: 20px;
}

.footer-call-to .footer-cta p {
  margin: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.footer-call-to .footer-cta a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: opacity 0.25s ease;
}

.footer-call-to .footer-cta a:hover {
  opacity: 0.8;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.login-footer {
  position: relative;
  padding-top: 95px;
  color: #323232;
  background: #fcfcfc;
  border-top:1px solid #e5e7eb;
}

.login-footer .footer-content {
  padding-bottom: 30px;
}

.login-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  margin-bottom: 15px;
  text-decoration: none;
}

.login-footer .footer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.login-footer .footer-company p {
  /* max-width: 260px; */
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.login-footer .footer-menu {
  height: 100%;
}

.login-footer .footer-menu>h2 {
  margin: 0 0 17px;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

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

.login-footer .footer-links li {
  margin: 0 0 9px;
}

.login-footer .footer-links li:last-child {
  margin-bottom: 0;
}

.login-footer .footer-links a {
  display: inline-block;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.login-footer .footer-links a:hover {
  color: var(--tts-buttton-bg);
  transform: translateX(3px);
}

.login-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.login-footer .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #14213d;
  background: #f1f5f9;
  border: 1px solid rgba(20, 33, 61, 0.08);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.login-footer .contact-item:hover .contact-icon {
  color: var(--tts-buttton-txt);
  background: var(--tts-buttton-bg);
  border-color: var(--tts-buttton-bg);
  transform: translateY(-2px);
}

.login-footer .contact-content {
  min-width: 0;
  flex: 1;
}

.login-footer .contact-content>span {
  display: block;
  margin-bottom: 3px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.3;
  text-transform: uppercase;
}

.login-footer .contact-content a,
.login-footer .contact-content address {
  display: block;
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.25s ease;
}

.login-footer .contact-content a:hover {
  color: var(--tts-buttton-bg);
}

.login-footer .copyright {
  margin-top: 25px !important;
  padding: 20px 0 0;
  border-top: 1px solid #e5e7eb;
}

.login-footer .copyright>* {
  margin: 0;
}

.login-footer .rights__content,
.login-footer .footer-powered {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.5;
}

.login-footer .footer-powered {
  color: #6b7280;
}

.login-footer .social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-footer .social-icons li {
  margin: 0;
  padding: 0;
}

.login-footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.login-footer .social-icons a:hover {
  color: var(--tts-buttton-txt);
  background: var(--tts-buttton-bg);
  border-color: var(--tts-buttton-bg);
  transform: translateY(-3px);
}

.login-footer a:focus-visible,
.footer-call-to a:focus-visible {
  outline: 2px solid var(--tts-buttton-bg);
  outline-offset: 3px;
}

@media (max-width: 1199.98px) {

  .login-footer .footer-company {
    width: 24%;
    max-width: 24%;
  }

  .footer-call-to .footer-cta {
    padding: 26px;
  }

  .login-footer .footer-menu>h2 {
    font-size: 16px;
  }

}

@media (max-width: 991.98px) {

  .footer-call-to {
    margin-bottom: -48px;
  }

  .footer-call-to .footer-cta {
    padding: 24px;
    border-radius: 13px;
  }

  .footer-call-to .footer-cta h2 {
    font-size: 19px;
  }

  .login-footer {
    padding-top: 85px;
  }

  .login-footer .footer-company {
    width: 50%;
    max-width: 50%;
  }

  .login-footer .footer-logo {
    max-width: 160px;
  }

  .login-footer .copyright {
    flex-wrap: wrap;
  }

}

@media (max-width: 767.98px) {

  .footer-call-to {
    margin-bottom: -42px;
  }

  .footer-call-to .footer-cta {
    padding: 22px;
    border-radius: 12px;
  }

  .footer-call-to .footer-cta h2 {
    font-size: 21px;
  }

  .footer-call-to .footer-cta h3 {
    font-size: 15px;
  }

  .footer-call-to .footer-cta p {
    font-size: 13px;
  }

  .login-footer {
    padding-top: 75px;
  }

  .login-footer .footer-company {
    width: 100%;
    max-width: 100%;
  }

  .login-footer .footer-company p {
    max-width: 100%;
  }

  .login-footer .footer-menu>h2 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .login-footer .footer-links li {
    margin-bottom: 7px;
  }

  .login-footer .footer-links a {
    font-size: 13px;
  }

  .login-footer .footer-contact {
    gap: 12px;
  }

  .login-footer .contact-item {
    gap: 10px;
  }

  .login-footer .contact-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .login-footer .contact-content a,
  .login-footer .contact-content address {
    font-size: 13px;
  }

  .login-footer .copyright {
    justify-content: center;
    margin-top: 20px !important;
    padding-top: 18px;
    text-align: center;
  }

  .login-footer .social-icons {
    justify-content: center;
    width: 100%;
  }

  .login-footer .rights__content,
  .login-footer .footer-powered {
    width: 100%;
    font-size: 12px;
  }

}

@media (max-width: 480px) {

  .footer-call-to .footer-cta {
    padding: 19px;
  }

  .footer-call-to .footer-cta h2 {
    font-size: 19px;
  }

  .footer-call-to .footer-cta h3 {
    font-size: 14px;
  }

  .login-footer {
    padding-top: 68px;
  }

  .login-footer .footer-logo {
    max-width: 145px;
  }

  .login-footer .social-icons {
    gap: 7px;
  }

  .login-footer .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .login-footer .copyright {
    gap: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .login-footer *,
  .footer-call-to * {
    transition: none !important;
    animation: none !important;
  }

}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .nav-tabs {
  border: 0px;
  background-color: color-mix(in srgb, #212529, transparent 96%);
  border: 1px solid var(--tts-buttton-bg1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: auto;
}

.pricing .nav-item {
  margin: 0px;
  padding: 0px 5px 0px 0px;
}

.pricing .nav-item:last-child {
  padding-right: 0px;
}

.pricing .nav-link {
  color: #2d465e;
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0px;
  margin: 0px;
  text-transform: uppercase;
}

@media (max-width: 468px) {
  .pricing .nav-link {
    padding: 8px 20px;
  }
}

.pricing .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.pricing .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
}

.pricing .nav-link:hover {
  border-color: color-mix(in srgb, #212529, transparent 80%);
}

.pricing .nav-link:hover h4 {
  color: var(--tts-buttton-bg1);
}

.pricing .nav-link.active {
  background-color: var(--tts-buttton-bg1);
  border-color: var(--tts-buttton-bg1);
}

.pricing .nav-link.active h4 {
  color: #ffffff;
}

.pricing .tab-content {
  margin-top: 50px;
}

.pricing .pricing-card {
  height: 100%;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--tts-buttton-bg);
  color: #ffffff;
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: #ffffff;
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: #ffffff;
}

.pricing .pricing-card.popular .features-list li {
  color: #ffffff;
}

.pricing .pricing-card.popular .features-list li i.fa-check,
.pricing .pricing-card.popular .features-list li i.fa-x {
  color: #ffffff;
}

.pricing .pricing-card.popular .btn-light {
  background: #ffffff;
  color: var(--tts-buttton-bg);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, #ffffff, transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: var(--tts-buttton-bg);
  padding: 0.5rem 15px;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 15px;
  color: color-mix(in srgb, #212529, transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 0;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dedede;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.pricing .pricing-card .features-list li:last-child {
  margin-bottom: 0;
}

.pricing .pricing-card .features-list li i {

  margin-right: 0.75rem;
  font-size: 14px;
}

.pricing .pricing-card .features-list li i.fa-check {
  color: green;
}

.pricing .pricing-card .features-list li i.fa-x {
  color: rgb(255, 0, 0);
}

.pricing .pricing-card .btn {
  width: 100%;
  margin: 20px 0;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--tts-buttton-bg);
  border: none;
  color: #ffffff;
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--tts-buttton-bg), transparent 15%);
}

/*about*/
.about .about-meta {
  color: var(--tts-buttton-bg);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.about .about-title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;

}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 32px;
  }
}

.about .about-description {
  margin-bottom: 32px;
  color: color-mix(in srgb, #212529, transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 32px;
}

.about .feature-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.about .feature-list li i {
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  font-size: 16px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid #ffffff;
}

.info-wrapper a.btn {
  margin: 0px 0 20px 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  background: var(--tts-buttton-bg);
  border: none;
  color: var(--tts-buttton-txt);
  border-radius: 5px;
}

.info-wrapper a.btn:hover {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
}

/*advantage*/

.advantage-section .container {
  padding: 3rem;
  border-radius: 15px;
  height: 100%;
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
}

.advantage-section .advantage-list {
  padding: 0;
  margin: 0;
}

.advantage-section .advantage-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.advantage-section .advantage-list li:last-child {
  margin-bottom: 0;
}

.advantage-section .advantage-list i {
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s;
}

.advantage-section .advantage-list p {
  margin: 0;
}

/* Image Section */
.advantage-section .image-section {
  height: 100%;
}

.advantage-section .image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* CTA Buttons */
.advantage-section .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
}

.advantage-section .cta-btn:hover {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

/* Join Network Section */
.advantage-section .join-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.advantage-section .join-network p {
  margin-bottom: 0;
  font-weight: 500;
}


/*services slider*/
.services-slider .owl-carousel .owl-stage-outer {
  padding: 10px 0;
}

.services-slider .owl-carousel .card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.services-slider .owl-carousel .card img {
  width: 100%;
  object-fit: cover;
  height: 220px;
}

.services-slider .owl-carousel .card-body {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}

.services-slider .owl-carousel .card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0px;
}

.services-slider .owl-carousel .card:hover .card-body {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-slider .owl-carousel .card {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .services-slider .owl-carousel .card img {
    height: 150px;
  }

  .services-slider .owl-carousel .card-title {
    font-size: 0.875rem;
  }
}

.services-slider .owl-nav {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.services-slider .owl-carousel .owl-nav button.owl-prev,
.services-slider .owl-carousel .owl-nav button.owl-next {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  border: none;
  outline: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 5px;
}

.services-slider .owl-carousel .owl-nav button.owl-prev:hover,
.services-slider .owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.services-slider .owl-carousel .owl-nav button.owl-prev i,
.services-slider .owl-carousel .owl-nav button.owl-next i {
  font-size: 18px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
  border-radius: 15px;
  overflow: hidden;
}

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

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

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

.faq .faq-container .faq-item h3:hover {
  color: var(--tts-buttton-bg);
}

.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;
  transition: 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  color: var(--tts-buttton-bg);
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  line-height: 30px;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--tts-buttton-bg);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, #ffffff, transparent 0%);
  border-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--tts-buttton-bg);
}

.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(--tts-buttton-bg);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color:
    color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  box-sizing: content-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 15px;
}

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

.testimonials .testimonial-item .stars i {
  color: var(--tts-buttton-bg);
  margin: 0 1px;
  font-size: 35px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: 0 auto;
}

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

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

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




/*register page*/
.registration-page {
  padding: 70px 0;
  background: #f7faff;
}
/* ===== EASYFLYS PREMIUM OTP SECTION (login) — added 2026-09-25 ===== */
.login-page #cardds {
  margin-top: 8px;
  padding: 22px 20px 20px;
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}
.login-page #cardds #otpId { position: relative; margin-bottom: 4px; }
.login-page #cardds #otpId > label[for="otp"] {
  display: block; position: static; transform: none; height: auto;
  margin: 0 0 8px 2px; padding: 0;
  font-size: 12px; font-weight: 700 !important; letter-spacing: .12em;
  text-transform: uppercase; color: #6b7280;
}
.login-page #cardds input.form-control[name="OTP"] {
  height: 58px; width: 100%;
  border: 1.5px solid #e3e7ee; border-radius: 12px; background: #f9fafb;
  font-size: 22px; font-weight: 600; letter-spacing: .5em; text-indent: .5em;
  text-align: center; color: #111827;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.login-page #cardds input.form-control[name="OTP"]::placeholder { letter-spacing: normal; }
.login-page #cardds input.form-control[name="OTP"]:focus {
  outline: none; background: #ffffff;
  border-color: var(--tts-buttton-bg, #ff6700);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tts-buttton-bg, #ff6700), transparent 82%);
}
.login-page #cardds .trustable-device-checkbox {
  display: flex; align-items: center; gap: 10px;
  margin: 14px 0 4px; padding: 11px 13px;
  background: #f6f8fb; border: 1px solid #eef0f4; border-radius: 10px;
}
.login-page #cardds .trustable-device-checkbox input#trustable {
  width: 18px; height: 18px; margin: 0; flex: 0 0 auto; cursor: pointer;
  accent-color: var(--tts-buttton-bg, #ff6700);
}
.login-page #cardds .trustable-device-checkbox label {
  margin: 0; font-size: 13.5px; font-weight: 500; color: #374151;
  cursor: pointer; user-select: none;
}
.login-page #cardds .otp-box { margin: 12px 2px 4px; }
.login-page #cardds #otp-message { display: block; font-size: 13px; line-height: 1.5; color: #6b7280; }
.login-page #cardds .verify_otp { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.login-page #cardds .verify_otp .loginbtn {
  width: 100%; border: none; border-radius: 12px; padding: 14px 18px;
  font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--tts-buttton-txt, #ffffff); cursor: pointer;
  background: linear-gradient(135deg, var(--tts-buttton-bg, #ff6700), var(--tts-buttton-bg1, #04709b));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--tts-buttton-bg, #ff6700), transparent 70%);
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.login-page #cardds .verify_otp .loginbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--tts-buttton-bg, #ff6700), transparent 62%);
}
.login-page #cardds .verify_otp .loginbtn:active { transform: translateY(0); }
.login-page #cardds .verify_otp .loginbtn:disabled {
  opacity: .55; cursor: not-allowed; box-shadow: none; filter: grayscale(15%);
}
.login-page #cardds #resendTimer { margin-top: 4px; font-size: 13px; color: #6b7280; text-align: center; }
.login-page #cardds #resendTimer #secondsLeft { font-weight: 700; color: var(--tts-buttton-bg, #ff6700) !important; }
.login-page #cardds #resend_otp {
  display: inline-block; margin-top: 2px; text-align: center; font-weight: 600;
  color: var(--tts-buttton-bg, #ff6700); text-decoration: none;
}
.login-page #cardds #resend_otp:hover { text-decoration: underline; }
.login-page #cardds .error-message { display: block; margin-top: 6px; font-size: 12.5px; color: #e74c3c; }
/* ===== END PREMIUM OTP SECTION ===== */
