@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>* {
  margin: 0px;
}
.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;
  --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;
  --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: 2px;
  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;
  }
}

@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('../Img/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: 60px;
    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;
    }
  }


  /* 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;
}