* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: linear-gradient(
    180deg,
    #ffffff 0%,
    #daf0ff 50%,
    #baedff 100%
  );
  color: #000000;
  min-height: 100vh;
}

.g-5 {
  --bs-gutter-x: 1.5rem !important;
}

.bg-info,
.bg-primary {
  background-color: #0083a1 !important;
  color: #fff !important;
}

.text-info,
.text-primary {
  color: #0099bc !important;
}

.btn-info,
.btn-primary {
  background-color: #00b0d8 !important;
  color: #fff !important;
  border: 2px solid #000000;
}

.btn-info:hover,
.btn-primary:hover {
  background-color: #00718b !important;
  color: #fff !important;
  border: 2px solid #00b0d8;
}

@keyframes nav-borderRotate {
  0% {
    border-color: #ff9900;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  }
  25% {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }
  50% {
    border-color: #006537;
    box-shadow: 0 0 10px rgba(0, 107, 86, 0.5);
  }
  75% {
    border-color: #0059ff;
    box-shadow: 0 0 10px rgba(7, 106, 255, 0.5);
  }
  100% {
    border-color: #ff0090;
    box-shadow: 0 0 10px rgba(255, 0, 166, 0.5);
  }
}

@keyframes nav-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.nav-fraud-alert-box {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border: 2px solid #ff0000;
  border-radius: 6px;
  background-color: #fff;
  animation:
    nav-borderRotate 2s infinite,
    nav-pulse 2s infinite;
  font-weight: 600;
  color: #dc3545;
  font-size: 0.75rem;
}

.nav-fraud-alert-box i {
  animation: nav-pulse 1s infinite;
}

.nav-topbar-list {
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.nav-topbar-list .nav-link {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.nav-topbar-list .nav-link:hover {
  color: #ffc107 !important;
}

.nav-main-navbar {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
}

.nav-brand:hover {
  color: #212529;
}

.nav-brand-primary {
  color: #0099bc;
  font-weight: 700;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.02);
}

.nav-logo-img-mobile {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .nav-logo-img {
    height: 40px;
    max-width: 150px;
  }
}

@media (min-width: 992px) {
  .nav-logo-img {
    height: 70px;
    max-width: 220px;
  }
}

.nav-main-navbar .nav-link {
  color: #212529;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.nav-main-navbar .nav-link:hover {
  color: #0099bc;
}

.nav-main-navbar .nav-link.active {
  color: #0099bc;
}

.nav-main-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background-color: #0099bc;
  border-radius: 2px;
}

.nav-quote-btn {
  background-color: #0099bc;
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #0099bc;
}

.nav-quote-btn:hover {
  background-color: #f5d800;
  border-color: #0baed7;
  color: black !important;
}

.nav-offcanvas-menu {
  max-width: 300px;
}

.nav-offcanvas-header {
  background-color: #0099bc;
  color: #fff;
}

.nav-offcanvas-header .btn-close {
  filter: brightness(0) invert(1);
}

.nav-offcanvas-header .nav-brand-primary {
  color: #fff;
}

.nav-offcanvas-body {
  background-color: #f8f9fa;
}

.nav-mobile-nav-list {
  gap: 0.25rem;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1rem !important;
  border-radius: 8px;
  color: #212529 !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-mobile-link:hover {
  background-color: #e9ecef;
  color: #0099bc !important;
}

.nav-mobile-link.active {
  background-color: #0099bc !important;
  color: #fff !important;
}

.nav-mobile-link.active::after {
  display: none;
}

.nav-mobile-link i {
  font-size: 1.1rem;
  width: 24px;
}

.nav-mobile-contact-list a {
  display: flex;
  align-items: center;
  color: #212529;
}

.nav-mobile-contact-list a:hover {
  color: #0099bc;
}

.nav-mobile-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.nav-icon-primary {
  background-color: #0099bc;
}

.nav-mobile-contact-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-main-navbar .navbar-toggler {
  padding: 0.5rem;
  border-radius: 8px;
}

.nav-main-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 188, 0.25);
}

.nav-dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  animation: navDropdownFadeIn 0.3s ease;
}

.nav-dropdown-menu-services {
  min-width: 280px;
}

@keyframes navDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-dropdown-menu .dropdown-item {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #212529;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu .dropdown-item i {
  color: #0099bc;
  font-size: 1rem;
  width: 20px;
}

.nav-dropdown-menu .dropdown-item:hover {
  background-color: #f0fafc;
  color: #0099bc;
  padding-left: 1.5rem;
}

.nav-dropdown-menu .dropdown-item:active {
  background-color: #0099bc;
  color: #fff;
}

.nav-dropdown-menu .dropdown-item:active i {
  color: #fff;
}

.nav-main-navbar .dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  transition: transform 0.3s ease;
}

.nav-main-navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-main-navbar .nav-item.dropdown:hover > .nav-link {
  color: #0099bc;
}

.nav-mobile-dropdown {
  position: relative;
}

.nav-mobile-dropdown-toggle {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}

.nav-mobile-dropdown-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.nav-mobile-dropdown-toggle[aria-expanded="true"] .nav-mobile-dropdown-icon {
  transform: rotate(180deg);
}

.nav-mobile-dropdown-toggle[aria-expanded="true"] {
  background-color: rgba(0, 153, 188, 0.1);
  color: #0099bc !important;
}

.nav-mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.nav-mobile-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: #495057;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav-mobile-dropdown-item:last-child {
  border-bottom: none;
}

.nav-mobile-dropdown-item i {
  color: #0099bc;
  font-size: 0.9rem;
  width: 20px;
}

.nav-mobile-dropdown-item:hover {
  background-color: #f0fafc;
  color: #0099bc;
  padding-left: 2.75rem;
}

.nav-mobile-dropdown-item:active {
  background-color: #0099bc;
  color: #fff;
}

.nav-mobile-dropdown-item:active i {
  color: #fff;
}

.nav-mobile-dropdown-menu.collapsing {
  transition: height 0.3s ease;
}

@media (min-width: 992px) {
  .nav-dropdown-hover {
    position: relative;
  }

  .nav-dropdown-hover > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    margin-top: 0;
    border-top: 3px solid #0099bc;
  }

  .nav-dropdown-hover:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown-hover > .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown-hover:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .nav-dropdown-hover > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    height: 13px;
    background: transparent;
  }

  .nav-dropdown-hover > .dropdown-toggle[data-bs-toggle="dropdown"] {
    pointer-events: auto;
  }

  .nav-dropdown-menu .dropdown-item {
    position: relative;
    overflow: hidden;
  }

  .nav-dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #0099bc;
    transform: scaleY(0);
    transition: transform 0.2s ease;
  }

  .nav-dropdown-menu .dropdown-item:hover::before {
    transform: scaleY(1);
  }
}

/*Hero Slider Section*/
.hero-section {
  height: calc(100vh - 115.6px);
  background: linear-gradient(135deg, #e6f7fb 0%, #f0f9ff 50%, #fffbeb 100%);
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

/* Hero Badge */
.hero-badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* Hero Title */
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-title-highlight {
  color: #0dcaf0;
}

/* Hero Description */
.hero-description {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Hero Features */
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #212529;
}

.hero-feature-item i {
  font-size: 1.25rem;
}

/* Hero Buttons */
.hero-btn-primary {
  background-color: #0dcaf0;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid #0dcaf0;
}

.hero-btn-primary:hover {
  background-color: #0aa8c9;
  border-color: #0aa8c9;
  color: #000;
}

.hero-btn-secondary {
  background-color: #fff;
  color: #0dcaf0;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid #0dcaf0;
}

.hero-btn-secondary:hover {
  background-color: #0dcaf0;
  color: #000;
}

/* Hero Form Card */
.hero-form-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hero-form-header {
  background-color: #0dcaf0;
  color: #000;
  padding: 1rem;
  font-weight: 600;
}

.hero-form-body {
  padding: 1.5rem;
  background-color: #fff;
}

.hero-form-footer {
  background-color: #f8f9fa;
  color: #6c757d;
  padding: 0.75rem;
  border-top: 1px solid #eee;
}

/* Hero Form Inputs */
.hero-input-icon {
  background-color: #0dcaf0;
  color: #000;
  border: 1px solid #0dcaf0;
}

.hero-input {
  border: 1px solid #dee2e6;
  padding: 0.65rem 1rem;
}

.hero-input:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 0 0.2rem rgba(13, 202, 240, 0.25);
}

/* Hero Submit Button */
.hero-submit-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #ffc107;
  border-radius: 50px;
}

.hero-submit-btn:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    height: auto;
    min-height: calc(100vh - 152.4px);
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 1.5rem 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .hero-feature-item {
    font-size: 0.9rem;
  }

  .hero-form-body {
    padding: 1rem;
  }
}

/*Services Section*/
.serv-services {
  background-color: #f8f9fa;
}

.serv-badge {
  background: linear-gradient(135deg, #0dcaf0, #0aa8c9);
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  width: fit-content;
  border-radius: 4px;
}

.serv-subtitle {
  color: #333;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.serv-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.serv-card:hover {
  transform: translateY(-8px);
}

.serv-card-image {
  height: 180px;
  overflow: hidden;
}

.serv-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.serv-card:hover .serv-card-image img {
  transform: scale(1.1);
}

.serv-card-content {
  background: #fff;
}

.serv-icon {
  background: #0dcaf0;
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  margin-top: -42px;
  box-shadow: 0 2px 10px rgba(13, 202, 240, 0.4);
}

.serv-title {
  font-size: 1.1rem;
  margin-top: 0.6rem;
  color: #000000;
}

.serv-text {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
}

.serv-view-btn {
  color: #0dcaf0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.serv-view-btn:hover {
  color: #0aa8c9;
  text-decoration: underline;
}

.serv-accent-bar {
  height: 4px;
  background: #0dcaf0;
  width: 40px;
}

/* Strength Section */
.stren-section {
  background-color: #f8f9fa;
}

.stren-badge {
  background: linear-gradient(135deg, #0dcaf0, #0aa8c9);
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.7rem;
  width: fit-content;
  border-radius: 4px;
}

.stren-subtitle {
  color: #333;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
}

.stren-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-left: 3px solid #0dcaf0;
}

.stren-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(13, 202, 240, 0.15);
}

.stren-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #0dcaf0, #0aa8c9);
  color: white;
  font-size: 1rem;
}

.stren-title {
  font-size: 0.95rem;
  color: #212529;
}

.stren-text {
  font-size: 0.8rem;
  color: #6c757d;
  line-height: 1.5;
}

.stren-image-wrapper {
  height: 100%;
  min-height: 280px;
  max-height: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stren-image-wrapper img {
  object-fit: cover;
}

@media (min-width: 992px) {
  .stren-image-wrapper {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .stren-image-wrapper {
    max-height: 250px;
  }
}

/*Process Section*/

/* Process Section Styles */
.process-section {
  background: linear-gradient(145deg, #00a6c7 0%, #008eaa 50%, #00677c 100%);
  position: relative;
  overflow: hidden;
}

.process-card {
  flex: 1 1 200px;
  max-width: 240px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: #0dcaf0;
}

.process-number {
  top: 8px;
  right: 12px;
  font-size: 2rem;
  color: #0dcaf0;
  -webkit-text-stroke: 2px #002a41;
  line-height: 1;
}

.process-icon-box {
  width: 50px;
  height: 50px;
  border: 4px solid #191919;
  transition: transform 0.3s ease;
}

.process-icon-box i {
  font-size: 1.25rem;
}

.process-card:hover .process-icon-box {
  transform: scale(1.1);
}

.process-arrow-wrap {
  flex-shrink: 0;
}

.process-arrow {
  opacity: 0.6;
}

.process-card-text {
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .process-card {
    max-width: 100%;
    flex: 1 1 45%;
  }
}

@media (max-width: 575px) {
  .process-card {
    flex: 1 1 100%;
  }

  .process-icon-box {
    width: 45px;
    height: 45px;
  }
}

/*Testimonial Section*/
.testi-section {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.testi-bg-pattern {
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(2, 132, 199, 0.05) 0%,
      transparent 30%
    );
  z-index: 1;
}

.testi-accent-left {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), transparent);
  border-radius: 50%;
  top: 10%;
  left: -150px;
  filter: blur(50px);
}

.testi-accent-right {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), transparent);
  border-radius: 50%;
  bottom: 10%;
  right: -100px;
  filter: blur(50px);
}

.testi-badge {
  background: linear-gradient(135deg, #0ea5e9, #0dcaf0);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.testi-highlight {
  background: linear-gradient(90deg, #0dcaf0, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
  border-radius: 2px;
}

.testi-card {
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.4s ease;
}

.testi-card:hover {
  background: linear-gradient(145deg, #1e293b, #334155) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.testi-quote {
  top: 15px;
  right: 20px;
  color: rgba(14, 165, 233, 0.15);
  line-height: 1;
  transition: color 0.4s ease;
}

.testi-card:hover .testi-quote {
  color: rgba(14, 165, 233, 0.3);
}

.testi-stars {
  color: #0dcaf0;
  font-size: 0.9rem;
}

.testi-stars i {
  margin-right: 2px;
}

.testi-review {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  transition: color 0.4s ease;
}

.testi-card:hover .testi-review {
  color: rgba(255, 255, 255, 0.8);
}

.testi-name {
  color: #1e293b;
  transition: color 0.4s ease;
}

.testi-card:hover .testi-name {
  color: #fff;
}

.testi-location {
  color: #64748b;
  transition: color 0.4s ease;
}

.testi-card:hover .testi-location {
  color: rgba(255, 255, 255, 0.6);
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border: 3px solid #0dcaf0;
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}

.testi-btn {
  background: linear-gradient(135deg, #0dcaf0, #0284c7);
  border: none;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.testi-btn:hover {
  background: linear-gradient(135deg, #0dcaf0, #0369a1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.testi-btn i {
  transition: transform 0.3s ease;
}

.testi-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 575.98px) {
  .testi-avatar {
    width: 45px;
    height: 45px;
  }

  .testi-review {
    font-size: 0.9rem;
  }
}

/*footer section*/
.footer-main {
  background-color: #212529;
  color: #adb5bd;
}

/* Footer Content */
.footer-content {
  padding: 3rem 0;
}

/* Footer Headings */
.footer-heading {
  color: #0dcaf0;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ffc107;
  display: inline-block;
}

.footer-subheading {
  color: #ffc107;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Footer Quick Links */
.footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-links li {
  margin-bottom: 0.6rem;
}

.footer-quick-links li a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-quick-links li a:hover {
  color: #0dcaf0;
  padding-left: 5px;
}

.footer-quick-links li a i {
  color: #ffc107;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

/* Footer Service List */
.footer-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-service-list li {
  margin-bottom: 0.6rem;
}

.footer-service-list li a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-service-list li a:hover {
  color: #0dcaf0;
  padding-left: 5px;
}

.footer-service-list li a i {
  color: #0dcaf0;
  font-size: 0.75rem;
  margin-right: 0.25rem;
}

/* Footer About */
.footer-about p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-readmore-btn {
  background-color: transparent;
  color: #ffc107;
  border: 1px solid #ffc107;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  border-radius: 50px;
}

.footer-readmore-btn:hover {
  background-color: #ffc107;
  color: #000;
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 0.5rem;
}

.footer-contact-list li a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-contact-list li a:hover {
  color: #0dcaf0;
}

.footer-contact-list li a i {
  color: #0dcaf0;
  margin-right: 0.5rem;
  width: 18px;
}

/* Footer Branches */
.footer-branches {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.footer-branches::-webkit-scrollbar {
  width: 5px;
}

.footer-branches::-webkit-scrollbar-track {
  background: #343a40;
  border-radius: 5px;
}

.footer-branches::-webkit-scrollbar-thumb {
  background: #0dcaf0;
  border-radius: 5px;
}

.footer-branch-card {
  background-color: #2c3136;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid #0dcaf0;
}

.footer-branch-head {
  border-left-color: #ffc107;
}

.footer-branch-address {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-branch-address i {
  color: #0dcaf0;
  margin-right: 0.5rem;
}

.footer-branch-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-branch-phone:hover {
  color: #ffc107;
}

.footer-branch-phone i {
  color: #ffc107;
  margin-right: 0.35rem;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #1a1d20;
  padding: 1.25rem 0;
  border-top: 1px solid #343a40;
}

.footer-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #adb5bd;
}

.footer-copyright strong {
  color: #0dcaf0;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: #343a40;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  background-color: #0dcaf0;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .footer-content {
    padding: 2rem 0;
  }

  .footer-branches {
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 767.98px) {
  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-social {
    margin-top: 1rem;
  }

  .footer-copyright {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .footer-content {
    padding: 1.5rem 0;
  }

  .footer-branch-card {
    padding: 0.85rem;
  }

  .footer-branch-address {
    font-size: 0.8rem;
  }

  .footer-quick-links li,
  .footer-service-list li {
    margin-bottom: 0.5rem;
  }
}

/*BreadCrumb Section*/

/*Breadcrumb Styles*/
.bread-section {
  background: linear-gradient(135deg, #0dcaf0 0%, #49e1ff 100%);
  height: 350px;
}

.bread-pattern {
  overflow: hidden;
}

.bread-circle {
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.bread-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #009cbc, #00758c);
  top: -100px;
  left: -50px;
  box-shadow: 0 0 60px rgba(0, 30, 96, 0.4);
}

.bread-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, #0095ff, #2696ff);
  top: 50%;
  right: 10%;
  animation-delay: -5s;
  box-shadow: 0 0 50px rgba(0, 8, 27, 0.4);
}

.bread-circle-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 50% 50%, #00a8fd, #004479);
  bottom: -30px;
  left: 20%;
  animation-delay: -10s;
  box-shadow: 0 0 40px rgba(0, 47, 255, 0.4);
}

.bread-circle-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 60% 60%, #005cb1, #00253f);
  top: -150px;
  right: -100px;
  animation-delay: -15s;
  opacity: 0.25;
  box-shadow: 0 0 80px rgba(0, 25, 46, 0.3);
}

.bread-circle-5 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, #bafdff, #effdff);
  bottom: 20%;
  right: 25%;
  animation-delay: -7s;
  box-shadow: 0 0 45px rgba(89, 89, 89, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 30px) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
  }
}

.bread-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 77, 171, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.bread-title {
  font-size: 3rem;
  color: #0f0f0f;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bread-nav {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bread-item {
  color: rgba(0, 0, 0, 0.95);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.bread-item:hover {
  color: white;
  transform: translateY(-2px);
}

.bread-separator {
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
}

.bread-active {
  color: rgb(12, 0, 105);
  font-weight: 600;
}

@media (max-width: 768px) {
  .bread-section {
    height: 300px;
  }
  .bread-title {
    font-size: 2rem;
  }
  .bread-nav {
    padding: 10px 20px;
    font-size: 13px;
  }
  .bread-circle-1 {
    width: 200px;
    height: 200px;
  }
  .bread-circle-2 {
    width: 150px;
    height: 150px;
  }
  .bread-circle-3 {
    width: 100px;
    height: 100px;
  }
  .bread-circle-4 {
    width: 250px;
    height: 250px;
  }
  .bread-circle-5 {
    width: 120px;
    height: 120px;
  }
}

/*Clients Section */
.client-badge {
  background: linear-gradient(135deg, #0dcaf0, #0284c7);
}

.client-highlight {
  background: linear-gradient(135deg, #0dcaf0, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.client-subtitle {
  max-width: 600px;
}

.client-slider-wrapper {
  margin: 0 -15px;
}

.client-slider {
  padding: 15px 0;
}

.client-fade {
  width: 100px;
  top: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.client-fade-left {
  background: linear-gradient(90deg, #f8f9fa, transparent);
}

.client-fade-right {
  background: linear-gradient(-90deg, #f8f9fa, transparent);
}

.client-track {
  width: max-content;
  animation: client-scroll 30s linear infinite;
}

.client-item {
  min-width: 140px;
  height: 90px;
  padding: 15px 25px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.client-item:hover {
  transform: translateY(-5px);
  border-color: #0dcaf0 !important;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  z-index: 5;
}

.client-logo {
  max-height: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.client-slider-wrapper:hover .client-track {
  animation-play-state: paused;
}

@keyframes client-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-fade {
    width: 50px;
  }
  .client-item {
    min-width: 130px;
    height: 70px;
    padding: 10px 15px;
  }
  .client-logo {
    max-width: 80px;
    max-height: 35px;
  }
}

/*Clients Page*/
.clients-card {
  height: 180px !important;
}

.clients-card div img {
  width: 160px;
  height: auto;
}

/*city-form*/

.city_form {
  margin-top: -60px;
}
.city-form-card {
  background: rgba(255, 255, 255, 0.97);
}

.city-input-icon {
  background-color: #dcf2ff;
  border-right: none;
}

.city-form-input {
  border-left: none;
}

.city-form-input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

/*Service Pages*/
.services-hero-image {
  max-height: 450px;
  object-fit: cover;
  width: 100%;
}

.services-icon-box {
  width: 60px;
  height: 60px;
}

.services-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 202, 240, 0.2);
}

.services-badge {
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.services-location-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.services-location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/*Gallery Page*/
.gallery-card {
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-color: #000;
}

.gallery-card-img {
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(13, 202, 240, 0.3) !important;
  border-color: #0dcaf0 !important;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.1);
  opacity: 0.8;
}

.gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  background-color: #fff;
}

.gallery-close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  z-index: 1056;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-close-btn:hover {
  background-color: #0dcaf0;
  color: #fff;
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .gallery-close-btn {
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

.state-main-title {
    font-size: 2.5rem;
    color: #212529;
}

.state-divider {
    width: 60px;
    height: 3px;
    background: #0DCAF0;
}

.state-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.state-link:hover .state-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.2) !important;
}

.state-img-wrap {
    height: 180px;
}

.state-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.state-link:hover .state-img {
    transform: scale(1.05);
}

.state-content {
    border-top: 2px solid #0DCAF0;
}

.state-title {
    color: #212529;
    font-size: 1rem;
    font-weight: 600;
}


@media (max-width: 768px) {
    .state-main-title {
        font-size: 1.75rem;
    }
    
    .state-img-wrap {
        height: 150px;
    }
    
    .state-title {
        font-size: 0.9rem;
    }
}