  :root {
      /* Color Variables */
      --brand: linear-gradient(90deg, #3399FF 0%, #33CCFF 80%);
      /* Primary Blue Gradient */
      --brand-start: #3399FF;
      --brand-end: #33CCFF;
      --brand-solid: #3A8DFF;
      /* Solid blue for backgrounds/buttons */
      --ink: #1f2937;
      /* Darker text for better contrast */
      --bg: #ffffff;
      --light-bg: #f9fafb;
      /* Lighter background for secondary sections */
      --text-muted: #6b7280;
      /* Slightly darker gray for muted text */
      --radius: 0.75rem;
      /* Slightly reduced radius for a modern feel */
      --transition-speed: 0.3s;

      --primary-color: #0056D2;
      /* Deep Blue */
      --primary-alt: #007bff;
      /* Brighter Blue for hover/CTA */
      --dark-color: #1d2b45;
      /* Dark Navy/Almost Black */
      --light-color: #f8f9fa;
      /* Light Grey/Off-White */
      --text-muted: #6c757d;
      --box-shadow-soft: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);



  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--ink);
      background: var(--bg);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-weight: 700;
  }

  /* Utility Classes */
  .btn-brand {
      background: var(--brand-solid);
      border: none;
      color: #fff;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      font-weight: 600;
      transition: all var(--transition-speed) ease-in-out;
  }

  .btn-brand:hover {
      background: #2563eb;
      /* Slightly darker hover */
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(58, 141, 255, 0.3);
  }

  .text-gradient {
      background: var(--brand);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent !important;
      font-weight: 800;
  }

  .shadow-soft {
      box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  }

  .section {
      padding: 70px 0;
  }

  .section-title {
      font-size: 2.3rem;
      font-weight: 700;
  }

  .section-padding {
      padding: 6rem 0;
      /* Increase section padding */
  }

  .section-sm-padding {
      padding: 3rem 0;
  }

  /* Navbar */
  .navbar {
      background: var(--bg) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      /* Lighter border */
  }

  .navbar .nav-link {
      color: var(--ink) !important;
      font-weight: 500;
      transition: color var(--transition-speed);
  }

  .navbar .nav-link:hover {
      color: var(--brand-solid) !important;
  }

  .dropdown-menu {
      border-radius: var(--radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: none;
  }

  /* Hero Section */
  .hero {
      background: var(--bg);
      overflow: hidden;
      /* For any potential animation overflow */
  }

  .hero h1 {
      font-size: 3.5rem;
      /* Larger font size for impact */
      line-height: 1.2;
      margin-bottom: 1rem;
  }

  .hero p.lead {
      font-size: 1.25rem;
      color: var(--text-muted) !important;
  }

  .hero img {
      border-radius: var(--radius);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
  }

  .stats h3 {
      font-size: 2.5rem;
      color: var(--brand-solid);
      margin-bottom: 0;
  }

  .stats small {
      color: var(--text-muted);
      font-weight: 500;
  }

  /* Logos/Tiles */
  .tile-container {
      display: flex;
      gap: 30px;
      /* Increased gap */
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 3rem;
  }

  .tile {
      background: var(--light-bg);
      color: var(--text-muted);
      padding: 10px 30px;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: 600;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: all var(--transition-speed) ease;
  }

  .tile:hover {
      transform: translateY(-2px);
      color: var(--brand-solid);
      border-color: var(--brand-solid);
  }

  /* Services Cards */
  .tech-services {
      background-color: var(--light-bg);
      /* Use light-bg for contrast */
      padding: 6rem 0;
      text-align: center;
  }

  .service-card {
      transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
      border: none;
      height: 100%;
      background: var(--bg);
      /* Changed to white/bg for a cleaner look */
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 2rem;
      border-radius: var(--radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      text-align: left;
  }

  .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }

  /* .service-image {
      width: 100%;
      height: 180px; 
      Consistent image height
      object-fit: cover;
      border-radius: 0.5rem;
      margin-bottom: 1.5rem;
  }*/
  .service-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 8px;
  }

  .service-title {
      font-size: 1.75rem;
      /* Larger service title */
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.5rem;
  }

  .tech-stack {
      color: var(--brand-solid);
      /* Highlight tech stack */
      font-size: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid rgba(58, 141, 255, 0.1);
      font-weight: 600;
  }

  .capabilities ul li {
      color: var(--ink);
      margin-bottom: 0.5rem;
  }

  .capabilities ul li:before {
      content: "\f00c";
      /* Font Awesome checkmark icon */
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      color: var(--brand-solid);
      /* Checkmark color */
      position: absolute;
      left: 0;
      line-height: inherit;
      font-size: 0.9rem;
  }

  .capabilities ul {
      list-style: none;
      /* Remove bullet points */
      padding-left: 0;
      margin-top: 0.5rem;
  }

  .capabilities ul li {
      position: relative;
      padding-left: 1.25rem;
  }

  /* New: Application Types/Tiles Section Styling */
  .app-tiles-section {
      background-color: var(--light-bg);
      padding: 6rem 0;
      text-align: center;
  }

  .app-tile-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .app-tile {
      display: flex;
      align-items: center;
      justify-content: center;
      width: calc(33.333% - 20px);
      /* 3 items per row on desktop */
      min-width: 250px;
      padding: 1.5rem;
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--ink);
      border: 1px solid rgba(0, 0, 0, 0.05);
      font-weight: 600;
      font-size: 1.1rem;
      text-align: center;
      transition: all var(--transition-speed) ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      cursor: pointer;
  }

  .app-tile i {
      font-size: 1.5rem;
      color: var(--brand-solid);
      margin-right: 1rem;
  }

  .app-tile:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      color: var(--brand-solid);
  }

  @media (max-width: 768px) {
      .app-tile {
          width: calc(50% - 10px);
          /* 2 items per row on tablet/mobile */
          min-width: unset;
      }
  }

  @media (max-width: 576px) {
      .app-tile {
          width: 100%;
          /* 1 item per row on smaller mobile */
      }
  }

  /* New: Tech Stacks/Languages Section Styling (Tabs and Grid) */
  .tech-stack-section {
      background-color: var(--bg);
      /* Use white background for contrast */
      padding: 6rem 0;
      text-align: center;
  }

  /* Styling for Bootstrap Tabs */
  .tech-stack-section .nav-tabs {
      border-bottom: 2px solid var(--light-bg);
      margin-bottom: 2rem;
      justify-content: center;
  }

  .tech-stack-section .nav-link {
      color: var(--text-muted);
      font-weight: 600;
      border: none;
      border-bottom: 3px solid transparent;
      padding: 0.75rem 1.5rem;
      transition: all var(--transition-speed);
  }

  .tech-stack-section .nav-link:hover {
      color: var(--brand-solid);
      border-color: rgba(58, 141, 255, 0.2);
  }

  .tech-stack-section .nav-link.active {
      color: var(--brand-solid);
      border-bottom-color: var(--brand-solid);
      background-color: transparent;
  }

  .tech-icon-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 2rem;
  }

  .tech-icon-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem;
      border-radius: var(--radius);
      width: 130px;
      transition: all var(--transition-speed) ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
      background: var(--light-bg);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      height: 100%;
  }

  .tech-icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  /* Custom styles for tech icons */
  .tech-icon-box i,
  .tech-icon-box .tech-label {
      font-size: 2.2rem;
      /* Larger icon size */
      margin-bottom: 0.5rem;
      line-height: 1;
      /* Fix vertical alignment */
  }

  .tech-icon-box span {
      font-weight: 600;
      font-size: 1rem;
      /* Slightly larger font for tech names */
      color: var(--ink);
      text-align: center;
  }


  /* Performance Metrics */
  .performance-section {
      background-color: var(--light-bg);
      /* Changed to light-bg to create better flow */
      padding: 6rem 0;
  }

  .performance-section .metric-box {
      background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
      /* Reintroduced gradient with a different angle */
      color: #fff;
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: all var(--transition-speed) ease;
      box-shadow: 0 10px 30px rgba(58, 141, 255, 0.3);
  }

  .performance-section .metric-box h5 {
      color: #fff;
      font-weight: 500;
      opacity: 0.9;
  }

  .performance-section .metric-box h2 {
      color: #fff;
      font-size: 3rem;
      margin-bottom: 0.5rem;
  }

  .performance-section .metric-box:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 40px rgba(58, 141, 255, 0.4);
  }

  /* Selected Work */
  .selected-work {
      background-color: var(--bg);
      /* Changed to white for better contrast with light-bg from above/below */
      padding: 6rem 0;
      text-align: center;
  }

  .work-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
  }

  .work-card {
      background: var(--bg);
      border-radius: var(--radius);
      overflow: hidden;
      width: 350px;
      /* Slightly wider cards */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }

  .work-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .work-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }

  .work-content {
      padding: 20px;
      text-align: left;
      border-top: 4px solid var(--brand-solid);
      /* Accent line */
  }

  .work-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
  }

  .work-description {
      font-size: 0.95rem;
      margin-bottom: 10px;
  }

  .work-tech {
      font-size: 0.9rem;
      color: var(--brand-solid);
      font-weight: 600;
  }

  /* Pricing */
  .pricing-card {
      background: var(--bg);
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: var(--radius);
      padding: 2.5rem;
      transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  }

  .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .pricing-card h2 {
      font-size: 3rem;
      color: var(--brand-solid);
  }

  .pricing-card h5 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--ink);
  }

  .pricing-card .list-unstyled li {
      position: relative;
      padding-left: 1.5rem;
      font-weight: 500;
  }

  .pricing-card .list-unstyled li i.fa-check-circle {
      position: absolute;
      left: 0;
      top: 4px;
  }

  /* FAQ */
  .accordion-button {
      font-weight: 600;
      color: var(--ink);
      border-radius: var(--radius) !important;
      margin-bottom: 0.5rem;
      transition: background-color var(--transition-speed);
  }

  .accordion-item {
      border: none;
      margin-bottom: 1rem;
      border-radius: var(--radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .accordion-button:not(.collapsed) {
      background-color: var(--brand-solid);
      color: #ffffff;
  }

  .accordion-body {
      color: var(--ink);
      background-color: var(--light-bg);
      border-radius: 0 0 var(--radius) var(--radius);
  }

  /* Contact */
  .form-control {
      border-radius: 0.5rem;
      padding: 0.75rem 1rem;
  }

  /* Footer */
  .footer-section {
      background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
      color: #fff;
      padding: 4rem 1rem;
      font-size: 1rem;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      /* transition: color var(--transition-speed); */
      font-size: 1rem;
      font-weight: 500;
  }

  .footer-links a:hover {
      color: #FFFFFF;
      text-decoration: none;
  }

  .contact-info span {
      color: rgba(255, 255, 255, 0.8);
  }

  .social-icons a {
      border-color: rgba(255, 255, 255, 0.5);
      color: rgba(255, 255, 255, 0.9);
      transition: all var(--transition-speed);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
  }

  .social-icons a:hover {
      background-color: #FFFFFF;
      color: var(--brand-solid);
      border-color: #FFFFFF;
  }

  .footer-bottom {
      background-color: var(--light-bg) !important;
  }

  .footer-bottom a {
      color: var(--text-muted) !important;
  }

  .footer-bottom span {
      color: var(--text-muted);
  }

  @media (max-width: 991.98px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .section-padding {
          padding: 4rem 0;
      }

      .performance-section .metric-box {
          padding: 2rem;
      }
  }

  /* ---------------- Webdevelopment Page -----------------------------*/

  /* Hero Section */
  .webdevelop-hero-section {
      position: relative;
      background-image: url('images/website1.jpeg');
      display: flex;
      align-items: center;
      color: #fff;
      background-size: 100% 100%;
      height: 100vh;
      /* Takes full viewport height */
  }

  /* Overlay for readability */
  .webdevelop-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 80%;
      background: rgba(12, 12, 12, 0.87);
      /* dark overlay */
  }

  .webdevelop-hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
  }

  .webdevelop-hero-content h1 {
      font-weight: 700;
      font-size: 2.5rem;
      line-height: 1.3;
  }

  .webdevelop-hero-content h1 span {
      color: #0056ff;
      /* Blue highlight */
      font-size: 2.8rem;
  }

  .webdevelop-hero-content h5 {
      margin: 30px 0;
      line-height: 1.8;
      /* font-size: 1.1rem;*/
  }

  .btn-hero {
      background-color: #dbe4ff;
      color: #000;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 12px;
      transition: 0.3s ease;
  }

  .btn-hero:hover {
      background-color: #b0c4ff;
      color: #000;
  }

  /* Why Choose Section */
  .whychoose-section {
      background: var(--bg);
  }

  .whychoose-section h2 {
      line-height: 1.3;
  }

  .whychoose-section p {
      font-size: 1rem;
      color: var(--text-muted);
  }

  .why-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
  }

  .why-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
      font-weight: 500;
      color: var(--ink);
  }

  .why-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--brand-solid);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.9rem;
  }

  .whychoose-image {
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      object-fit: cover;
  }

  .devprocess,
  tech-stack-section h2 {
      color: #3399FF;

  }

  .process {
      /* background: linear-gradient(to bottom, #33CCFF, #00FFFF); */
      background-color: var(--light-bg);

  }

  .process:hover {
      transform: translateY(-5px);
      transition: 0.3s ease;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  }


  #tech-stacks h2 {
      color: #3399FF;
  }


  /* Background color for the whole section */
  .promo-section {
      /* background: linear-gradient(to bottom, #33CCFF, #00FFFF); */
      /* width: 70%; */
      margin: 0 auto;
      /* Centers the block */
      border-radius: 50px;
      padding: 25px;
  }


  /* Heading text */
  .promo-text {
      font-size: 28px;
      color: #000;
      line-height: 1.2;
  }

  /* Button styling */
  .promo-btn {
      background-color: #4589ef;
      /* same pink button color */
      color: #fff;
      border-radius: 50px;
      /* round button */
      font-size: 18px;
      font-weight: 500;
      transition: 0.3s;
  }

  /* Hover effect */
  .promo-btn:hover {
      background-color: #04344a;
      color: #fff;
  }

  /* Modal Box */
  .call-modal {
      border-radius: 20px;
      padding: 20px 10px;
      position: relative;
      border: 2px solid #3A8DFF;
  }

  /* Close Button */
  .custom-close {
      position: absolute;
      top: -15px;
      right: -15px;
      background: #3A8DFF;
      color: #1e0202;
      opacity: 1;
      padding: 10px;
      border-radius: 50%;
  }

  /* Pink underline */
  .underline-box {
      width: 100px;
      height: 3px;
      background: linear-gradient(to right, #d1d1d1, #02a8b7, #d1d1d1);
      border-radius: 5px;
  }

  /* Input Fields */
  .call-input {
      height: 50px;
      border-radius: 12px;
      padding: 12px;
      border: 1px solid #ddd;
      font-size: 15px;
  }

  /* Submit Button */
  .submit-btn {
      background: #3A8DFF;
      padding: 12px 40px;
      border-radius: 30px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      color: black;
      transition: 0.3s;
  }

  .submit-btn:hover {
      background: #2880fc;
  }

  /* Extra styling */
  .call-modal h3 {
      font-size: 28px;
      letter-spacing: 1px;
  }


  /* --------------- Get the Best Bang for your buck  ----*/

  /* Get the Best Bang For Your Buck  */

  /* Background styling */
  .htech-section {
      /* background: linear-gradient(180deg, #0d6efd, #084298); */
      /* Blue gradient */
         background: hsl(200, 94%, 57%);
      padding: 60px 0;
      text-align: center;
      color: #0d6efd;
  }


  /* Tab styling */
  .tech-tabs .nav-link {
      border: none;
      color: #ffffff;
      font-weight: 500;
      margin: 0 8px;
  }

  .tech-tabs .nav-link.active {
     
       background: #ffffff;
      color: #0d6efd;
      border-bottom: 3px solid #0d6efd;
      border-radius: 0;
  }


  /* Hexagon container */
  .hexagon {
      width: 120px;
      height: 130px;
      /* background: linear-gradient(180deg, #0d6efd, #084298); */
     background: #ffffff;
      /* WHITE hexagon */
      clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px auto;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease-in-out;
      color: #fff;
  }


  .hexagon:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
  }


  .hexagon img {
      width: 40px;
      margin-bottom: 5px;
  }
/* 
  .tech-label {
      margin-top: 8px;
      font-weight: 600;
      font-size: 14px;
      color: #0d6efd;
     
  } */

.aws-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aws-icon i {
  font-size: 42px;
  color: #ff9900; /* Official AWS orange */
  margin-bottom: 6px;
}


.hexagon i {
  font-size: 42px;
  color: #0d6efd;
}

.tech-label {
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #0d6efd;
}

  /* ---------------- Innovate Section (same as Why Choose) --------------- */
  .innovate-section {
      background: var(--bg);
  }

  .innovate-section h2 {
      line-height: 1.3;
      font-size: 2.2rem;
      font-weight: 700;
  }

  .innovate-section p {

      color: var(--text-muted);
      line-height: 1.75;
  }

  /* Image Styling (same as whychoose-image) */
  .innovate-image {
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      object-fit: cover;
  }

  /* Stats styling (unified look) */
  .innovate-section .row h3 {
      font-size: 2rem;
      font-weight: 700;
      color: #0d1b2a;
  }

  .innovate-section .row p {
      margin-top: 5px;
      color: #6c757d;
      font-size: 1.1rem;
  }


  /* ------------------------------------------------ */
  /* 1. Global Variables & Utility Classes            */
  /* ------------------------------------------------ */
  :root {
      /* Color Palette */
      --primary-color: #0056D2;
      /* Deep Blue - Main Brand Color */
      --primary-alt: #007bff;
      /* Brighter Blue - Accent/Hover Color */
      --secondary-color: #ffc107;
      /* Yellow/Gold - CTA/Highlight */
      --dark-color: #212529;
      --text-muted: #6c757d;

      /* Shadows */
      --box-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);

      /* Typography */
      --font-family-base: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  body {
      font-family: var(--font-family-base);
      color: var(--dark-color);
      line-height: 1.6;
  }

  /* General Overrides */
  .text-primary {
      color: var(--primary-color) !important;
  }

  .bg-light-soft {
      background-color: #f7f9fc !important;
  }

  /* Custom Buttons & Links */
  .btn-primary-alt {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
      transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }

  .btn-primary-alt:hover {
      background-color: var(--primary-alt);
      border-color: var(--primary-alt);
      transform: translateY(-2px);
      color: #fff;
  }

  .btn-hero-cta {
      background-color: #00A6FF;
      border-color: #fff;
      color: var(--dark-color);
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .btn-hero-cta:hover {
      background-color: #00A6FF;
      ;
      border-color: #000;
      color: var(--dark-color);
      transform: translateY(-2px);
  }

  /* ------------------------------------------------ */
  /* 2. Navigation Bar                              */
  /* ------------------------------------------------ */
  .custom-navbar {
      background-color: #ffffff;
      box-shadow: var(--box-shadow-soft);
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
  }

  .custom-navbar .logo-text {
      font-size: 1.4rem;
      color: var(--primary-color);
  }

  .custom-navbar .nav-link {
      font-weight: 500;
      color: var(--dark-color);
      padding-right: 1rem !important;
      padding-left: 1rem !important;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active {
      color: var(--primary-color);
      border-bottom-color: var(--primary-color);
  }

  .dropdown-menu {
      border-radius: 0.5rem;
      border: 1px solid rgba(0, 0, 0, 0.1);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  /* ------------------------------------------------ */
  /* 3. Hero Section                                */
  /* ------------------------------------------------ */
  .softdevelop-hero-section {
      position: relative;
      background: url('images/softwaredevelopment2.jpg') no-repeat center center/cover;
      height: 90vh;
      min-height: 500px;
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .webdevelop-hero-overlay {
      position: absolute;
      inset: 0;
      /* Richer, more professional gradient */
      background: linear-gradient(90deg, rgba(0, 20, 50, 0.9) 0%, rgba(0, 50, 100, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
      z-index: 0;
  }

  .webdevelop-hero-content {
      z-index: 1;
  }

  @media (max-width: 768px) {
      .softdevelop-hero-section {
          height: 80vh;
      }

      .webdevelop-hero-overlay {
          background: linear-gradient(180deg, rgba(0, 20, 50, 0.9) 0%, rgba(0, 50, 100, 0.7) 100%);
      }
  }


  
/* Thriving Arena Section 

/* Styles for the base card state */
.card-item {
    background-color: #00A6FF;
    color: #fff;
    /* Reduced padding to make the box smaller */
    padding: 1.5rem; 
    border-radius: 0.75rem; 
    font-size: 1.2rem;
    font-weight: 500;
    border: 4px solid transparent; 
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease, border 0.5s ease, padding 0.5s ease, border-radius 0.5s ease;
}


/* Hover effect */
.card-item:hover {
    border-radius: 10.522px;
    border: 4px solid #0C287B;
    background: #D3DFFF;
    box-shadow: -6px 6px 0px 0px #FED0AB, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #0C287B;
    padding: 1rem; 
}

/* Force card layout like screenshot */
.industry-card {
  min-width: 280px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  white-space: nowrap;
}

/* Longer card for long text */
.industry-card.long-text {
  min-width: 420px;
}

/* Icon alignment */
.industry-card i {
  flex-shrink: 0;
}

/* Smooth horizontal scroll (mobile) */
.row.flex-nowrap {
  scrollbar-width: none;
}
.row.flex-nowrap::-webkit-scrollbar {
  display: none;
}


  /* ------------------------------------------------ */
  /* 4. Feature Cards                               */
  /* ------------------------------------------------ */
  .feature-card {
      border: 1px solid #e9ecef;
      border-radius: 0.75rem;
      background-color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.5rem 1rem rgba(0, 86, 210, 0.15) !important;
      border-color: var(--primary-color);
  }

  .reason-card {
      border: 1px solid #e9ecef;
      background-color: #fff;
      border-radius: 0.75rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .reason-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.5rem 1rem rgba(0, 86, 210, 0.15) !important;
  }


  /* ------------------------------------------------ */
  /* 5. About Us Image                              */
  /* ------------------------------------------------ */
  .image-holder {
      max-height: 450px;
      height: 100%;
      width: 100%;
  }

  .image-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }

  /* ------------------------------------------------ */
  /* 6. Development Process Timeline                */
  /* ------------------------------------------------ */
  .process-timeline {
      position: relative;
      padding-left: 30px;
  }

  /* Vertical Connecting Line */
  .process-timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10px;
      height: 100%;
      width: 3px;
      background-color: #d1d9e6;
      /* Light gray line */
  }

  /* Timeline Circle/Icon Point */
  .process-icon-circle {
      position: absolute;
      top: 25px;
      left: 0;
      width: 25px;
      height: 25px;
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      border: 3px solid #fff;
      z-index: 10;
      box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.2);
      /* Soft outer ring */
  }

  /* Content block next to the timeline */
  .process-content {
      padding-left: 30px;
      background-color: #fff;
      border-left: 4px solid var(--secondary-color);
      /* Highlight color border */
      padding: 15px 20px;
      border-radius: 5px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .process-step:hover .process-content {
      background-color: #fcfdff;
      border-left-color: var(--primary-color);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  /* ------------------------------------------------ */
  /* 7. Industries Slider (Horizontal Scroll)       */
  /* ------------------------------------------------ */

  /* The main container for horizontal scrolling */
  .cki-industries-slider {
      scroll-behavior: smooth;
      white-space: nowrap;
      overflow-x: auto;
      /* Hide scrollbar for clean design */
      -ms-overflow-style: none;
      scrollbar-width: none;
  }

  .cki-industries-slider::-webkit-scrollbar {
      display: none;
  }

  .cki-industry-card {
      position: relative;
      min-width: 300px;
      height: 200px;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      flex-shrink: 0;
      will-change: transform;
      /* Fixes potential flickering on transform */
  }

  .cki-industry-card:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .cki-industry-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .cki-industry-card:hover .cki-industry-card__img {
      transform: scale(1.05);
  }

  .cki-industry-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
              rgba(0, 0, 0, 0.0) 30%,
              rgba(0, 0, 0, 0.6) 80%,
              rgba(0, 0, 0, 0.9) 100%);
  }

  .cki-industry-card__text {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: #fff;
      font-size: 1.5rem;
      font-weight: 600;
  }


  /* ------------------------------------------------ */
  /* 8. CTA Section                                 */
  /* ------------------------------------------------ */
  .cta-section {
      background: linear-gradient(135deg, var(--primary-color), #0047a0);
      box-shadow: var(--box-shadow-soft);
  }

  /* ------------------------------------------------ */
  /* 9. Footer                                      */
  /* ------------------------------------------------ */
  .footer-section {
      background-color: var(--dark-color);
      color: #f8f9fa;
  }

  .footer-links a {
      color: #e9ecef;
      display: block;
      margin-bottom: 0.5rem;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-links a:hover {
      color: var(--primary-color);
  }

  .social-icons a {
      color: #fff;
      font-size: 1.25rem;
      margin-right: 15px;
      transition: color 0.3s ease;
  }

  .social-icons a:hover {
      color: var(--primary-color);
  }

  .contact-info span {
      color: #fff;
  }

  .footer-bottom {
      background-color: #1a1e22;
      color: #e9ecef;
      border-top: 1px solid #343a40;
  }

  .footer-bottom a {
      color: #e9ecef;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-bottom a:hover {
      color: var(--primary-color);
  }



  /* Artificial Intelligence Page */

  /* Hero Section */
  .ai-hero-section {
      position: relative;
      background-image: url('images/ArtificialIntelligence.webp');
      display: flex;
      align-items: center;
      color: #fff;
      background-size: 100% 100%;
      height: 100vh;
      /* Takes full viewport height */
  }


  .bg-dark-soft {
      background-color: #1c2a41 !important;
  }

  .text-primary {
      /* Ensure this targets your new AI primary color */
      color: #00A6FF !important;
  }

  /* 2. Hero Section */

  .ai-hero-overlay {
      position: absolute;
      inset: 0;
      /* Darken heavily for contrast */
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
      z-index: 0;
  }

  .ai-hero-section .container {
      z-index: 1;
  }

  /* AI Call to Action Button */
  .btn-ai-cta {
      background-color: #00A6FF;
      border-color: #00A6FF;
      color: #101827;
      font-weight: 700;
      /* Neon glow effect on hover */
      transition: all 0.4s ease;
  }

  .btn-ai-cta:hover {
      background-color: #fff;
      border-color: #fff;
      box-shadow: 0 0 20px rgba(0, 166, 255, 0.8);
      transform: translateY(-2px);
  }

  /* 3. Core Service Cards */
  .ai-card {
      background-color: #1c2a41;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ai-card:hover {
      transform: translateY(-5px);
      border-color: #00A6FF;
      /* Highlight on hover */
  }

  /* 4. Benefits Section Icons */
  .benefit-list .icon-wrap {
      width: 60px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      border-radius: 50%;
      background-color: #f0f8ff;
      /* Light circle behind the primary icon */
  }

  /* 5. Technologies Stack */
  .fa-4x {
      font-size: 3.5rem;
  }

  /* Make sure image covers full height nicely */
  .object-cover {
      object-fit: cover;
      height: 100%;
  }

  /* Gradient background for right block */
  /* .automation-content {

    border-radius: 0; /* remove on large screens }*/


  /* Improve padding for smaller screens */
  @media (max-width: 991px) {
      .automation-content {
          padding: 2rem !important;
      }
  }

  /* Set custom height */
  .image-box {
      height: 450px;
      /* 🔥 Adjust this value to your desired height */
      overflow: hidden;
  }

  .reduced-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* keeps image centered and cropped nicely */
  }


  /* --- Style 1: Grid of Logo Cards --- */
  .tech-card {
      /* Background and border from your dark theme */
      background-color: var(--ai-light-bg);
      border: 1px solid rgba(255, 255, 255, 0.873);
      border-radius: 8px;
      padding: 20px 10px;
      transition: all 0.3s ease;
      height: 100%;
  }



  .tech-card p {
      font-size: 0.9rem;
      margin-bottom: 0;
  }

  .tech-card:hover {
      /* Primary color background on hover for high contrast */
      background-color: var(--ai-primary-color);
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      border-color: #000;
  }

  .tech-card:hover i {
      /* Change icon color to the dark background color */
      color: rgb(65, 133, 236);
      text-shadow: none;
  }

  .tech-card:hover p {
      color: var(--ai-dark-bg);
  }


  /* Mobile App Development  */

  .appdevelop-hero-section {
      position: relative;
      background-image: url('images/mobile-app-development.jpg');
      display: flex;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      background-size: 100% 100%;
      height: 80vh;
  }

  .appdevelop-hero-content {
      z-index: 1;
      max-width: 80%;
      text-align: right;
      padding-right: 15px;
  }


  .tech-section {
      background: #f8f9fa;
  }

  .tech-box {
      padding: 20px 10px;
      background: white;
      border-radius: 12px;
      font-weight: bold;
      /* box-shadow: 0 4px 15px rgba(0,0,0,.1); */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
      margin: 8px;
  }

  .tech-box i {
      font-size: 48px;
      margin-bottom: 10px;
      display: block;
  }

  .tech-box span {
      font-weight: 600;
      font-size: 15px;
  }

  .tech-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  /* Section Titles */
  .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #004D99;

  }

  .section-subtitle {
      color: #6c757d;
  }

  /* Features */
  .feature-box {
      background: #fff;
      border-radius: 12px;
      transition: 0.3s;
  }

  .feature-box:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
  }

  /* CTA Section */
  .cta-section {
      background: #004D99;
  }

  .process-box {
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
  }

  .process-box:hover {
      transform: translateY(-5px);
  }

  .step-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #004D99;
  }

  .testimonial-text {
      font-size: 1.2rem;
      font-style: italic;
      color: #333;
  }


  /* 4. General Section Styling */
  .cki-section__title {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--bs-brand-primary);
  }

  .cki-section__subtitle {
      color: #6c757d;
      font-size: 1.1rem;
  }

  /* 10. Industries Slider (Horizontal Scroll) */
  .cki-industries-slider {
      /* Enables horizontal scrolling and hides the default scrollbar */
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
  }

  .cki-industries-slider::-webkit-scrollbar {
      display: none;
      /* For Chrome, Safari, and Opera */
  }

  .cki-industries-slider {
      -ms-overflow-style: none;
      /* For IE and Edge */
      scrollbar-width: none;
      /* For Firefox */
  }


  .cki-industry-card {
      min-width: 280px;
      height: 200px;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease;
      cursor: pointer;
      flex-shrink: 0;
      /* ADDED to prevent flickering during transform */
      will-change: transform;
  }

  .cki-industry-card:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .cki-industry-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }

  .cki-industry-card:hover .cki-industry-card__img {
      transform: scale(1.05);
  }

  .cki-industry-card__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%);
      z-index: 1;
  }

  .cki-industry-card__text {
      position: absolute;
      bottom: 15px;
      left: 15px;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
      z-index: 2;
  }

  /* ERP Page Specific Styles - Using Root Variables */

  /* Hero Section */
  .erp-hero-section {
      position: relative;
      /* Use a dedicated, professional background image for ERP */
      background: url('images/erphero.jpg') no-repeat center center/cover;
      height: 70vh;
      min-height: 450px;
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .erp-hero-overlay {
      position: absolute;
      inset: 0;
      /* Use primary color with transparency for overlay */
      background: linear-gradient(135deg, rgba(0, 86, 210, 0.9) 0%, rgba(0, 40, 100, 0.8) 100%);
      opacity: 85%;
      z-index: 0;
  }

  .text-secondary-highlight {
      /* Use the secondary color for emphasis in the heading */
      color: var(--secondary-color) !important;
  }

  /* Custom button for Hero section */
  .btn-outline-light-alt {
      color: #fff;
      border-color: #fff;
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  .btn-outline-light-alt:hover {
      background-color: #fff;
      color: var(--primary-color);
      border-color: #fff;
  }


  /* Benefits Section Card */
  .benefit-card {
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      background-color: #fff;
      color: var(--text-dark);
      /* Ensure text is dark */
  }

  .benefit-card i {
      color: var(--primary-color);
      /* Icon color */
  }

  .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-default);
      border-color: var(--primary-color);
  }


  /* Core Modules Section */
  .bg-light-soft {
      /* Assuming you may have a softer background defined, otherwise use standard light bg */
      background-color: var(--bg-light) !important;
  }

  .module-item {
      border: 1px solid var(--border-color);
      background-color: #fff;
      transition: all 0.3s ease;
  }

  .module-item i {
      color: var(--primary-color);
  }

  .module-item p {
      color: var(--text-muted);
  }

  .module-item:hover {
      background-color: var(--primary-color);
      color: #fff !important;
      border-color: var(--primary-color);
      transform: translateY(-5px);
      /* Custom shadow using primary color for depth */
      box-shadow: 0 10px 30px rgba(0, 86, 210, 0.2);
  }

  .module-item:hover h4,
  .module-item:hover p {
      color: #fff !important;
      /* Text becomes white on hover */
  }

  .module-item:hover i {
      /* Icon uses the secondary color on hover for high contrast */
      /* color: var(--secondary-color) !important;  */
      color: #fff !important;
  }

  /* --- New ERP Section Styles --- */

  /* Technology & Integration Section */
  .technology-bg {
      position: relative;
      /* Use a dark, professional background for this tech-focused section */
      background: url('images/tech_bg_dark.jpg') no-repeat center center/cover;
  }

  .technology-overlay {
      position: absolute;
      inset: 0;
      /* Use a dark blue transparent overlay for readability */
      background-color: #0047a0;
      opacity: 0.9;
      z-index: 0;
  }

  .tech-item {
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .tech-item:hover {
      transform: translateY(-5px);
  }

  /* Testimonial Card Section */
  .testimonial-card {
      background-color: #fff;
      border-top: 5px solid var(--primary-color);
  }

  /* ------------------------ CRM Page -------------------- */

  /* Hero Section */
  .crm-hero-section {
      position: relative;
      /* Use a background image related to connections, charts, or teamwork */
      background: url('images/crm.webp') no-repeat center center/cover;
      height: 70vh;
      min-height: 450px;
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .crm-hero-overlay {
      position: absolute;
      inset: 0;
      /* Use Primary Color gradient for a professional look */
      background: linear-gradient(135deg, rgba(0, 86, 210, 0.9) 0%, rgba(0, 40, 100, 0.8) 100%);
      opacity: 0.9;
      z-index: 0;
  }


  /* Core Feature Cards (Similar to ERP, but maybe a slightly different hover effect) */
  .feature-card {
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      background-color: #fff;
  }

  .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-default);
      border-color: var(--secondary-color);
      /* Highlight with secondary color on hover */
  }

  .feature-card i {
      color: var(--primary-color);
  }


  /* Data and Analytics CTA Background */
  .crm-analytics-cta {
      background-color: var(--primary-color) !important;
      padding: 80px 0;
  }

  /* Custom Secondary Button for CTA */
  .btn-secondary-alt {
      background-color: #fff;
      color: var(--primary-color);
      /* Set text color to primary */
      font-weight: bold;
      border: 2px solid #fff;
      transition: all 0.3s ease;
  }

  .btn-secondary-alt:hover {
      color: #fff;
      border: 2px solid #fff;
  }


  /* Adoption Card Style (Similar to Feature Cards, but using secondary color for focus) */
  .adoption-card {
      border: 1px solid var(--border-color);
      background-color: #fff;
      transition: all 0.3s ease;
  }

  .adoption-card i {
      color: var(--secondary-color);
  }

  .adoption-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-color: var(--secondary-color);
  }


  /* Pricing Feature Icons */
  .pricing-feature i {
      color: var(--primary-color);
  }


  /* Testimonial Card (Using the same style as ERP for consistency) */
  .testimonial-card {
      background-color: #fff;
      border-top: 5px solid var(--primary-color);
  }


  /* CRM Section */
  .crm-section h2 {
      color: #004D99;
      font-size: 32px;
  }

  .crm-box h3 {
      color: #222;
      font-size: 24px;
  }

  .crm-box p {
      color: #555;
      font-size: 15px;
  }

  /* CTA Box Wrapper */
  .cta-box {
      background: linear-gradient(90deg, #0d6efd, #1a73e8);
      padding: 50px 60px;
      border-radius: 30px;
  }

  /* Text */
  .cta-text h2 {
      font-size: 28px;
      line-height: 1.4;
  }

  /* Right Side Circle Graphic */
  .cta-graphic {
      position: relative;
      width: 260px;
      height: 260px;
  }

  .big-circle {
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      backdrop-filter: blur(3px);
  }

  .cta-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 70px;
      color: white;
      font-weight: bold;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .cta-box {
          text-align: center;
          padding: 40px;
      }

      .cta-graphic {
          width: 200px;
          height: 200px;
          margin-top: 20px;
      }

      .cta-text h2 {
          font-size: 22px;
      }
  }

  .advantages-section {
      background: hsl(200, 94%, 57%);
  }

  .adv-card {
      background: #fff;
      border-radius: 15px;
      transition: 0.3s ease;
  }

  .adv-card:hover {
      background: #fff;
      transform: translateY(-5px);
  }

  .adv-card .icon i {
      color: #f0a24a;
      /* Golden-orange color */
  }


  /* --------------------- Online Taxi Booking Web PAge ------------------*/


  /* Hero Section */
  .taxi-hero-section {
      position: relative;
      background: url('images/onlinetaxibooking1.jpg') no-repeat center center/cover;
      height: 75vh;
      min-height: 500px;
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .taxi-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(150deg, rgba(0, 86, 210, 0.95) 0%, rgba(0, 40, 100, 0.9) 80%);
      opacity: 0.9;
      z-index: 0;
  }

  /* Core Component Cards (Similar to ERP/CRM feature cards) */
  .component-card {
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      background-color: #fff;
  }

  .component-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow-default);
      border-color: var(--primary-color);
  }

  .component-card i {
      color: var(--primary-color);
  }

  .img-small {
      max-height: 350px;
      object-fit: cover;
  }


  /* Final CTA Section Background */
  .taxi-cta-bg {
      position: relative;
      background: url('images/taxi_success_bg.jpg') no-repeat center center/cover;
      padding: 80px 0;
  }

  .taxi-cta-overlay {
      position: absolute;
      inset: 0;
      background-color: #0047a0;
      z-index: 0;
  }

  /* Button style from CRM (Re-used for consistency) */
  .btn-secondary-alt {
      background-color: #0047a0;
      color: #ffff;
      font-weight: bold;
      border: 2px solid white;
      transition: all 0.3s ease;
  }

  .btn-secondary-alt:hover {
      background-color: #0047a0;
      box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
      transform: translateY(-5px);
  }


  /* Tech Stack Card Style */
  .tech-stack-card {
      border: 1px solid var(--border-color);
      background-color: #fff;
      transition: all 0.3s ease;
  }

  .tech-stack-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-color: var(--secondary-color);
  }

  .tech-stack-card i {
      color: var(--secondary-color);
  }

  /* Competitive Advantage List */
  .advantage-list .h4 {
      color: var(--primary-color);
  }

  /* Example CSS structure for feature blocks */
  .feature-block {
      padding: 35px;
      transition: transform 0.3s ease;
  }

  .feature-block:hover {
      transform: translateY(-3px);
  }

  .feature-block i {
      color: var(--primary-color);
  }

  /* ------------------Contact Us Page ------------------------*/
  .contact-header {
      /* background: linear-gradient(135deg, #0d6efd, #6610f2); */
      color: #000;
      padding: 60px 0;
  }

  .contact-card {
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .contact-info i {
      font-size: 22px;
      color: #0d6efd;
  }

  .btn-custom {
      color: white;
      background: #0d6efd;
      border: none;
  }

  .btn-custom:hover {
      background: #084298;
  }

/* ------------Portfolio page ---------------------*/
/* Hero Section */
.portfolio-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #fff;
}

/* Portfolio Section */
.portfolio-section {
    background: #f8f9fa;
}

/* Card */
.portfolio-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Image */
.portfolio-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.portfolio-content {
    padding: 20px;
}

.portfolio-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-content p {
    font-size: 15px;
    color: #555;
}

/* Tech Stack */
.tech-stack {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
}

/* -------------About US Page ------------------*/
  /* Hero Section */
  .aboutus-hero-section {
      position: relative;
      /* Use a dedicated, professional background image for ERP */
      background: url('images/about-us.jpg') no-repeat center center/cover;
      height: 70vh;
      min-height: 450px;
      padding-top: 100px;
      padding-bottom: 50px;
  }

  .aboutus-hero-overlay {
      position: absolute;
      inset: 0;
      /* Use primary color with transparency for overlay */
      background: linear-gradient(135deg, rgba(0, 86, 210, 0.9) 0%, rgba(0, 40, 100, 0.8) 100%);
      opacity: 85%;
      z-index: 0;
  }

.banner-overlay h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}
