﻿@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* Reset */
*  {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.row, .row>* {
    margin: 0px;
}

.mt--15 {
    margin-top: -15px;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
/* Body */
body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  scroll-behavior: smooth;
}

/* Light Theme Variables */
[data-bs-theme="light"] {
    --bg-body: whitesmoke;
    --bg-body-White: white;
    --text-primary: #1e1e1e;
    --Primary-Color: #005474 !important;
    --Secondary-Color: #f15922 !important;
    --border-color: rgba(0, 0, 0, 0.08);
    --ThemeSecondaryColor: var(--Secondary-Color);
    --ThemePrimaryColor: var(--Primary-Color);
}

/* Dark Theme Variables */
[data-bs-theme="dark"] {
    --bg-body: #0f0c29;
    --bg-body-White: #212529;
    --text-primary: #ffffff;
    --Primary-Color: rgba(15, 12, 41, 0.1);
    --border-color: rgba(255, 255, 255, 0.08);
}

/* General Elements */
a {
  text-decoration: none !important;
}

.ThemeSecondaryColor {
  color: var(--ThemeSecondaryColor) !important;
}

.ThemePrimaryColor {
  color: var(--Primary-Color) !important;
}

/* Light Theme Adjustments */
[data-bs-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.75) !important;
}

[data-bs-theme="light"] body {
  background: var(--bg-body);
}

[data-bs-theme="light"] .theme-toggle {
  background: var(--Secondary-Color);
}

[data-bs-theme="light"] .theme-toggle::before {
  transform: translateX(24px);
  background: white;
}

/* Dark Theme Adjustments */
[data-bs-theme="dark"] .navbar-Logo img {
  filter: brightness(0) invert(1);
}

[data-bs-theme="dark"] .slide {
  filter: grayscale(100%);
}
[data-bs-theme="dark"] .BgImage {
  background: #1e1e1e;
}

[data-bs-theme="dark"] .hero {
  background: #1e1e1e;
}
[data-bs-theme="dark"] .hero h1,
[data-bs-theme="dark"] .hero p{
  color: white;
}

[data-bs-theme="dark"] .navbar {
  padding: 0.7rem 0;
  background: rgba(15, 12, 41, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.25);
}

/* Card */
.card {
  border-radius: 15px;
}

.cardIcons {
  background: #f5f5f5;
  width: fit-content;
  padding: 5px 15px;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 25px;
}

.card:hover {
  cursor: pointer;
  box-shadow: rgb(10 10 40 / 10%) 0px 15px 30px 0px;
}

/* Buttons */
.btn-primary {
  background-color: var(--Primary-Color);
  border: none;
  transition: all 0.3s ease;
  box-shadow: rgb(0 84 116 / 32%) 1px 0px 20px 2px;
}

.btn-primary:hover {
  background-color: var(--Secondary-Color);
}

.btn-Secondary {
  background-color: var(--Secondary-Color);
  border: none;
  transition: all 0.3s ease;
}

.btn-Secondary:hover {
  background-color: var(--Primary-Color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px;
  background: rgb(255 255 255 / 100%) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--Secondary-Color);
  font-weight: 600;
}
.navbar div.ms-3{
  margin-left: 0!important;
}
.dropdown-item.active, .dropdown-item:active, dropdown-item:hover {
  color: var(--Secondary-Color);
  font-weight: 600;
  background: transparent!important;
}
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(15, 12, 41, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.25);
}

/* Navbar Brand */
.navbar-Logo img {
  height: 50px;
  transition: all 0.3s ease;
}

/* Navlinks */
.nav-link {
  font-weight: 500;
  padding: 0.6rem 1.3rem !important;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--Secondary-Color);
  transform: translateY(-2px);
}

.nav-link.active,
.dropdown-item.active,
.dropdown-item:hover {
  color: var(--Secondary-Color);
  font-weight: 600;
}

/* Dropdown (Desktop Hover) */
@media (max-width: 900px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
            text-align: center;
  }
    .dropdown > .dropdown-toggle {
      text-align: center! important;
  }
  .dropdown > .dropdown-toggle:active {
    pointer-events: none;

  }
}
@media (min-width: 901px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
            text-align: center;
  }
}
.dropdown-menu {
  border: none;
  border-radius: 12px;
  margin-top: 0 !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Theme Toggle */
.theme-toggle {
  width: 60px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  border: 1px solid white;
  transition: all 0.4s;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 3px;
  left: 6px;
  background: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-toggle i {
  position: absolute;
  top: 7px;
  font-size: 18px;
  color: white;
  transition: all 0.4s;
}

.sun {
  left: 8px;
  opacity: 0;
}

.moon {
  right: 5px;
  opacity: 1;
  color: #ffd43b;
}

[data-bs-theme="light"] .sun {
  opacity: 1;
}

[data-bs-theme="light"] .moon {
  opacity: 0;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  border-radius: 15px 15px 0 0;
}

.slide {
  min-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.slide.active {
  pointer-events: auto;
}

/* Slider Indicators */
.indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

/* Responsive Slider */
@media (max-width: 900px) {
  .slider {
    width: 100%;
    height: auto;
  }
    .slides{
        height:auto
    }
}

@media (max-width: 768px) {
  .btn {
    margin: 5px;
  }

  .bottom-center {
    width: 80%;
    border-radius: 10px;
  }
}

@media (max-width: 414px) {
  .slide {
    height: 150px;
  }

  .btn {
    width: 100%;
    margin: 5px 0;
  }

  .bottom-center {
    border-radius: 10px 10px 0 0;
  }
}

@media (min-width: 415px) and (max-width: 600px) {
  .slide {
    height: 200px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .slide {
    height: 330px;
  }
}

/* Client Slider */
.clients-section {
  overflow: hidden;
  position: relative;
}

.client-slider {
  overflow: hidden;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  width: 220px;
  height: 100px;
  margin: 0 1rem;
  background: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.client-logo img {
  max-width: 70%;
  max-height: 60%;
  /* filter: grayscale(100%); */
  transition: filter 0.4s ease;
}


/* Client Slider Pause on Hover */
.client-slider:hover .slider-track {
  animation-play-state: paused;
}

/* Client Slider Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 160px;
    height: 100px;
  }
  .dropdown-menu{
  box-shadow: none!important;
}
}

/* Footer */
/*footer {
  background: var(--Primary-Color);
  color: #e2e8f0;
  padding: 1rem 0;
  border-top: 1px solid rgba(237, 125, 29, 0.15);
}*/

.hover-orange:hover {
  color: #ed7d1d !important;
}

.social-icon-footer {
  width: 36px;
  height: 36px;
  background: var(--Secondary-Color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  display: flex;
  transition: all 0.3s ease;
}

.social-icon-footer:hover {
  background: #ed7d1d;
  border-color: #ed7d1d;
  transform: translateY(-3px);
}

/* Image Slider */
.BgImage {
    background-image: url('../images/WhiteBg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 1rem 20px;
    overflow: hidden;
}

.image-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.image-track img {
  height: 200px;
  margin-right: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Perfect Loop Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.AiCahtbotLandingPage {
    position: fixed;
    bottom: -8px;
    right: 0px;
    z-index: 9999;
}
.AiCahtbotLandingPage  iframe{
    display: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width: 400px;
    height: 85vh;
}
@media (min-width: 300px) and (max-width:600px) {
  .AiCahtbotLandingPage {
      right: 5px;
  }
  .AiCahtbotLandingPage iframe {
      width: fit-content;
      height: 85vh;
  }
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 6rem;
    z-index: 99;
}
.back-to-top {
    background: var(--Secondary-Color) !important;
    color: white !important;
    border: none !important
}

.bodyMargin{
      margin-top: 4rem;
}

.ContactusPageHeader{
  background-image: url('../Img/ContactUsBg.png');
  background-image: url(../Img/ContactUsBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem;
  color: white;
}


/* Loyalty Page Start */
    .hero {
    width: 100%;
    background: linear-gradient(135deg, #fff0eb 0%, #eaf9ff 50%, #ffebe3 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 20px;
    }

    .hero .tag {
        font-size: 14px;
        letter-spacing: 2px;
        color: #6c6c6c;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 48px;
        max-width: 1100px;
        color: #222;
        margin: 0 auto 20px;
        line-height: 1.2;
        font-weight: 700;
    }

    .hero p {
        font-size: 18px;
        max-width: 900px;
        color: #555;
        margin: 0 auto 0px;
        line-height: 1.6;
    }
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 32px;
        }
        .hero p {
            font-size: 16px;
        } 
    }


.rewards-hero {
    background: linear-gradient(135deg, #005474 0%, #005474 100%);
    color: white;
    border-radius: 24px;
    padding: 1rem 20px;
}

.rewards-badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}
    /* Loyalty Page Start */

@media (max-width: 992px) {
   .d-flex {
        flex-direction: column;
    }
    .ImageTextBox{
      max-width: 100%!important;
    }
  }

.hero-section {
    position: relative;
    min-height: 350px;
    padding: 3rem 0px;
    /* Use your image file name here */
    background: linear-gradient(rgb(0 0 0 / 25%), rgb(0 0 0 / 12%)), url(../images/Loyaltybg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; /* Vertically centers the box */
    color: white;
}

.hero-section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 55%; /* Limits width so text stays on the left */
    padding: 20px;
    padding-left:0;
}

.eyebrow {
    font-weight: bold;
    letter-spacing: 2px;
    color: #f15922; /* Gold accent color */
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.hero-section .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #f15922;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-section .cta-button:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  
    .hero-section {
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        max-width: 100%;
    }
}
@media (min-width: 300px) and  (max-width: 450px){
.hero-section .container{
  width: 100%;
}
.hero-content{
  padding: 0px;
}
}

  /* Container Start*/
@media (min-width: 320px) and (max-width:600px) {
    .container {
        max-width: 600px !important;
    }
}

@media (min-width: 601px) and (max-width:900px) {
    .container {
        max-width: 780px !important;
    }
}

@media (min-width: 901px) and (max-width:1000px) {
    .container {
        max-width: 880px !important;
    }
}

@media (min-width: 1001px) and (max-width:1100px) {
    .container {
        max-width: 980px !important;
    }
}

@media (min-width: 1101px) and (max-width:1200px) {
    .container {
        max-width: 1050px !important;
    }
}

@media (min-width: 1201px) and (max-width:1300px) {
    .container {
        max-width: 1150px !important;
    }
}

@media (min-width:1301px) and (max-width:1400px) {
    .container {
        max-width: 1250px !important;
    }
}

@media (min-width:1401px) and (min-width:1500px) {
    .container {
        max-width: 1350px !important;
    }
}

@media (min-width:1501px) {
    .container {
        max-width: 1450px !important;
    }
}

/* Container End*/


.List-Style-None{
  list-style: none!important;
}


.input-group .select2-container {
            flex: 1 1 auto; /* Allows it to grow and fill the remaining space */
            width: 1% !important; /* Forces Select2 to respect the flex sizing */
        }
        /* Optional: Match Select2 height to Bootstrap input group items */
        .select2-container--default .select2-selection--single {
            height: calc(2.25rem + 2px); 
            padding-top: 0.375rem; 
            padding-bottom: 0.375rem;
        }

        .input-group .select2-container {
    flex: 1 1 auto; 
    width: 1% !important; 
}
.select2-container .select2-selection--single{
  height: 38px !important;
}
.select2-container--default .select2-selection--single{
  border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
        border: 1px solid #dee2e6;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
      top: 5px;
    right: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 22px!important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
      color: #595c5f;
}
.form-select{
  color: #5c5f62!important;
}


/* Custom popup message box */
.message-box {
    position: fixed;
    top: 20px;
    right: -400px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: right 0.4s ease;
    z-index: 999999;
}

.message-box.success {
    border-left: 4px solid #28a745;
}

.message-box.error {
    border-left: 4px solid #dc3545;
}

.message-box .close-btn {
    background: none;
    border: none;
    font-size: 22px;
    position: absolute;
    right: 1px;
    top: -6px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
@media (min-width: 768px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

.dropdown-toggle::after{
    display: inline-block;
    margin-left: 7px;
    vertical-align: 0.1em;
    content: "";
    border-top: 7px solid;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    border-radius: 2px;
}

.slider-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 40px 20px;
}

 .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

 .nav-btn {
  background: #f15922;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

 .nav-btn:hover {
  background: #1b6582;
}

.card-track {
  display: flex;
  gap: 20px;
  overflow-x: auto; /* Allows swiping on mobile */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hides scrollbar on Firefox */
}

 .Slidercard {
    min-width: 400px;
    flex-shrink: 0;
}

 .Slidercard img {
  width: 100%;
  border-radius: 8px;
}

.WhychooseusLoyalty {
    background: var(--bg-body-White);
    padding: 3rem 2rem;
}

.WhychooseImage {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}

/* List styling */
.WhychooseusLoyalty ul {
    list-style: none;
    margin: 0;
}

    .WhychooseusLoyalty ul li {
        text-align: left;
    }

        .WhychooseusLoyalty ul li b {
            border-bottom: 1px solid var(--text-primary);
            color: var(--text-primary);
            display: inline-block;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }

/* Tablet */
@media (max-width: 991px) {
    .WhychooseusLoyalty {
        padding: 2rem 1.5rem;
    }

        .WhychooseusLoyalty h3 {
            font-size: 1.7rem;
        }

    .WhychooseImage {
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .WhychooseusLoyalty {
        padding: 1.5rem 1rem;
    }

        .WhychooseusLoyalty h3 {
            font-size: 1.4rem;
        }

        .WhychooseusLoyalty ul li {
            margin-bottom: 1.5rem;
        }
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    grid-auto-rows: 250px;
    gap: 15px;

/*    background-color: var( --Primary-Color);*/
}

/* Base Card */
.industry-grid .card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

/* LEFT SIDE */
.restaurant {
    grid-column: 1 / 2; /* first column */
    grid-row: span 2; /* tall */
    background-image: url('../images/Restaurant.png');
}

/* TOP RIGHT (50% 50%) */
.retail {
    grid-column: 2 / 4; /* span 2 columns */
    background-image: url('../images/retail.jpg');
}

.hotel {
    grid-column: 4 / 6; /* span 2 columns */
    background-image: url('../images/hoteltravel.jpg');
}

/* BOTTOM RIGHT (33.33% each) */
.ecommerce {
    grid-column: 2 / 3;
    background-image: url('../images/E-commerce.jpg');
}

.finance {
    grid-column: 3 / 4;
    background-image: url('../images/fintech.jpg');
}

.fitness {
    grid-column: 4 / 5;
    background-image: url('../images/gym.png');
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;   /* ADD THIS */
  justify-content: flex-end; /* Align content at bottom */
  padding: 15px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  color: white;
}
.overlay h3 {
  margin: 0 0 8px 0;
}

.overlay p {
  margin: 0;
}

.card:hover .overlay {
  opacity: 1;
}
.card:hover .ImageText{
  display: none;
} 
.ImageText {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  font-size: 1.2rem;
  padding: 1rem;
  background: linear-gradient(to top, rgb(3 3 3), #00000000)
}
.ImageText  p{
  margin: 0px;
}
.overlay h2 {
  color: white;
  font-family: sans-serif;
  font-size: 1.6rem;
  margin: 0;
}


@media (max-width: 992px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .restaurant {
        grid-column: 1 / 3; /* Full width */
        grid-row: span 1;
    }

    .retail {
        grid-column: auto;
    }

    .hotel {
        grid-column: auto;
    }

    .ecommerce,
    .finance,
    .fitness {
        grid-column: auto;
    }
}


/* =========================
   MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

    .industry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

        .industry-grid .card {
            grid-column: auto !important;
            grid-row: auto !important;
        }

    .ImageText {
        font-size: 1.2rem;
        padding: 0.8rem;
    }

    .overlay {
        padding: 12px;
    }

        .overlay h4 {
            font-size: 1.2rem;
        }

        .overlay p {
            font-size: 0.9rem;
        }
}
.text-white{
    color:white!important
}

.promo-section {
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 2rem 3rem;
    background: linear-gradient(rgb(255 255 255 / 65%), rgb(255 255 255 / 84%)), url(../../Content/images/tmsBg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* Image */
.promo-img img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
}

    .promo-img img:hover {
        transform: scale(1.03);
    }

/* Text */
.promo-text h2 {
    color: #201F1E;
    font-size: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    border-left: 5px solid #FF6633;
    padding-left: 15px;
    margin-bottom: 1rem;
}

.promo-text p {
    color: #605E5C;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0rem;
}

/* Stats Section */
.promo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.tmsbtnSec{
    display:flex;
    align-items:center;
    background: var(--ThemePrimaryColor);
    padding:15px;
}
    .tmsbtnSec p {
        font-size: 14px;
        color: white;
    }
    .tmsbtnSec .tmsbtn {
        margin-left: auto
    }
    .stat-item {
        text-align: left;
    }

    .stat-item img {
        height: 60px;
        margin-bottom: 10px;
    }

        .stat-item p {
            font-size: 14px;
            margin: 0;
            margin-bottom: 1rem;
        }

/* Tablet */
@media (max-width: 991px) {
    .promo-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }
    .tmsbtnSec{
        flex-wrap:wrap
    }
        .tmsbtnSec .tmsbtn{
            margin:0 auto
        }
        .promo-img {
            order: -1;
        }

    .promo-text h3 {
        border-left: none;
        border-top: 5px solid #FF6633;
        padding: 15px 0 0 0;
        font-size: 1.6rem;
    }

    .promo-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .promo-section {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .promo-text h3 {
        font-size: 1.3rem;
    }

    .promo-stats {
        grid-template-columns: 1fr;
    }

    .stat-item img {
        height: 50px;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1000px){

}