/* Initial transparent navbar */
.navbar {
  background: transparent !important;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* Sticky navbar when scrolled */
.navbar.sticky-top {
  position: fixed !important;
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Initial navbar text color (white on hero) */
.navbar .navbar-brand h2 {
  color: #ffffff !important;
}

.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Sticky navbar text color (blue when white background) */
.navbar.sticky-top .navbar-brand h2 {
  color: #06a3da !important;
}

.navbar.sticky-top .navbar-nav .nav-link {
  color: #091e3e !important;
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #06a3da !important;
}

/* Adjust hero section padding when navbar is sticky */
body.sticky-navbar .hero {
  padding-top: 150px;
}

/* For mobile view */
@media (max-width: 991.98px) {
  .navbar {
    position: relative;
    background: #ffffff !important;
  }

  .navbar .navbar-brand h2 {
    color: #06a3da !important;
  }

  .navbar .navbar-nav .nav-link {
    color: #091e3e !important;
  }

  .navbar.sticky-top {
    position: relative !important;
    box-shadow: none;
  }

  body.sticky-navbar .hero-section {
    padding-top: 130px;
  }
}

/* ===== High DPI / Zoom Fix ===== */

/* Initial transparent navbar */
.navbar {
  background: transparent !important;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* Sticky navbar when scrolled */
.navbar.sticky-top {
  position: fixed !important;
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Initial navbar text color (white on hero) */
.navbar .navbar-brand h2 {
  color: #ffffff !important;
}

.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Sticky navbar text color (blue when white background) */
.navbar.sticky-top .navbar-brand h2 {
  color: #06a3da !important;
}

.navbar.sticky-top .navbar-nav .nav-link {
  color: #091e3e !important;
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #06a3da !important;
}

/* Adjust hero section padding when navbar is sticky */
body.sticky-navbar .hero {
  padding-top: 150px;
}

/* For mobile view */
@media (max-width: 991.98px) {
  .navbar {
    position: relative;
    background: #ffffff !important;
  }

  .navbar .navbar-brand h2 {
    color: #06a3da !important;
  }

  .navbar .navbar-nav .nav-link {
    color: #091e3e !important;
  }

  .navbar.sticky-top {
    position: relative !important;
    box-shadow: none;
  }

  body.sticky-navbar .hero-section {
    padding-top: 130px;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.hero-title {
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

/* Windows 150% scaling fix */
@media (min-resolution: 1.5dppx) {
  .hero-title {
    font-weight: 350 !important;
    letter-spacing: 0.7px;
  }
}

/* FORCE 4 COLUMNS ON DESKTOP (EVEN AT 150% ZOOM) */
.services-main-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
  gap: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .services-main-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-main-list {
    grid-template-columns: 1fr !important;
  }
}

/* ================================
   IT SERVICES HERO SECTION
================================ */

.it-services-hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://blog.udemy.com/wp-content/uploads/2014/06/bigstock-Mixed-group-in-business-meetin-23883404.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 0 60px;
  /* ❗ remove left/right padding */
}

/* Overlay */
.hero-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 30px 15px;
  /* mobile-safe padding only here */
  margin: 0 auto;
  /* force center */
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 700 !important;
  /* Medium instead of bold */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  /* Softer shadow */
  text-align: center;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 10px;
}

/* Highlight */
.hero-title .highlight {
  color: #06a3da;
  /* font-weight: 800; */
}

/* Description */
.hero-description {
  line-height: 1.8;
  color: #f0f8ff;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Base */
.hero-buttons .btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  font-family: "Rubik", sans-serif;
}

/* Primary Button */
.hero-buttons .btn-primary {
  background-color: #06a3da;
  color: #ffffff;
  border: 2px solid #06a3da;
}

.hero-buttons .btn-primary:hover {
  background-color: transparent;
  color: #06a3da;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Outline Button */
.hero-buttons .btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-buttons .btn-outline:hover {
  background-color: #ffffff;
  color: #091e3e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================================
   ANIMATION
================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE DESIGN
================================ */

/* Large Screens */
@media (max-width: 1400px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .it-services-hero-section {
    min-height: 90vh;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.05rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .it-services-hero-section {
    min-height: 100vh;
    /* Full screen */
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}

/* Extra Large Screens */
@media (min-width: 1800px) {
  .it-services-hero-section {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.4rem;
    max-width: 1000px;
  }
}

/* What We Do Section - Simplified */
.what-we-do-section {
  padding: 50px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Section Header - Aligned Left */
.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-title-main {
  /* font-size: 2.8rem;
    font-weight: 700; */
  color: #091e3e;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* .title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #06a3da, #0d6efd);
    border-radius: 2px;
    margin: 10px 0 20px 0;
} */

.company-name-subtitle {
  /* font-size: 1.6rem;
    font-weight: 500; */
  color: #06a3da;
  margin-bottom: 15px;
}

.section-tagline {
  /* font-size: 1.3rem; */
  color: #555;
  /* font-weight: 400; */
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
}

/* Content Area */
.what-we-do-content {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.what-we-do-content p {
  /* font-size: 1.1rem; */
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: left;
}

/* .what-we-do-highlight {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.08), rgba(13, 110, 253, 0.08));
    border-left: 4px solid #06a3da;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 12px 12px 0;
} */

.what-we-do-highlight p {
  margin-bottom: 0;
  /* font-size: 1.1rem; */
  color: #444;
  /* font-weight: 500; */
  line-height: 1.6;
}

/* Key Strengths Section */
.key-strengths-section {
  /* margin-top: 8px; */
  /* padding: 40px; */
  /* background: white; */
  /* border-radius: 15px; */
  position: relative;
  overflow: hidden;
}

.key-strengths-main {
  padding: 50px 0;
  background: #eef9ff;
  position: relative;
  overflow: hidden;
}

.key-strengths-title {
  /* font-size: 2.2rem;
    font-weight: 700; */
  color: #091e3e;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

.key-strengths-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #06a3da, #0d6efd);
  border-radius: 2px;
}

.key-strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Updated Key Strength Item - Icon in Middle */
.key-strength-item {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.key-strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 163, 218, 0.15);
}

.strength-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06a3da, #0a8ec7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.key-strength-item:hover .strength-icon {
  transform: scale(1.1);
}

.strength-icon i {
  font-size: 2rem;
  color: white;
}

.strength-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strength-content h4 {
  font-size: 1.3rem;
  /* font-weight: 600; */
  color: #091e3e;
  margin-bottom: 12px;
  margin-top: 10px;
}

.strength-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

/* Image Container - Reduced Size */
.what-we-do-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.12);
  border: 2px solid rgba(6, 163, 218, 0.1);
  transition: all 0.3s ease;
  height: 85%;
  width: 85%;
  min-height: 350px;
  margin: 0 auto;
}

.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(6, 163, 218, 0.2);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 163, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #06a3da;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-icon {
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .what-we-do-section {
    padding: 70px 0;
  }

  .section-title-main {
    font-size: 2.2rem;
  }

  .company-name-subtitle {
    font-size: 1.3rem;
  }

  .what-we-do-content {
    margin-bottom: 30px;
    min-height: 350px;
  }

  .image-container {
    width: 90%;
    min-height: 350px;
  }

  .key-strengths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .what-we-do-section {
    padding: 60px 0;
  }

  .section-title-main {
    font-size: 2rem;
  }

  .what-we-do-content {
    min-height: 320px;
  }

  .what-we-do-content p {
    font-size: 1rem;
  }

  .image-container {
    width: 95%;
    min-height: 300px;
  }

  .key-strengths-section {
    padding: 30px 20px;
  }

  .key-strengths-title {
    font-size: 1.8rem;
  }

  .key-strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .key-strength-item {
    padding: 25px 20px;
  }

  .strength-icon {
    width: 60px;
    height: 60px;
  }

  .strength-icon i {
    font-size: 1.8rem;
  }

  .strength-content h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .section-header-left {
    text-align: center;
  }

  .title-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .section-tagline {
    text-align: center;
  }

  .what-we-do-content p {
    text-align: center;
  }

  .what-we-do-highlight p {
    text-align: center;
  }
}

/* Responsive Web Design Services Section */
.responsive-services-section {
  padding: 50px 0;
  background: #f5f9fc;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.responsive-head {
  /* font-weight: 700; */
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}

/* Remove the animated background elements */
/* .responsive-services-section::before {
    display: none;
} */

/* @keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-10px, 10px);
    }
    50% {
        transform: translate(-5px, -5px);
    }
    75% {
        transform: translate(10px, 5px);
    }
} */

/* Section Header */
.section-title-animated {
  margin-bottom: 5px;
  position: relative;
  display: block;
  /* Full width */
  text-align: center;
  /* Left align */
  width: 100%;
  /* Take full row */
}

.title-text {
  color: #091e3e;
  display: block;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-subtitle {
  /* font-size: 1.1rem; */
  color: #555;
  margin-bottom: 30px;
  /* font-weight: 400; */
  animation: fadeIn 1s ease-out 0.6s both;
  /* max-width: 1200px; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .title-underline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 0.9s both;
} */

/* .title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #06a3da, transparent);
    border-radius: 2px;
} */

/* .title-circle {
    width: 12px;
    height: 12px;
    background: #06a3da;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(6, 163, 218, 0.3);
    animation: pulse 2s infinite;
} */
/* 
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(6, 163, 218, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(6, 163, 218, 0.5);
    }
} */

/* Service Cards */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 163, 218, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  /* margin-top: 40px; */
}

.service-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-card:nth-child(2) {
  animation-delay: 0.3s;
}

.service-card:nth-child(3) {
  animation-delay: 0.4s;
}

.service-card:nth-child(4) {
  animation-delay: 0.5s;
}

.service-card:nth-child(5) {
  animation-delay: 0.6s;
}

.service-card:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.2);
}

/* Service Icon - Updated colors to match theme */
.service-icon {
  margin-bottom: 25px;
  position: relative;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.08),
    rgba(9, 30, 62, 0.08)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.12),
    rgba(9, 30, 62, 0.12)
  );
}

.icon-wrapper i {
  font-size: 2rem;
  color: #06a3da;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper i {
  color: #091e3e;
  transform: scale(1.05);
}

/* Remove icon-pulse effect */
.icon-pulse {
  display: none;
}

/* Service Content */
.service-title {
  font-size: 1.5rem;
  /* font-weight: 700; */
  color: #091e3e;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #06a3da;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.service-card:hover .service-title::after {
  width: 80px;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-tag {
  background: rgba(6, 163, 218, 0.08);
  color: #06a3da;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 163, 218, 0.1);
}

.service-card:hover .feature-tag {
  background: rgba(6, 163, 218, 0.12);
  transform: translateY(-2px);
  border-color: rgba(6, 163, 218, 0.2);
}

/* Click Indicator */
.click-indicator {
  position: absolute;
  bottom: 20px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  color: #06a3da;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-card:hover .click-indicator {
  opacity: 1;
  transform: translateY(0);
}

.click-indicator i {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* Hover Effect */
.service-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 16px;
  z-index: -1;
  transition: all 0.4s ease;
}

.service-card:hover .service-hover-effect {
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.03),
    rgba(9, 30, 62, 0.03)
  );
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title-animated {
    font-size: 2.3rem;
  }

  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 992px) {
  .responsive-services-section {
    padding: 60px 0;
  }

  .section-title-animated {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .click-indicator {
    bottom: 15px;
    right: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .responsive-services-section {
    padding: 50px 0;
  }

  .section-title-animated {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper i {
    font-size: 1.8rem;
  }

  .click-indicator {
    position: static;
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .section-title-animated {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .title-underline-wrapper {
    gap: 10px;
  }

  .title-line {
    width: 40px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .click-indicator {
    font-size: 0.75rem;
  }
}

/* Responsive Web Design and Development Process Section - Updated */
.development-process-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.process-section-title {
  margin-bottom: 5px;
  position: relative;
  display: block;
  text-align: center;
}

.process-title-main {
  color: #091e3e;
  display: block;
  letter-spacing: -0.5px;
}

.process-section-subtitle {
  color: #666;
  margin-bottom: 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}

/* Process Steps Grid - Show 3 boxes at a time */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px;
}

/* Process Step Card - Updated with auto height for mobile */
.process-step {
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
}

.step-front,
.step-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Enable scrolling for overflow content */
}

/* Custom scrollbar for better UX */
.step-back::-webkit-scrollbar {
  width: 4px;
}

.step-back::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.step-back::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.step-back::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.step-front {
  background: white;
  border: 1px solid rgba(6, 163, 218, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: rotateY(0deg);
}

.process-step.flipped .step-front {
  transform: rotateY(180deg);
}

.step-back {
  background: linear-gradient(135deg, #06a3da, #0a8ec7);
  color: white;
  transform: rotateY(180deg);
  justify-content: flex-start;
  /* Changed from center to flex-start */
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.15);
}

.process-step.flipped .step-back {
  transform: rotateY(0deg);
}

/* Step Front Styling */
.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-shrink: 0;
  /* Prevent header from shrinking */
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(6, 163, 218, 0.15);
  line-height: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.1),
    rgba(9, 30, 62, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06a3da;
  font-size: 1.8rem;
  border: 1px solid rgba(6, 163, 218, 0.2);
  flex-shrink: 0;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #091e3e;
  margin-bottom: 10px;
  line-height: 1.3;
  flex-shrink: 0;
}

.step-summary {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-shrink: 0;
}

.step-details {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
  overflow-y: auto;
  /* Enable scrolling if content is too long */
}

/* Step Back Styling */
.back-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
  flex-shrink: 0;
}

.back-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.95;
  flex-shrink: 0;
}

.back-key-points {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.back-key-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  opacity: 0.95;
}

.back-key-points li i {
  color: white;
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Remove progress bar and buttons */
.process-navigation,
.process-progress,
.progress-track,
.progress-fill,
.slider-nav,
.slider-container,
.process-slider-container {
  display: none;
}

/* Removed step-cta styles */
.step-cta {
  display: none;
}

/* Removed back-duration styles */
.back-duration {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
  }

  .process-step {
    height: 300px;
  }

  .step-front,
  .step-back {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .development-process-section {
    padding: 60px 0;
  }

  .process-section-title {
    font-size: 2.2rem;
  }

  .process-title-main {
    font-size: 1.8rem;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
  }

  .process-step {
    height: 320px;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .development-process-section {
    padding: 50px 0;
  }

  .process-section-title {
    font-size: 1.8rem;
  }

  .process-title-main {
    font-size: 1.5rem;
  }

  .process-section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 450px;
    margin: 30px auto 0;
  }

  .process-step {
    height: auto;
    /* Auto height for mobile */
    min-height: 260px;
    /* Minimum height */
  }

  .step-front,
  .step-back {
    position: relative;
    /* Change from absolute for auto height */
    height: auto;
    min-height: 260px;
    padding: 25px;
    transform: none;
    /* Reset transform for mobile */
    backface-visibility: visible;
  }

  .step-front {
    transform: rotateY(0deg);
  }

  .step-back {
    display: none;
    /* Hide back by default */
    transform: none;
    background: linear-gradient(135deg, #06a3da, #0a8ec7);
    margin-top: 15px;
    /* Add space between front and back */
  }

  /* Mobile flip behavior - toggle display instead of 3D transform */
  .process-step.flipped .step-front {
    display: none;
  }

  .process-step.flipped .step-back {
    display: flex;
    position: relative;
    transform: none;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .step-summary {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .step-details {
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: none;
    /* Remove max-height restriction */
    overflow-y: visible;
  }

  /* Back content styling for mobile */
  .back-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .back-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .back-key-points li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .back-key-points li i {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .development-process-section {
    padding: 40px 0;
  }

  .process-section-title {
    font-size: 1.6rem;
  }

  .process-title-main {
    font-size: 1.3rem;
  }

  .process-section-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
    line-height: 1.5;
  }

  .process-steps-grid {
    padding: 0 15px;
    gap: 20px;
  }

  .process-step {
    min-height: 240px;
  }

  .step-front,
  .step-back {
    padding: 20px;
    min-height: 240px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    border-radius: 10px;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-summary {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .step-details {
    font-size: 0.85rem;
  }

  /* Back content */
  .back-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .back-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .back-key-points li {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}

/* Small devices */
@media (max-width: 380px) {
  .step-front,
  .step-back {
    padding: 18px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .back-title {
    font-size: 1.1rem;
  }
}

/* Update JavaScript for mobile-friendly behavior */

/* CTA Section Styles - Compact Version */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #046e95 0%, #034a63 100%);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-description {
  /* font-size: 1.1rem; */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  /* font-size: 1rem;
    font-weight: 600; */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-btn-primary {
  background: white;
  color: #0d6efd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Portfolio Section */
.portfolio-section-updated {
  padding: 50px 0;
  background: #f8fafc;
  position: relative;
}

.container-updated {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header-updated h2 {
  /* font-size: 3rem;
    font-weight: 800; */
  margin-bottom: 5px;
  line-height: 1.2;
  color: #091e3e;
  text-align: center;
}

.section-header-updated p {
  /* font-size: 1.2rem; */
  color: #64748b;
  max-width: 1500px;
  margin: 0 auto 60px;
  line-height: 1.8;
  text-align: center;
}

/* Portfolio Content Wrapper - FULL LIGHT BLUE */
.portfolio-grid-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: #e6f7ff;
  border-radius: 20px;
  padding: 0;
  margin-top: 40px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image Container - LIGHT BLUE */
.portfolio-media-container {
  flex: 1;
  min-width: 0;
  background: #e6f7ff;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* INCREASED IMAGE HEIGHT */
.carousel-container {
  position: relative;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides */
.carousel-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide-item.current {
  opacity: 1;
}

/* Image */
.media-display {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-display img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Content Container - WHITE CONTAINER */
.portfolio-info-container {
  flex: 1;
  min-width: 0;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-inner-wrapper {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.project-info-block {
  opacity: 0;
  transform: translateX(20px);
  display: none;
  transition: all 0.5s ease;
}

.project-info-block.current {
  opacity: 1;
  transform: translateX(0);
  display: block;
}

/* EXACT TEXT STYLING FROM IMAGE */
.project-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #06a6e0;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
}

.project-name {
  /* font-size: 2.4rem;
    font-weight: 700; */
  color: #111827;
  margin-bottom: 25px;
  line-height: 1.1;
  /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
}

.project-summary {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 35px;
  /* font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; */
}

.project-summary br {
  display: block;
  content: "";
  margin-bottom: 0.4em;
}

/* EXACT BUTTON FROM REFERENCE IMAGE */
.portfolio-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #06a6e0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  box-shadow: 0 4px 15px rgba(6, 166, 224, 0.2);
}

.portfolio-action-btn:hover {
  background: #0593c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 166, 224, 0.3);
  gap: 15px;
}

.portfolio-action-btn i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.portfolio-action-btn:hover i {
  transform: translateX(5px);
}

/* EXTERNAL SLIDER CONTROLS - COMPLETELY CLEAN, NO BORDERS */
.carousel-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}

.nav-prev-btn,
.nav-next-btn {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  color: #6b7280;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nav-prev-btn:hover,
.nav-next-btn:hover {
  background: #f8fafc;
  color: #374151;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);
}

/* REMOVE ANY FOCUS OUTLINES */
.nav-prev-btn:focus,
.nav-next-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.1);
}

.carousel-indicators {
  display: flex;
  gap: 12px;
  align-items: center;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.current {
  background: #9ca3af;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .portfolio-section-updated {
    padding: 80px 0;
  }

  .section-header-updated h2 {
    font-size: 2.5rem;
  }

  .section-header-updated p {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .project-name {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .portfolio-grid-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .portfolio-media-container {
    padding: 40px 40px 20px 40px;
    /* Reduced bottom padding */
  }

  .portfolio-info-container {
    padding: 20px 40px 40px 40px;
    /* Reduced top padding */
  }

  .info-inner-wrapper {
    max-width: 100%;
    padding: 40px;
  }

  /* INCREASED HEIGHT FOR TABLET */
  .carousel-container {
    height: 300px;
  }

  .section-header-updated h2 {
    font-size: 2.2rem;
  }

  .project-name {
    font-size: 2rem;
  }

  .project-summary {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .portfolio-section-updated {
    padding: 70px 0;
  }

  .portfolio-grid-wrapper {
    margin-top: 25px;
    border-radius: 16px;
  }

  .portfolio-media-container {
    padding: 25px 25px 15px 25px;
    /* Further reduced bottom padding */
  }

  .portfolio-info-container {
    padding: 15px 25px 25px 25px;
    /* Further reduced top padding */
  }

  .info-inner-wrapper {
    padding: 30px;
  }

  /* INCREASED HEIGHT FOR MOBILE */
  .carousel-container {
    height: 250px;
    /* Reduced for better mobile view */
  }

  .section-header-updated h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .section-header-updated p {
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .project-name {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .project-tag {
    font-size: 0.7rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
  }

  .project-summary {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .portfolio-action-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .carousel-navigation {
    gap: 20px;
    margin-top: 20px;
  }

  .nav-prev-btn,
  .nav-next-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-section-updated {
    padding: 60px 0;
  }

  .portfolio-grid-wrapper {
    border-radius: 12px;
    margin-top: 20px;
  }

  .portfolio-media-container {
    padding: 20px 20px 10px 20px;
    /* Minimal padding */
  }

  .portfolio-info-container {
    padding: 10px 20px 20px 20px;
    /* Minimal padding */
  }

  .info-inner-wrapper {
    padding: 25px;
  }

  .carousel-container {
    height: 200px;
    /* Further reduced for small mobile */
  }

  .section-header-updated h2 {
    font-size: 1.6rem;
  }

  .section-header-updated p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .project-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .project-tag {
    font-size: 0.65rem;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
  }

  .project-summary {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .portfolio-action-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .carousel-navigation {
    gap: 15px;
    margin-top: 15px;
  }

  .nav-prev-btn,
  .nav-next-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .carousel-indicators {
    gap: 8px;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 375px) {
  .portfolio-section-updated {
    padding: 50px 0;
  }

  .portfolio-media-container {
    padding: 15px 15px 5px 15px;
    /* Even more minimal */
  }

  .portfolio-info-container {
    padding: 5px 15px 15px 15px;
    /* Even more minimal */
  }

  .info-inner-wrapper {
    padding: 20px;
  }

  .carousel-container {
    height: 180px;
  }

  .section-header-updated h2 {
    font-size: 1.4rem;
  }

  .project-name {
    font-size: 1.3rem;
  }

  .project-summary {
    font-size: 0.8rem;
  }
}

/* Expertise Section - Reduced Size */
.expertise-showcase {
  padding: 50px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.expertise-showcase .content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.main-headline {
  /* font-size: 1.8rem;
    font-weight: 700; */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  padding: 0 15px;
  color: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-card {
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.1),
    rgba(13, 110, 253, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 163, 218, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.metric-value {
  font-size: 2.2rem;
  /* font-weight: 700; */
  margin-bottom: 8px;
  color: #06a3da;
  position: relative;
  z-index: 2;
}

.metric-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  padding: 0 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .main-headline {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .metric-card {
    min-height: 120px;
    padding: 18px 15px;
  }
}

@media (max-width: 768px) {
  .expertise-showcase {
    padding: 40px 0;
  }

  .main-headline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .metric-value {
    font-size: 2rem;
  }

  .metric-card {
    padding: 15px 12px;
    min-height: 110px;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
  }

  .expertise-showcase {
    padding: 35px 0;
  }

  .main-headline {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .metric-card {
    padding: 15px 20px;
    min-height: 100px;
  }

  .metric-value {
    font-size: 1.8rem;
  }

  .metric-text {
    font-size: 0.85rem;
  }
}

/* Industry Services Section */
.industry-services {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.industry-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(6, 166, 224, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 110, 253, 0.05) 0%,
      transparent 40%
    );
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.main-heading {
  font-weight: 800;
  margin-bottom: 5px;
  color: #091e3e;
  position: relative;
  display: inline-block;
}

/* 
.main-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #06a6e0, #0d6efd);
    border-radius: 2px;
} */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service Item */
.service-item {
  background: white;
  border-radius: 14px;
  padding: 30px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  z-index: 1;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.item-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(6, 166, 224, 0.1),
    rgba(13, 110, 253, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06a6e0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
}

.item-title {
  font-weight: 700;
  color: #091e3e;
  margin: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
}

/* Flip Card Back - Description */
.service-item .item-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06a6e0, #0d6efd);
  color: white;
  transform: rotateY(180deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 14px;
  line-height: 1.3;
  text-align: center;
  backface-visibility: hidden;
  z-index: 3;
  font-size: 0.75rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.service-item .item-description::-webkit-scrollbar {
  width: 4px;
}

.service-item .item-description::-webkit-scrollbar-track {
  background: transparent;
}

.service-item .item-description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* Hover Effects */
.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(6, 166, 224, 0.15);
}

.service-item:hover .item-description {
  transform: rotateY(0deg);
  opacity: 1;
}

.service-item:hover .item-icon,
.service-item:hover .item-title {
  transform: rotateY(180deg);
  opacity: 0;
}

.service-item:hover .item-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Float Animation */
@keyframes floatItem {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.service-item {
  animation: floatItem 4s ease-in-out infinite;
}

.service-item:hover {
  animation-play-state: paused;
}

.service-item:nth-child(2) {
  animation-delay: 0.3s;
}

.service-item:nth-child(3) {
  animation-delay: 0.6s;
}

.service-item:nth-child(4) {
  animation-delay: 0.9s;
}

.service-item:nth-child(5) {
  animation-delay: 1.2s;
}

.service-item:nth-child(6) {
  animation-delay: 1.5s;
}

.service-item:nth-child(7) {
  animation-delay: 1.8s;
}

.service-item:nth-child(8) {
  animation-delay: 2.1s;
}

.service-item:nth-child(9) {
  animation-delay: 2.4s;
}

.service-item:nth-child(10) {
  animation-delay: 2.7s;
}

.service-item:nth-child(11) {
  animation-delay: 3s;
}

.service-item:nth-child(12) {
  animation-delay: 3.3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .service-item {
    padding: 25px 15px;
    height: 130px;
  }

  .item-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .service-item .item-description {
    padding: 12px 10px;
    font-size: 0.7rem;
    line-height: 1.25;
  }
}

@media (max-width: 768px) {
  .industry-services {
    padding: 50px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-item {
    padding: 22px 12px;
    height: 120px;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .service-item .item-description {
    padding: 10px 8px;
    font-size: 0.65rem;
    line-height: 1.2;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-item {
    padding: 20px 10px;
    height: 110px;
    border-radius: 12px;
  }

  .item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .service-item .item-description {
    padding: 8px 6px;
    font-size: 0.6rem;
    line-height: 1.15;
  }
}

@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
    gap: 10px;
  }

  .service-item {
    height: 100px;
  }
}

/* Why Choose Us - Modern Grid Layout */
.why-choose-modern {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-choose-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(6, 163, 218, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 110, 253, 0.03) 0%,
      transparent 40%
    );
  z-index: 1;
}

/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 20px;*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/

/* Section Header - Left Aligned */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 1200px;
}

.main-heading {
  /* font-size: 2.5rem;
    font-weight: 700; */
  margin-bottom: 5px;
  color: #091e3e;
  line-height: 1.3;
}

.main-heading .highlight {
  position: relative;
  color: #06a3da;
}

.main-heading .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(6, 163, 218, 0.1);
  z-index: -1;
}

.section-subtitle {
  /* font-size: 1.1rem; */
  color: #555;
  max-width: 1000px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

/* Features Grid - Single grid container */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 0;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(6, 163, 218, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 163, 218, 0.2);
  box-shadow:
    0 15px 30px rgba(6, 163, 218, 0.08),
    0 0 0 1px rgba(6, 163, 218, 0.1) inset;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 163, 218, 0.02) 0%,
    rgba(9, 30, 62, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Feature Header - Reduced Space */
.feature-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(6, 163, 218, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #06a3da;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid rgba(6, 163, 218, 0.15);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #06a3da, #0a8ec7);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(6, 163, 218, 0.15);
}

/* Content Alignment - Left Aligned */
.feature-title {
  font-size: 1.3rem;
  color: #091e3e;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.feature-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  flex-grow: 1;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag {
  font-size: 0.8rem;
  padding: 5px 12px;
  background: rgba(6, 163, 218, 0.08);
  color: #06a3da;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 163, 218, 0.1);
}

.feature-card:hover .tag {
  background: rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-grid {
    gap: 25px;
  }

  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  /* iPad Air and tablets */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on iPad */
    gap: 25px;
  }

  .main-heading {
    font-size: 2.2rem;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile */
  .why-choose-modern {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    gap: 20px;
  }

  .main-heading {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-header {
    margin-bottom: 15px;
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  /* Small mobile */
  .why-choose-modern {
    padding: 50px 0;
  }

  .main-heading {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-header {
    gap: 12px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
  padding: 40px 20px 60px;
  background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
  position: relative;
  margin-bottom: 0;
  /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
  margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.faq-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #68a4c4, #06a3da);
  border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
  color: #091e3e;
  /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
  color: #06a3da;
  /* Blue color */
}

.faq-subtitle {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 20px auto 0;
  padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
  margin-bottom: 14px;
  /* SPACE BETWEEN BOXES */
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
  box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
  border: 1px solid #d1ecff;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background: linear-gradient(
    90deg,
    rgba(6, 163, 218, 0.03),
    rgba(104, 164, 196, 0.03)
  );
  box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  min-height: 70px;
  /* Taller question area */
  transition: all 0.3s ease;
  padding: 0 30px;
}

/* Question Content */
.question-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* FAQ Title */
.faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #091e3e;
  /* Changed to blue for questions */
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0;
  /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
  display: none;
  /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
  color: #0480b8;
  /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
  color: #06a3da;
  /* Keep blue when active */
  font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
  color: #091e3e;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 163, 218, 0.08);
  border: 1px solid rgba(6, 163, 218, 0.1);
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
  background: rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.15);
  transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 30px;
  position: relative;
  line-height: 1.6;
  background: rgba(6, 163, 218, 0.02);
  border-top: 1px solid transparent;
}

.faq-answer::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #68a4c4, #06a3da);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 25px 30px;
  border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
  opacity: 1;
}

.faq-answer p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 10px;
}

.faq-question:hover {
  transform: translateX(3px);
}

.faq-item.active .faq-question {
  transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-main-title {
    font-size: 2rem;
    padding-bottom: 12px;
  }

  .faq-main-title::after {
    width: 80px;
    height: 2.5px;
  }

  .faq-subtitle {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq-question {
    min-height: 65px;
    padding: 0 20px;
  }

  .faq-title {
    font-size: 1rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer::before {
    left: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px 20px;
    max-height: 500px;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .faq-main-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-main-title {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }

  .faq-main-title::after {
    width: 60px;
    height: 2px;
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq-question {
    min-height: 60px;
    padding: 0 15px;
  }

  .faq-title {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-answer::before {
    left: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 15px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* For larger screens */
@media (min-width: 1200px) {
  .faq-container {
    max-width: 900px;
  }
}

@media (min-width: 1400px) {
  .faq-container {
    max-width: 1000px;
  }

  .faq-item {
    margin-bottom: 18px;
  }
}

/* Cards Section Below - UPDATED CLASS NAMES ONLY */
.tracking-cards {
  padding: 50px 0px;
  background: #f2f2f2;
  position: relative;
  z-index: 10;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.tracking-cards__header {
  text-align: left;
  margin-bottom: 50px;
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.tracking-cards__title {
  color: #091e3e;
  margin-bottom: 5x;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.tracking-cards__subtitle {
  color: #555;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
}

/* Card Styles - SMALLER SIZE */
.tracking-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.1);
  border: 1px solid rgba(6, 163, 218, 0.08);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.tracking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(6, 163, 218, 0.15);
  border-color: rgba(6, 163, 218, 0.2);
}

.tracking-card__icon {
  font-size: 2.5rem;
  color: #06a3da;
  margin-bottom: 20px;
  background: rgba(6, 163, 218, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.tracking-card:hover .tracking-card__icon {
  transform: rotate(360deg);
  background: rgba(6, 163, 218, 0.18);
  color: #06a3da;
}

.tracking-card__title {
  color: #091e3e;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.tracking-card__description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-grow: 1;
  overflow: hidden;
}

/* Card Stats */
.tracking-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(6, 163, 218, 0.08);
}

.tracking-card__stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
}

.tracking-card__stat-value {
  color: #06a3da;
  font-weight: 800;
  font-size: 1.4rem;
}

/* Live Data Card Modifier */
.tracking-card--live {
  background: linear-gradient(135deg, #06a3da, #0a8ec7);
  color: white;
  border: none;
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.25);
}

.tracking-card--live .tracking-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.tracking-card--live:hover .tracking-card__icon {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.tracking-card--live .tracking-card__title {
  color: white;
}

.tracking-card--live .tracking-card__description {
  color: rgba(255, 255, 255, 0.95);
}

.tracking-card--live .tracking-card__stats {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.tracking-card--live .tracking-card__stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.tracking-card__stat-value--live {
  color: white;
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
  .tracking-cards {
    padding: 90px 0 60px;
  }

  .tracking-cards__title {
    font-size: 2.5rem;
  }

  .tracking-cards__subtitle {
    font-size: 1.2rem;
  }

  .tracking-card,
  .tracking-card--live {
    min-height: 330px;
    padding: 28px 22px;
  }

  .tracking-card__title,
  .tracking-card--live .tracking-card__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .tracking-cards {
    padding: 80px 0 60px;
  }

  .tracking-cards__title {
    font-size: 2.2rem;
  }

  .tracking-cards__subtitle {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .tracking-card,
  .tracking-card--live {
    min-height: 320px;
    padding: 25px 20px;
  }

  .tracking-card__title,
  .tracking-card--live .tracking-card__title {
    font-size: 1.4rem;
  }

  .tracking-card__description,
  .tracking-card--live .tracking-card__description {
    font-size: 0.9rem;
  }

  .tracking-card__icon,
  .tracking-card--live .tracking-card__icon {
    width: 65px;
    height: 65px;
    font-size: 2.3rem;
  }

  .tracking-card__stat-value {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .tracking-cards {
    padding: 70px 0 50px;
  }

  .tracking-cards__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .tracking-cards__subtitle {
    font-size: 1.1rem;
    max-width: 600px;
  }

  .tracking-card,
  .tracking-card--live {
    min-height: 300px;
    padding: 25px 20px;
    margin-bottom: 25px;
  }

  .tracking-card__title,
  .tracking-card--live .tracking-card__title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .tracking-card__description,
  .tracking-card--live .tracking-card__description {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .tracking-card__icon,
  .tracking-card--live .tracking-card__icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .tracking-card__stat-value {
    font-size: 1.2rem;
  }

  .tracking-card__stat-label {
    font-size: 0.85rem;
  }

  .tracking-card__stat-value--live {
    padding: 5px 14px;
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .tracking-cards {
    padding: 60px 0 40px;
  }

  .tracking-cards__title {
    font-size: 1.8rem;
  }

  .tracking-cards__subtitle {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 15px;
  }

  .tracking-cards__header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .tracking-cards__title {
    font-size: 1.6rem;
  }

  .tracking-cards__subtitle {
    font-size: 0.95rem;
  }

  .tracking-card,
  .tracking-card--live {
    min-height: 280px;
    padding: 22px 18px;
  }

  .tracking-card__title,
  .tracking-card--live .tracking-card__title {
    font-size: 1.2rem;
  }

  .tracking-card__description,
  .tracking-card--live .tracking-card__description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .tracking-card__icon,
  .tracking-card--live .tracking-card__icon {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .tracking-card__stats {
    padding-top: 15px;
  }

  .tracking-card__stat-value {
    font-size: 1.1rem;
  }

  .tracking-card__stat-label {
    font-size: 0.8rem;
  }

  .tracking-card__stat-value--live {
    padding: 4px 12px;
    font-size: 0.7rem;
    margin-bottom: 15px;
  }
}

/* Remove gap from previous section */
.section-above-class-name {
  padding-bottom: 5px !important;
  margin-bottom: 0 !important;
}
