@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 {
  color: #212529;
  font-family: 'Roboto', sans-serif;
}

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

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

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

@media (max-width: 1199px) {

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

/* ============================
   Section Title (Base Styles)
============================ */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  width: 700px;
  margin: 0 auto;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
  color: #222;
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ============================
   Responsive Adjustments
============================ */

/* 💻 Large Desktops (≥1200px) */
@media (min-width: 1200px) {
  .section-title {
    width: 800px;
    padding-bottom: 70px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 17px;
  }
}

/* 📱 Tablets (≤992px) */
@media (max-width: 992px) {
  .section-title {
    width: 90%;
    padding-bottom: 50px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }
}

/* 📱 Mobiles (≤576px) */
@media (max-width: 576px) {
  .section-title {
    width: 100%;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-title h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.5;
  }
}


.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 / Navbar
--------------------------------------------------------------*/

.login-navbar {
  background: linear-gradient(90deg, #ffffff, #ffffff);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

/* === Logo === */
.login-navbar .navbar-brand img {
  height: 65px;
  transition: transform 0.3s ease, height 0.3s ease;
}

.login-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

/* === Toggler Button === */
.login-navbar .navbar-toggler {
  border: none;
  background: none;
  outline: none;
  padding: 0;
}

.login-navbar .navbar-toggler i {
  font-size: 26px;
  color: #000000;
  transition: transform 0.3s ease;
}

/* === Navbar Links === */
.login-navbar .collapse {
  text-align: right;
}

.login-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.login-navbar .navbar-nav .nav-link {
  color: #000000;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.login-navbar .navbar-nav .nav-link:hover {
  color: var(--tts-buttton-bg);
  background-color: rgba(0, 0, 0, 0.03);
}

.login-navbar .navbar-nav .nav-link.active,
.login-navbar .navbar-nav .nav-link:focus {
  color: var(--tts-buttton-bg);
  background-color: rgba(0, 0, 0, 0.05);
}

/* === Special Button (Agent Button) === */
.login-navbar .navbar-nav .agent_btn .nav-link {
  background: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  text-transform: capitalize;
}

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

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* === Tablets (≤ 991px) === */
@media (max-width: 991px) {
  .login-navbar {
    padding: 10px 0;
  }

  .login-navbar .navbar-brand img {
    height: 55px;
  }

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

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

  .login-navbar .navbar-nav .nav-link {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border-radius: 0;
  }

  .login-navbar .navbar-nav .agent_btn .nav-link {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* === Mobile Devices (≤ 768px) === */
@media (max-width: 768px) {
  .login-navbar .navbar-brand img {
    height: 50px;
  }

  .login-navbar .navbar-toggler i {
    font-size: 24px;
  }

  .login-navbar .navbar-nav .nav-link {
    font-size: 0.95rem;
  }
}

/* === Extra Small Devices (≤ 480px) === */
@media (max-width: 480px) {
  .login-navbar {
    padding: 8px 0;
  }

  .login-navbar .navbar-brand img {
    height: 45px;
  }

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

  .login-navbar .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .login-navbar .navbar-nav .agent_btn .nav-link {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}




/*New Login */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--tts-buttton-bg), var(--tts-buttton-bg1));
}

.login-wrap {
  background: #fff;
  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%;
  object-fit: cover;
}

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

.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;
  }
}


@media (max-width: 1199px) and (min-width: 768px) {
    .login-page{
        min-height: 30vh;
    }
}
/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.login-footer {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
  font-family: "Inter", sans-serif;
}

/* === Footer Call to Action === */
.footer-call-to {
  margin-bottom: -70px;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}

.footer-call-to .footer-cta {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  border-radius: 15px;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-call-to .footer-cta h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 600;
  flex: 1;
}

.footer-call-to .footer-cta .btn {
  color: var(--tts-buttton-bg);
  background-color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-call-to .footer-cta .btn:hover {
  background-color: var(--tts-buttton-bg1);
  color: var(--tts-buttton-txt1);
  transform: translateY(-2px);
}

/* === Footer Content === */
.login-footer .footer-content {
  padding: 110px 0 50px;
}

.login-footer .footer-content img {
  height: 65px;
  margin-bottom: 15px;
  object-fit: contain;
  margin: auto;
}

.login-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: capitalize;
}

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

.login-footer ul li {
  margin-bottom: 8px;
}

.login-footer ul li a {
  color: #bfbfbf;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

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

/* === Social Icons === */
.login-footer .fa-brands {
  font-size: 18px;
  color: #000;
  background-color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  transition: all 0.3s ease;
}

.login-footer .fa-brands:hover {
  background-color: var(--tts-buttton-bg);
  color: #fff;
  transform: scale(1.1);
}

/* === Explore Packages (Optional Section) === */
.login-footer .explore-packages ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.login-footer .explore-packages ul li a {
  background-color: var(--tts-buttton-bg);
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.login-footer .explore-packages ul li a:hover {
  background-color: var(--tts-buttton-bg1);
}

/* === Bottom Border === */
.login-footer .border-top {
  border-color: #222 !important;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.login-footer .border-top p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* === Large Screens (≥ 1200px) === */
@media (min-width: 1200px) {
  .login-footer .footer-content .row {
    align-items: flex-start;
  }
}

/* === Tablets (≤ 992px) === */
@media (max-width: 992px) {
  .footer-call-to .footer-cta {
    flex-direction: column;
    text-align: center;
    padding: 35px 40px;
  }

  .login-footer .footer-content {
    padding: 80px 0 40px;
  }

  .login-footer ul li {
    display: inline-block;
    margin-right: 15px;
  }
}

/* === Mobile Devices (≤ 768px) === */
@media (max-width: 768px) {
  .footer-call-to .footer-cta {
    padding: 28px 30px;
  }

  .footer-call-to .footer-cta h2 {
    font-size: 1.25rem;
  }

  .login-footer h5 {
    font-size: 1rem;
  }

  .login-footer ul li a {
    font-size: 0.9rem;
  }

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

  .login-footer .fa-brands {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* === Extra Small Devices (≤ 480px) === */
@media (max-width: 480px) {
  .footer-call-to .footer-cta {
    padding: 22px 20px;
  }

  .footer-call-to .footer-cta h2 {
    font-size: 1.1rem;
  }

  .footer-call-to .footer-cta .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .login-footer .footer-content {
    padding: 80px 0 25px;
  }

  .login-footer ul li {
    display: inline-block;
    margin-right: 10px;
  }

  .login-footer .border-top p {
    font-size: 0.8rem;
  }
}



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

.pricing {
  padding: 80px 0;
}

.pricing .nav-tabs {
  border: 0;
  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;
  padding: 5px;
}

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

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

.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: 0;
  margin: 0;
  text-transform: uppercase;
}

.pricing .nav-link i {
  padding-right: 10px;
  font-size: 32px;
}

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

.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 {
  transform: translateY(-5px);
}

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

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4,
.pricing .pricing-card.popular .features-list li,
.pricing .pricing-card.popular .price * {
  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 h4 {
  margin: 10px 0;
}

.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 {
  margin-bottom: 20px;
}

.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 .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.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.popular .features-list li i.fa-check {
  color: #ffffff;
}

.pricing .pricing-card .btn {
  width: 100%;
  margin: 15px 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%);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

/* Large Screens (Desktops ≥1200px) */
@media (min-width: 1200px) {
  .pricing .pricing-card {
    padding: 3rem 2.5rem;
  }
}

/* Medium Screens (Tablets ≥768px and <1200px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .pricing .pricing-card {
    margin-bottom: 30px;
    padding: 2.5rem 2rem;
  }

  .pricing .nav-tabs {
    flex-wrap: wrap;
  }

  .pricing .nav-link {
    padding: 10px 20px;
  }
}

/* Small Screens (Mobiles ≤767px) */
@media (max-width: 767px) {
  .pricing .nav-tabs {
    flex-wrap: nowrap;
    border-radius: 20px;
    width: 100%;
  }

  .pricing .nav-item {
    width: 100%;
  }

  .pricing .nav-link {
    width: 100%;
    padding: 10px;
    font-size: 13px;
  }

  .pricing .nav-link i {
    font-size: 24px;
    padding-right: 8px;
  }

  .pricing .pricing-card {
    padding: 2rem 1.5rem;
    margin-bottom: 25px;
  }

  .pricing .pricing-card h3 {
    font-size: 1.25rem;
  }

  .pricing .pricing-card .price .amount {
    font-size: 2rem;
  }

  .pricing .pricing-card .btn {
    font-size: 14px;
    padding: 0.6rem 1.2rem;
  }
}

/* Extra Small (≤468px) */
@media (max-width: 468px) {
  .pricing .nav-link {
    padding: 8px 15px;
  }

  .pricing .pricing-card {
    padding: 1.8rem 1rem;
  }

  .pricing .pricing-card .features-list li {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  padding: 80px 0;
}

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

/* Title */
.about .about-title {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #212529;
}

/* Description */
.about .about-description {
  margin-bottom: 32px;
  color: color-mix(in srgb, #212529, transparent 20%);
  font-size: 16px;
  line-height: 1.7;
}

/* Feature List */
.about .feature-list-wrapper {
  margin-bottom: 32px;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  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: 50%;
  transition: 0.3s;
}

/* Image Wrapper */
.about .image-wrapper {
  position: relative;
  text-align: center;
}

.about .image-wrapper img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
}

.about .image-wrapper .small-image {
  border-radius: 10px;
}

/* Button */
.info-wrapper a.btn {
  margin: 0 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;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* ✅ Large Devices (Desktops ≥1200px) */
@media (min-width: 1200px) {
  .about .about-title {
    font-size: 42px;
  }

  .about .feature-list li {
    font-size: 18px;
  }
}

/* ✅ Medium Devices (Tablets: 768px–1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about .about-title {
    font-size: 34px;
  }

  .about .about-description {
    font-size: 15px;
  }

  .about .feature-list {
    gap: 16px;
  }

  .about .image-wrapper .small-image {
   height: 250px;
  
  }

  .about .image-wrapper .small-image img{
 object-fit: cover;
 height: 100%;
  }
}

/* ✅ Small Devices (Mobile: ≤767px) */
@media (max-width: 767px) {
  .about {
    padding: 50px 0;
    text-align: center;
  }

  .about .about-title {
    font-size: 28px;
  }

  .about .about-meta {
    font-size: 14px;
  }

  .about .about-description {
    font-size: 14px;
  }

  .about .feature-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .about .feature-list li {
    font-size: 14px;
    text-align: left;
  }

  .about .image-wrapper .small-image {
    height: 250px;
  }

  .info-wrapper a.btn {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .about .image-wrapper img {
    height: 250px;
  }
}



/*--------------------------------------------------------------
# Advantage Section
--------------------------------------------------------------*/
.advantage-section {
  padding: 80px 0;
}

.advantage-section .container {
  padding: 3rem;
  border-radius: 15px;
  background-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 92%);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

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

.advantage-section .advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.advantage-section .advantage-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

.advantage-section .advantage-list li:hover i {
  background-color: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
}

.advantage-section .advantage-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, #212529, transparent 20%);
}

.advantage-section .image-section {
  text-align: center;
}

.advantage-section .image-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.advantage-section .image-section img:hover {
  transform: scale(1.03);
}

.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: 8px;
  transition: all 0.3s ease;
}

.advantage-section .cta-btn:hover {
  background: var(--tts-buttton-bg);
  color: var(--tts-buttton-txt);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-section .join-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.advantage-section .join-network p {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  color: #212529;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* ✅ Desktop (≥1200px) */
@media (min-width: 1200px) {
  .advantage-section .advantage-list li {
    padding: 24px;
  }

  .advantage-section .advantage-list p {
    font-size: 17px;
  }
}

/* ✅ Tablet (768px–1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .advantage-section {
    padding: 60px 0;
  }

  .advantage-section .container {
    padding: 2rem;
  }

  .advantage-section .advantage-list li {
    padding: 18px;
  }

  .advantage-section .image-section {
    margin-top: 30px;
    height: 250px;
  }

  .advantage-section .cta-btn {
    padding: 0.7rem 1.3rem;
  }

      .advantage-section .image-section img{
        object-fit: cover;
        height: 100%;
    }
}

/* ✅ Mobile (≤767px) */
@media (max-width: 767px) {
  .advantage-section {
    padding: 50px 0;
  }

  .advantage-section .container {
    padding: 1.5rem;
  }

  .advantage-section .advantage-list li {
    align-items: flex-start;
    text-align: left;
    padding: 15px;
  }

  .advantage-section .join-network p {
    margin-bottom: 15px;
  }

  .advantage-section .advantage-list i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .advantage-section .advantage-list p {
    font-size: 15px;
  }

  .advantage-section .image-section {
    margin-top: 40px;
  }

  .advantage-section .join-network {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .advantage-section .cta-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
  }

  .advantage-section .image-section img {
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Services Slider
--------------------------------------------------------------*/

.services-slider {
  padding: 80px 0;
  position: relative;
}

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

/* Card Styling */
.services-slider .owl-carousel .card {
  position: relative;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.services-slider .owl-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.services-slider .owl-carousel .card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services-slider .owl-carousel .card:hover img {
  transform: scale(1.05);
}

/* Card Body */
.services-slider .owl-carousel .card-body {
  padding: 20px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease;
}

.services-slider .owl-carousel .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.services-slider .owl-carousel .card-text {
  font-size: 0.95rem;
  color: color-mix(in srgb, #212529, transparent 35%);
  margin-bottom: 0;
}

/* Navigation Buttons */
.services-slider .owl-nav {
  display: flex;
  justify-content: center;
  padding-top: 25px;
}

.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: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.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);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Dots Navigation */
.services-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.services-slider .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 80%);
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services-slider .owl-dots .owl-dot.active {
  background-color: var(--tts-buttton-bg);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* ✅ Desktop (≥1200px) */
@media (min-width: 1200px) {
  .services-slider .owl-carousel .card img {
    height: 260px;
  }

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

/* ✅ Tablet (768px–1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .services-slider {
    padding: 60px 0;
  }

  .services-slider .owl-carousel .card img {
    height: 200px;
  }

  .services-slider .owl-carousel .card-body {
    padding: 16px;
  }

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

/* ✅ Mobile (≤767px) */
@media (max-width: 767px) {
  .services-slider {
    padding: 50px 0;
  }

  .services-slider .owl-carousel .card img {
    height: 160px;
  }

  .services-slider .owl-carousel .card-body {
    padding: 12px;
  }

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

  .services-slider .owl-carousel .card-text {
    font-size: 0.85rem;
  }

  .services-slider .owl-carousel .owl-nav button.owl-prev,
  .services-slider .owl-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
  }
}

/* ✅ Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .services-slider .owl-carousel .card img {
    height: 140px;
  }

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


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
}

/* Section Title */
.faq .section-title {
  padding-bottom: 25px;
  text-align: center;
}

.faq .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
}

.faq .section-title p {
  color: color-mix(in srgb, #212529, transparent 40%);
  max-width: 600px;
  margin: 10px auto 0;
}

/* FAQ Container */
.faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 50px 20px 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, #3d4348, transparent 85%);
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

/* Question (Title) */
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 30px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #212529;
  transition: color 0.3s ease;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--tts-buttton-bg);
  font-weight: 700;
  margin-right: 8px;
}

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

/* Answer Content */
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: color-mix(in srgb, #212529, transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

/* Toggle Button */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  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: 32px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

/* Active FAQ */
.faq .faq-container .faq-active {
  border-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 70%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.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);
  background-color: color-mix(in srgb, var(--tts-buttton-bg), transparent 88%);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

/* ✅ Desktop (≥1200px) */
@media (min-width: 1200px) {
  .faq .section-title h2 {
    font-size: 38px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 19px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 16px;
  }
}

/* ✅ Tablet (768px–1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .faq {
    padding: 60px 0;
  }

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

  .faq .faq-container {
    max-width: 700px;
  }

  .faq .faq-container .faq-item {
    padding: 18px 45px 18px 18px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 17px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 15px;
  }
}

/* ✅ Mobile (≤767px) */
@media (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }

  .faq .section-title h2 {
    font-size: 26px;
  }

  .faq .section-title p {
    font-size: 14px;
    max-width: 90%;
  }

  .faq .faq-container {
    max-width: 100%;
  }

  .faq .faq-container .faq-item {
    padding: 15px 40px 15px 15px;
    border-radius: 10px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .faq .faq-container .faq-item .faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ✅ Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .faq .section-title h2 {
    font-size: 22px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 15px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 13.5px;
  }
}



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