/* -------------------------
       Base / Theme variables
       ------------------------- */
@charset "UTF-8";

:root {
  --brand-1: #c62828;
  --brand-dark: #0B3D91;
  --brand-accent-1: #FF7A00;
  --brand-accent-2: #FF3A00;
  --muted: #6B7280;
  --bg: #F8FAFC;
  --card-bg: #FFFFFF;
  --radius-lg: 14px;
  --background-color: #f1f5f4;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #08915e;
  --surface-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #08915e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}


html,
body {
  /* height: 100%; */
  overflow-x: hidden !important;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: #0F1724;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

h1,
h2,
h3 {
  font-family: "Poppins", "Inter";
  color: var(--brand-dark);
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}


/* GLOBAL FIX - Remove unwanted horizontal scroll */
/* body {
  overflow-x: hidden !important;
} */

/* FIX for Bootstrap carousel horizontal overflow */
/* .carousel,
.carousel-item,
.carousel-item img {
  max-width: 100% !important;
  overflow: hidden !important;
} */

/* Fix unnecessary spacing on some screens */
/* .row {
  max-width: 100% !important;
  overflow-x: hidden !important;
} */




/* 
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

.terms-of-service .terms-hero {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.terms-of-service .terms-hero .badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.terms-of-service .terms-hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-of-service .terms-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto 30px;
}

.terms-of-service .terms-hero .terms-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .terms-hero .terms-highlights {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.terms-of-service .terms-hero .terms-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.terms-of-service .terms-hero .terms-highlights .highlight-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-hero .terms-highlights .highlight-item span {
  font-weight: 500;
}

.terms-of-service .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .terms-of-service .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .terms-of-service .terms-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .terms-grid .terms-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.terms-of-service .terms-grid .terms-card:hover {
  transform: translateY(-10px);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-grid .terms-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content {
  padding: 30px;
}

.terms-of-service .terms-grid .terms-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list {
  display: grid;
  gap: 15px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .terms-points {
  margin-bottom: 70px;
  text-align: center;
}

.terms-of-service .terms-points h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.terms-of-service .terms-points .points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .terms-of-service .terms-points .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .terms-of-service .terms-points .points-grid {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .terms-points .point-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.terms-of-service .terms-points .point-item:hover {
  transform: translateY(-5px);
}

.terms-of-service .terms-points .point-item:hover .point-icon {
  background-color: var(--accent-color);
}

.terms-of-service .terms-points .point-item:hover .point-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-points .point-item .point-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-points .point-item .point-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-points .point-item .point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-points .point-item .point-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.terms-of-service .terms-notices {
  margin-bottom: 70px;
}

.terms-of-service .terms-notices .notice-wrapper {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
}

.terms-of-service .terms-notices .notice-items {
  display: grid;
  gap: 25px;
}

.terms-of-service .terms-notices .notice-items .notice-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--background-color);
  border-radius: 15px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .terms-contact .contact-wrapper {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text {
  margin-bottom: 30px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions {
    flex-direction: column;
    align-items: center;
  }
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
} */


/* -------------------------Header / nav------------------------- */

/* Prevent navbar from causing overflow  */
/* .navbar {
  max-width: 100% !important;
  overflow-x: hidden !important;
} */

/* NAVBAR */
#mainNavbar {
  background: #0b1a36;
  z-index: 5000 !important;
}

.navbar-brand {
  font-size: 28px !important;
  font-weight: 700;
  color: #fff !important;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  margin-right: 4px;
}

.navbar .nav-link {
    transition: all 0.35s ease-in-out;
}
/* .nav-link:hover {
  color: #ff5a20 !important;
} */

.btn-cta {
  /* background: linear-gradient(90deg, #ff5a20, #ff7b4f); */
  background: linear-gradient(90deg, var(--brand-accent-1), var(--brand-accent-2));
  color: #fff !important;
  border-radius: 10px;
  border: 0px !important;
}

/* Highlight click active */
.navbar .nav-link.active {
  /* color: #ffcc00 !important;  */
  color: #ff5a20 !important;
  font-weight: 600;
  border-bottom: 2px solid #ff5a20;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 15px !important;
  }

  .nav-link {
    margin-right: 0rem !important;
  }

  .navbar-brand {
    font-size: 20px !important;
  }
}





@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 22px !important;
  }


}


/* HERO */
.hero {
  margin-top: 70px;
  position: relative;
}

.carousel-img {
  height: 100vh;
  object-fit: cover;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 30% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0b1a36;
  border-radius: 50%;
  padding: 20px;
  background-size: 50%;
}


@media (max-width: 1199.98px) {
  .carousel-img {
    height: 75vh;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption .lead {
    font-size: 1.1rem;
  }

  .subtext {
    font-size: 1.4rem;
  }

  .subtext-small {
    font-size: 1rem
  }

  /* .carousel-caption {
    z-index: 2;
    bottom: 20% !important;
  } */

}


@media (max-width: 992px) {
  .carousel-img {
    height: 50vh;
  }

  .carousel-caption h1 {
    font-size: 2.2rem;
  }

  .carousel-caption .lead {
    font-size: 1.1rem;
  }

  .subtext {
    font-size: 1.5rem;
  }

  .subtext-small {
    font-size: 1rem
  }

}


@media (max-width: 768px) {

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption .lead {
    font-size: 1.1rem;
  }

  .subtext {
    font-size: 1.4rem;
  }

  .subtext-small {
    font-size: 1rem
  }


}

@media (max-width: 576px) {

  .carousel-caption {
    z-index: 2;
    bottom: 15% !important;
  }

  .carousel-caption h1 {
    font-size: 1.4rem;
  }

  .carousel-caption .lead {
    font-size: 0.85rem;
  }

  .carousel-btn a {
    font-size: 0.85rem;
  }

  .subtext {
    font-size: 0.95rem;
  }

  .subtext-small {
    font-size: 0.75rem
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 10px;
  }

}


/*---------------- LOADER ----------------*/
#siteLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999;
  overflow: hidden;
  inset: 0;
}

.loader-circle {
  width: 70px;
  height: 70px;
  border: 6px solid #d1d1d1;
  border-top-color: #0b1a36;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 576px) {

  .loader-circle {
    width: 55px;
    height: 55px;
    border-width: 5px;
  }
}


/* -------------Sections spacing---------------- */
/* section { padding: 64px 0; } */
section {
  padding: 20px 0;
}

.section-subtitle {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.1rem !important;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  /* color: #FF512F; */
  letter-spacing: .5px;
}

.card-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.9));
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 8px 30px rgba(15, 23, 36, 0.06);
  border: none;
}

@media (max-width: 576px) {
  section {
    padding: 10px 0;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .section-subtitle {
    font-size: 0.95rem !important;
  }
}

/* -----------Mission / Vision gradient cards -------------- */

.about-title {
  background: linear-gradient(90deg, var(--brand-accent-1), var(--brand-accent-2));
  color: white;
  box-shadow: 0 6px 20px rgba(255, 90, 20, 0.15);
  border: none;
  font-size: 40px;
  border-radius: 10px;
  padding: 10px 18px;

}

.overview-title {
  color: #3C6BF0;
}

.gv-card {
  border-radius: 14px;
  color: #fff;
  /* padding: 1.25rem;
  min-height: 140px; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
}

.gv-mission {
  background: linear-gradient(135deg, var(--brand-accent-1), var(--brand-accent-2));
}

.gv-vision {
  background: linear-gradient(135deg, #0B3D91, #3C6BF0);
}

.gv-card i {
  font-size: 1.6rem;
  opacity: 0.95;
}


/* Right image card */
.about-image {
  min-height: 500px;
  /* height: 100vh; */
  border-radius: 16px;
  /* overflow: hidden; */
  position: relative;
  object-fit: cover;
}

.about-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.12));
  display: flex;
  align-items: flex-end;
  padding: 24px
}

/* .about-badge {
  width: 85%;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.06);
  border-radius: 10px
} */

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

  .about-image {
    min-height: 420px;

  }
}

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

  .about-image {
    min-height: 600px;

  }
}


/* Small responsive tweaks */
@media (max-width: 768px) {

  /* .about-image {
    min-height: 600px !important;
    
  } */
}

@media (max-width: 576px) {
  .about-image {
    min-height: 310px;
    object-fit: cover;
  }

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


/* ============================
   SHIVMANI MOTORS – PREMIUM GRADIENT CARDS
=============================== */
.feature-card {
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff, #f3f6fa);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 7px 20px rgba(0, 0, 0, 0.05);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* Soft glossy highlight overlay */
.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 220%;
  height: 220%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity .45s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

/* .g1-bg { background: linear-gradient(135deg, #ffece5, #fff7f3); }
.g2-bg { background: linear-gradient(135deg, #e7f0ff, #f4f9ff); }
.g3-bg { background: linear-gradient(135deg, #e9f6ea, #f6fff7); }
.g4-bg { background: linear-gradient(135deg, #fff3e3, #fff9f1); }
.g5-bg { background: linear-gradient(135deg, #f3e8ff, #faf2ff); }
.g6-bg { background: linear-gradient(135deg, #e6f8f5, #f3fffc); } */


/* .feature-card.g1-bg:hover { box-shadow: 0 12px 32px rgba(255, 74, 0, 0.28); }
.feature-card.g2-bg:hover { box-shadow: 0 12px 32px rgba(18, 95, 192, 0.28); }
.feature-card.g3-bg:hover { box-shadow: 0 12px 32px rgba(46, 125, 50, 0.30); }
.feature-card.g4-bg:hover { box-shadow: 0 12px 32px rgba(245, 144, 28, 0.30); }
.feature-card.g5-bg:hover { box-shadow: 0 12px 32px rgba(101, 29, 152, 0.30); }
.feature-card.g6-bg:hover { box-shadow: 0 12px 32px rgba(0, 123, 101, 0.30); } */

/* Hover Lift Effect */
.feature-card:hover {
  transform: translateY(-12px);
}

/* =======ICONS========= */
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.9rem;
  margin-bottom: 14px;
  transition: 0.35s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* Icon hover glow */
.feature-card:hover .feature-icon {
  transform: scale(1.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

/* 
.icon-bg-1 { background: linear-gradient(135deg, #ff6a00, #ff3d00); }
.icon-bg-2 { background: linear-gradient(135deg, #1967d2, #0d47a1); }
.icon-bg-3 { background: linear-gradient(135deg, #43a047, #1b5e20); }
.icon-bg-4 { background: linear-gradient(135deg, #ffa726, #fb8c00); }
.icon-bg-5 { background: linear-gradient(135deg, #8e24aa, #5e35b1); }
.icon-bg-6 { background: linear-gradient(135deg, #00897b, #00695c); } */

/* =======================
   CONTENT
========================= */
.feature-card h5 {
  font-weight: 700;
  color: #202020;
  margin-bottom: 10px;
}

.feature-para {
  font-size: 0.95rem;
  color: #6d7075;
}

/* Button */
.learn-btn {
  /* background: linear-gradient(135deg, #d32f2f, #b71c1c); */
  border-radius: 8px;
  padding: 6px 22px;
  color: #fff !important;
  transition: .3s ease;
}

.learn-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
}

/* 🔵 Blue Premium */
.g1-bg {
  background: linear-gradient(135deg, #eaf2ff, #c7dbff 40%, #8bb2ff);
}

.feature-card.g1-bg:hover {
  box-shadow: 0 12px 32px rgba(47, 92, 200, 0.35);
}

/* 🔥 Orange Burst */
.g2-bg {
  background: linear-gradient(135deg, #fff1e6, #ffd4b8 40%, #ff9b50);
}

.feature-card.g2-bg:hover {
  box-shadow: 0 12px 32px rgba(255, 123, 37, 0.35);
}

/* 💚 Emerald & Mint */
.g3-bg {
  background: linear-gradient(135deg, #e7fff4, #c6ffe6 40%, #4cd1a6);
}

.feature-card.g3-bg:hover {
  box-shadow: 0 12px 32px rgba(0, 150, 100, 0.35);
}

/* 💜 Royal Purple */
.g4-bg {
  background: linear-gradient(135deg, #f6e8ff, #ddb8ff 40%, #a46cff);
}

.feature-card.g4-bg:hover {
  box-shadow: 0 12px 32px rgba(120, 30, 200, 0.35);
}

/* ❤️ Red Glow */
.g5-bg {
  background: linear-gradient(135deg, #ffeaea, #ffb8b8 40%, #ff6f6f);
}

.feature-card.g5-bg:hover {
  box-shadow: 0 12px 32px rgba(220, 30, 30, 0.35);
}

/* 🟡 Yellow Gold */
.g6-bg {
  background: linear-gradient(135deg, #fff7df, #ffe9ab 40%, #ffd363);
}

.feature-card.g6-bg:hover {
  box-shadow: 0 12px 32px rgba(220, 160, 15, 0.35);
}

/* 🌊 Aqua Neon */
.g7-bg {
  background: linear-gradient(135deg, #e0fbff, #b8f5ff 40%, #46e6ff);
}

.feature-card.g7-bg:hover {
  box-shadow: 0 12px 32px rgba(0, 180, 190, 0.35);
}

/* 🔵 Blue Premium Icons */
.icon-bg-1 {
  background: linear-gradient(135deg, #4f7fff, #1b47ff);
}

/* 🔥 Orange Burst Icons */
.icon-bg-2 {
  background: linear-gradient(135deg, #ff8a3d, #ff5e00);
}

/* 💚 Emerald & Mint Icons */
.icon-bg-3 {
  background: linear-gradient(135deg, #00d28e, #008d5c);
}

/* 💜 Royal Purple Icons */
.icon-bg-4 {
  background: linear-gradient(135deg, #b05cff, #7e2cd5);
}

/* ❤️ Red Glow Icons */
.icon-bg-5 {
  background: linear-gradient(135deg, #ff4c4c, #d41111);
}

/* 🟡 Yellow Gold Icons */
.icon-bg-6 {
  background: linear-gradient(135deg, #ffd24a, #ffb703);
}

/* 🌊 Aqua Icons */
.icon-bg-13 {
  background: linear-gradient(135deg, #22d6ff, #1290a6);
}

@media(max-width: 576px) {

  /* .feature-para{
    font-size: 0.90rem;
  } */
  .feature-card h5 {
    font-size: 22px;
  }
}




/* .feature-card {
  border: none;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  overflow: hidden;
  height: 100%;
  transition: all .3s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    12px 12px 28px rgba(0, 0, 0, 0.12),
    -12px -12px 28px rgba(255, 255, 255, 0.8);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.6rem;
}


.learn-btn {
  color: white !important;

} */

.g1-bg {
  background-color: #FF4A00;
}

.g2-bg {
  background-color: #125FC0;
}

.g3-bg {
  background-color: #2E7D32;
}

.g4-bg {
  background-color: #F5901C;
}

.g5-bg {
  background-color: #651D98;
}

.g6-bg {
  background-color: #007B65;
}


/* .icon-bg-1 {
  background-color: #FF4A00;
}

.icon-bg-2 {
  background-color: #125FC0;
}

.icon-bg-3 {
  background-color: #2E7D32;
}

.icon-bg-4 {
  background-color: #F5901C;
}

.icon-bg-5 {
  background-color: #651D98;
}

.icon-bg-6 {
  background-color: #007B65;
} */


/* .icon-bg-1 {
  background: linear-gradient(135deg,  #c71a16);
} */
/* .icon-bg-2 {
  background: linear-gradient(135deg, #0d6efd, #0553d4);
}
.icon-bg-3 {
  background: linear-gradient(135deg, #0b8a5f, #07714a);
}
.icon-bg-4 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.icon-bg-5 {
  background: linear-gradient(135deg, #6f42c1, #5a2fa8);
}
.icon-bg-6 {
  background: linear-gradient(135deg, #198754, #0f7a56);
} */



/* ============================
   SHIVMANI MOTORS – MILESTONE CARDS
============================ */
/* .milestone-section {
  background: linear-gradient(135deg, #f7f9fc, #eef3f8);
} */

.milestone-card {
  /* padding: 35px 20px; */
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Decorative animated light overlay */
/* .milestone-card::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.4),
      transparent 70%);
  transform: rotate(45deg);
  transition: 0.5s ease;
  opacity: 0;
}

.milestone-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(20px, 20px);
} */

/* Hover Effects */
/* .milestone-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
} */

.milestone-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}


/* ICON STYLING */
.milestone-icon {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 12px;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.milestone-card:hover .milestone-icon {
  /* transform: scale(1.2) rotate(5deg); */
  transform: scale(1.2);
  /* text-shadow: 0 0 12px rgba(255, 0, 0, 0.6); */
}


/* Title & Text */
.milestone-card h5 {
  font-weight: 700;
  font-size: 18px;
}

.milestone-card p {
  font-size: 14px;
  color: #6c757d;
}


@media(max-width: 576px) {
  .milestone-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .milestone-card h5 {
    font-size: 22px;
  }
}




/* .milestone-card {
  border: none;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.08),
    -8px -8px 20px rgba(255, 255, 255, 0.7);
  transition: all .3s ease;
}

.milestone-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    12px 12px 28px rgba(0, 0, 0, 0.12),
    -12px -12px 28px rgba(255, 255, 255, 0.8);
}

.milestone-icon {
  font-size: 48px;
  display: inline-block;
} */

/* .milestone-icon {
  font-size: 42px;
} */

/* OEM Partnership */
.oem-box {
  padding: 40px;
  border-radius: 18px;
  background: linear-gradient(135deg, #E30613, #7A0A0A);
  color: #fff;
}

.oem-box ul li {
  background: transparent;
  color: #fff;
}

ul li strong {
  color: #000;
}



/* --------------------Vehicles cards------------------------- */
/* --- 3. Commercial Vehicles Section --- */
.vehicles-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicles-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); */
}

.vehicles-card:hover .vehicles-icon {
  transform: scale(1.2);
}

.bus-card {
  /* background: linear-gradient(to right, var(--primary-color), #f44336) ; */
  /* background-color: #d32f2f; */
  background: var(--brand-1);
}


.truck-card {
  /* background: linear-gradient(to right, var(--secondary-color), #455a64); */
  /* background-color: #455a64; */
  background-color: #37474f;
}

/* --- 4. & 5. Vehicle Type Cards --- */
.bus-type-card {
  /* background: #fff;  */
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 16px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important; */
}

.bus-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  /* border-color: rgba(255, 255, 255, 0.4); */
}

.bus-type-card:hover .bus-icon {
  transform: scale(1.2);
}


/* ---- GLASS EFFECT CARD ---- */
.truck-animated-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  /* backdrop-filter: blur(10px); */
  transition: all 0.4s ease;
  /* box-shadow: 0 8px 20px rgba(0,0,0,0.1); */
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  position: relative;
  overflow: hidden;
}

/* Hover Lift + Shadow */
.truck-animated-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  /* transform: scale(1.1); */

}

.truck-animated-card:hover .trucks-icon {
  transform: scale(1.1);
}

/* Animated border glow */
/* .truck-animated-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 6px;
    height: 300%;
    background: linear-gradient(var(--primary-color), #fff, var(--primary-color));
    animation: borderGlow 3s linear infinite;
}
@keyframes borderGlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

.icon-wrap i {
    font-size: 3rem;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
} */



/* .vehicle-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  background: var(--card-bg);
  box-shadow: 0 8px 24px rgba(15, 23, 36, 0.06);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 36, 0.12);
}

.vehicle-card .card-body {
  padding: 1rem;
}

.vehicle-card .thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
} */


.vehicle-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); */
  /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); */
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: 0.3s;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.vehicle-card .thumb {
  height: 170px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 576px) {
  .vehicle-card .thumb {
    height: 220px;
  }

}

/* ================= LIGHTBOX POPUP ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Helps on mobile */
  backdrop-filter: blur(6px);
  z-index: 5000;
}

.lightbox img {
  width: auto;
  max-width: 90vw;
  /* responsive width */
  max-height: 90vh;
  /* responsive height */
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* ==== LIGHTBOX CLOSE BUTTON ==== */
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 6000;
}

/* Mobile fixes */
@media (max-width: 576px) {
  /* .lightbox img {
    max-width: 100vw;
    max-height: 85vh;
    object-fit: cover;
  } */

  /* .lightbox{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  } */
  /* .lightbox-close {
    position: relative;
    font-size: 32px;
    top: 0px;
    right: 0px;
  } */
}


/* Mobile fixes */
@media (max-width: 576px) {

  .lightbox img {
    max-width: 95vw;
    max-height: 85vh;
    object-fit: contain;
  }

  /* Close button adjustment only */
  .lightbox-close {
    font-size: 32px;
    top: 10px;
    right: 12px;
  }
}



/* ==========================================
           FULLSCREEN IMAGE POPUP (LIGHTBOX)
        ========================================== */
/* .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  z-index: 5000;
}

.lightbox img {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 6000;
} */

/* .badge-accent {
  background: linear-gradient(90deg, var(--brand-accent-1), var(--brand-accent-2));
  color: white;
  font-weight: 700;
  padding: .35rem .6rem;
  border-radius: 8px;
  font-size: 0.8rem;
} */


#mahindra-owner {
  background: #f6f7f9;
}

.owner-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  transition: .3s ease;
  border: 1px solid #eee;
}

.owner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.owner-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  /* margin-bottom: 15px; */
  margin-bottom: 12px;
}

.resource-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

/* .badge-group .badge {
  padding: 10px 16px;
  margin: 5px;
  font-size: 14px;
  border-radius: 8px;
} */

/* -------------------------
       My Mahindra cards icons
       ------------------------- */
/* .mm-card {
  border-radius: 10px;
  padding: .9rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  box-shadow: 0 8px 24px rgba(15, 23, 36, 0.04);
  background: white;
}

.mm-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fafc, #fff);
  border: 1px solid rgba(11, 61, 145, 0.06);
} */


/* Heading */
.section-title {
  font-size: 32px;
  font-weight: 800;
  /* color: #1e1e1e; */
}

.section-subtitle {
  font-size: 16px;
  /* color: #555; */
}

/* CARD BASE STYLE */
.owner-card {
  padding: 30px;
  border-radius: 20px;
  /* background: #ffffff; */
  transition: 0.35s ease-in-out;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); */
  position: relative;
  overflow: hidden;
  cursor: pointer;
}


@media (min-width: 992px) and (max-width: 1199.98px) {
  .owner-card h4 {
    font-size: 1.4rem;
  }
}

/* GRADIENT BACKGROUNDS */
/* .gradient-blue {
    background: linear-gradient(135deg, #ffffff, #e7f1ff);
}

.gradient-red {
    background: linear-gradient(135deg, #ffffff, #fee7e7);
}

.gradient-yellow {
    background: linear-gradient(135deg, #ffffff, #fff7e0);
}

.gradient-sky {
    background: linear-gradient(135deg, #ffffff, #e8f9ff);
}

.gradient-green {
    background: linear-gradient(135deg, #ffffff, #e9f9f1, #d7f5e6);
} */


/* ==========MIXED SHADE GRADIENT BACKGROUNDS======== */

/* BLUE – light to deeper blue */
.gradient-blue {
  background: linear-gradient(135deg, #ffffff, #dceaff, #b6d3ff);
}

/* RED – soft pink to deeper red tones */
.gradient-red {
  background: linear-gradient(135deg, #ffffff, #ffe1e1, #ffb8b8);
}

/* YELLOW – warm cream to rich yellow-gold */
.gradient-yellow {
  background: linear-gradient(135deg, #ffffff, #fff3cc, #ffe69c);
}

/* SKY – cool white to deeper sky blue */
.gradient-sky {
  background: linear-gradient(135deg, #ffffff, #dff6ff, #b5eaff);
}

/* GREEN – Bootstrap-success style (new) */
.gradient-green {
  background: linear-gradient(135deg, #ffffff, #e4fbe7, #b8eec4);
}


/* ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
  transition: 0.3s;
}


/* HOVER EFFECTS */
.owner-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.owner-card:hover .icon-box {
  transform: scale(1.1) rotate(8deg);
}


/* ------------Services cards section------------------- */

/* CARD BASE */
.pro-card {
  /* padding: 35px 25px; */
  padding: 25px 10px;
  border-radius: 20px;
  text-align: center;
  color: #222;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  transition: 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pro-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

/* ICON CIRCLE */
.icon-wrapper {
  /* width: 85px; */
  /* height: 85px; */
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
}

.pro-card:hover .icon-wrapper {
  transform: scale(1.18) rotate(10deg);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: #444;
}


/* 1. Royal Gold Mist */
/* .pro-1 {
            background: linear-gradient(135deg, #FFF8E1, #F1C16B);
        }

        .pro-1 .icon-wrapper {
            background: linear-gradient(135deg, #F9D27D, #B57B00);
        } */

/* 1. Vehicle Sales – Fresh Premium Gold Blend */
.pro-1 {
  background: linear-gradient(135deg, #FFF8E5, #E7B56C);
}

.pro-1 .icon-wrapper {
  background: linear-gradient(135deg, #FFDDAA, #B97800);
}

/* 6. Finance & Insurance – Crystal Sky Blue Mist */
.pro-6 {
  background: linear-gradient(135deg, #F3FAFF, #7BA4D9);
}

.pro-6 .icon-wrapper {
  background: linear-gradient(135deg, #BBD9FF, #1A3C6E);
}

/* 2. Sky Aqua Breeze */
.pro-2 {
  background: linear-gradient(135deg, #E9F8FF, #7BC4E8);
}

.pro-2 .icon-wrapper {
  background: linear-gradient(135deg, #8FD7F6, #1565C0);
}

/* 3. Blush Rose Pearl */
.pro-3 {
  background: linear-gradient(135deg, #FFF1F4, #E7A3B6);
}

.pro-3 .icon-wrapper {
  background: linear-gradient(135deg, #F8B7C8, #AD1457);
}

/* 4. Lavender Frost Glow */
.pro-4 {
  background: linear-gradient(135deg, #F5F0FF, #C7B8FF);
}

.pro-4 .icon-wrapper {
  background: linear-gradient(135deg, #DCC8FF, #5E35B1);
}

/* 5. Mint Frost Shine */
.pro-5 {
  background: linear-gradient(135deg, #EDFFF6, #A8E6C2);
}

.pro-5 .icon-wrapper {
  background: linear-gradient(135deg, #B3F3D4, #00796B);
}

/* 6. Blue Steel Mist */
/* .pro-6 {
            background: linear-gradient(135deg, #F2F7FF, #A7BFE8);
        }

        .pro-6 .icon-wrapper {
            background: linear-gradient(135deg, #B9CCEF, #2C3E50);
        } */


/* RESPONSIVE */
@media (max-width: 768px) {
  .pro-card {
    padding: 20px 10px;
  }
}





/* ------------Services cards section------------------- */
/* .icon-blue {
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    box-shadow: 0 6px 18px rgba(0,64,163,0.25);
  } */

/* .pro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
} */


/* .pro-card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: -1;
    background: linear-gradient(135deg,
        rgba(255, 0, 0, 0.4),
        rgba(255, 153, 0, 0.4),
        rgba(255, 0, 0, 0.4)
    );
    filter: blur(20px);
    opacity: 1;
    transition: 0.4s ease;
}


.pro-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: 0.4s ease;
} */

/* .icon-wrapper {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
}

.icon-wrapper:hover{
transform: scale(1.1);
} */


.services-card {
  padding: 20px;
  border-radius: 18px;
  /* background: #ffffff; */
  box-shadow: 0 6px 18px rgba(255, 90, 0, 0.25);
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
  transition: .4s ease;
}

.services-card:hover {
  transform: translateY(-8px);
  /* transform: scale(1.1); */
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */

}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d32f2f, #ff6f00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .pro-services-card {
    padding: 0px 0px;
  }
}

@media (max-width: 768px) {
  .services-card {
    padding: 15px;

  }

  .pro-service-card {
    padding: 0px 0px;
  }
}


.service-options-section {
  background: #ffffff;
}


.pro-service-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Shine Animation */
/* .pro-service-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 200%;
  height: 250%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: rotate(25deg);
  transition: 0.7s;
  opacity: 0;
}

.pro-service-card:hover::before {
  top: -20%;
  left: -20%;
  opacity: 1;
} */

/* Hover Effects */
/* .pro-service-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
} */


/* .pro-service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border: 1px solid rgba(255, 0, 0, 0.45);
    box-shadow: 
        0 12px 30px rgba(215, 38, 56, 0.28),  
        0 0 20px rgba(255, 100, 100, 0.35),  
        0 0 8px rgba(255, 0, 0, 0.35);
} */

.pro-service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow:
    0 15px 35px rgba(255, 50, 50, 0.35),
    0 0 25px rgba(255, 0, 0, 0.30),
    0 0 10px rgba(255, 100, 100, 0.45);
}



/* Icons */
.pro-service-card .icon {
  font-size: 40px;
  color: #d72638;
  /* Mahindra Red */
  margin-bottom: 12px;
  transition: 0.3s;
}

.pro-service-card:hover .icon {
  transform: scale(1.2);
  filter: drop-shadow(0 5px 10px rgba(215, 38, 56, 0.4));
}

/* Titles */
.pro-service-card .title {
  font-weight: 700;
  margin-bottom: 6px;
}

/* Text */
.pro-service-card p {
  font-size: 14px;
  color: #555;
}

/* Light Truck/Buses Gradients */
.pro-service-card:nth-child(1) {
  background: linear-gradient(145deg, #fff6f7, #fafcff);
}

.pro-service-card:nth-child(2) {
  background: linear-gradient(145deg, #fff8f3, #fbfcff);
}

.pro-service-card:nth-child(3) {
  background: linear-gradient(145deg, #f3fff8, #fdfcff);
}

.pro-service-card:nth-child(4) {
  background: linear-gradient(145deg, #f4f8ff, #fffefe);
}


/* <.........footer.........> */

#footer {
  background-color: #0b1a36;
}

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

/* .footer-para{
  max-width: 55%;
} */

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  /* color: #ff4141; */
  color: #ff5a20;
}

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

.footer input::placeholder {
  font-size: 13px;
}

.social-round {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  /* background: linear-gradient(90deg, var(--brand-accent-1), var(--brand-accent-2)); */
  /* color: #ffffff; */
  color: white;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

/* Hover effect */
.social-round:hover {
  background: white;
  /* box-shadow: 0 4px 12px rgba(255, 50, 50, 0.5); */
  color: grey;
}

.footer-line {
  border: 0;
  border-top: 1px solid #ffffff;
  opacity: 0.4;
  /* optional soft look */
  margin-top: 20px;
}

.contact-heading {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .footer-para {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .social-round {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

}




/* ===================== LEFT TESTIMONIAL CAROUSEL ===================== */
.testimonial-frame {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  min-height: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
}

.t-box {
  border-left: 4px solid var(--brand-1);
  background: #fbfbfb;
  padding: 20px;
  border-radius: 6px;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 260px;
}

.tms-slide {
  display: none;
  animation: fade 0.8s ease-in-out;
}

.tms-slide.active {
  display: block;
}

.tms-slide p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.tms-slide h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #c60000;
}

.tms-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.tms-controls button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #c60000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .testimonial-frame {
    padding: 0px;
    /* min-height: 300px; */
    /* height: 100%; */
  }

  .t-box {
    /* min-height: 250px; */
    padding: 12px;
  }

  /* .tms-controls{
      bottom:  5px;
    } */

}

@media (max-width: 768px) {
  .testimonial-frame {
    padding: 0px;
    min-height: 200px;
  }

  .t-box {
    min-height: 150px;
    padding: 10px;
  }

  .tms-controls {
    bottom: -60px;
  }

}

@media (max-width: 576px) {
  .testimonial-frame {
    padding: 2px;
    min-height: 340px;
  }

  .t-box {
    padding: 15px;
    min-height: 150px;

  }

  .tms-controls {
    bottom: 60px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }
}

/* ===================== RIGHT GALLERY CAROUSEL ===================== */
.gallery-frame {
  height: 350px;
  width: 100%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.glys-slide {
  display: none;
  height: 100%;
}

.glys-slide.active {
  display: block;
  animation: fade 0.8s ease-in-out;
}

.glys-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inside Image Buttons */
.glys-controls {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.glys-controls button {
  width: 45px;
  height: 45px;
  background: #fff;
  border: none;
  border-radius: 12px;
  color: #c60000;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.disabled-link {
  pointer-events: none;
  cursor: not-allowed;
  text-decoration: none;

}

.contact-card {
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); */
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  /* background-color: white; */
  background: linear-gradient(90deg, var(--brand-accent-1), var(--brand-accent-2));
  /* background-color: var(--brand-1); */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  /* color: #0b1a36; */
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #f2f2f2;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}



.leadership-card {
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); */
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}



/* <........media query.........> */
/* @media (max-width: 767px) {
} */