

.banner-overlay {
  padding: 40px;
  animation: fadeIn 1.5s ease-in-out;
}

.banner-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
}
.badge-wrapper.mb-3 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.banner-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-highlight {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ffd5;
  margin-bottom: 10px;
}

.banner-app-status {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.banner-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.cta-button {
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: unset;
    background-color: #fff;
}
.cta-button img {
    width: 180px;
}

.cta-button:hover {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 2px #ffcc00;
}

.banner-call {
  font-size: 1rem;
  margin-top: 10px;
}

.banner-phone {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffd5;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.badge-custom {
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Different background colors */
.badge-one {
  background-color: #fffff0; /* light blue */
  border-color: #90caf9;
  color: #0d47a1;
}

.badge-two {
  background-color: #fce4ec; /* light pink */
  border-color: #f48fb1;
  color: #880e4f;
}

/* Hover effect */
.badge-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  opacity: 0.95;
}
.call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #fffff0, #f6fddb);
  color: #252525;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* Hover magic ✨ */
.call-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #fbfabb, #f6fddb);
}

/* Phone icon shake 📞 */
.call-link:hover {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.cs-stats {
  background-color: #760a0a;
  background-image: url(../img/cta/web-application-development.png);
  background-size: cover;
  background-repeat: no-repeat;
    color: white;
    padding: 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1350px;
    margin: 0px auto;
}

.cs-stats-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cs-stat-card {
  padding: 35px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cs-stat-card:hover {
  transform: translateY(-12px);
}

.cs-stat-card h3 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #ffd700;
    font-weight: 700;
}

.cs-stat-card h3 span {
  font-size: 1.8rem;
  margin-left: 4px;
}

.cs-stat-card p {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.cs-app-section {
  background: linear-gradient(135deg, #0a1f44, #0d2b6b);
  padding: 80px 20px;
  color: #fff;
}

.cs-app-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.cs-app-content h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
   color: #351311;
}

.cs-app-subtext {
  color: #e6ebf8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cs-book-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.cs-book-box:hover {
  transform: translateY(-10px);
}

.cs-book-box h3 {
  margin-bottom: 20px;
  color: #ffd700;
}

.cs-input-group {
  margin-bottom: 15px;
}

.cs-input-group label {
  display: block;
  font-size: 0.85rem;
  color: #cddcff;
  margin-bottom: 5px;
}

.cs-input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.cs-book-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* RIGHT CONTENT */
.cs-app-download h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cs-app-download p {
  color: #252525;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cs-store-grid {
  display: flex;
  gap: 30px;
}

.cs-store-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 14px;
  width: 220px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.cs-store-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.cs-store-card h4 {
  margin-bottom: 15px;
  color: #ffd700;
}

.cs-store-btn {
  display: block;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}

.cs-store-btn:hover {
  transform: translateY(-4px);
}

.cs-store-btn.android {
  background: linear-gradient(135deg, #1db954, #0f9d58);
}

.cs-store-btn.ios {
  background: linear-gradient(135deg, #000000, #434343);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cs-app-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cs-store-grid {
    justify-content: center;
  }
}
.cs-app-content {
    text-align: center;
    color: #000;
}
p.cs-app-subtext {
    text-align: center;
    color: #252525;
}
/* Keyframes for floating animation */
@keyframes floatAnim {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Apply to image */
.cs-float-img {
  animation: floatAnim 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

/* Hover effect – image slightly zooms */
.cs-float-img:hover {
  transform: scale(1.05);
}
 .feature-section {
  padding: 0px 20px;
  
  text-align: center;
}

.feature-header {
  margin-bottom: 40px;
  animation: fadeInDown 1s ease;
  text-align: center;
}

.feature-header .feature-icon {
  font-size: 2.5rem;
  color: #0077c2;
}

.feature-header .feature-title {
  font-size: 45px;
  color: #351311;
  margin: 10px 0;
  font-weight: 700;
}
.feature-section .feature-title {
  font-size: 32px;
  color: #351311;
  margin: 10px 0;
  font-weight: 700;
}

.feature-header .feature-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.feature-symbol {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* Custom colors */
.tracking { border-top: 5px solid #4fc3f7; }
.receipts { border-top: 5px solid #81c784; }
.reviews { border-top: 5px solid #ba68c8; }
.support { border-top: 5px solid #ffb74d; }

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature-grid .feature-box h3 {
    font-size: 20px;
    font-weight: 700;
}
.booking-steps-section {
    background-color: #760a0a;
    background-image: url(../img/cta/bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 1350px;
    margin: 0px auto;
}

.steps-title {
  font-size: 2rem;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease;
}
.booking-steps-section h2 {
    color: #fff;
    font-weight: 800;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.steps-container .step-heading {
    color: #ffc107;
    font-weight: 700;
}

.step-number {
  font-size: 25px;
  font-weight: bold;
  color: #252525;
  background-color: #ffffff;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 .cs-why-section {
  background-color: #003E3E;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.cs-why-header {
  text-align: center;
  margin-bottom: 50px;
}

.cs-why-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.cs-why-header p {
  font-size: 1.2rem;
  color: #f2f2f2;
}
.cs-container {
    max-width: 1300px;
        margin: auto;
}
.cs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.cs-why-card {
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url(../img/main-bg2.png);
    background-size: 300px;
    background-repeat: repeat;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.cs-why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.cs-icon {
    font-size: 1.5rem;          /* Icon size */
    margin-bottom: 15px;
    color: #0d2b6b;             /* Icon color (dark blue) */
    background: #fff;           /* White circle background */
    width: 50px;                /* Fixed width */
    height: 50px;               /* Fixed height */
    line-height: 50px;          /* Center icon vertically */
    border-radius: 50%;         /* Make it perfectly round */
    display: inline-block;      /* Center properly */
    text-align: center;         /* Center horizontally */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Optional shadow for depth */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect for icon */
.cs-why-card:hover .cs-icon {
    transform: scale(1.01);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


.cs-why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.cs-why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e6ebf8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-why-grid {
    grid-template-columns: 1fr;
  }
}
.tariff-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.tariff-title {
  font-size: 2rem;
  color: #351311;
  margin-bottom: 10px;
  font-weight: 700;
}

.tariff-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.tariff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.tariff-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.tariff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background-color: #ffe0b2;
}

.tariff-icon {
  font-size: 3.5rem;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.tariff-card:hover .tariff-icon {
  transform: scale(1.2) rotate(5deg);
}

.tariff-card h3 {
  font-size: 1.2rem;
  color: #e65100;
  margin-bottom: 10px;
}

.tariff-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 5px;
}

.tariff-details {
  font-size: 0.95rem;
  color: #555;
}

.tariff-download h4 {
  font-size: 1.3rem;
  color: #e65100;
  margin-bottom: 10px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.download-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.download-btn.google {
  background-color: #4caf50;
}

.download-btn.apple {
  background-color: #2196f3;
}

.download-btn:hover {
  background-color: #000;
}
.driver-recruitment {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #e3f2fd, #fffde7);
  color: #333;
}

.section-title {
  font-size: 1.8rem;
  color: #00796b;
  margin-bottom: 20px;
  text-align: center;
}

.driver-benefits, .driver-registration {
  flex: 1 1 400px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.driver-benefits:hover, .driver-registration:hover {
  background-color: #f1f8e9;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.benefits-list li {
  font-size: 1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #ff9800;
  transition: transform 0.3s ease;
}

.benefits-list li:hover .benefit-icon {
  transform: scale(1.2);
}

.app-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.app-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.app-btn.android {
  background-color: #4caf50;
}

.app-btn.ios {
  background-color: #2196f3;
}

.app-btn:hover {
  background-color: #000;
}

.registration-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.registration-steps .step-card {
  background-color: #f9fbe7;
  border-left: 5px solid #ff9800;
  padding: 15px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.registration-steps .step-card:hover {
  transform: translateY(-3px);
  background-color: #fffde7;
}

.registration-steps .step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #e65100;
}

.registration-steps .cta-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff9800;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.registration-steps .cta-button:hover {
  background-color: #e65100;
  transform: scale(1.05);
}

  .driver-join-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  color: #333;
}

.driver-left, .driver-right {
  flex: 1 1 400px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.driver-left:hover, .driver-right:hover {
  background-color: #f9fbe7;
}

.driver-title {
  font-size: 1.8rem;
  color: #bd0a0a;
  margin-bottom: 20px;
  text-align: center;
}

.driver-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.driver-benefits-list li {
  font-size: 1rem;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.driver-benefits-list li:hover {
  transform: translateX(5px);
}

.driver-app-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.driver-app-btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.driver-app-btn.android {
  background-color: #4caf50;
}

.driver-app-btn.ios {
  background-color: #2196f3;
}

.driver-app-btn:hover {
  background-color: #000;
}

.driver-steps {
 display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.driver-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #f5e5ee;
  padding: 15px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.driver-step:hover {
  transform: translateY(-3px);
  background-color: #f6f6f6;
}

.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #bd0a0a;
  background-color: #fff;
  border: 2px solid #bd0a0a;
  border-radius: 50%;
  width: 40px;
      min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 36px;
}

.driver-call-btn {
  display: block;
  margin-top: 30px;
  padding: 12px 25px;
  background-color: #ff9800;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.driver-call-btn:hover {
  background-color: #e65100;
  transform: scale(1.05);
}
.driver-step h3 {
    font-size: 18px;
}
 .user-reviews-section {
  background-color: #003E3E;
    background-image: url(../img/cta/bg2.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.reviews-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f6f6f6;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 380px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background-color: #f1f8e9;
}

.review-initials {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #00796b;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #d81b60;
}

.review-stars {
  font-size: 1.2rem;
  color: #ff9800;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.review-card:hover .review-stars {
  transform: scale(1.1);
}

.review-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.review-platform {
  font-size: 0.85rem;
  color: #00796b;
  font-weight: bold;
}
.footer-section {
  background-color: #351311;
    background-image: url(../img/cta/bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  padding: 80px 0 5px;
  color: #f5f5f5;
}
.copyright.text-center.mt-4 {
    border-top: 1px solid #412827;
    padding: 20px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-brand, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #ffccbc;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  font-size: 1.2rem;
  color: #351311;
  background-color: #ffccbc;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #ff8a65;
  transform: scale(1.2) rotate(5deg);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #f5f5f5;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #ff8a65;
  transform: translateX(5px);
}

.footer-contact p {
  font-size: 0.95rem;
  margin: 20px 0;
  color: #e0e0e0;
}
.header .container {
    max-width: 1400px;
}

@media (max-width: 575px) {
  .cs-stats-wrap {
    gap: 0;
}
.cs-stat-card {
    padding: 10px 10px;
}
}