
    /* ----- RESET & VARIABLES (mobile first) ----- */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --primary: #0b2b40;
      --primary-light: #1a3e55;
      --accent: #0f7b5a;
      --accent-soft: #e0f0e8;
      --gray-bg: #f8fafd;
      --text-dark: #1f2a36;
      --white: #ffffff;
      --shadow-sm: 0 8px 20px rgba(0,30,40,0.05);
      --shadow-hover: 0 25px 35px -12px rgba(15,123,90,0.25);
      --radius-card: 1.5rem;
      --radius-small: 1rem;
      --transition: all 0.25s ease;
    }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.5; overflow-x: hidden; }
    .container { width: 100%; padding-right: 1.25rem; padding-left: 1.25rem; margin-right: auto; margin-left: auto; max-width: 1280px; }
    .section { padding: 4rem 0; }
    .section-header { text-align: center; margin-bottom: 2.5rem; }
    .section-subtitle {
      display: inline-block; background: var(--accent-soft); color: var(--accent);
      font-weight: 600; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.3rem 1.2rem; border-radius: 40px; margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: 2.2rem; font-weight: 700; color: var(--primary);
      line-height: 1.2; max-width: 600px; margin: 0 auto 0.8rem;
    }
    .section-description { font-size: 1.1rem; color: #475569; max-width: 550px; margin: 0 auto; }

    /* ----- MOBILE-FRIENDLY HERO (flex column, touch friendly) ----- */
    .hero-mobile {
      position: relative; min-height: 85vh; display: flex; align-items: center;
      background: var(--primary); color: white; padding: 2rem 0;
    }
    .hero-media { position: absolute; inset: 0; z-index: 0; }
    .hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
    .hero-overlay {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 40%, rgba(15,123,90,0.3) 0%, var(--primary) 80%);
      z-index: 1;
    }
    .hero-content { position: relative; z-index: 10; width: 100%; display: flex; flex-direction: column; gap: 2.5rem; }
    .hero-left .pill {
      background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1.2rem; border-radius: 60px;
      display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; margin-bottom: 1.8rem;
    }
    .hero-left h1 {
      font-size: 2.8rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
      background: linear-gradient(to right, #fff, #d0f0ea); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-left p { font-size: 1.2rem; margin: 1.5rem 0 2rem; opacity: 0.85; max-width: 550px; }
    .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
    .btn-glow, .btn-ghost {
      padding: 0.9rem 2rem; border-radius: 60px; font-weight: 600; text-decoration: none;
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      transition: var(--transition); border: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
    }
    .btn-glow { background: white; color: var(--primary); box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
    .btn-glow:hover { background: var(--accent); color: white; transform: scale(1.02); }
    .btn-ghost { border: 1.5px solid rgba(255,255,255,0.5); color: white; background: transparent; }
    .btn-ghost:hover { background: white; color: var(--primary); border-color: white; }
    /* hero right card (capabilities) */
    .hero-right {
      background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-radius: 2rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.1);
    }
    .capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .cap-item {
      background: rgba(255,255,255,0.03); padding: 1rem; border-radius: 1.2rem;
      border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column;
    }
    .cap-item i { font-size: 1.6rem; color: var(--accent); margin-bottom: 0.3rem; }
    .cap-item span { font-weight: 500; font-size: 1rem; }
    .cap-item small { font-size: 0.7rem; opacity: 0.6; }

    /* CLIENTS ROW (scrollable on mobile) */
    .clients-scroll {
      background: var(--gray-bg); padding: 1.5rem 0; overflow-x: auto; white-space: nowrap;
      -webkit-overflow-scrolling: touch; scrollbar-width: none; border-bottom: 1px solid #e2e8f0;
    }
    .clients-scroll::-webkit-scrollbar { display: none; }
    .client-track {
      display: inline-flex; gap: 2.5rem; align-items: center; padding: 0 1.5rem;
    }
    .client-track img { height: 28px; width: auto; filter: grayscale(1); opacity: 0.6; }

    /* SERVICES – mobile grid (1->2 columns based on space) */
    .service-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
    }
    .service-card {
      background: var(--white); border-radius: var(--radius-card); padding: 1.8rem 1.2rem 1.5rem;
      box-shadow: var(--shadow-sm); transition: var(--transition); text-decoration: none; color: inherit;
      border: 1px solid #edf2f7; display: flex; flex-direction: height; 
    }
    .service-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-hover); }
    .card-icon {
      background: var(--accent-soft); width: 3.5rem; height: 3.5rem; border-radius: 1.2rem;
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
      color: var(--accent); margin-bottom: 1.2rem;
    }
    .service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--primary); }
    .service-card p { font-size: 0.9rem; color: #4a5a6e; margin-bottom: 1.2rem; line-height: 1.4; }
    .card-link { color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 0.2rem; }

    /* ABOUT split – stacked on mobile, row on tablet+ */
    .about-split { display: flex; flex-direction: column; gap: 2.5rem; }
    .about-visual { position: relative; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-sm); }
    .about-visual img { width: 100%; height: auto; display: block; }
    .year-badge {
      position: absolute; bottom: 1rem; right: 1rem; background: var(--accent);
      color: white; font-weight: 700; font-size: 1.5rem; padding: 0.6rem 1.5rem;
      border-radius: 60px; box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }
    .about-text h2 { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 0.5rem 0 1.2rem; }
    .about-highlight {
      background: var(--accent-soft); padding: 1.2rem; border-radius: 1.5rem;
      display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.8rem 0;
    }
    .highlight-item i { color: var(--accent); font-size: 1.3rem; margin-bottom: 0.2rem; display: inline-block; width: 2rem; }

    /* STATS FLEX (mobile wrap) */
    .stats-flex {
      display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.8rem;
      background: var(--primary); color: white; padding: 2rem 1.5rem; border-radius: 3rem;
      margin-top: 2.5rem;
    }
    .stat-item { text-align: center; flex: 1 0 120px; }
    .stat-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
    .stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; }

    /* CTA MOBILE */
    .cta-block {
      background: linear-gradient(145deg, #0b2b40, #08212f); color: white;
      text-align: center; padding: 4rem 1.5rem; border-radius: 2.5rem 2.5rem 0 0;
    }
    .cta-block h2 { font-size: 2.3rem; font-weight: 700; }
    .cta-block .cta-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

    /* BACK TO TOP (touch friendly) */
    .back-to-top {
      position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--primary);
      color: white; width: 50px; height: 50px; border-radius: 30px; display: flex;
      align-items: center; justify-content: center; box-shadow: 0 8px 16px rgba(0,20,30,0.25);
      transition: 0.2s; z-index: 99; border: none; text-decoration: none;
    }
    .back-to-top i { font-size: 1.2rem; }
    .back-to-top:hover { background: var(--accent); width: 110px; gap: 0.3rem; }
    .back-to-top span { display: none; }
    .back-to-top:hover span { display: inline; }

    /* responsive adjustments (touch targets) */
    @media (min-width: 768px) {
      .hero-content { flex-direction: row; align-items: center; }
      .hero-left { flex: 1.2; }
      .hero-right { flex: 0.9; }
      .about-split { flex-direction: row; align-items: center; }
      .section-title { font-size: 2.8rem; }
      .stats-flex { border-radius: 100px; padding: 2rem 3rem; }
    }
    @media (max-width: 480px) {
      .hero-left h1 { font-size: 2.2rem; }
      .btn-glow, .btn-ghost { width: 100%; }  /* full width for fat fingers */
      .service-grid { grid-template-columns: 1fr; }
      .stat-item { flex-basis: 45%; }
    }
    /* improve tap area for menu (original header may have small buttons – we keep original but add safe area) */
    .navbar .nav-link, .dropdown-toggle { padding: 0.8rem 0.5rem; } /* enhanced from main.css if needed, but original stays */
    /* footer container background */
    #footer-container { background: #0a1f2c; color: #9ab0c5; }
	
	/* Enhanced stats styling */
.stats-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.8rem;
  background: linear-gradient(145deg, var(--primary), #0a1f2f);
  color: white;
  padding: 2.5rem 1.5rem;
  border-radius: 3rem;
  margin-top: 2.5rem;
  box-shadow: 0 20px 30px -10px rgba(11, 43, 64, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-flex::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stat-item {
  text-align: center;
  flex: 1 0 120px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #e0f0ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  display: block;
  font-weight: 600;
}

.stat-detail {
  font-size: 0.75rem;
  opacity: 0.6;
  display: block;
  margin-top: 0.2rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .stat-item { flex-basis: 45%; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.85rem; }
}

 /* refine service card to include small fitted image + updated wording */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.8rem;
    }
    .service-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      text-decoration: none;
      color: inherit;
      border: 1px solid #edf2f7;
    }
    .service-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
      box-shadow: var(--shadow-hover);
    }
    /* image container – fixed aspect, image cover */
    .card-img {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background-color: #eef2f6;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .service-card:hover .card-img img {
      transform: scale(1.05);
    }
    .card-content {
      padding: 1.5rem 1.2rem 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-content h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    .card-content p {
      font-size: 0.9rem;
      color: #4a5a6e;
      margin-bottom: 1rem;
      line-height: 1.4;
      flex: 1;
    }
    .card-link {
      color: var(--accent);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: auto;
    }
    /* for very small screens, ensure font fits */
    @media (max-width: 480px) {
      .card-content { padding: 1rem; }
      .card-content h3 { font-size: 1.2rem; }
      .card-content p { font-size: 0.85rem; }
    }
	/* Breadcrumb Styles - Reusable Component */
.breadcrumb-wrapper {
    background: #0b2b40;
    border-bottom: 2px solid #facc15;
    padding: 0.8rem 0;
    position: relative;
    z-index: 999; /* Increased z-index to ensure visibility */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 100px; /* Account for fixed header */
}

.breadcrumb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-nav li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.breadcrumb-nav li:not(:last-child):after {
    content: "/";
    color: #facc15;
    font-weight: 500;
    margin-left: 0.4rem;
}

.breadcrumb-nav a {
    color: #ffd966;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-nav .current-page {
    color: white;
    font-weight: 600;
    background: rgba(250, 204, 21, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    letter-spacing: 0.2px;
}

.product-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-shortcut {
    background: rgba(255, 255, 240, 0.12);
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #facc15;
    transition: all 0.2s;
    border: 1px solid rgba(250, 204, 21, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-shortcut i {
    font-size: 0.7rem;
    color: #ffd966;
}

.product-shortcut:hover {
    background: #facc15;
    color: #0b2b40;
    border-color: #facc15;
    transform: translateY(-2px);
}

.product-shortcut:hover i {
    color: #0b2b40;
}

@media (max-width: 860px) {
    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-shortcuts {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .product-shortcut {
        white-space: nowrap;
    }
}

@media (max-width: 550px) {
    .breadcrumb-nav li {
        font-size: 0.7rem;
    }
    .product-shortcut {
        font-size: 0.65rem;
        padding: 0.2rem 0.7rem;
    }
}

/* Remove duplicate styles at the end of index.css */
/* Delete these lines from the bottom of your index.css:
.breadcrumb-wrapper .breadcrumb-container { ... }
.breadcrumb-wrapper .container { ... }
*/
