@import url("./Fonts/WEB/css/pilcrow-rounded.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PilcrowRounded-Regular", sans-serif;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background: #111827;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.contain {
  object-fit: contain !important;
  object-position: center !important;
}

.imgset {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /* background-color: #000; */
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  color: #fff;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 50px;
  height: 50px; */
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .nav-menu li a {
  font-size: 1.1rem;
  color: white;
}
.header .button {
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid var(--primary-color, #8b5cf6);
  font-size: 1rem;
  background: transparent;
  color: var(--text-primary, #ffffff);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.header .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.header .button:hover::before {
  left: 0;
}

.header .button:hover {
  color: white;
  border-color: var(--primary-color, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}
.header .bars {
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(9, 17, 48, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.mobile-nav.active {
  left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-header .logo h2 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 30px;
}

.mobile-nav-links a {
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 300px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.mobile-nav-bottom {
  padding: 30px;
  display: flex;
  color: black;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-bottom .button {
  padding: 15px 40px;
  border-radius: 25px;
  border: 2px solid #ffffff;
  font-size: 1.1rem;
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-bottom .button:hover {
  background-color: #fbbf24;
  border-color: #fbbf24;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

main {
  background: #f8fafc;
  width: 100%;
  position: relative;
}

main section {
  width: 100%;
  position: relative;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  color: #fff;
  padding: 160px 0 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Overview Section */
.overview-section {
  width: 100%;
  padding: 80px 0;
  background: #111827;
  color: white;
}

.overview-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0fr;
  gap: 60px;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 70px;
  font-weight: 700;
}

.overview-text p {
  font-size: 1.1rem;
  color: #b1b1b1;
  line-height: 1.8;
  margin-bottom: 20px;
}

.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #e8f9ff 0%, #f0f9ff 100%);
  border-radius: 15px;
  border: 2px solid #e0f2fe;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #b1b1b1;
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1rem;
  color: #b1b1b1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #111827;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.service-card {
  background: #111827;
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: white;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #fff;
  /* margin-bottom: 15px; */
  font-weight: 600;
}

.service-card p {
  color: #b1b1b1;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Sectors Section */
.sectors-section {
  padding: 80px 0;
  background: #111827;
  color: white;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.sector-card {
  background: #111827;
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sector-card:hover::before {
  transform: scaleX(1);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.sector-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

.sector-card h3 {
  font-size: 1.3rem;
  color: #fff;
  /* margin-bottom: 15px; */
  font-weight: 600;
}

.sector-card p {
    color: #b1b1b1;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background: #111827;
  color: white;
}

.projects-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.projects-text p {
  font-size: 1rem;
  color: #b1b1b1;
  line-height: 1.8;
  margin-bottom: 20px;
}

.projects-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #111827;
  color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-item i {
  color: #10b981;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 500;
  color: #fff;
}

/* Excellence Section */
.excellence-section {
  padding: 80px 0;
  background: #111827;
  color: white;
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.excellence-card {
  background: #111827;
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.excellence-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(29, 78, 216, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.excellence-card:hover::after {
  opacity: 1;
}

.excellence-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.excellence-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.excellence-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.excellence-card p {
  color: #b1b1b1;
  line-height: 1.6;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ===== Our Clients Section Styles ===== */
.clients-section {
  width: 100%;
  padding: 60px 0 100px 0;
  margin-top: 0px;
  display: flex;
  background: #111827;
  color: white;
  flex-direction: column;
  align-items: center;
}
.clients-heading {
  text-align: center;
  margin-bottom: 30px;
}
.clients-heading h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}
.clients-heading p {
    color: #b1b1b1;
  font-size: 1.1rem;
  margin: 20px 0;
}
.clients-row-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
  overflow-y: hidden;
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollClients 8s linear infinite;
  will-change: transform;
}
.clients-row:hover {
  animation-play-state: paused;
}
.client-logo {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: white;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(33, 150, 243, 0.08);
  border: 1.5px solid #e8f9ff;
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 50%;
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border-radius: 50%;
}
.client-logo:hover {
  transform: scale(1.07);
}
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =================== Footer Styles Start =================== */
.footer {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(9, 17, 48, 1) 0%,
    rgba(60, 65, 90, 1) 69%,
    rgba(80, 84, 107, 1) 88%
  );
  background-color: rgb(9, 17, 48);
  color: #fff;
  padding: 50px 0 0 0;
  font-family: "Bai Jamjuree", sans-serif;
  margin-top: 0px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 40px;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 350px;
  min-width: 350px;
  margin-bottom: 30px;
}
.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  background: #111827;
  color: white;
}
.footer-description {
  font-size: 1rem;
  color: #b1b1b1;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 30px;
}
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-links ul {
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  color: #b1b1b1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: #b1b1b1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 250px;
  min-width: 250px;
  margin-bottom: 30px;
}
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-contact ul {
  padding: 0;
  margin-bottom: 15px;
}
.footer-contact ul li {
  font-size: 1rem;
  color: #b1b1b1;
  margin-bottom: 8px;
}
.footer-contact ul li span {
  color: #fff;
  font-weight: 600;
  margin-right: 6px;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #2196f3;
  color: #fff;
}
.social-icon {
  font-family: "FontAwesome", "Arial", sans-serif;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  /* font-size set on parent */
}
.footer-bottom {
  background: #191919;
  text-align: center;
  padding: 18px 0;
  margin-top: 30px;
  font-size: 1rem;
  color: #aaa;
  letter-spacing: 0.5px;
}

/* Floating Action Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #fff; */
  background-color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-button:hover {
  transform: scale(1.1);
  /* color: #fff; */
}

.whatsapp-button {
  background-color: #25d366;
  bottom: 20px;
  color: white;
  right: 20px;
}

.call-button {
  /* background-color: #007bff; */
  bottom: 20px;
  left: 20px;
}

.ph {
  z-index: 2000;
  color: black;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header {
    padding: 16px 32px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 1150px) {
  .header .nav-menu li a {
    font-size: 0.9rem;
  }

  .header .button {
    padding: 10px 40px;
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .overview-text h2 {
    font-size: 2.2rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 950px) {
  .header .nav-menu {
    gap: 16px;
  }
  .header .nav-menu li a {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .overview-text h2 {
    font-size: 1.8rem;
  }

  .services-grid,
  .sectors-grid,
  .excellence-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px 20px;
  }

  .header .logo h2 {
    font-size: 1.2rem;
  }

  .header .button {
    padding: 10px 30px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .header .nav-menu {
    display: none;
  }

  .header .bars {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .overview-text h2 {
    font-size: 1.6rem;
  }

  .services-grid,
  .sectors-grid,
  .excellence-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .overview-stats {
    flex-direction: row;
    gap: 20px;
  }

  .stat-item {
    flex: 1;
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .clients-heading h2 {
    font-size: 1.4rem;
  }

  .clients-heading p {
    font-size: 0.9rem;
    padding: 0px 20px;
  }

  .client-logo {
    width: 90px;
    height: 90px;
  }

  .clients-row {
    gap: 40px;
  }

  .footer-container {
    padding: 0 20px;
    gap: 24px;
  }
}

@media (max-width: 570px) {
  .header .logo h2 {
    font-size: 1rem;
  }

  .header .button {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .header .logo h2 {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .clients-heading p {
    font-size: 0.9rem;
    margin: 12px 0;
    padding: 0px 30px;
  }

  .overview-text h2 {
    font-size: 1.5rem;
  }

  .overview-stats {
    flex-direction: column;
  }

  .service-card,
  .sector-card,
  .excellence-card {
    padding: 25px 20px;
  }

  .floating-button {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .footer-container {
    max-width: 900px;
    gap: 40px;
  }

  .footer-logo h2 {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
    width: fit-content;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .overview-text h2 {
    font-size: 1.3rem;
  }

  .service-card,
  .sector-card,
  .excellence-card {
    padding: 15px 10px;
  }

  .clients-section {
    margin-top: 30px;
  }

  .clients-heading p {
    font-size: 0.8rem;
    margin: 30px 0;
    padding: 0px 30px;
  }

  .footer-about {
    flex: 1 1 0px;
    min-width: 150px;
    overflow-x: hidden;
  }

  .footer-description {
    font-size: 0.8rem;
    overflow: hidden;
    display: block;
    width: 100%;
    /* max-width: 300px; */
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .header .nav-menu {
    gap: 10px;
  }
  .header .nav-menu li a {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .overview-text h2 {
    font-size: 1.2rem;
  }

  .floating-button {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}
/* =================== Footer Styles End =================== */
