html{
     overflow-x: hidden;
}
body {
    font-family: 'Inter', sans-serif;
    color: #18181b;
    overflow-x: hidden;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Navbar blur */
.navbar-blur {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border-top: 7px solid #004581;
}

.fixed-top {
    background: rgb(255 255 255 / 80%) !important;
}

.carousel-indicators [data-bs-target]{
    width: 12px !important;
    height: 12px !important;
    border-radius: 100% !important;
    background-color: #004581 !important;
}
.dot-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* animated ring */
.dot-animation {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* solid center dot */
.small-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* Hero */
.hero-section {
    background: radial-gradient(circle at top, #ffedd5, #ffffff 70%);
}

/* Badge */
.badge-soft {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #52525b;
    border-radius: 20px;
    padding: 7px 13px;
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(90deg, #8cc63f, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Orange button */
.btn-orange {
    background: #ea580c;
    color: #fff;
    line-height: 32px;
    font-size: 14px;
}
.btn-orange:hover {
    background: #c2410c;
    color: #fff;
}

.btn-secondry{
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    line-height: 32px;
}
.btn-secondry:hover{
    background-color: #fafafa;
}

.btn-white {
    font-size: 14px;
    box-shadow: rgb(255 255 255 / 2%) 0px 1px 3px 0px, rgb(255 255 255 / 15%) 0px 0px 0px 1px;
    line-height: 32px;
    color: #fff;
}

.btn-white:hover{
    background-color: #fafafa;
    color: #000;
}

hr.hr-line {
    color: #d0d0d0;
}

/* Hero image shadow */
.hero-image img {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    height: 100%;
    border-radius: 0px 0px 5px 5px !important;
}

/* Category cards */
.category-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.category-card img{
    aspect-ratio: 4 / 3;
}
.category-namee{
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
}
.category-sub-text{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #71717a;
    margin-bottom: 0px;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.sub-heading{
    color: #71717a;
    font-size: 18px;
}
/* Logistics section */
.logistics-section {
    background: #18181b;
}

.hero-sec-paragraph{
    font-size: 16px;
    font-weight: 300 !important;
    color: #fff;
}
.reg-cards{
    border: 1px solid #e4e4e7;
    border-radius: 15px;
}
.reg-cards:hover{
    box-shadow: 0 8px 30px rgb(0, 0, 0, 0.04);;
}
.create-acnt-icon{
    display: flex;
    justify-content: center;
}
.create-acnt-icon i{
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
.orange-btn{
    background-color: #fff7ed;
    color: #ea580c;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
}
.orange-btn:hover{
    color: #c2410c;
    background-color: #ffedd5;
}
.header-btn{
    background: #000;
    color: #ffff;
    font-size: 14px;
}
.scrol-margin-top-80 {
  scroll-margin-top: 80px;
}
.bg-green{
    background-color: #22c55e;
}
.bg-orange{
    background-color: #ea580c !important;
}
.text-grey{
    color: #71717a;
}
.text-light-grey{
    color: #a1a1aa;
}
.fleet-icons{
    border-radius: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    background-color: #27272a;
    color: #fb923c;
    border: 1px solid #3f3f46;
    margin-right: 20px;
}

/* Glow Background */
.glow-bg {
  inset: -1.5rem;
  background: rgba(234, 88, 12, 0.2);
  filter: blur(40px);
  border-radius: 1.5rem;
  opacity: 0.3;
  z-index: 0;
}

/* Image hover zoom */
.fleet-img {
  transition: transform 0.7s ease;
}
.fleet-img:hover {
  transform: scale(1.05);
}

/* Overlay Gradient */
.overlay-gradient {
  background: linear-gradient(
    to top,
    #18181b,
    rgba(24, 24, 27, 0.8),
    transparent
  );
}

/* Glass Icon */
.icon-glass {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Card */
.floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #27272a;
  border: 1px solid #3f3f46;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Status Icon */
.status-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 0.5rem;
font-size: 15px;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
}

@media (max-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        font-size: 16px !important;
    }
    .hero-image img {
        border-radius: 5px 5px 0px 0px !important;
    }
}

@media (max-width: 576px) {
    .navbar-expand-lg .navbar-collapse {
        font-size: 14px;
    }
    .hero-image img {
        border-radius: 5px 5px 0px 0px !important;
    }
}

.bg-blue{
    background: #004581;
}

.hero-section-txt-color{
    color: #fff;
}

