* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fbfbfb;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff; 
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff; 
}

.button {
  font-size: 16px;
  font-weight: 600;
  background-color: #000; 
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/images/Hexagon\ 7.svg") center/cover no-repeat;

  padding: 25px 30px;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 25px;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
}

/* hamburger and stack menu in mobile */
@media (max-width: 768px) {
 .hamburger {
    display: flex;
    position: static; 
    margin-left: auto; 
    align-items: center;
  }

  .nav-links-wrapper {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px; 
    right: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .nav-links-wrapper.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 999;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sign-in-btn {
    margin-top: 20px;
  }

  .navbar {
    padding: 15px 20px;
  }
}

@media (min-width: 769px) {
  .nav-links-wrapper {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    position: static;
    background: none;
    padding: 0;
  }
}

.nav-links-wrapper {
  display: none;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: red;
}

.sign-in-btn {
  padding: 10px 25px;
  background-color: white;
  color: black;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sign-in-btn:hover {
  background-color: #007bff;
  color: white;
}

.solution-dropdown {
  position: relative;
  z-index: 1000; 
}

#solutionDropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%; 
  transform: translateX(-50%);
  background: white;
  width: 600px;
  max-width: 90vw;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border: 1px solid #e5e5e5; 
}

#solutionDropdown.active {
  display: block;
  position: static;
  transform: none;
  background: white;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.solution-dropdown:hover #solutionDropdown {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-item {
  cursor: pointer;
  pointer-events: auto;
  display: block;
  text-decoration: none;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  transition: background 0.3s ease;
  color: inherit;
}

.feature-item:hover {
  background: #ecf5ff;
}

.feature-item h4,
.feature-item p {
  color: inherit;
}

.feature-item img {
  width: 32px;
  height: 32px;
}

.feature-item h4 {
  font-size: 14px;
  color: #3f3f3f;
  margin: 8px 0 4px;
}

.feature-item p {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  fill: #0160c6; 
}

.hero, .banner, .main-content {
  position: relative;
  z-index: 1;
}

/* Mobile layout */
@media (max-width: 768px) {
  #solutionDropdown {
    display: none; 
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 0;      
    box-shadow: none;        
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
  }

  #solutionDropdown.active {
    display: block;
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none; 
  }
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop hover behavior */
@media (min-width: 769px) {
  .solution-dropdown:hover #solutionDropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 780px;
    max-width: 90vw;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
}

.metrics-section {  
  background-color: #ffffff;
  color: #202020;
  padding: 100px 20px;
  margin-top: 40px;
  border-bottom: 1px solid #e3e7eb;
}

.metrics-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.metrics-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.metrics-buttons a {
  text-decoration: none;
  padding: 12px 50px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-blue {
  background-color: #01398d;
  color: white;
}

.btn-blue:hover {
  background-color: #0a4fbe;
}

.btn-yellow {
  background-color: #e4c902;
  color: #202020;
}

.btn-yellow:hover {
  background-color: #cdb200;
}

/* Mobile responsive for buttons */
@media (max-width: 992px) {
  .metrics-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.metrics-image-wrapper {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  overflow: visible;
}

.metrics-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.metrics-image {
  flex: 1 1 50%;
  height: auto;
  margin-right: 0;      
  overflow: hidden;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.metrics-cards {
  margin-left: 30px;
  margin-top: 8px;
  padding-left: 0;
}

.metrics-cards li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.metrics-features.animate .metrics-cards li {
  opacity: 1;
  transform: translateY(0);
}

.metrics-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.metrics-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.metrics-content {
  flex: 1 1 500px;
  padding: 40px 0px;
}

.metrics-content h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  margin-bottom: 20px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.metrics-description {
  font-size: clamp(1rem, 0.9vw + 0.8rem, 1.1rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #686868;
  text-align: justify;
}

.metrics-features h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.metrics-features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list, .sub-feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-list > li,
.sub-feature-list > li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.metrics-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Circle with tick inside */
.tick-icon {
  width: 25px;
  height: 25px;
  background-color: #0d47a1; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.5s ease;
}

.sub-feature-list {
  margin-left: 30px;
}

.tick-icon::before {
  content: "✓";
}

.metrics-features.animate .tick-icon {
  opacity: 1;
  transform: scale(1);
}

.metrics-features.animate .feature-list > li,
.metrics-features.animate .sub-feature-list > li {
  opacity: 1;
  transform: translateY(0);
}

.tick-icon::before {
  content: "✓";
}

.metrics-features.animate .feature-list > li:nth-child(1) { transition-delay: 0.2s; }
.metrics-features.animate .feature-list > li:nth-child(2) { transition-delay: 0.4s; }
.metrics-features.animate .feature-list > li:nth-child(3) { transition-delay: 0.6s; }
.metrics-features.animate .feature-list > li:nth-child(4) { transition-delay: 0.8s; }

.metrics-features.animate .sub-feature-list li:nth-child(1) { transition-delay: 0.3s; }
.metrics-features.animate .sub-feature-list li:nth-child(2) { transition-delay: 0.35s; }
.metrics-features.animate .sub-feature-list li:nth-child(3) { transition-delay: 0.4s; }
.metrics-features.animate .sub-feature-list li:nth-child(4) { transition-delay: 0.45s; }
.metrics-features.animate .sub-feature-list li:nth-child(5) { transition-delay: 0.5s; }
.metrics-features.animate .sub-feature-list li:nth-child(6) { transition-delay: 0.55s; }
.metrics-features.animate .sub-feature-list li:nth-child(7) { transition-delay: 0.6s; }

.metrics-features.animate li {
  opacity: 1;
  transform: translateY(0);
}

.metrics-section {  
  background-color: #ffffff;
  color: #202020;
  padding: 80px 20px;
  margin-top: 40px;
  border-bottom: 1px solid #e3e7eb;
}

.metrics-flex-container {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

.metrics-content {
  flex: 1 1 500px;
}

.metrics-content h2 {
  font-size: clamp(1rem, 2vw + 1rem, 2rem);
  margin-bottom: 20px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.metrics-subtitle {
  font-weight: 400;
  color: #494949;
  font-size: 28px;
}

@media (max-width: 576px) {
  .metrics-content h2 {
    font-size: 1rem; /* smaller size for mobile */
    font-weight: 400;
    line-height: 1.4;
  }
  .metrics-content h2 strong {
    font-weight: 700; /* keep 'Dashboard' bold */
    color: #000;
  }
  .metrics-subtitle {
    font-size: 0.95rem;
    color: #494949;
    font-weight: 400;
  }
}

.metrics-description {
  font-size: clamp(1rem, 0.9vw + 0.8rem, 1.1rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #686868;
  text-align: justify;
}

.metrics-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metrics-buttons a {
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-blue {
  background-color: #01398d;
  color: white;
}
.btn-blue:hover {
  background-color: #0a4fbe;
}

.btn-yellow {
  background-color: #e4c902;
  color: #202020;
}
.btn-yellow:hover {
  background-color: #cdb200;
}

.metrics-image-wrapper {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.metrics-image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Tablet */
@media (max-width: 992px) {
  .metrics-flex-container {
    flex-direction: column;
    text-align: center;
  }
  .metrics-content {
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .metrics-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .metrics-buttons a {
    width: 100%;
    text-align: center;
  }
  .metrics-description {
    font-size: 0.95rem;
  }
  .metrics-content h2 {
    font-size: 1.4rem;
  }
}

/* Mobile responsive fix */
@media (max-width: 992px) {
  .metrics-flex-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .metrics-image {
    justify-content: center;
    margin-top: 30px;
  }

  .metrics-image img {
    width: 100%;
    transform: none;
  }

  .metrics-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .check-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .metrics-description {
    font-size: 0.95rem;
  }

  .metrics-content h2 {
    font-size: 1.4rem;
  }

  .metrics-features h3 {
    font-size: 1.1rem;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

html {
  scroll-behavior: smooth;
}

.metrics-image {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.metrics-image.animate {
  animation: fadeInRight 1s ease forwards;
}

.metrics-image-wrapper.animate img {
  opacity: 1;
  transform: translateX(0);
}

.dashboard-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1400px;
  margin: 60px auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0px 0;
  background-color: #fbfbfb;
}

.image-side {
  flex: 1.7;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 0 40px 10px;
}

.dashboard-title {
  width: 100%;
  text-align: center;
  font-size: 50px;
  color: #000000;
  margin-bottom: 40px; 
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  padding-top: 0;
}

.dashboard-title.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.dashboard-section .feature.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.image-side img {
  width: 100%;              
  max-width: 100%;         
  height: auto;
  object-fit: contain;
  transform: translateX(40px); 
  z-index: 2;
  position: relative;
  border-radius: 20px;
  pointer-events: none;
  background-clip: padding-box;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-and-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-right: -40px;
  max-width: 650px;
  position: relative;
  top: auto;
  transform: none;
  z-index: 3;
  min-height: 650px;
  margin: o auto;
}

.image-and-description img {
  width: 90%; /* smaller than full width */
  margin: 20px auto 0 1px; /* shifted left by reducing right margin */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: white;
  padding: 8px;
  object-fit: contain;
}

.image-description {
  padding: 40px 30px;
  text-align: left;
}

.image-description h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #0045b5;
}

.image-description p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.image-description ul {
  padding-left: 20px;
  margin: 0;
}

.image-description ul li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #555;
}

.content-side {
  flex: 1.3;
  background: linear-gradient(135deg, #0045b5, #719fd7);
  color: white;
  padding: 70px 80px;
  padding-left: 80px;
  border-radius: 20px;
  gap: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: visible;
}

.content-side h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 24px 28px;
  border-radius: 16px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.feature i {
  font-size: 24px;
  margin-right: 20px;
  color: white;
}

.feature p {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .dashboard-section {
    flex-direction: column;
  }

  .image-side,
  .content-side {
    width: 100%;
    border-radius: 0;
  }

  .image-side img {
    width: 60%;
  }

  .content-side {
    border-radius: 0 0 30px 30px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-title {
  opacity: 0;
  transform: translateY(30px);
}

.dashboard-title.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.dashboard-section .feature {
  opacity: 0;
  transform: translateY(30px);
}

.dashboard-section .feature.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.dashboard-section .feature.animate:nth-child(1) { animation-delay: 0.2s; }
.dashboard-section .feature.animate:nth-child(2) { animation-delay: 0.4s; }
.dashboard-section .feature.animate:nth-child(3) { animation-delay: 0.6s; }
.dashboard-section .feature.animate:nth-child(4) { animation-delay: 0.8s; }

/* Mobile & Tablet Improvements */
@media (max-width: 1024px) {
  .dashboard-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .image-side {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .image-side img {
    max-width: 80%;
    transform: none;
  }

  .content-side {
    border-radius: 10px;
    padding: 25px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboard-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .image-side img {
    max-width: 90%;
    border-radius: 5px;
  }

  .content-side {
    padding: 20px;
    border-radius: 10px;
  }

  .feature {
    flex-direction: column;   /* Stack icon above text */
    align-items: center;      /* Center icon horizontally */
    text-align: center;       /* Center text */
  }

  .feature i {
    margin: 0 0 10px 0;       /* Space below icon */
    font-size: 26px;          /* Slightly larger icon */
  }

  .feature p {
    text-align: center;       /* Center text under icon */
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .dashboard-title {
    font-size: 1.4rem;
  }

  .image-side img {
    max-width: 100%;
  }

  .content-side {
    padding: 15px;
  }

  .feature {
    padding: 12px;
  }

  .feature p {
    font-size: 0.9rem;
  }
}

.alerts-section .content-side {
  background: linear-gradient(135deg, #0045b5, #719fd7);
}

.sub-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 5px;
  margin-bottom: 5px;
  justify-items: auto; 
  margin-left: 40px; 
}

.sub-features .feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 24px 28px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.sub-features .feature:hover {
  transform: translateY(-5px);
}

.sub-features .feature i {
  font-size: 22px;
  margin-right: 18px;
  color: white;
}

.sub-features .feature p {
  margin: 0;
  color: white;
  font-size: 17px;
}

.feature.mini {
  display: flex;
  padding: 10px 20px 15px 25px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 550px;
  gap: 5px;
  align-items: center;
}

.feature.mini p {
  margin: 0;
  color: white;
  font-size: 15px;
}

.feature.mini i {
  display: inline-block;
  font-size: 18px;
  margin-right: 12px;
  color: white;
}

.sub-feature-list {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0 30px 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.12); 
  border-radius: 12px;
  padding: 15px 20px;
}

.sub-feature-list li {
  font-size: 17px;
  color: white; 
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.sub-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700; 
  font-size: 20px;
  line-height: 1;
}

/* ======= Responsive Fixes ======= */
@media (max-width: 992px) {
  .dashboard-section {
    flex-direction: column;
    padding: 20px;
  }

  .image-side {
    justify-content: center;
    padding: 0;
  }

  .image-side img {
    max-width: 80%;
    transform: none;
  }

  .content-side {
    padding: 30px;
    border-radius: 12px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboard-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .image-side img {
    max-width: 100%;
    border-radius: 8px;
    margin-left: -10px;
  }

  .content-side {
    padding: 20px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
  }

  .sub-features {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .dashboard-title {
    font-size: 1.4rem;
  }

  .content-side {
    padding: 15px;
  }

  .feature {
    padding: 12px;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .sub-features .feature {
    padding: 12px;
    text-align: center;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .feature.mini {
    padding: 4px 6px;      
    font-size: 12px;
    border-radius: 10px;
    max-width: 140px;      
    margin: 4px;           
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;          
  }

  .feature.mini i {
    font-size: 14px;      
    margin-right: 6px;
  }

  .feature.mini p {
    font-size: 12px;
    line-height: 1.2;
  }

  /* Make 2 per row */
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .feature.mini {
    max-width: 300px;        
    padding: 4px 8px;
  }

  .feature.mini i {
    font-size: 12px;
    margin-right: 6px;
  }

  .feature.mini p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .image-and-description {
    margin: 0 auto;
    max-width: 95%;
    min-height: auto;
    padding: 10px;
  }

  .image-and-description img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;      
    display: block;      
  }
}

@media (max-width: 768px) {
  .image-side {
    justify-content: center;  /* center horizontally */
    padding: 0;               /* remove side padding */
  }

  .image-side img {
    width: 100%;              /* fill container width */
    max-width: 100%;
    height: auto;             /* keep proportions */
    object-fit: contain;      /* prevent cropping */
    transform: none !important; /* remove desktop shift */
  }
}

.mobility-section {
  background-color: #ffffff;
  padding: 100px 0;
  border-bottom: 1px solid #e3e7eb;
  border-top: 1px solid #e3e7eb;
}

.mobility-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.mobility-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
}

.mobility-content {
  flex: 1;
}

.mobility-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000;
}

.mobility-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.mobility-feature i {
  font-size: 20px;
  color: #005fa3;
  flex-shrink: 0;
  margin-top: 5px;
}

.mobility-feature h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #353535;
}

.mobility-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

@media (max-width: 900px) {
  .mobility-section {
    padding: 50px 0; 
  }

  .mobility-container {
    flex-direction: column;
    text-align: center;
    gap: 30px; 
  }

  .mobility-image {
    display: flex;
    justify-content: center; 
    width: 100%;
  }

  .mobility-image img {
    max-width: 90%; 
    height: auto;
  }

  .mobility-feature {
    justify-content: center;
    text-align: left;
    max-width: 95%; 
    margin: 0 auto;
  }
}

.payroll-section {
  background-color: #fbfbfb;
  padding: 80px 0;
}

.payroll-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 80px;
  padding: 0 15px;
}

.payroll-content {
  flex: 1;
  max-width: 540px;
}

.payroll-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.payroll-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 35px;
  text-align: justify;
}

.payroll-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.payroll-feature i {
  font-size: 22px;
  color: #005fa3;
  flex-shrink: 0;
  margin-top: 4px;
}

.payroll-feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.payroll-feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.payroll-image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 20px;
}

.payroll-image img {
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .payroll-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .payroll-content {
    max-width: 100%;
  }

  .payroll-feature {
    justify-content: center;
    text-align: left;
  }

  /* Center payroll image on mobile */
  .payroll-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .payroll-image img {
    max-width: 90%;
    height: auto;
  }
}

.consultation-prompt-section {
  background-color: #edf3fb;
  padding: 40px 30px;
}

.consultation-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; 
}

.consultation-text {
  flex: 1;
  max-width: 600px;
}

.consultation-subtitle {
  color: #0060e6;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.consultation-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4f4f4f;
  margin-bottom: 40px;
}

.consultation-btn {
  background-color: #ef2b2d;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.consultation-btn:hover {
  background-color: #d62023;
}

.consultation-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.consultation-image img {
  max-width: 100%;
  height: auto;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .consultation-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .consultation-btn {
    padding: 12px 25px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .consultation-container {
    flex-direction: column;
    text-align: center;
  }

  .consultation-text {
    max-width: 100%;
  }

  .consultation-text h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .consultation-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .consultation-image {
    margin-top: 20px;
  }

  .consultation-image img {
    max-width: 80%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .consultation-text h2 {
    font-size: 22px;
  }

  .consultation-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .consultation-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }
}


.site-footer {
    background-color: #0c213b;
    color: rgb(209, 224, 251);
    padding: 50px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1.5;
    min-width: 220px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-middle {
    flex: 1.5;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-left: 100px;
}

.footer-middle h4,
.footer-right h4 {
    color: #e9f9ff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle li,
.footer-right li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-middle li a,
.footer-right li a,
.footer-links-bottom a {
    color: #d6e5ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-middle li a:hover,
.footer-right li a:hover,
.footer-links-bottom a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-right {
    flex: 1;
    min-width: 200px;
    margin-left: 120px;
}

.company-details li {
    line-height: 1.8;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    text-align: center;
}

.footer-links-bottom a {
    margin-left: 20px;
    font-size: 13px;
}

.footer-copy {
    color: #d6e5ff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    margin-left: -10px;
}

.footer-copy:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-links-bottom a:first-child {
    margin-left: 0;
}

/* Responsive Footer Improvements */
@media (max-width: 1024px) {
  .footer-middle {
    margin-left: 0;
    gap: 40px;
  }
  .footer-right {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    margin-left: 0;
  }

  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-links-bottom a {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 130px;
  }

  .description {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-middle h4,
  .footer-right h4 {
    font-size: 16px;
  }

  .footer-middle li,
  .footer-right li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}