:root {
  --paper: #ffffff;
  --line: #dcdcdc;
  --ink: #222;
  --ink-soft: #666;
  --amber: #0dcaf0;
  --steel-light: #0dcaf0;
  --font-display: "Poppins", sans-serif;
}
body {
  margin-top: 90px;
  /* overflow-x: hidden !important; */
}

.dropdown-menu {
  z-index: 10000;
}
.navbar {
  position: fixed;
  top: 7px;
  left: 1%;
  right: 1%;
  width: 98%;
  z-index: 1050;
  padding: 7px 10px;

  /* Your transparent color */
  background-color: rgba(24, 13, 13, 0.5) !important;

  /* Blur behind navbar */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 2px solid rgba(211, 209, 209, 0.7);
  border-radius: 15px;
}

.navbar .nav-link {
  color: rgb(60, 76, 81) !important;
}

.navbar .nav-link:hover {
  color: #ee8351 !important;
}

/* Logo */
.navbar-brand {
  color: #f0f5f7bf !important;
}

/* Mobile */
@media (max-width: 990.98px) {
  /* Navbar */
  .navbar {
    left: 2%;
    right: 2%;
    width: 96%;
    background: rgba(24, 13, 13, 0.5) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  /* Mobile menu */
  .navbar-collapse {
    position: fixed;
    top: 11vh;
    left: 0;
    width: 95vw;
    height: 89vh;
    border-radius: 10px;

    background: linear-gradient(to top, rgba(240, 245, 247, 0.9), rgb(163, 204, 231)) !important;

    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);

    z-index: 1049;
    padding: 15px;
    overflow-y: auto;

    /* Animation */
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;

    transition:
      transform 0.5s ease,
      opacity 0.4s ease,
      visibility 0.5s ease;
  }

  /* Menu OPEN */
  .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Connect button */
  .navbar-nav .btn {
    width: 50vw !important;
    margin-top: 15px;
    padding: 12px !important;
    margin-left: 4vw;
  }
}

.door-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #f05f1d;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
}

.door-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #36a5c2;
  transform: scaleX(0);
  transform-origin: ease;
  transition: transform 0.8s ease;
  z-index: -1;
}

.door-btn:hover {
  color: white !important;
}

.door-btn:hover::before {
  transform: scaleX(1);
}

.btn-thunder{
    position:relative;
    overflow:hidden;
}

.btn-thunder::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(115deg,transparent 30%,#fff8,transparent 60%);
    transform:translateX(-100%);
}

.btn-thunder:hover::after{
    animation:thunder 5s linear infinite;
}

.slide-left{
    opacity:0;
    transform:translateX(-100px);
    transition:2s;
}
.slide-right{
    opacity:0;
    transform:translateX(0px);
    transition:2s;
}
.slide-top{
    opacity:0;
    transform:translateY(-100px);
    transition:2s;
}
.slide-bottom{
    opacity:0;
    transform:translateY(150px);
    transition:2s;
}

.slide-left.show,
.slide-right.show,
.slide-top.show,
.slide-bottom.show{
    opacity:1;
    transform:translate(0);
}

.card-img {
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
}

.hero-card {
  position: relative;
  height: auto;
  overflow: hidden;
  margin-top: 10vh;
  max-height: 100vh;
}

.hero-text {
  max-width: 720px;
  padding: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1.05;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-card {
    height: 100vh;
  }

  .hero-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-text {
    padding: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .hero-card {
    height: 100vh;
  }

  .hero-card .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-text {
    padding: 1rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
.hero-card .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 576px) {
  #homeSlider .carousel-inner > div {
    height: 50vh !important;
    min-height: 350px !important;
  }

  #homeSlider h1 {
    font-size: 2.1rem;
  }

  #homeSlider p.lead {
    font-size: 1rem;
  }

  #homeSlider .btn {
    padding: 10px 18px !important;
    font-size: 14px;
  }
}
.bi {
  color: #ef6419;
}

.main-card {
  flex: 1;
  position: relative;
  height: 100%;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: aliceblue;
}
.service-cards {
  display: flex;
  height: 80vh;
  overflow: hidden;
}

.side-card {
  flex: 9;
  background-size: cover;
  background-position: center;
  transition: 1s ease-in-out;
  cursor: pointer;
  background-image: cover;
  color: aliceblue;
}

.card1 {
  background: linear-gradient(to bottom, rgba(63, 113, 129, 0.55), rgba(0, 150, 200, 0.55));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card2 {
  background: linear-gradient(to bottom, rgba(253, 249, 249, 0.55), rgba(118, 108, 108, 0.55));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card3 {
  background: linear-gradient(to bottom, rgba(237, 233, 233, 0.55), rgba(131, 45, 45, 0.55));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card4 {
  background: linear-gradient(to bottom, rgba(248, 246, 246, 0.55), rgba(88, 51, 103, 0.55));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.thunder-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffff, #3c7ab961);
}

/* Small background spots */
.thunder-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#2c5e9b 2px, transparent 2px);
  background-size: 75px 70px;
  opacity: 35;
  animation: spots 8s linear infinite;
}

/* Thunder flash */
.thunder-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(103, 170, 230, 0.25), transparent 65%);
  transform: translateX(-100%);
  animation: thunder 12s linear infinite;
}


@keyframes spots {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
  }
}
@keyframes thunder {
  0%,
  205% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(100%);
  }
  60% {
    transform: translateX(100%);
  }
  80% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.new:hover {
  background: #f790615d;
}

/* Hover Effect */
.service-cards:hover .side-card {
  flex: 0;
}

.service-cards .side-card:hover {
  flex: 9;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    height: auto;
  }

  .main-card {
    flex: none;
    height: 350px;
    color: white;
  }

  .side-card {
    flex: none;
    height: 350px;
    margin-top: 10px;
    color: aliceblue;
  }

  .content {
    left: 20px;
    bottom: 20px;
  }

  .content h1 {
    font-size: 30px;
  }

  .side-card h1 {
    font-size: 35px;
    color: aliceblue;
  }

  .side-card h2 {
    font-size: 28px;
    color: aliceblue;
  }

  .side-card h5 {
    font-size: 18px;
  }

  /* Disable hover effect on mobile */
  .service-cards:hover .side-card,
  .service-cards .side-card:hover {
    flex: none;
  }
}
.row > .col {
  min-height: 350px;
}
.custom-btn {
  background: #39a9d6;
  border-color: #39a9d6;
  transition: 0.4s;
}

.custom-btn:hover {
  background: #81360b;
  border-color: #411a0e;
  color: #fff;
}

.custom-btn2 {
  background: #eef3f6;
  transition: 0.3s;
}

.custom-btn2:hover {
  background: #ec7741;
  color: #fff;
  border-color: #562c19;
}
.wheel {
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.tracking-image {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 691px) {
  .tracking-image {
    width: 60%;
    max-width: 400px;
    height: 60%;
  }
}

/* Small mobile */
@media (max-width: 576px) {
  .tracking-image {
    width: 90%;
    height: 60%;
    max-width: none;
    margin-left: -10%;
  }
}
/* second css */

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  width: 100%;
  color: #111;
  overflow: hidden;
  padding: 0%;
}

/* FOOTER BACKGROUND */

.footer-img {
  background-image: linear-gradient(rgba(253, 255, 255, 0.724), rgba(255, 255, 255, 0.491)), url("../images/footer-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
   FOOTER TOP
========================= */

.footer-top {
  padding: 70px 0 60px;
}

/* DESCRIPTION */

.footer-description {
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* =========================
   FOOTER HEADING
========================= */

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* =========================
   FOOTER LINKS
========================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(10, 4, 4, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #cc591b;
}

/* =========================
   SOCIAL LINK
========================= */

.social-link a {
  text-decoration: none;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
}

/* LEGAL */

.footer-legal a {
  color: rgba(10, 4, 4, 0.877);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ea5607ed;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .footer-top {
    padding: 50px 0 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
  .footer-img {
    background-position: center center;
  }

  .footer-top {
    padding: 40px 20px;
  }

  .footer-heading {
    margin-top: 10px;
  }

  .footer-bottom {
    padding: 18px 10px;
  }

  .footer-bottom-inner {
    font-size: 0.78rem;
    line-height: 1.6;
  }
}
/* ===== Contact form ===== */
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-card .form-control,
.contact-card .form-select {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--steel-light);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.12);
}
.contact-card label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
