/* *************************************************** *
 * Author:           SE-2
 * Created Date:     2025-06-22
 * Last Modified:    2025-06-22
 * Version:          1.1
 * Project:          Delta Business Website
 * Company:          Progmize Software Systems
 * Contact:          tech@progmize.com
 * ***************************************************  */

:root {
  --black: #000;
  --black-deep: #010101;
  --black-rich: #020202;
  --charcoal-black: #1a1919;
  --navy-blue: #0e233c;
  --deep-navy: #071f33;
  --bright-blue: #0990ff;
  --medium-blue: #165e99;
  --deep-blue: #004b80;
  --dark-steel-blue: #184476;
  --dark-royal-blue: #003366;
  --steel-gray: #7a92a5;
  --white: #ffffff;
  --soft-white: #f7f7f7;
  --off-white: #fffdfd;
  --pale-gray: #f0f0f0;
  --light-grayish-white: #f8f9fa;
  --light-grayish: #f1f1f1;
  --light-silver: #e2e2e2;
  --light-gray: #dddddd;
  --gray: #ccc;
  --silver-gray: #bbb8b8;
  --medium-gray: #888888;
  --grayish-dark: #747474;
  --charcoal-gray: #4d4747;
  --golden-yellow: #f8c20e;
  --white-opacity-80: rgba(255, 255, 255, 0.8);
  --light-gray-opacity-80: rgba(236, 235, 235, 0.8);
  --soft-gray: rgb(170, 168, 168);
  --semi-black: rgba(0, 0, 0, 0.5);
  --black-opacity-high: rgba(0, 0, 0, 0.82);
  --black-opacity-low: rgba(17, 17, 17, 0.13);
  --font-family: "Nexa", sans-serif;
  --deep-navy-gradient: linear-gradient(180deg, #1d4e86 0%, #0e233c 100%);
  --blue-gradient: linear-gradient(90deg, #165e99 0%, #071f33 100%);
  --blue-gradient-deep: linear-gradient(
    264deg,
    rgba(24, 68, 118, 0.94) -23.55%,
    rgba(14, 25, 37, 0.94) 89.38%
  );
  --gray-gradient-neutral: linear-gradient(90deg, #e4e4e4 0%, #b7b7b7 100%);
  --gray-gradient-mild: linear-gradient(90deg, #f6f6f6, #a9a9a9);
  --gray-gradient-soft: linear-gradient(
    90deg,
    rgba(246, 246, 246, 0.94) 19.04%,
    rgba(169, 169, 169, 0.94) 105.05%
  );
  --gray-gradient-light: linear-gradient(
    180deg,
    #dfdfdf 0.03%,
    #797979 185.33%
  );
  --gray-gradient-medium: linear-gradient(180deg, #f4f4f4 0%, #a9a9a9 98.56%);
  --gray-gradient-dark: linear-gradient(180deg, #d4d4d4 0%, #a3a3a3 100%);
  --popup-gradient: linear-gradient(88deg, #f6f6f6 -44.14%, #a9a9a9 208.24%);
  --box-shadow-soft: 0 10px 10px rgba(0, 0, 0, 0.2);
  --box-shadow-subtle: 2px 2px 5px rgba(0, 0, 0, 0.2);
  --box-shadow-inset-small: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
  --box-shadow-inset-medium: 5px 5px 4px 0px rgba(0, 0, 0, 0.25) inset;
  --box-shadow-inset-large: 8px 8px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

@font-face {
  font-family: "Nexa";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Nexa-Light.otf") format("opentype");
}

@font-face {
  font-family: "Nexa";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Nexa-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Nexa";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Nexa-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Nexa";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Nexa-Bold.otf") format("opentype");
}

@font-face {
  font-family: "Nexa";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Nexa-Bold.otf") format("opentype");
}

/* Smooth Section Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Advanced Animation Classes */
.animate-section {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: blur(2px);
}

.animate-section.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.animate-fade.animate {
  opacity: 1;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-100px) rotate(-5deg);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-slide-left.animate {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(100px) rotate(5deg);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-slide-right.animate {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

/* Zoom Animations */
.animate-zoom {
  opacity: 0;
  transform: scale(0.3) rotate(180deg);
  transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-zoom.animate {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Flip Animations */
.animate-flip {
  opacity: 0;
  transform: perspective(1000px) rotateY(90deg);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-flip.animate {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}

/* Bounce Animation */
.animate-bounce {
  opacity: 0;
  transform: translateY(-200px) scale(0.5);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Parallax Effect */
.parallax-element {
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(170, 254, 5, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(170, 254, 5, 0.8), 0 0 60px rgba(170, 254, 5, 0.4);
    transform: scale(1.02);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-pulse {
  /* Removing the pulse animation */
  animation: none;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background: linear-gradient(-45deg, #104f83, #aafe05, #77b203, #104f83);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

/* Typewriter Effect */
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinkCursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #aafe05;
  }
}

.animate-typewriter {
  overflow: hidden;
  border-right: 3px solid #aafe05;
  white-space: nowrap;
  animation: typewriter 4s steps(40, end), blinkCursor 0.75s step-end infinite;
}

/* Morphing Animation */
@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }
  34% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }
}

.animate-morph {
  animation: morph 8s ease-in-out infinite;
}

/* Stagger Children Animation */
.stagger-container .stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-container.animate .stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-container.animate .stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-container.animate .stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-container.animate .stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-container.animate .stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-container.animate .stagger-item:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-container.animate .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Staggered Animation Delays */
.animate-delay-1 {
  transition-delay: 0.05s;
}
.animate-delay-2 {
  transition-delay: 0.1s;
}
.animate-delay-3 {
  transition-delay: 0.15s;
}
.animate-delay-4 {
  transition-delay: 0.2s;
}
.animate-delay-5 {
  transition-delay: 0.25s;
}
.animate-delay-6 {
  transition-delay: 0.6s;
}
.animate-delay-7 {
  transition-delay: 0.7s;
}
.animate-delay-8 {
  transition-delay: 0.8s;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Skeleton Loader Styles */
.skeleton-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.skeleton-loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: skeleton-shimmer 1.5s infinite;
}

/* Skeleton for service card images */
.skeleton-service-card {
  width: 100%;
  height: 200px;
  border-radius: 0 0 8px 8px;
}

/* Skeleton for brand logos */
.skeleton-brand-logo {
  width: 120px;
  height: 60px;
  border-radius: 4px;
  margin: 0 auto;
}

/* Skeleton for specialized service image */
.skeleton-specialized-img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Skeleton for key features image */
.skeleton-key-feature {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}

/* Skeleton for map image */
.skeleton-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Skeleton for separator images */
.skeleton-separator {
  width: 100%;
  height: 20px;
  border-radius: 4px;
}

/* Skeleton for download app icons */
.skeleton-app-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

/* Hide skeleton when image is loaded */
.image-loaded .skeleton-loader {
  display: none;
}

/* Show image only when loaded */
.image-container img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-loaded img {
  opacity: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sequenceDot {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* HTML Styles */
html {
  overflow-y: scroll;
}

body {
  font-family: "Nexa", sans-serif !important;
  background-color: #ffffff !important;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.modal {
  background: rgba(217, 217, 217, 0.452) !important;
  backdrop-filter: blur(20px) !important;
}

.error {
  display: block;
}

/* Header Styles */
header {
  min-width: 100%;
  max-width: 100%;
  position: fixed;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    #104f83 2.83%,
    #104f83 52.44%,
    #1f1c1c 109.88%
  );
  box-shadow: 0 4px 7.9px 0 rgba(0, 0, 0, 0.25) inset;
}

.top-bar {
  border-bottom: 2px solid #aafe05;
  max-width: fit-content;
}

.top-bar a {
  color: #fff;
  font-size: clamp(12px, 2vw, 15px);
  font-style: normal;
  font-weight: 400;
  font-family: "Nexa", sans-serif;
  line-height: 26px;
  transition: color 0.5s ease-in-out;
}

/* Top-Bar Link Styling */
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease;
}

/* Hover Zoom Effect */
.top-bar a:hover {
  transform: scale(1.1);
}

.language-toggler {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid #8ae234;
  background: white;
  font-family: "Nexa", sans-serif;
  cursor: pointer;
  width: fit-content;
}

.language-toggler button {
  border: none;
  outline: none;
  padding: 4px 13px;
  font-size: 14px;
  transition: all 0.6s ease-in-out;
  border-radius: 20px;
}

.language-toggler .active {
  background: linear-gradient(#8ae234, #4e9a06);
  color: black;
  font-weight: bold;
}

.language-toggler button:not(.active) {
  background: white;
  color: black;
}

.navbar-toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  aspect-ratio: 1/1;
  background: #104f83;
  border: 0.8px solid #aafe05;
  box-shadow: 0 4px 7.9px 0 rgba(0, 0, 0, 0.25) inset;
  outline: none !important;
  border-radius: 50%;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  outline: transparent !important;
  border: 0.8px solid #aafe05 !important;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25) !important;
}

.navbar-toggler .icon {
  font-size: 25px;
  color: #75f94c;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.459);
}

.responsive-btn-container .btn-custom {
  font-size: 18px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.responsive-btn-container .btn-custom:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: rgb(16, 225, 16);
  color: #fff;
}

.all-menu {
  font-size: clamp(12px, 2vw, 16px);
}

.navbar-brand img {
  width: 100%;
  max-width: 200px;
  min-width: 0 !important;
  transition: all 0.6s ease-in-out;
}

.navbar-brand img:hover {
  transform: scale(1.05);
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}

.navbar-nav {
  display: flex;
  justify-content: space-between;
}

.nav-item {
  position: relative;
  margin: 0 10px;
  padding: 10px 0;
  display: inline-block;
}

.nav-item::after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: #aafe05;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1);
  height: 4px;
  box-shadow: 0 0 5px #aafe05;
}

.nav-link {
  font-family: "Nexa", sans-serif;
  font-size: clamp(12px, 2vw, 18px) !important;
  color: var(--white) !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--gray) !important;
}

.navbar-nav .nav-link.active {
  font-weight: 700;
  border-bottom: 3px solid #aafe05;
}

.btn-custom {
  background: linear-gradient(180deg, #aafe05 0%, #669803 100%);
  color: var(--black-deep) !important;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 0px solid #184476;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.btn-custom:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.btn-group .btn-secondary {
  width: 130px;
  border-radius: 10px;
  border: 1px solid var(--black-deep);
  background: var(--gray-gradient-dark);
  color: var(--black-rich);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.form-control::placeholder {
  color: var(--medium-gray);
}

.btn-primary {
  background-color: var(--white);
  color: var(--dark-royal-blue);
  border: none;
}

.btn-primary:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* HOME PAGE STYLES */
/* Hero Section Styles */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../img/hero/bg-img.jpg");
  background-size: 101% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 40px 0;
  padding-bottom: 0;
  border: none !important;
  border-top: 2px solid var(--black) !important;
  margin-top: 133px;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.shipping-text {
  padding: 0;
  padding-left: 40px;
  padding-right: 0;
  color: white;
  width: 565px;
  height: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shipping-text .circle {
  position: absolute;
  top: 0px;
  left: 0;
  width: 340px;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #fff;
  opacity: 0.84;
  background: linear-gradient(180deg, #165e99 0%, #071f33 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.shipping-text h2 {
  text-align: start;
  font-weight: bold;
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  white-space: nowrap;
}

.shipping-text p {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 180%;
  text-transform: capitalize;
  white-space: nowrap;
  z-index: 2;
  text-align: start;
  margin-left: 5px;
}

.shipping-text .btn-contact-us {
  width: max-content;
  z-index: 2;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #7cba02 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: var(--black);
  border: none !important;
  font-size: clamp(13px, 2vw, 18px);
  font-style: normal;
  font-weight: bold !important;
  line-height: 23.937px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.shipping-text .btn-contact-us:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.shipping-text-box .btn-light {
  font-size: clamp(12px, 2vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 5px;
  background: #fff;
  color: #184476;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  opacity: 0.8;
  padding: 7px 15px;
  z-index: 2;
}

.shipping-text-box .btn-light:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.btn-contact-form-container {
  top: 0;
  right: -100px;
  position: relative;
}

.open-button {
  position: fixed;
  top: 150px;
  right: -5px;
  width: 130px;
  height: 70px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: flex;
  justify-content: left;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s ease;
  will-change: transform;
  border: 0px solid #fff;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  10% {
    transform: rotate(-5deg);
  }

  20% {
    transform: rotate(5deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  40% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-3deg);
  }

  60% {
    transform: rotate(3deg);
  }

  70% {
    transform: rotate(-3deg);
  }

  80% {
    transform: rotate(3deg);
  }

  90% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(1deg);
  }
}

.open-button:hover img {
  animation: ring 0.9s ease-in-out infinite;
  will-change: transform;
}

.open-button img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
  margin-right: 40%;
}

/* Shipping Banner Styles */
.shipping-banner-row {
  margin-top: 2.3rem !important;
}

.shipping-banner {
  background: linear-gradient(90deg, #165e99 0%, #1f1c1c 141.95%);
  box-shadow: 0px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
  color: white;
  text-align: start;
  padding: 20px 0;
  padding-bottom: 0px !important;
  font-weight: bold;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  margin-bottom: -10px;
}

.shipping-banner-text {
  display: flex;
  justify-content: center;
  margin: auto;
}

.shipping-banner-text span {
  color: #aafe05;
}

.shipping-banner p {
  font-weight: 700;
  text-align: justify;
  font-size: 24px;
}

/* Specialized Services */
.specialized-services h2 {
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa" sans-serif;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.specialized-services p {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

mark {
  background: #aafe05;
}

.specialized-img {
  max-width: 600px;
  position: relative;
  z-index: -1000;
}

.specialized-services .card-body {
  position: relative;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.specialized-services .btn-read-more {
  font-family: "Nexa", sans-serif;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23.937px;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #77b203 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding-top: 10px;
  padding-bottom: 4px;
  transition: all 0.3s ease-in-out;
}
/* Mobile screen media query */
@media (max-width: 576px) {
  .specialized-services .btn-read-more {
    position: relative;
    margin-top: -10px;
  }
}
/* Hover Effect  */
.specialized-services .btn-read-more:hover {
  transform: translateX(-50%) scale(1.1);
  cursor: pointer;
}

/* Key Features Section Styles */
.key-feature h2 {
  color: #104f83;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(55px, 5vw, 110px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.key-feature img {
  width: 100%;
  max-width: 550px;
  margin: 0;
  display: flex;
}

/* Fixed Contact Form Styles */
.contact-form-container {
  position: fixed;
  top: 88px;
  right: -100%;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 45%;
  height: 440px;
  font-weight: 400;
  background: linear-gradient(
    303deg,
    rgba(255, 255, 255, 0.44) 68.82%,
    rgba(22, 94, 153, 0.44) 109.48%
  );
  border: 1px solid #fff;
  backdrop-filter: blur(20px);
  padding: 20px 0;
  padding-left: 100px;
  box-sizing: border-box;
  transition: right 0.3s ease-in-out;
  z-index: 21;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  align-items: center;
  clip-path: polygon(
    0% 0%,
    /* top-left */ 100% 0%,
    /* top-right flat edge */ 100% 100%,
    /* bottom-right flat edge */ 0% 100%,
    /* bottom-left */ 0% 90%,
    /* center-left curve start */ 0% 0% /* close the path */
  );
  border-top-left-radius: 400px;
  border-bottom-left-radius: 400px;
}

.contact-form-container.active {
  right: 0;
}

.contact-form-header h2 {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: 27px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin: auto;
}

.contact-form-container form {
  margin: 0 auto;
}

.contact-form-container .form-row .col-md-12 {
  width: 100%;
  margin: 0 auto;
}

.contact-form-container .form-row,
.contact-form-container .social-row {
  width: 100%;
  margin: 0 auto;
}

.close-button {
  position: absolute;
  width: clamp(20px, 20vw, 40px);
  height: clamp(20px, 20vw, 56px);
  top: 46%;
  left: 1%;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.close-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #104f83;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-button i {
  color: white;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.close-button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.contact-form-container .form-group {
  margin-bottom: 15px;
}

.contact-form-container .form-group:last-of-type {
  margin-bottom: -28px;
}

.contact-form-container .form-group input,
.contact-form-container .form-group textarea {
  color: #000;
  font-family: "Nexa", sans-serif;
  font-size: clamp(12px, 2vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.contact-form-container .form-group textarea {
  border-radius: 2px;
}

.contact-form-container .form-group input::placeholder,
.contact-form-container .form-group textarea::placeholder {
  color: #a3a3a3;
  font-weight: 700;
}

.contact-form-container .form-group textarea {
  resize: none;
}

/* Error input styling for quick contact form */
.contact-form-container .form-group input.error-input {
  border: 2px solid #dc3545 !important;
  background-color: #fff !important;
  color: #000 !important;
}

.contact-form-container .form-group input.error-input::placeholder {
  color: #a3a3a3 !important;
}

.send-message-btn {
  color: var(--black);
  font-family: "Nexa", sans-serif;
  font-size: clamp(10px, 2vw, 12px);
  font-style: normal;
  font-weight: bold !important;
  line-height: normal;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #77b203 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
  transition: all 0.3s ease-in-out;
}

.send-message-btn:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Common Button Hover Effect */
.btn-hover-scale {
  transition: all 0.3s ease-in-out;
}

.btn-hover-scale:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.social-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
}

.test:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.stay-connected {
  text-align: left;
  padding-bottom: 10px;
}

.contact-details {
  margin-top: 17px;
}

.contact-details .separator-container img {
  width: 30px;
  height: 30px;
}

.contact-details .separator-container img:last-of-type {
  width: 25px;
  height: 25px;
}

.contact-infos a {
  display: inline-block;
  text-decoration: none;
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(10px, 2vw, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.stay-connected h3 {
  margin: 0;
  display: inline-block;
  padding-bottom: 2px;
  color: #104f83;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(16px, 2vw, 15px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  white-space: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 4px;
  width: max-content;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.social-media img {
  width: 20px;
  height: auto;
  margin: 0 4px;
  will-change: transform;
}

.social-media img:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

/* Services Page Styles */
.services h2 {
  color: #104f83;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Nexa", sans-serif;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.services .card {
  color: white;
  padding: 0px 0%;
  padding-bottom: 0 !important;
  text-align: left;
  height: 100%;
  border-radius: 8px;
  border: 0px solid #fff;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.services .card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .card:hover {
  transform: translateY(-10px);
}

.services .card h3 {
  color: #fff;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.services .card h4 {
  font-size: clamp(20px, 2vw, 21px);
  font-weight: 700;
}

.services .card p {
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 400;
  color: var(--white);
  margin-top: 15px;
}

.services .card img {
  width: 100%;
  min-width: 100%;
  margin-bottom: 0% !important;
}

/* Services Section Responsive Fixes for 767px to 1000px */
@media (min-width: 767px) and (max-width: 1000px) {
  .services .card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .services .card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 20px 15px;
  }

  .services .card h4 {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .services .card p {
    flex: 1;
    display: flex;
    align-items: flex-start;
    text-align: center;
    line-height: 1.4;
    margin: 0;
  }
}

.view-more-btn {
  margin: 0 auto;
  margin-left: auto;
  color: var(--black);
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 23.937px;
  border-radius: 4px;
  background: linear-gradient(180deg, #aafe05 0%, #77b203 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: none !important;
  padding-top: 10px;
  padding-bottom: 4px;
  transition: all 0.3s ease-in-out;
}

/* Shake Animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-6px);
  }

  80% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

.view-more-btn:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Brands Section */
.brands h2 {
  color: #104f83;
  text-align: center;
  font-family: "Nexa", sans-serif;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.brand-box {
  position: relative;
  border-radius: 50px;
}

.brand-box::before {
  border-radius: 50px;
  width: 100%;
  content: "";
  position: absolute;
  top: -2px;
  bottom: 0px;
  left: -2px;
  right: -2px;
  z-index: -1;
  background: conic-gradient(
    from -50deg,
    #463838,
    #c5c5c5,
    transparent,
    #463838c0
  );
}

.brand-box::after {
  border-radius: 50px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 85deg,
    #c1c1c1 100deg 160deg,
    transparent 200deg 360deg
  );
}

.brand-box img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

.brand-box .row .col-6 {
  width: 50% !important;
}

/* Brand Icons - Consistent Alignment */
.brand-box .row .col-md-6,
.brand-box .row .col-lg-3 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 120px;
}

.brand-box .row img {
  max-height: 990px;
  max-width: 180px;
  object-fit: contain;
  vertical-align: middle;
}

/* Specific sizing adjustments while maintaining alignment */
.brand-box .row .col-md-6:first-of-type img,
.brand-box .row .col-md-6:nth-of-type(2) img {
  max-width: 150px;
}

.brand-box .row .col-md-6:nth-of-type(3) img {
  max-width: 220px;
}

.brand-box .row .col-md-6:nth-of-type(4) img {
  max-width: 180px;
}

.brand-box .row .col-md-6:nth-of-type(5) img {
  max-width: 170px;
}

.brand-box .row .col-md-6:nth-of-type(6) img {
  max-width: 100px;
}

.brand-box .row .col-md-6:nth-of-type(7) img {
  max-width: 110px;
}

.brand-box .row .col-md-6:last-of-type img {
  max-width: 180px;
}

/* Download Application Styles */
.download-section {
  padding: 60px 0;
  text-align: center;
}

.download-section .container {
  margin: 0 auto;
}

/* .download-title-row {
     background: #000;
     display: flex !important;
     justify-content: center !important;
     margin: auto !important;
 } */

.download-title-row .col-md-12 {
  display: flex !important;
  justify-content: center !important;
  margin-right: auto !important;
}

.download-title {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.75;
  margin: auto !important;
  text-align: right !important;
}

.download-title span {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto !important;
  display: block;
}
.app-buttons a:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.download-box {
  padding: 20px;
  border-radius: 45px;
  display: inline-block;
  background: linear-gradient(
    180deg,
    rgba(22, 94, 153, 0.08) 0%,
    rgba(7, 31, 51, 0.08) 100%
  );
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  margin: auto;
}

.download-box::after {
  border-radius: 45px;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  bottom: 0;
  border-radius: 45px;
  padding: 2px;
  /* Border thickness */
  background: conic-gradient(
    from -50deg,
    #104f83,
    transparent,
    #eff1f3,
    #eff1f3,
    transparent,
    #104f83
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.download-box h4 {
  color: #104f83;
  text-align: center;
  font-size: clamp(25px, 4vw, 60px);
  font-style: normal;
  font-weight: 500 !important;
}

.download-box p {
  color: #fff;
  text-align: center;
  font-size: clamp(20px, 2vw, 50px);
  font-style: normal;
  font-weight: 400;
  font-style: normal;
}

.download-box p {
  font-size: clamp(14px, 2vw, 30px);
}

.app-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  text-align: start;
  border-radius: 30px;
  background: #162140;
  color: white;
  padding: 8px 45px !important;
  padding-right: 70px !important;
  text-decoration: none;
  font-size: clamp(12px, 2vw, 16px);
  margin: 10px;
  transition: all 1.2s ease-in-out;
}

.app-buttons a:last-of-type {
  padding: 8px 20px !important;
  padding-right: 70px !important;
}

.app-buttons .bold {
  font-weight: 600;
}

.app-buttons a img {
  height: 60px;
  transition: all 1.2s ease-in-out;
}

.app-buttons a:last-of-type img {
  height: 90px;
  transition: all 1.2s ease-in-out;
}

/* Map Section Styles */
.map h2 {
  color: #104f83;
  font-family: "Nexa", sans-serif;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: normal;
}

/* Contact Form Section Styles */
.contact-section {
  padding: 50px 0;
  border-radius: 15px;
}

.contact-section .container {
  margin: 0 auto;
}

.contact-title {
  color: #184476;
  font-size: clamp(50px, 5vw, 100px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.6;
  margin: auto !important;
  text-align: right !important;
}

.contact-title span {
  font-size: clamp(25px, 4vw, 50px);
  text-transform: uppercase;
  color: #184476;
  font-weight: 700;
}

.contact-section .container .row .col-md-8 {
  margin: auto;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #0990ff;
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 141px 200px -80px rgba(25, 58, 75, 0.3) inset;
  z-index: 20;
  position: relative;
}

.contact-section .container .row .col-md-8::after {
  width: 100%;
  height: 250px;
  content: "";
  position: absolute;
  top: 126px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../img/contact-us/delta.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.delta-container {
  margin-left: -25px;
  position: relative;
  height: auto;
  min-width: 100%;
  min-height: 100%;
}

.contact-section .container .row h3 {
  color: #fff;
  font-family: "Nexa", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.contact-form {
  padding: 30px;
  border-radius: 12px;
  color: white;
}

.contact-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  outline: var(--white);
}

.contact-form input::placeholder {
  color: var(--white);
}

.textarea-container {
  position: relative;
  display: inline-block;
  width: 100%;
  outline: 1px solid white;
  /* background: linear-gradient(79deg, #104775 119.59%, #F0F0F0 119.6%); */
  box-shadow: 0px 141px 200px -80px rgba(25, 58, 75, 0.3) inset;
  border-radius: 4px;
  resize: vertical;
  overflow: auto;
}

/* Textarea Styling */
.custom-textarea {
  position: relative;
  width: 95%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  background: transparent;
  outline: none;
  display: flex;
  resize: none;
  overflow: visible;
  margin: auto;
  margin-bottom: 10px;
  color: var(--white);
}

.custom-textarea::placeholder {
  color: var(--white);
}

.btn-submit {
  font-family: "Nexa", sans-serif;
  font-size: 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #104f83;
  padding: 10px;
  border: none;
  width: 100%;
  font-weight: bold !important;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.contact-info {
  color: white;
}

.info-item img {
  width: 38px !important;
  height: 38px !important;
}

.info-item .address {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
}

.info-item.email {
  margin-top: -8px !important;
}

.info-item i {
  color: #0990ff;
}

.info-item p {
  font-size: 14px;
  margin: 0;
}

.info-item a {
  color: #0990ff;
}

.info-item.address {
  margin-left: -6px;
}

/* Contact hover effects */
.flex-shrink-0:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.flex-shrink-0:hover .form-icons {
  filter: brightness(1.3) drop-shadow(0 0 8px rgba(9, 144, 255, 0.6));
  transition: all 0.3s ease;
}

.flex-shrink-0:hover p:not(.text-white) {
  color: #0990ff !important;
  text-shadow: 0 0 5px rgba(9, 144, 255, 0.3);
  transition: all 0.3s ease;
}

/* Our Locations Section Styles */
.map .col-auto {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
}

/* Large screens and small desktops */
@media (max-width: 1200px) {
  .map .col-auto img {
    width: 90%;
    height: 400px;
    border-radius: 160px;
  }
}

/* Large tablets and small laptops */
@media (max-width: 1024px) {
  .map .col-auto img {
    width: 92%;
    height: 350px;
    border-radius: 140px;
  }
}

/* Medium tablets */
@media (max-width: 900px) {
  .map .col-auto img {
    width: 94%;
    height: 320px;
    border-radius: 130px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .map .col-auto img {
    width: 95%;
    height: 280px;
    border-radius: 120px;
  }
}

/* Small tablets and large phones */
@media (max-width: 600px) {
  .map .col-auto img {
    width: 96%;
    height: 250px;
    border-radius: 115px;
  }
}

/* Large mobile phones */
@media (max-width: 540px) {
  .map .col-auto img {
    width: 96%;
    height: 230px;
    border-radius: 115px;
  }
}

/* Medium tablets - 500px to 540px range */
@media (min-width: 500px) and (max-width: 540px) {
  .map .col-auto {
    padding: 15px 5px;
  }
  .map .col-auto img {
    width: 95%;
    height: 260px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Medium mobile phones - 400px to 490px range */
@media (min-width: 400px) and (max-width: 490px) {
  .map .col-auto {
    padding: 15px 5px;
  }
  .map .col-auto img {
    width: 97%;
    height: 240px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .map .col-auto {
    padding: 15px 5px;
  }
  .map .col-auto img {
    width: 98%;
    height: 200px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Small mobile phones */
@media (max-width: 420px) {
  .map .col-auto {
    padding: 12px 4px;
  }
  .map .col-auto img {
    width: 99%;
    height: 190px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .map .col-auto {
    padding: 10px 5px;
  }
  .map .col-auto img {
    width: 100%;
    height: 180px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Extra small screens */
@media (max-width: 320px) {
  .map .col-auto {
    padding: 8px 3px;
  }
  .map .col-auto img {
    width: 100%;
    height: 160px;
    border-radius: 25%;
    object-fit: fill;
    background-color: #f8f9fa;
  }
}

/* Banner Image Section Styles */
.banner-image {
  padding: 0;
  margin: 0;
  width: 100vw;
  overflow: hidden;
}

.banner-image img {
  display: block;
  width: 100vw;
  height: auto;
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, #104f83 0%, #04111d 100%);
  box-shadow: 0px 4px 7.9px 0px rgba(0, 0, 0, 0.25);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 30px 0;
  padding-top: 15px;
}

.footer .container {
  min-width: 100%;
  max-width: 100%;
}

.footer .row:first-of-type {
  border-bottom: 3px solid var(--white);
  min-width: 100%;
  padding: 0 60px;
  padding-right: 40px;
  padding-bottom: 10px;
}

.footer .logo {
  width: 200px;
  max-width: 100%;
  height: auto;
}

.footer .navbar-brand img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.social-icons-container {
  margin-right: 0px;
}

/* Skeleton Loader Styles */
.skeleton-loader {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: skeleton-shine 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes skeleton-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Specific skeleton loader sizes for different image types */
.skeleton-card-img {
  height: 200px;
  width: 100%;
}

.skeleton-hero-img {
  height: 400px;
  width: 100%;
}

.skeleton-car-img {
  height: 250px;
  width: 100%;
}

.skeleton-brand-img {
  height: 60px;
  width: 120px;
}

.skeleton-map-img {
  height: 300px;
  width: 100%;
}

.skeleton-specialized-img {
  height: 300px;
  width: 100%;
}

/* Image container with skeleton loader */
.img-with-skeleton {
  position: relative;
  display: inline-block;
}

.img-with-skeleton img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.img-with-skeleton img.loaded {
  opacity: 1;
}

.img-with-skeleton .skeleton-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img-with-skeleton .skeleton-loader.hidden {
  display: none;
}

.social-icons a {
  margin-right: 3px;
  color: white;
  font-size: 18px;
}

.social-icons img {
  width: 26px;
  height: 26px;
}

.social-icons img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
/* Enhanced Card Hover Effects */
.card,
.service-card,
.feature-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.card::before,
.service-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(16, 79, 131, 0.1),
    rgba(16, 79, 131, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card:hover,
.service-card:hover,
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before,
.service-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

/* Image Hover Effects */
.img-hover-effect {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.img-hover-effect img {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-hover-effect:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.1) contrast(1.1);
}

/* Text Glow Effect */
.text-glow {
  transition: all 0.3s ease;
}

.text-glow:hover {
  text-shadow: 0 0 10px rgba(170, 254, 5, 0.8), 0 0 20px rgba(170, 254, 5, 0.6),
    0 0 30px rgba(170, 254, 5, 0.4);
}

.bottom-navigation {
  padding: 0 70px;
  padding-left: 70px;
}

.footer h5 {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 22px);
  white-space: nowrap;
}

.footer .list-unstyled {
  margin-top: 12px;
}

.ui-hover:hover {
  scale: 1.01;
  transition: transform 0.3s ease-in-out;
}

.footer .list-unstyled a {
  color: white;
  text-decoration: none;
  font-size: clamp(11px, 2vw, 18px);
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}

.footer .list-unstyled a:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.footer .bottom-navigation .location-col {
  padding-left: 20px;
  position: relative;
}

.footer .bottom-navigation .location-col::before {
  width: 2px;
  height: 90%;
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
  background: linear-gradient(0deg, #104f83 0%, #fff 50.7%, #104f83 100%);
}

.footer .col-md-3 .col-auto p {
  line-height: 1.5;
  white-space: nowrap;
}

.footer .location {
  width: 28px;
  height: 28px;
}

.footer .security {
  width: 25px;
  height: 25px;
}

.footer p {
  font-size: clamp(11px, 2vw, 14px);
}

footer .copyright {
  color: var(--white);
  font-family: var(--font-family);
  font-size: clamp(12px, 2vw, 16px);
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

footer .copyright::before {
  content: "";
  display: inline-block;
  width: 100%;
  min-width: 100%;
  height: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #104f83 0%, #fff 50.07%, #104f83 100%);
}

footer .copyright p {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: clamp(15px, 3vw, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

footer .copyright p:first-of-type {
  margin-top: 9px;
  margin-bottom: -20px;
  margin-left: 60px;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 17px);
  visibility: hidden;
}

/* Button base */
.btn-custom {
  background: linear-gradient(180deg, #aafe05 0%, #77b203 100%) !important;
  color: #000 !important;
  font-weight: 700;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 70%
  );
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: skewX(-25deg);
}

.btn-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-custom:hover::before {
  left: 100%;
  animation: shineWave 0.8s ease-out;
}

.btn-custom:hover::after {
  opacity: 1;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  transform: scale(1.1);
  cursor: pointer;
  background: linear-gradient(180deg, #bbff16 0%, #88c314 100%) !important;
  box-shadow: 0px 6px 15px rgba(170, 254, 5, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* whtasapp button */
/* Removed hover scale effect as requested */

/* Removed individual icon hover effect */
