/* css/style.css */
:root {
  --primary-color: #df3939;
  --secondary-color: #16274a;
  --text-dark: #212529;
  --section-padding: 80px 0;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
  border: none;
}

.navbar-toggler {
  border: none;
}

/* Navbar Fixed on Top */
body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  color: #6c757d;
  line-height: 1.6666;
  font-weight: 400;
}

p {
  color: #6c757d;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #16274a;
}

.text-primary {
  color: #df3939 !important;
}

.btn-second {
  background-color: #16274a;
  color: #fff;
}

.bg-f9f4f4 {
  background: #f9f4f4;
}

.btn-second:hover {
  background-color: #16274a;
  color: #fff;
  ;
}

.bg-primary {
  background: #df3939 !important;
}

.btn-primary {
  background: #df3939 !important;
  border: none;
}

/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
} */

/* Logo + Branding */
.navbar-brand {
  font-weight: 700;
  color: #df3939 !important;
  letter-spacing: 0.5px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 10px 15px;
  transition: 0.3s;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #df3939 !important;
  /* background-color: rgba(13, 110, 253, 0.08); */
  border-radius: 6px;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: none;
}

.dropdown-menu .dropdown-item {
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #df3939;
  color: #fff;
}

/* Request Demo Button */
/* .navbar .btn {
  border-radius: 25px;
  transition: 0.3s;
  border: none;
} */

.navbar .btn:hover {
  color: #fff !important;
  border-color: #a02424 !important;
  background-color: #a02424 !important;
}

.btn-primary-hover:hover {
  color: #353f4f !important;
  border-color: #ffba01 !important;
  background-color: #ffba01 !important;
}

/* navber section end*/

/* Your School is Unique */
.stats-section {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

.stats-section .highlight {
  background: linear-gradient(90deg, #df3939, #16274a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box {
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box i {
  color: #df3939;
}

.stat-box .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #df3939, #16274a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Your School is Unique */
/* School Related Services */
.service-box i p h5 {
  transition: all 0.3s ease-in-out;
 color: #fff !important;
}

.bg-16274a {
  background: linear-gradient(135deg, #16274a, #16274a, #df3939);
}

.Section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
}

/* .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #fff;
} */
/* .service-box:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(135deg, #16274a, #16274a, #df3939);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.2);
  color: #fff;
} */
.service-box {
  /* transform: translateY(-8px) scale(1.03); */
  background: linear-gradient(135deg, #16274a, #16274a, #df3939);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.2);
  color: #fff;
  height: 100%;
  padding: 20px;
  border-radius: 12px;
}

/* School Related Services */
/* school section */
.school-logos .item {
  padding: 15px;
}

.school-logos img {
  /* max-height: 80px; */
  margin: auto;
  transition: transform 0.3s ease;
}

.school-logos img:hover {
  transform: scale(1.1);
}

/* school section */

/* Accordion Style */
.faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

/* .faq-item:hover {
  background-color: #f1f3f5;
} */

.faq-question {
  font-weight: 500;
  color: #333;
  font-size: 16px;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #002d62;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 10px;
  padding-left: 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.faq-answer.show {
  display: block;
}

/* faq section */
/* cta section */
.cta-subtitle {
  color: #fe0 !important;
}

.btn-bg-white {
  background: #fff;
  color: #a32d2b !important;
}

.btn-bg-white:hover {
  background: transparent;
  color: #fff !important;
  border: 1px solid#fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 1px solid#fff;
}

.btn-outline-white:hover {
  color: #353f4f !important;
  border-color: #ffba01 !important;
  background-color: #ffba01 !important;
}

/* cta section */
@media (max-width: 991px) {
  .navbar-nav .nav-link {
    padding: 10px;
  }
}



/* slider */
/*====================
17. Hero css 
======================*/

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 150px;
  padding-bottom: 120px;
  /* padding-top: 150px;
  padding-bottom: 240px; */
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: rgba(11, 28, 57, .3);
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: #df3939;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: #16274a;
  font-size: 21px;
  /* font-size: 25px; */
  letter-spacing: 6px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  border-bottom: 3px solid #16274a;
}

.hero-single .hero-content p {
  color: #fff;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 35px;
  justify-content: start;
}

.hero-single .hero-img::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--theme-color);
  right: 100px;
  bottom: 0px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
}

.hero-single .hero-img {
  position: absolute;
  right: 100px;
  bottom: 120px;
  width: 50%;
  z-index: -1;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  line-height: 55px;
  border-radius: 50px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #fff;
  color: var(--theme-color);
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 30px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .hero-single .hero-img {
    position: relative;
    width: 100%;
    right: unset;
    bottom: unset;
    margin-top: 50px;
  }

  .hero-single .hero-img::before {
    width: 250px;
    height: 250px;
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .hero-btn {
    gap: 1rem;
  }

}

/* slider */
/*70. Footer css 
======================*/

.footer-area {
  /* background: #16274a; */
  background: linear-gradient(to right, #001f3f, #003366);
  position: relative;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper {
  padding: 25px 0;
  /* border-top: 1px solid#fff; */
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #df3939;
}

.copyright .copyright-text {
  color: #fff;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #df3939;
  font-weight: 500;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #df3939;
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  list-style-type: none;
  padding-left: 0;
}

.footer-list li a {
  color: #fff;
  transition: all .5s ease-in-out;
  text-decoration: none;
}

.footer-list li a i {
  margin-right: 5px;
  color: #df3939;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #df3939;
}

.footer-widget-box p {
  color: #fff;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
  list-style-type: none;
}

.footer-social li {
  color: #fff;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: #fff;
  color: #df3939;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #df3939;
  color: #fff;
}

.company-link {
  color: #df3939;
}

.footer-contact {
  padding-left: 0;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.border-primary{border:1px solid#df3939 !important; } 

.footer-contact li i {
  /* width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px; */
   margin-right: 15px;
  /*border-radius: 10px 10px 10px 0;
  background: #df3939;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff; */
}

.subscribe-form .form-control {
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}

.subscribe-form .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
}

.subscribe-form .theme-btn:hover {
  color: #df3939;
}

.subscribe-form .theme-btn::before {
  background: #fff;
}

.subscribe-form .theme-btn:hover::after {
  border-color: #df3939;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before {
    width: 40%;
  }

}

/* about */
/* Hero Section */
.hero {
  height: 300px;
  background: linear-gradient(to right, #001f3f, #003366);
}

/* Background Layer */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Overlay */
.hero-bg .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
}

/* Shapes */
.hero-bg .shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background-color: #ff4d4d;
  top: 10%;
  left: 5%;
  opacity: 0.3;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  bottom: 6%;
  right: 6%;
  opacity: 0.1;
}

/* Content */
.hero-content {
  z-index: 2;
}



.hero-subtext {
  text-wrap: balance;
}

/* Dots Layer */
/* Hero Dots Layer (cover full section) */
.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Each dot */
.hero-dots span {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.3;
  bottom: -20px;
  /* Start below the hero section */
  animation: rise 10s linear infinite;
}

/* Different positions + delays for randomness */
.hero-dots span:nth-child(1) {
  left: 10%;
  width: 6px;
  height: 6px;
  animation-duration: 12s;
}

.hero-dots span:nth-child(2) {
  left: 25%;
  animation-duration: 15s;
  animation-delay: 2s;
}

.hero-dots span:nth-child(3) {
  left: 45%;
  width: 10px;
  height: 10px;
  animation-duration: 18s;
  animation-delay: 4s;
}

.hero-dots span:nth-child(4) {
  left: 65%;
  animation-duration: 14s;
  animation-delay: 6s;
}

.hero-dots span:nth-child(5) {
  left: 85%;
  width: 12px;
  height: 12px;
  animation-duration: 20s;
  animation-delay: 8s;
}

/* Animation: move upward + fade */
@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-350px);
    /* rise full section height */
    opacity: 0;
  }
}

/* about */
/* our journey */
.our-journey .timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 800px;
}

.our-journey .timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #16274a;
  /* Bootstrap primary color */
  transform: translateX(-50%);
}


/* our journey */
.company-founded {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://picsum.photos/1920/600?random=20') no-repeat center center;
  background-size: cover;
}

.solution-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-card .icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.solution-card:hover .icon i {
  transform: scale(1.2);
  color: #f39c12;
  /* nice highlight color */
}


/* Custom styles for product cards */


.card-pro {
  transition: transform .28s cubic-bezier(.2, .8, .2, 1), box-shadow .28s;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(20, 40, 80, .12);
}

.bg-light {
  background: #f9f4f4 !important;
}

.card-pro .card-body {
  padding: 1.35rem;
}

/* Image Stylish Effect */
.img-fluid {
  border-radius: 16px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-fluid:hover {
  /* transform: scale(1.08) rotate(-1deg); */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
}

/* Button Stylish */
.btn-primary {
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* Title Animation */
@keyframes slideIn {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.badge-feature {
  background: rgba(13, 110, 253, .08);
  color: #df3939;
  font-weight: 600;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
}

.product-img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: .6rem;
}

.feature-list li {
  margin-bottom: .35rem;
  font-size: .95rem;
}

.card-footer {
  background: transparent;
  border-top: 0;
  padding: .8rem 1.35rem 1.35rem;
}

/* small tweaks */
@media (max-width: 575px) {

  .product-img {
    max-height: 120px;
  }
}

.feature-card {
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #df3939;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  border-radius: 50%;
  margin: auto;
}

.solution-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.solution-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.solution-card i {
  font-size: 40px;
  color: #df3939;
  margin-bottom: 20px;
}

.solution-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-card p {
  color: #555;
  font-size: 0.95rem;
}

.leasing-section p.intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 1.1rem;
}

.leasing-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.leasing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Timeline container */
.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Timeline vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #df3939;
  transform: translateX(-50%);
}

/* Timeline items */


/* Section Title */


/* Hover animation for content */
.hover-timeline {
  transition: all 0.3s ease-in-out;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-left: 5px solid#df3939;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* Card hover effect */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Lists inside cards */
.hover-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.hover-card ul li {
  position: relative;
  padding: 4px 0;
}



/* Responsive adjustments */
@media (max-width: 992px) {
  .flex-column-reverse {
    flex-direction: column !important;
  }
}

/* Section title style */


/* Tracker card container */
.tracker-card {
  perspective: 1000px;
  cursor: pointer;
}

/* Card front & back */
.tracker-card .card-front,
.tracker-card .card-back {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.6s;
  backface-visibility: hidden;
  height: 100%;
}

/* Card back */
.tracker-card .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
}

/* Flip effect */
.tracker-card:hover .card-front {
  transform: rotateY(180deg);
}

.tracker-card:hover .card-back {
  transform: rotateY(0deg);
}

/* Features list */
.tracker-card ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.tracker-card ul li {
  padding: 3px 0;
  position: relative;
}

.step-card {

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  ;
  overflow: hidden;
  height: 100%;
}

.step-number {
  background: #16274a;
  color: #fff;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 8px;
  margin-right: 20px;
  min-width: 50px;
  text-align: center;

}

.step-icon {
  font-size: 2rem;
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  /* color: #333; */
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.95rem;
  /* color: #666; */
  margin: 0;
}

.step-card {
  background: #fff;
  /* keep card white inside */
  border-radius: 12px;
  padding: 20px;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#fff, #fff),
    /* inner background */
    linear-gradient(135deg, #df3939, #16274a);
  /* border gradient */
}


.step-card:hover {
  /* border-color: #df3939; */
   box-shadow: inset 0 0 8px rgba(223, 57, 57, 0.3),
              inset 0 0 12px rgba(22, 39, 74, 0.3);
}


/* .step-card {
  background: linear-gradient(135deg, #df3939 0%, #16274a 100%);
} */
/* .step-tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
} */

/* .step-tab-tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
} */

/* Step Colors */
/* .step-1 .step-tab {
  background: #df3939;
}

.step-2 .step-tab {
  background: #df3939;
}

.step-3 .step-tab {
  background: #df3939;
}

.step-4 .step-tab {
  background: #df3939;
}

.step-5 .step-tab {
  background: #df3939;
} */

/* Responsive */
@media (max-width: 360px) {
  /* .step-card {
    flex-direction: column;
    text-align: center;
  } */

  .step-number,
  .step-icon {
    margin: 0 0 12px 0;
  }
}

/* Card hover shadow */
.tracker-card:hover .card-front,
.tracker-card:hover .card-back {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}