*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

html, body {
    overflow-x: hidden;
}

:root {
  --primary-blue: #00a8ff;
  --dark-blue: #0056b3;
  --text-main: #111827;
  --text-muted: #6b7280;
  --bg-color: #f4f9ff; 
  --card-bg: #ffffff;
}

/* =========================================
   COMMON NAVBAR STYLES
========================================= */
#navbar {
  /* Set a baseline for the container */
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.custom-navbar {
  background-color: #e6e9ec; /* Light grey background from image */
  padding: 0.8rem 2rem;
  font-family: 'Barlow', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
}

/* --- Brand / Logo --- */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.nav-logo-img {
  height: 55px; /* Adjust based on your logo size */
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0075c2;
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* --- Menu Links --- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  color: #374151; /* Dark grey */
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #0075c2;
  background-color: rgba(255, 255, 255, 0.4);
}

/* Active State (Matches the HOME button in your image) */
.nav-link.active {
  background-color: #d4dde5; 
  color: #1c5ba6;
}

/* The gradient underline for active link */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #1c5ba6, #00b4d8);
  border-radius: 2px;
}

/* --- Enquiry Button --- */
.btn-enquiry {
  background: linear-gradient(90deg, #1660a5, #08b4d6);
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(8, 180, 214, 0.3);
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 180, 214, 0.45);
}

/* --- Mobile Toggle Button --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .nav-menu {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e6e9ec;
    padding: 1rem 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav-menu.show {
    display: flex;
    top: 14%;
  }
  .nav-toggle {
    display: block;
  }
  .nav-action {
    display: none; 
  }
  .nav-menu .btn-enquiry {
    display: inline-block;
    margin-top: 10px;
  }
}


/* Hero Section Background */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    /* Replace with your actual industrial background image path */
    background: url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay for Text Contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 50, 60, 0.7); /* Adjust opacity as needed */
    z-index: 1;
}

/* Main Container Layout */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    gap: 50px;
}

/* Image Wrapper */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0px 15px 15px rgba(0,0,0,0.5));
}

/* The Bouncy Effect Animation */
.bouncy-product {
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Text Content Wrapper */
.hero-text-wrapper {
    flex: 1;
    color: #ffffff;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-text-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    color: #e0e0e0;
}

/* Button Styling */
.know-more-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.know-more-btn:hover {
    background: #ffffff;
    color: #333333;
}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .hero-text-wrapper {
        text-align: center;
        align-items: center;
    }

    .hero-text-wrapper h1 {
        font-size: 2.2rem;
    }

    .hero-image-wrapper img {
        max-height: 350px;
    }
}

/* --- Layout --- */
    .about-section {
      padding: 100px 20px;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-wrapper {
      display: flex;
      align-items: center;
      gap: 80px;
      margin-bottom: 15px;
    }

    /* --- Left Column: Image & Badge --- */
    .image-column {
      flex: 1;
      position: relative;
    }

    .bouncy-element {
      position: relative;
      animation: bounce 4s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .main-img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      object-fit: cover;
      display: block;
    }

    .experience-badge {
      position: absolute;
      bottom: -30px;
      left: -30px;
      background-color: #00a8ff;
      color: var(--white);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 168, 255, 0.3);
      z-index: 10;
      max-width: 220px;
    }

    .experience-badge h3 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 8px;
    }

    .experience-badge p {
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.4;
    }

    /* --- Right Column: Text Content --- */
    .text-column {
      flex: 1;
    }

    .subtitle {
      color: #00a8ff;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      display: block;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .text-highlight {
      color: #00a8ff;
    }

    .accent-line {
      width: 60px;
      height: 4px;
      background-color: #00a8ff;
      margin-bottom: 30px;
      border-radius: 2px;
    }

    .description {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    /* --- Checklist --- */
    .feature-list {
      list-style: none;
      margin: 35px 0;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    .check-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background-color: var(--primary-blue);
      color: var(--white);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .check-icon svg {
      width: 14px;
      height: 14px;
      stroke-width: 3px;
    }

    /* --- Button --- */
    .btn-primary {
      display: inline-block;
      background-color: var(--primary-blue);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .btn-primary:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    }

    /* --- Service Cards Grid --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      width: 100%;
    }

    .service-card {
      background-color: var(--white);
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .service-card h4 {
      font-size: 1.3rem;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .service-items {
      list-style: none;
    }

    .service-items li {
      color: var(--text-muted);
      margin-bottom: 12px;
      font-size: 1rem;
      line-height: 1.5;
    }

    /* --- Scroll Reveal Animations --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Responsive Design --- */
    @media (max-width: 992px) {
      .hero-wrapper {
        flex-direction: column;
        gap: 60px;
      }

      .main-title {
        font-size: 2.2rem;
      }

      .experience-badge {
        left: 20px;
        bottom: -20px;
        padding: 20px;
      }
    }

    @media (max-width: 576px) {
      .main-title {
        font-size: 1.8rem;
      }
      .experience-badge h3 {
        font-size: 2rem;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .btn-primary {
        width: 100%;
        text-align: center;
      }
    }

/* =========================================
   "WHO WE ARE" SECTION STYLES
========================================= */
.section-pad {
    padding: 90px 0;
}

.section-dark {
    background-color: #0b192c; /* Deep industrial blue */
    color: #e2e8f0;
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
}

/* --- Left Side: Image & Experience Badge --- */
.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible; /* Allows badge to pop out */
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.02);
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #1c5ba6, #00b4d8);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
    z-index: 2;
}

.exp-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* --- Right Side: Content & Typography --- */
.section-eyebrow {
    color: #00b4d8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .accent {
    background: linear-gradient(90deg, #00b4d8, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.divider-brand {
    width: 70px;
    height: 4px;
    background: #00ffcc;
    border-radius: 2px;
    margin-bottom: 25px;
}

.section-dark p {
    color: #a0aec0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Product Cards (Glassmorphism Effect) --- */
.product-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 12px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.product-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #00b4d8;
    box-shadow: 0 12px 25px rgba(0, 180, 216, 0.15);
}

.product-box h5 {
    color: #00ffcc;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-box p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
}

/* --- Feature List --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: #e2e8f0;
    font-weight: 500;
}

.fi-icon {
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 3px;
}

/* --- Button --- */
.btn-primary-brand {
    display: inline-block;
    background: linear-gradient(90deg, #1c5ba6, #00b4d8);
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add a slight stagger effect to the product cards */
.row.g-4.reveal.active .col-md-4:nth-child(1) { transition-delay: 0.1s; }
.row.g-4.reveal.active .col-md-4:nth-child(2) { transition-delay: 0.3s; }
.row.g-4.reveal.active .col-md-4:nth-child(3) { transition-delay: 0.5s; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-exp-badge {
        bottom: 20px;
        right: 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-image-wrap {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* =========================================
   "WHO WE ARE" SECTION (Light Theme)
========================================= */
.section-pad {
    padding: 90px 5%; /* Added padding for left and right */
    background-color: #ffffff; /* Clean white background */
    font-family: 'Barlow', sans-serif;
    overflow: hidden;
}

/* --- Left Side: Image & Experience Badge --- */
.about-image-wrap {
    position: relative;
    border-radius: 12px;
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Soft, realistic shadow */
    transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.02);
}

/* Badge positioned at Bottom-Left matching your image */
.about-exp-badge {
    position: absolute;
    bottom: 20px; 
    left: -20px;  /* Moved to the left */
    background: #00a8e8; /* Solid bright blue matching image */
    color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column; /* Stacks text vertically */
    align-items: flex-start;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3);
    z-index: 2;
}

.exp-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.exp-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* --- Right Side: Content & Typography --- */
.section-eyebrow {
    color: #1c5ba6; /* Medium Blue */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b192c; /* Dark Navy Black */
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .accent {
    color: #00a8e8; /* Bright Cyan/Blue */
    background: none;
    -webkit-text-fill-color: initial;
}

.divider-brand {
    width: 70px;
    height: 3px;
    background: #00a8e8;
    margin-bottom: 25px;
}

.section-pad p {
    color: #4b5563; /* Professional slate grey */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Product Cards (Updated for Light Theme) --- */
.product-box {
    background: #f8fafc; /* Very light grey */
    border: 1px solid #e2e8f0;
    padding: 25px 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.product-box:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #00a8e8;
    box-shadow: 0 10px 25px rgba(0, 168, 232, 0.15);
}

.product-box h5 {
    color: #0b192c;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.product-box p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.9;
    margin: 0;
}

/* --- Feature List (Updated for Light Theme) --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: #334155; /* Dark grey */
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.feature-list li:hover {
    background-color: #0056b3;
    color: white;
    font-size: 1.05rem;
    border: 1px solid white;
    border-radius: 10px;
    padding: 5px 0;
    cursor: pointer;
}

.fi-icon {
    color: #ffffff;
    background: #00a8e8;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 4px;
}

/* --- Button --- */
.btn-primary-brand {
    display: inline-block;
    background: #1c5ba6;
    color: #ffffff !important;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary-brand:hover {
    background: #00a8e8;
    transform: translateY(-3px);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .about-exp-badge {
        bottom: 15px;
        left: 15px; /* Keeps it inside on mobile */
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-image-wrap {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
    .section-pad {
        padding: 60px 5%; 
    }
}

/* --- Section Layout --- */
    .services-section {
      padding: 100px 20px;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* --- Header Styles --- */
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px auto;
    }

    .subtitle {
      color: var(--primary-blue);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: block;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .text-highlight {
      color: var(--primary-blue);
    }

    .accent-line {
      width: 60px;
      height: 4px;
      background-color: var(--primary-blue);
      margin: 0 auto 25px auto;
      border-radius: 2px;
    }

    .header-description {
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    /* --- Section Layout --- */
    .services-section {
      padding: 100px 20px;
      overflow: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* --- Header Styles --- */
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px auto;
    }

    .subtitle {
      color: var(--primary-blue);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: block;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .text-highlight {
      color: var(--primary-blue);
    }

    .accent-line {
      width: 60px;
      height: 4px;
      background-color: var(--primary-blue);
      margin: 0 auto 25px auto;
      border-radius: 2px;
    }

    .header-description {
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    /* --- Grid Layout --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      padding: 20px 0;
    }

    /* --- Card Styles & Hover Effects --- */
    .service-card {
      background-color: var(--card-bg);
      padding: 40px 35px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden; /* Keeps the animated border inside the rounded corners */
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* 1. Bold Top Border Animation */
    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px; /* Thickness of the border */
      background: linear-gradient(90deg, var(--dark-blue), var(--primary-blue));
      transform: scaleX(0); /* Hidden by default */
      transform-origin: left; /* Animates from left to right */
      transition: transform 0.4s ease;
    }

    /* Trigger Card Hover */
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 168, 255, 0.15);
    }

    /* Trigger Border Animation on Hover */
    .service-card:hover::before {
      transform: scaleX(1); 
    }

    /* --- Icon Styles & Hover Animation --- */
    .icon-wrapper {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      box-shadow: 0 8px 20px rgba(0, 168, 255, 0.2);
    }

    .icon-wrapper i {
      font-size: 28px;
      color: white;
      transition: all 0.3s ease;
    }

    /* 2. Icon Pop & Rotate Animation on Hover */
    .service-card:hover .icon-wrapper i {
      animation: icon-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes icon-pop {
      0% { transform: scale(1) rotate(0deg); }
      40% { transform: scale(1.3) rotate(15deg); }
      100% { transform: scale(1.1) rotate(0deg); }
    }

    /* --- Typography --- */
    .service-card h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- Scroll Reveal Animations --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .main-title {
        font-size: 2.4rem;
      }
      .services-section {
        padding: 60px 20px;
      }
    }


    /* --- Stats Section Layout --- */
    .stats-section {
      background-color: var(--bg-color);
      padding: 60px 20px;
      /* Gradient top and bottom borders */
      border-top: 4px solid;
      border-bottom: 4px solid;
      border-image: linear-gradient(to right, var(--dark-blue), var(--primary-blue)) 1;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      text-align: center;
    }

    /* --- Stat Card --- */
    .stat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    /* Icon Styling */
    .icon-box {
      width: 65px;
      height: 65px;
      background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      box-shadow: 0 10px 25px rgba(0, 168, 255, 0.25);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }

    .icon-box i {
      font-size: 26px;
      color: #ffffff;
    }

    .stat-card:hover .icon-box {
      transform: translateY(-8px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0, 168, 255, 0.4);
    }

    /* Number Styling */
    .stat-value {
      display: flex;
      align-items: baseline;
      justify-content: center;
      margin-bottom: 5px;
      color: var(--primary-blue);
    }

    .stat-number {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -1px;
    }

    .stat-plus {
      font-size: 2.5rem;
      font-weight: 900;
    }

    /* Label Styling */
    .stat-label {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* --- Scroll Reveal Animation --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .stat-number { font-size: 3rem; }
      .stat-plus { font-size: 2rem; }
      .stats-grid { gap: 50px; }
    }

    /* ============================================================
   CLIENTS SCROLLER
   ============================================================ */
.client-scroller-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Fades out the left and right edges for a smooth entrance/exit */
  /* -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
}

.client-scroller-track {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
  /* 30s controls the speed. Lower = faster */
  animation: scrollClients 30s linear infinite; 
}

/* Optional: Pause the scroller when the user hovers over it */
.client-scroller-track:hover {
  animation-play-state: paused; 
}

.client-logo-card {
  width: 180px;
  height: 100px;
  background: #ffffff;
  border: 1px solid rgba(20,85,164,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Starts out gray and slightly transparent */
  /* filter: grayscale(100%) opacity(0.6); */
  /* transition: var(--transition); */
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,85,164,0.30);
  box-shadow: var(--shadow-md);
}

.client-logo-card:hover img {
  /* Restores full color on hover */
  filter: grayscale(0%) opacity(1);
}

/* --- Centered Header Block --- */
.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;  /* This centers the text AND the divider line perfectly */
  text-align: center;
  margin-bottom: 3rem;  /* Replaces the 'mb-5' utility class */
}

.section-eyebrow {
  color: #006bb3;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-title .accent {
  color: #00a8ff;
}

.divider-brand {
  width: 70px;
  height: 4px;
  background-color: #00a8ff;
  border-radius: 2px;
  /* mx-auto is not strictly needed anymore because of align-items: center above, 
     but keeping margin: 0 auto; is a good fallback */
  margin: 0 auto; 
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* The math here assumes we clone the items in JS. 
   calc(-50% - 15px) ensures the margin/gap is accounted for seamlessly */
@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

@media (max-width: 767.98px) {
  .client-logo-card {
    width: 150px;
    height: 85px;
    padding: 15px;
  }
}

/* =========================================
   COMMON FOOTER STYLES
========================================= */
.custom-footer {
  background-color: #0b192c; /* Deep dark blue */
  color: #a0aec0; /* Soft greyish blue text */
  font-family: 'Barlow', sans-serif;
  padding: 4rem 2rem 1.5rem;
  position: relative;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Headings */
.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 25px;
  height: 2px;
  background-color: #00a8e8; /* Cyan accent */
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  height: 75px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00a8e8;
}

.brand-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #8ba0b5;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: transparent;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  color: #8ba0b5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
}

/* Link Columns */
.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 15px;
}

.links-col ul li::before {
  content: '•';
  color: #00a8e8;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
  top: 1px;
}

.links-col a {
  color: #8ba0b5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.links-col a:hover {
  color: #00a8e8;
}

/* Contact Column */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #8ba0b5;
}

.contact-list i {
  color: #00a8e8;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-list a {
  color: #8ba0b5;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-list a:hover {
  color: #00a8e8;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e3a5f;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #8ba0b5;
}

.footer-bottom a {
  font-size: 0.85rem;
  color: #8ba0b5;
  cursor: pointer;
  text-decoration: none;
}

.footer-bottom a:hover {
  font-weight: bold;
}

.bottom-links {
  display: flex;
  gap: 1.5rem;
}

.bottom-links a {
  color: #8ba0b5;
  text-decoration: none;
  transition: color 0.3s;
}

.bottom-links a:hover {
  color: #00a8e8;
}

/* =========================================
   FLOATING BUTTONS (Scroll & WhatsApp)
========================================= */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.float-top {
  background-color: #00a8e8; /* Cyan matching the image */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
}

.float-whatsapp {
  background-color: #25D366; /* Standard WhatsApp Green */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
