/*================================================================== common css */
/* Lato display font */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

:root {
  --bs-primary-rgb: 13, 110, 253;
  --primary-color: #00707c;
  --dark-color: #212529;
  --light-gray: #6c757d;
  --white: #ffffff;
  --black: #000000;
  --success: #198754;
  --bg-color: #00072d;
  --light-bg-color: rgb(248 249 250);
  --header-bg-color: rgba(255, 255, 255, 0.8);
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.hero-section {
  background: var(--bg-color);
  background-size: cover;
  display: flex;
  align-items: center;
  height: 80vh;
}

.why-choose {
  background: var(--bg-color);
}

a.quote {
  display: inline-block;
  padding: 10px 25px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: #007bff;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

a.quote:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.btn-custom-outline {
  background-color: rgba(108, 117, 125, 0.5);
  border-color: var(--light-gray);
  color: var(--white);
  transition: all 0.3s ease;
}

.btn-custom-outline:hover {
  background-color: var(--light-gray);
  color: var(--white);
}

.Navshadow {
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
  font-weight: 700;
}

.services-card {
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
  box-shadow: none;
}

#mainNavbar .navbar-toggler {
  border-color: var(--black);
}

#mainNavbar .navbar-toggler i {
  color: var(--black);
}
.navbar{
 padding:0px !important
}
.text-primary {
  color: var(--primary-color) !important;
}

.text-success {
  color: var(--success) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/*============================================= contact page css */
.contact_sec {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
}

.form-control {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #4f46e5 !important;
}

.form-floating>label {
  color: #6c757d;
}

button {
  transition: background-color 0.3s ease;
}

.navbar-brand img {
  width: 90px;
}

p.lead {
  font-weight: 500;
}

h1.intro_title {
  font-weight: 700;
  width: 75%;
}

.nav-link {
  font-size: 17px;
  color: #000000;
  font-weight: 700;
}

.fa-2x {
  font-size: 2em;
  padding: 13px;
  background: #f0f9e68a;
  border-radius: 10px;
}

.icon-background {
  background-color: #e6f8f5;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-background i {
  font-size: 1.6rem;
  color: #1abc9c;
}

#services,
.testimonials-section {
  background: var(--light-bg-color);
}

.Rates_table {
  width: 1170px;
  max-width: 98%;
}

.Rates_table {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}


 .logo-carousel-container {
      overflow: hidden;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo-track {
      display: flex;
      gap: 2rem;
      padding: 1rem 0;
      animation: scroll-horizontal 20s linear infinite;
      will-change: transform;
      width: max-content;
    }

    .logo-item {
      flex: 0 0 180px;
      text-align: center;
      padding: 1.5rem;
      background: rgba(0, 0, 0, 0.02);
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .logo-item img {
      border-radius: 10px;
      height: 60px;
      max-width: 120px;
      width: 100%;
      object-fit: contain;
    }

    .logo-item:hover {
      transform: translateY(-5px);
      background: rgba(0, 0, 0, 0.05);
    }

    .logo-caption {
      font-size: 0.9rem;
      color: #666;
      font-weight: 500;
      margin-top: 0.75rem;
    }

    @keyframes scroll-horizontal {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .logo-carousel-container:hover .logo-track {
      animation-play-state: paused;
    }

    @media (max-width: 768px) {
      .logo-carousel-container {
        display: none !important;
      }

      .static-industry-list {
        display: block !important;
        padding: 1.5rem;
        background: #f9f9f9;
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        font-size: 1rem;
        color: #333;
      }

      .static-industry-list span {
        display: inline-block;
        margin: 0.5rem 1rem;
      }
    }
    .static-industry-list {
      display: none;
    }










@media (max-width: 768px) {
  h1.intro_title {
    width: 100%;
  }

  .navbar-brand img {
    width: 70px;
  }

  .hero-section {
    height: 70vh;
  }

  .Rates_table {
    max-width: 100%;
  }
}