:root {
  --primary-color: #eb0028;
  --secondary-color: #1b1b1b;
  --accent-color: #00bcd4;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #ffffff;
  --bg-gray: #f9f9f9;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.tsl_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Top Bar */
.top-bar {
  background: #1b1b1b;
  color: #ffffff;
  font-size: 14px;
  padding: 5px 0;
  
}

.contact-info span {
  margin-right: 25px;
  display: inline-block;
}

.contact-info i {
  color: #00bcd4;
  margin-right: 6px;
}

/* Main Header */

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.main-header a {
  color: var(--primary-color);
}

.main-header a h3 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
}

.logo img {
  height: 50px;
}

.logo h3 {
    font-size: 19px;
}

.nav-menu .nav-links {
  list-style: none;
  gap: 30px;
}

.nav-menu .nav-links li a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu .nav-links li a:hover,
.nav-menu .nav-links li a.active {
  color: #eb0028;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* CTA Search */
.track-form {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 5px 10px;
  background-color: #f9f9f9;
}

.track-form input {
  border: none;
  background: transparent;
  padding: 5px 10px;
  font-size: 14px;
  outline: none;
  width: 180px;
}

.track-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: #eb0028;
  font-size: 16px;
}

.mobile-menu-toggle {
  display: none;
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu-toggle i {
  font-size: 20px;
  /* color: var(--primary-color); */
}

.mobile-menu-toggle:hover {
  background-color: #f8f8f8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
  /* display: none; */
  flex-direction: column;
  width: 100%;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.nav-wrapper .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
}

.nav-wrapper .track-form {
  margin-top: 10px;
  width: 100%;
}

.nav-wrapper .track-form input {
  width: 100%;
}

.nav-wrapper .nav-links li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.banner-section-two {
  position: relative;
  padding: 150px 20px 80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}

.banner-section-two::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.304);
  z-index: 1;
}

.banner-section-two .content-column {
  position: relative;
  z-index: 2;
}

.banner-section-two .inner-column {
  max-width: 100%;
  margin: 0 auto;
}

.banner-section-two h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3em;
  margin-bottom: 15px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.banner-section-two .text {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.banner-form-two {
  padding: 10px;
}

.banner-form-two input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.banner-form-two .theme-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-color, #007BFF);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-form-two .theme-btn:hover {
  background-color: var(--primary-dark, #0056b3);
}

.featured-section {
  position: relative;
  background: #fefefe;
  padding: 60px 20px;
  border-top: 4px solid #eb0028;
}

.outer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.outer-container .clearfix {
  /* border: 1px solid green; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-block {
  flex: 1 1 calc(25% - 24px);
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-block .inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 30px;
  text-align: center;
}

.icon-box {
  width: 90px;
  height: 90px;
  background-color: #eb0028;
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
  line-height: 90px;
  text-align: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.feature-block:hover .icon-box {
  background-color: #c1001f;
}

.inner-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 6px;
}

.inner-box h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.inner-box h3 a:hover {
  color: #eb0028;
}

.inner-box .text {
  font-size: 15px;
  color: #777;
  margin-top: 8px;
}

.welcome-section {
  position: relative;
  padding: 100px 0 80px;
  /* background-color: #f9f9f9; */
}

.sec-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

.sec-title h2 span {
  color: var(--primary-color);
}

.sec-title .separator {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px 0 25px;
  border-radius: 4px;
}

.sec-title .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Feature List Styling */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  margin-bottom: 25px;
  padding-left: 0;
}

.feature-list h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list h4 i {
  font-size: 20px;
  color: var(--primary-color);
}

.feature-list p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Image Styling */
.image-column .image {
  position: relative;
  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 12px;
}

.image-column .image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.image-column .image:hover img {
  transform: scale(1.05);
}

/* Animation Placeholder */
.fadeInLeft, .fadeInRight {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-section-two {
  position: relative;
  padding: 90px 0;
  background-color: #f9f9f9;
}

.sec-title.centered h3 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.sec-title.centered h3 span {
  color: var(--primary-color);
}

.sec-title .separator {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto;
  border-radius: 2px;
}

.sec-title .subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

/* Service Card */
.services-block-three {
  margin-bottom: 30px;
}

.services-block-three .inner-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-block-three .inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.services-block-three .image {
  position: relative;
  overflow: hidden;
}

.services-block-three .image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.services-block-three .inner-box:hover .image img {
  transform: scale(1.05);
}

.services-block-three .image .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  text-align: left;
}

.services-block-three .image .overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  /* font-family: 'Raleway', sans-serif; */
}


.counter-section-modern {
  position: relative;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.counter-section-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

.counter-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  z-index: 1;
}

.track-box .track-inner {
  background-color: #eb0028;
  background-size: cover;
  padding: 50px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.track-box .icon-circle {
  font-size: 64px;
  color: #fff;
  margin-bottom: 15px;
}

.track-box h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.track-box .description {
  font-size: 16px;
  margin-bottom: 25px;
}

.track-form-modern {
  display: flex;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.track-form-modern input {
  flex: 1;
  border: none;
  background: none;
  color: #fff;
  font-size: 16px;
  padding: 8px 0;
  outline: none;
}

.track-form-modern input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.track-form-modern button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s;
}

.track-form-modern button:hover {
  transform: scale(1.1);
}

.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.suffix {
  font-size: 28px;
  vertical-align: top;
}

.stat-card p {
  font-size: 16px;
  color: #ccc;
}

.fullwidth-section-modern {
  display: flex;
  width: 100%;
  min-height: 400px;
}

.fullwidth-section .outer-container-modern {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.outer-container-modern .column {
  position: relative;
  flex: 1 1 50%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.left-column {
  background-image: url('images/background/5.jpg');
}

.right-column {
  background-image: url('images/background/6.jpg');
}

.column:hover {
  transform: scale(1.02);
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.overlay.red {
  background: rgba(235, 0, 39, 0.662);
}

.inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 500px;
}

.inner-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.inner-content .text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.theme-btn {
  background-color: #ffffff;
  color: #111;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.theme-btn:hover {
  background-color: #f0f0f0;
}

.theme-btn.alt {
  background-color: #fff;
  color: #e10028;
}

.theme-btn.alt:hover {
  background-color: #e10028;
  color: #fff;
}

.main-footer-modern {
  background: #111;
  color: #ddd;
  padding: 60px 20px 30px;
}

.main-footer-modern .footer-container {
  max-width: 95%;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #eb0028;
}

.footer-column p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter-form button {
  background: #eb0028;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #c10022;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  color: #ccc;
  font-size: 18px;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #eb0028;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #222;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}


/* Medium Screens (Tablet) */
@media (min-width: 600px) {
  .banner-section-two {
    padding: 180px 40px 100px;
  }

  .banner-section-two h1 {
    font-size: 40px;
  }

  .banner-form-two .row.clearfix {
    display: flex;
    gap: 15px;
  }

  .banner-form-two .form-group {
    margin-bottom: 0;
  }

  .banner-form-two .form-group.col-lg-8,
  .banner-form-two .form-group.col-lg-4 {
    padding: 0;
  }

  .banner-form-two input[type="text"],
  .banner-form-two .theme-btn {
    width: 100%;
  }

  
}


/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu.desktop, .header-cta.desktop {
    display: none;
  }

  .main-header {
    padding: 15px 10px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-wrapper.active {
    padding: 15px 20px;
    max-height: 500px;
  }

  .nav-wrapper.active .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .counter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .outer-container-modern .column {
    flex: 1 1 100%;
  }

  .inner-content h3 {
    font-size: 28px;
  }

  .inner-content .text {
    font-size: 15px;
  }

  .footer-top {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 15px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

}

@media (min-width: 992px) {
  .banner-section-two {
    padding: 250px 60px 130px;
    text-align: left;
  }

  .banner-section-two .inner-column {
    max-width: 600px;
    padding-top: 50px;
  }

  .banner-section-two h1 {
    font-size: 55px;
  }

  .banner-section-two .text {
    font-size: 20px;
  }

  .banner-form-two input[type="text"] {
    font-size: 18px;
  }

  .banner-form-two .theme-btn {
    font-size: 18px;
    padding: 16px 32px;
    width: auto;
  }

  .banner-form-two .form-group.col-lg-8 {
    flex: 1 1 70%;
  }

  .banner-form-two .form-group.col-lg-4 {
    flex: 1 1 30%;
  }

  .banner-form-two .row.clearfix {
    display: flex;
    gap: 0;
  }

  
}

@media (max-width: 1024px) {
  .feature-block {
    flex: 1 1 calc(50% - 24px);
  }
}