 /* ---------- RESET & GLOBAL ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: #1E2A32;
      line-height: 1.5;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* Typography constraints */
    h1 {
      font-size: 36px;
      font-weight: 500;
      line-height: 1.2;
    }
    h2 {
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    h3, h4, h5, h6 {
      font-size: 24px;
      font-weight: 500;
    }
    p, li, span, a, .text-body {
      font-size: 14px;
      font-weight: 400;
    }
    .small-text {
      font-size: 12px;
    }

    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---------- STICKY HEADER (Glassmorphism + Shrink) ---------- */
    .main-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 80px;
      display: flex;
      align-items: center;
    }
    .main-header.header-scrolled {
      height: 64px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .logo img {
      height: 48px;
      width: auto;
      transition: 0.2s;
    }
    .header-scrolled .logo img {
      height: 42px;
    }
    /* Desktop nav */
    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }
    .nav-links li a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: #1E2A32;
      transition: 0.2s;
    }
    .nav-links li a:hover {
      color: #0056b3;
    }
    .nav-cta {
      background: #0056b3;
      color: white !important;
      padding: 10px 22px;
      border-radius: 40px;
      font-weight: 500;
    }
    .nav-cta:hover {
      background: #003d82;
      transform: translateY(-1px);
    }
    /* Mobile toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .bar {
      width: 26px;
      height: 2px;
      background-color: #1E2A32;
      margin: 4px 0;
      transition: 0.3s;
    }
    @media (max-width: 768px) {
      .nav-toggle {
        display: flex;
      }
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 24px;
        padding: 40px 24px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        transition: 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(0);
      }
      .nav-links.active {
        left: 0;
      }
      .header-scrolled .nav-links {
        top: 64px;
      }
    }

   /* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #02061778;
}

/* ---------- VIDEO ---------- */
.video-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* ---------- OVERLAY (CINEMATIC VIGNETTE) ---------- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center,
    rgba(0, 40, 70, 0.094) 0%,
    rgba(0, 10, 20, 0.85) 100%);
}

/* ---------- CONTENT ---------- */
.hero-content {
  max-width: 820px;
  padding: 0 20px;
  z-index: 2;
}

/* ---------- HEADLINE ---------- */
.hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-content h1 span {
  display: block;
  font-size: 46px;
  margin-top: 6px;
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- PARAGRAPH ---------- */
.hero-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.4px;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.85);
}

/* ---------- BUTTONS ---------- */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  background: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.97);
}

/* ---------- BADGES (GLASS STYLE) ---------- */
.hero-badges {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-badges span {
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.hero-badges span:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.hero-badges i {
  font-size: 12px;
  opacity: 0.8;
}

/* ---------- TEXT REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.3s; }
.reveal.delay-2 { animation-delay: 0.6s; }
.reveal.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  overflow: hidden;
  opacity: 0.7;
}

.scroll-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,0.9),
    rgba(255,255,255,0)
  );
  animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h1 span {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }
}

    /* Statistics Section */
    .stats-section {
      background: #0A2F44;
      padding: 60px 0;
      color: white;
      text-align: center;
    }
    .stats-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .stat-item h2 {
      font-size: 36px;
      font-weight: 500;
      margin-bottom: 8px;
    }
    .stat-item p {
      font-size: 14px;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Premium Cards Grid */
    .services-section {
      padding: 80px 0;
      background: #fafcfd;
    }
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }
    .service-card {
      background: white;
      border: 1px solid #eef2f4;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      overflow: hidden;
      border-radius: 0px;
    }
    .service-card:hover {
      border-color: #0056b3;
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    }
    .card-image {
      height: 200px;
      overflow: hidden;
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .service-card:hover .card-image img {
      transform: scale(1.05);
    }
    .card-content {
      padding: 24px 24px 28px;
    }
    .card-content h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }
    .card-content p {
      font-size: 14px;
      color: #4a5b6b;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .card-cta {
      font-size: 13px;
      font-weight: 500;
      color: #0056b3;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.3px;
      border-bottom: 1px solid transparent;
      transition: 0.2s;
    }
    .card-cta i {
      transition: transform 0.2s;
    }
    .card-cta:hover i {
      transform: translateX(5px);
    }

    /* Testimonials Swiper */
    .testimonials-section {
      padding: 70px 0;
      background: #ffffff;
    }
    .testimonial-card {
      background: #f9fafb;
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      border: 1px solid #edf2f4;
    }
    .google-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .g-icon {
      font-size: 20px;
      color: #4285F4;
    }
    .stars {
      color: #f4b400;
      font-size: 16px;
      letter-spacing: 2px;
      margin: 10px 0;
    }
    .testimonial-card p {
      font-size: 14px;
      font-style: normal;
      margin: 12px 0;
      color: #2c3e44;
    }
    .client-name {
      font-weight: 500;
      margin-top: 10px;
      display: block;
    }
    .swiper-pagination-bullet-active {
      background: #0056b3 !important;
    }

    /* FAQ Accordion */
    .faq-section {
      background: #f8fafc;
      padding: 70px 0;
    }
    .faq-grid {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: white;
      border: 1px solid #e2e8f0;
      margin-bottom: 16px;
      border-radius: 12px;
      overflow: hidden;
    }
    .faq-question {
      padding: 18px 24px;
      cursor: pointer;
      font-weight: 500;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      background: white;
      transition: 0.2s;
    }
    .faq-question h4 {
      font-size: 18px;
      font-weight: 500;
      margin: 0;
    }
    .faq-question i {
      font-size: 18px;
      color: #0056b3;
    }
    .faq-answer {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: 0.3s ease;
      background: #fff;
    }
    .faq-answer p {
      padding-bottom: 20px;
      font-size: 14px;
      color: #2d3e50;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
    }

    /* Footer Premium */
    .main-footer {
      background: #0a1c2a;
      color: #cddfe7;
      padding: 56px 0 24px;
    }
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .footer-logo {
      max-width: 140px;
      margin-bottom: 16px;
      filter: brightness(0) invert(1);
    }
    .footer-col h4 {
      font-size: 20px;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col ul li {
      margin-bottom: 12px;
    }
    .footer-col a {
      color: #cddfe7;
      text-decoration: none;
      font-size: 14px;
    }
    .footer-col a:hover {
      color: white;
    }
    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 24px;
    }
    .social-links a {
      background: #1e3a4d;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.2s;
    }
    .social-links a:hover {
      background: #0056b3;
      transform: translateY(-2px);
    }
    .footer-bottom {
      border-top: 1px solid #1e3a4d;
      margin-top: 48px;
      padding-top: 24px;
      text-align: center;
      font-size: 12px;
    }
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: #25D366;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
      z-index: 999;
      transition: 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.07);
      background: #20b859;
    }

    /* Back to top */
    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 28px;
      background: #0056b3;
      width: 44px;
      height: 44px;
      border-radius: 30px;
      display: none;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px;
      cursor: pointer;
      z-index: 99;
      transition: 0.2s;
    }
    @media (max-width: 768px) {
      h1 { font-size: 32px; }
      h2 { font-size: 26px; }
      .hero-content h1 { font-size: 32px; }
    }

    /* ============================================
   RECENT PROJECTS SECTION - PREMIUM STYLES
   ============================================ */

.projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 500;
    color: #0A2F44;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0056b3;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 14px;
    color: #5a6e7c;
    margin-top: 20px;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Premium Project Card */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
    border: 1px solid #eef2f6;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 40px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.2);
}

/* Project Image Container */
.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #eef2f6;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.project-tag {
    display: inline-block;
    background: rgba(0, 86, 179, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Project Content */
.project-content {
    padding: 24px;
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #0056b3;
    font-weight: 500;
    margin-bottom: 12px;
    background: #eef6fc;
    padding: 4px 12px;
    border-radius: 30px;
    width: fit-content;
}

.project-location i {
    font-size: 11px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 500;
    color: #0A2F44;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Project Stats Badges */
.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0f4f8;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #2c4b66;
}

.stat-badge i {
    font-size: 12px;
    color: #0056b3;
}

/* Project Description */
.project-description {
    font-size: 14px;
    color: #4a5b6b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Button */
.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #0056b3;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.25s ease;
    border-bottom: 2px solid transparent;
}

.project-cta i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.project-cta:hover {
    color: #003d82;
    gap: 12px;
}

.project-cta:hover i {
    transform: translateX(5px);
}

/* View All Button */
.projects-footer {
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #0056b3;
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #0056b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.btn-outline:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
}

.btn-outline:hover i {
    transform: translateX(5px);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content h3 {
        font-size: 18px;
    }
    
    .project-stats {
        gap: 8px;
    }
    
    .stat-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 20px;
    }
    
    .project-description {
        font-size: 13px;
    }
    
    .btn-outline {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Optional: Add a subtle animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    animation: fadeInUp 0.6s ease backwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

        /* Container for the logo */
.logo {
    display: flex;
    align-items: center; /* Vertically centers the logo in the navbar */
    height: 100%;
}

.logo img {
    /* Set a specific height to keep it consistent */
    height: 60px; 
    width: auto; /* Automatically calculates width to prevent distortion */
    
    /* Premium touch: subtle transitions for scroll or hover */
    transition: transform 0.3s ease, height 0.3s ease;
    
    /* Ensure it remains crisp on all screens */
    image-rendering: -webkit-optimize-contrast;
    display: block;
}

/* Optional: Slight hover effect to make it feel interactive */
.logo:hover img {
    transform: scale(1.05);
}

/* Scale down for mobile to save screen real estate */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}
/* This class is added by your existing JavaScript on scroll */
.header-scrolled .logo img {
    height: 48px; /* Shrinks from 60px to 48px for a compact look */
}
/* Premium Section Background */
.services-section {
  padding: 100px 0; /* More breathing room */
  background: #ffffff; /* Pure white feels cleaner than off-white */
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly wider cards */
  gap: 40px; /* Increased gap for a high-end architectural feel */
}

.service-card {
  background: white;
  /* Thin, subtle border instead of heavy shadows */
  border: 1px solid #f0f0f0; 
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smoother transition */
  overflow: hidden;
  border-radius: 0px; /* Sharp corners = Professional/Industrial */
  display: flex;
  flex-direction: column;
}

/* 75% Image Container */
.service-card-img {
  height: 240px; /* Fixed height for consistency */
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%); /* Subtle desaturation for a technical look */
  transition: transform 0.6s ease;
}

/* 25% Content Area */
.service-card-content {
  padding: 32px; /* Generous internal padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 22px; /* Stays below your 24px limit */
  font-weight: 500;
  margin-bottom: 12px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 14px; /* Your exact constraint */
  font-weight: 300; /* Light weight for elegance */
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

/* Premium CTA Link */
.service-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #0056b3;
  text-decoration: none;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto; /* Pushes button to bottom */
}

/* Interactive Hover States */
.service-card:hover {
  border-color: #0056b3; /* Brand color border highlight */
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05); /* Soft, expansive shadow */
}

.service-card:hover .service-card-img img {
  transform: scale(1.1); /* Slow zoom */
  filter: grayscale(0%); /* Full color on hover */
}

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .service-link::after {
  transform: translateX(5px);
}
