/* ==================== RESET AND BASE STYLES ==================== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  background-color: white;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  color: #2c3e50;
  padding-top: 80px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #ffffff;
  color: #053047;
  height: 80px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: height 0.3s ease, padding 0.3s ease;
}

.navbar.shrink {
  height: 60px;
  padding: 0 30px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.3s ease;
  font-family: 'Raleway', sans-serif;
  color: #b7b5b5;
}

.logo-title img {
  width: 50px;
  height: 30px;
  transition: width 0.3s ease, height 0.3s ease;
}

.navbar.shrink .logo-title img {
  width: 50px;
  height: 30px;
}

.logo-title h1 {
  font-size: 23px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  color: #a5170d !important;
  transition: font-size 0.3s ease;
}

.navbar.shrink .logo-title h1 {
  font-size: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #053047;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c71305;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #c71305;
}

.nav-links li a.active {
  color: #c71305;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #053047;
  margin: 3px 0;
  transition: 0.3s;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(5, 48, 71, 0.1);
  transform: scale(1.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 99;
  }
  
  .nav-links.mobile-active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links li a {
    font-size: 18px;
    font-weight: 600;
  }
  
  .navbar {
    padding: 0 20px;
  }
  
  .logo-title h1 {
    font-size: 18px;
  }
  
  .logo-title img {
    width: 40px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 15px;
  }
  
  .logo-title h1 {
    font-size: 16px;
  }
}

/* ==================== THEME TOGGLE ==================== */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  color: #2c3e50;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(44, 62, 80, 0.1);
  transform: scale(1.1);
}

.theme-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-moon {
  display: block;
}

.icon-sun {
  display: none;
  stroke: white;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;

  background: url("../Images/service.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;

  position: relative;
}

    /* Better mobile background handling */
    @media (max-width: 768px) {
      .hero {
        background-attachment: scroll; /* Disable fixed on mobile for better performance */
        background-position: right center; /* Show truck head on mobile */
        min-height: 100vh;
  
      }
    }



.hero-content h1 {
  font-weight: bold;
  font-size: 3rem; /* optional: make it bigger */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.559);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(199, 19, 5, 0.25);
  color: #c71305;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #c71305;
}

.hero p {
  font-size: 16px;
  color: #2c3e50;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d61507;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}

.hero-btn:hover {
  background: #c71305;
}

.hero-btn a {
  color: #fff;
  text-decoration: none;
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #e8ecef;
}

.stat-cell {
  padding: 24px 40px;
  text-align: center;
  border-right: 1px solid #e8ecef;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
}

.stat-lbl {
  font-size: 12px;
  color: #2c3e50;
  margin-top: 3px;
}

/* ==================== SECTION HEADERS ==================== */
.sec-header {
  text-align: center;
  padding: 64px 24px 48px;
}

.sec-tag {
  display: inline-block;
  background: #f8f9fa;
  color: #2c3e50;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.sec-header h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.sec-header h2 span {
  color: #c71305;
}

.sec-header p {
  font-size: 15px;
  color: #2c3e50;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== SERVICES GRID ==================== */
.services-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(44, 62, 80, 0.16);
  border-color: #c71305;
}

.card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #2c3e50;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-overlay i {
  font-size: 34px;
  color: rgba(255, 255, 255, .90);
}

.card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
}

.card-body p {
  font-size: 13px;
  color: #2c3e50;
  line-height: 1.6;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c71305;
  margin-top: 4px;
  transition: gap .2s;
  text-decoration: none;
}

.service-card:hover .card-link {
  gap: 10px;
}

.card-link i {
  font-size: 11px;
}

/* ==================== CORE SERVICES ==================== */
.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.core-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.07);
  transition: transform .28s, box-shadow .28s, border-color .28s;
  cursor: pointer;
}

.core-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44, 62, 80, 0.14);
  border-color: #c71305;
}

.core-icon {
  width: 56px;
  height: 56px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background .25s;
}

.core-card:hover .core-icon {
  background: #2c3e50;
}

.core-icon i {
  font-size: 22px;
  color: #2c3e50;
  transition: color .25s;
}

.core-card:hover .core-icon i {
  color: #fff;
}

.core-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2c3e50;
}

.core-card h3 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.core-card h3 a:hover {
  color: #c71305;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: #2c3e50;
  margin: 0 24px 80px;
  border-radius: 16px;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-banner h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cta-banner p {
  font-size: 14px;
  color: rgba(255,255,255,.60);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary{

    background: linear-gradient(135deg, var(--primary-color, #c71305) 0%, #a01004 100%);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(199, 19, 5, 0.2);
}

.btn-primary {
    border-color: rgba(255,255,255,.80);
    background: linear-gradient(135deg, #a01004 0%, #c71305 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 19, 5, 0.3);
}
 .btn-primary a {
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.30);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
} 

.btn-outline:hover {
  border-color: rgba(255,255,255,.80);
   background: linear-gradient(135deg, #a01004 0%, #c71305 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 19, 5, 0.3);
}

.btn-outline a {
  color: #fff;
  text-decoration: none;
}

/* ==================== FOOTER STYLES ==================== */
.footer {
  background: linear-gradient(135deg, #053047 0%, #0a2342 100%);
  color: #ffffff77;
  padding: 20px;
  margin-top: 0;
  font-family: 'Raleway', sans-serif;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 20px;
  padding: 0 20px;
  align-items: start;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0 0 20px 0;
  max-width: 280px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color:#a5170d;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-links li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a5170d;
  transition: width 0.3s ease;
}

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

.footer-links li a:hover::after {
  width: 100%;
}

.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: left;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  left: auto;
  top: auto;
}

.footer .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  padding: 0;
  transition: none !important;
}

.footer .contact-item > span {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.footer .contact-item:hover {
  transform: none !important;
  color: #e0e0e0 !important;
}

.footer .contact-item i {
  color: #ffffff !important;
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  text-align: center;
  line-height: inherit;
  margin-top: 0.2em;
  transition: none !important;
}

.footer .contact-item a {
  color: #e0e0e0 !important;
  text-decoration: none !important;
  transition: none !important;
  word-break: break-word;
}

.footer .contact-item a:hover {
  color: #e0e0e0 !important;
  text-decoration: none !important;
  transform: none !important;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px -20px 0 -20px;
  width: calc(100% + 40px);
  position: relative;
}

.copyright p {
  margin: 5px 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.designed-by {
  color: #4fc3f7 !important;
  font-size: 0.8rem !important;
}


/* ==================== DARK MODE STYLES ==================== */
body.dark-mode {
  background: linear-gradient(135deg, #0a0a0a 0%, #053047 100%);
  color: #ffffff;
}

body.dark-mode .navbar {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a2342 100%);
  border-bottom-color: #4a5568;
}

body.dark-mode .logo-title h1 {
  color: #ffffff;
}

body.dark-mode .nav-links li a {
  color: #ffffff;
}

body.dark-mode .nav-links li a:hover {
  color: #a5170d;
}

body.dark-mode .theme-toggle {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .theme-toggle:hover {
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
}

body.dark-mode .hero {
  /* background: url("../Images/truck1.png") no-repeat center center/cover; */
  background-attachment: fixed;
  position: relative;
}

body.dark-mode .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.559);
  z-index: 1;
}

body.dark-mode .hero > * {
  position: relative;
  z-index: 2;
}

body.dark-mode .sec-header h2 {
  color: #ffffff;
}

body.dark-mode .sec-header p {
  color: #e0e0e0;
}

body.dark-mode .service-card,
body.dark-mode .core-card {
  background: #1a1a1a;
  border: 1px solid #4a5568;
  color: #ffffff;
}

body.dark-mode .card-body h3 {
  color: #ffffff;
}

body.dark-mode .card-body p {
  color: #e0e0e0;
}

body.dark-mode .core-card h3 {
  color: #ffffff;
}

body.dark-mode .cta-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #053047 100%);
}

body.dark-mode .footer {
  background: #1a1a1a;
  border-top: 1px solid #4a5568;
}

body.dark-mode .footer-logo-text {
  color: #ffffff;
}

body.dark-mode .footer-desc {
  color: #e0e0e0;
}

body.dark-mode .footer-heading {
  color: #ffffff;
}

body.dark-mode .footer-links a {
  color: #e0e0e0;
}

body.dark-mode .footer-links a:hover {
  color: #4fc3f7;
}

body.dark-mode .contact-row {
  color: #e0e0e0;
}

body.dark-mode .contact-row a {
  color: #e0e0e0;
}

/* body.dark-mode .contact-row a:hover {
  color: #4fc3f7;
} */

body.dark-mode .footer-bottom {
  color: #e0e0e0;
}

body.dark-mode .mobile-menu-toggle span {
  background: #ffffff;
}

body.dark-mode .nav-links.mobile-active {
  background: #1a1a1a;
  border: 1px solid #4a5568;
}

body.dark-mode .nav-links.mobile-active a {
  color: #ffffff;
}

body.dark-mode .nav-links.mobile-active a:hover {
  color: #4fc3f7;
  background: rgba(79, 195, 247, 0.1);
}

    .lang-select option { background: #0a2342; color: #fff; }

    /* ── Hero Banner ── */
    .hero {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;

     
      background-size: cover;
      background-attachment: fixed;

      position: relative;
    }

    /* Better mobile background handling */
    @media (max-width: 768px) {
      .hero {
        background-attachment: scroll; /* Disable fixed on mobile for better performance */
        background-position: right center; /* Show truck head on mobile */
        min-height: 100vh;
  
      }
    }
     .tagline {
        font-size:20px;
        color: #eee;
      }
        .underline {
      width: 90px;
      height: 4px;
      background-color: rgb(166, 7, 7);
      margin: 10px auto;
      border-radius: 2px;
    }
    
    .hero h1 { font-size: clamp(26px,5vw,46px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
    .hero h1 span { color: #cbd7cf; }
    .hero p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
    .hero-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: #e35e4e; color: #fff;
      font-size: 14px; font-weight: 600;
      padding: 12px 28px; border-radius: 8px;
      border: none; cursor: pointer; transition: background .2s;
    }
    .hero-btn:hover { background: #c71305; }

    /* ── Stats Bar ── */
    .stats-bar {
      background: #fff;
      display: flex; flex-wrap: wrap;
      justify-content: center;
      gap: 0;
      border-bottom: 1px solid #e8ecef;
    }
    .stat-cell {
      padding: 24px 40px;
      text-align: center;
      border-right: 1px solid #e8ecef;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-num { font-size: 26px; font-weight: 700; color: #0a2342; }
    .stat-lbl { font-size: 12px; color: #666; margin-top: 3px; }

    /* ── Section Header ── */
    .sec-header { text-align: center; padding: 64px 24px 48px; }
    .sec-tag {
      display: inline-block;
      background: #e8f3f8; color: #3498db;
      font-size: 11px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
    }
    .sec-header h2 { font-size: clamp(22px,3.5vw,36px); font-weight: 700; color: #0a2342; margin-bottom: 12px; }
    .sec-header h2 span { color: #c71305; }
    .sec-header p { font-size: 15px; color: #666; max-width: 520px; margin: 0 auto; line-height: 1.7; }

    /* ── Services Grid ── */
    .services-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px 80px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    /* ── Service Card ── */
    .service-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1.5px solid transparent;
      box-shadow: 0 2px 12px rgba(5,48,71,.08);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
      cursor: pointer;
      display: flex; flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 32px rgba(5,48,71,.16);
      border-color: #c71305;
    }
    .card-img-wrap { position: relative; height: 180px; overflow: hidden; background: #3498db; }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
    .service-card:hover .card-img-wrap img { transform: scale(1.06); }
    .card-overlay {
      position: absolute; inset: 0;
      background: rgba(5,48,71,.45);
      display: flex; align-items: center; justify-content: center;
    }
    .card-overlay i { font-size: 34px; color: rgba(255,255,255,.90); }
    .card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
    .card-body h3 { font-size: 16px; font-weight: 700; color: #0a2342; }
    .card-body p { font-size: 13px; color: #666; line-height: 1.6; flex: 1; }
    .card-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600;
      color: #e74c3c; margin-top: 4px;
      transition: gap .2s;
    }
    .service-card:hover .card-link { gap: 10px; }
    .card-link i { font-size: 11px; }

    /* Icon-only card (Core Services) */
    .core-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
    .core-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      border: 1.5px solid transparent;
      box-shadow: 0 2px 12px rgba(5,48,71,.07);
      transition: transform .28s, box-shadow .28s, border-color .28s;
      cursor: pointer;
    }
    .core-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(5,48,71,.14); border-color: #e74c3c; }
    .core-icon {
      width: 56px; height: 56px;
      background: #e8f3f8; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
      transition: background .25s;
    }
    .core-card:hover .core-icon { background: #0a2342 }
    .core-icon i { font-size: 22px; color: #0a2342; transition: color .25s; }
    .core-card:hover .core-icon i { color: #fff; }
    .core-card h3 { font-size: 15px; font-weight: 700; color: #0a2340; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }

    /* ── CTA Banner ── */
    .cta-banner {
      background: #0a2342;
      margin: 0 24px 80px;
      border-radius: 16px;
      max-width: 1112px;
      margin-left: auto; margin-right: auto;
      padding: 48px 48px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
    }
    .cta-banner h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .cta-banner p { font-size: 14px; color: rgba(255,255,255,.60); }
    .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-outline {
      background: transparent; color: #fff;
      border: 1.5px solid rgba(255,255,255,.30);
      font-family: inherit; font-size: 14px; font-weight: 500;
      padding: 12px 26px; border-radius: 8px; cursor: pointer; transition: border-color .2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,.80); }

    /* ==================== FOOTER STYLES ==================== */
    /* Footer Responsive Design */
    @media (max-width: 767px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .company-info,
  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

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

  .footer-links li a {
    display: inline-block;
  }

  /* CONTACT SECTION FIX */
  .footer .contact-info {
    align-items: center;
  }

  .footer .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .footer .contact-item i {
    margin: 0;
    font-size: 18px;
  }

  .footer .contact-item span,
  .footer .contact-item a {
    text-align: center;
    width: auto;
  }

  /* REMOVE LEFT SHIFT EFFECT */
  .footer-links li a:hover {
    transform: none;
  }
}
     @media (max-width: 768px) {
      /* ANIMATION TO X */
      .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    }
      
       */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .cta-banner {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
      }
/*       
       .stat-cell {
        padding: 18px 20px; */
      /* } */

    /* ==================== SCROLL ANIMATIONS ==================== */
    .service-card,
    .core-card {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .45s ease, transform .45s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .service-card.animate,
    .core-card.animate {
      opacity: 1;
      transform: translateY(0);
    }
  .scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #95b8ed 0%, #a7c8f781 100%);
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(197, 237, 255, 0.3);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #892203 0%, #c0533b 100%);
  transform: translateY(0) scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 201, 197, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}


/* Mobile Scroll Button */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
  }
}