@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* ===============================
   GLOBAL BRAND VARIABLES
================================= */

:root {
  --primary-green: #0f2f2f;
  --accent-orange: #ff7a18;
  --accent-orange-light: #ffb347;
  --dark-text: #222;
  --light-text: #666;
  --white: #ffffff;
}

/* ===============================
   GLOBAL RESET
================================= */

body {
  font-family: "Poppins", sans-serif;
  color: var(--light-text);
  line-height: 1.7;
  font-size: 16px;
  background: #fff;
}

img {
  max-width: 100%;
}

a {
  transition: 0.3s ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  color: var(--dark-text);
}

.form-control:focus {
  box-shadow: none;
}

/* Spacing Helpers */
.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* ===============================
   MODERN BUTTON SYSTEM
================================= */

.theme-btn .default-btn {
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-orange-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.theme-btn .default-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 122, 24, 0.4);
}

/* ===============================
   TOP HEADER
================================= */

.header-area {
  background: var(--primary-green);
  padding: 8px 0;
  font-size: 14px;
}

.header-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-area ul li {
  display: inline-block;
  margin-right: 20px;
  color: var(--white);
}

.header-area ul li i {
  color: var(--accent-orange);
  margin-right: 6px;
}

.header-area a {
  color: var(--white);
}

.header-area a:hover {
  color: var(--accent-orange);
}

.header-right {
  text-align: right;
}

.header-social li {
  display: inline-block;
}

.header-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 8px;
  transition: 0.3s ease;
}

.header-social li a:hover {
  background: var(--accent-orange);
}

/* ===============================
   NAVBAR
================================= */

.navbar-area .main-nav {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  max-height: 70px;
  transition: 0.3s ease;
}

.navbar-nav .nav-item a {
  color: var(--dark-text);
  font-weight: 600;
  margin-left: 30px;
  position: relative;
}

/* Underline Hover Effect */
.navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(45deg, var(--accent-orange), var(--accent-orange-light));
  transition: 0.3s ease;
}

.navbar-nav .nav-item a:hover::after {
  width: 100%;
}

.navbar-nav .nav-item a:hover {
  color: var(--primary-green);
}

.navbar-nav .nav-item .active {
  color: var(--accent-orange);
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  border-radius: 12px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.navbar-nav .dropdown-menu .nav-item a {
  padding: 12px 20px;
  margin: 0;
  font-weight: 500;
}

.navbar-nav .dropdown-menu .nav-item a:hover {
  background: rgba(255, 122, 24, 0.08);
  color: var(--accent-orange);
}

/* Sticky */
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.5s ease;
  z-index: 999;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Navbar CSS End */


/* ===============================
   Modern Hero Banner Redesign
=================================*/
/* =====================================
   PREMIUM FULLSCREEN HERO BANNER FIXED
===================================== */

.banner-slider {
    position: relative;
}

.banner-slider .banner-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Single Smooth Overlay */
.banner-slider .banner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 1;
}

/* Remove extra overlay if exists */
.banner-overlay {
    display: none;
}

/* Text Wrapper */
.banner-slider .banner-text {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 15px;
    width: 100%;
    text-align: left;
}

/* Heading */
.banner-slider .banner-text h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

/* Paragraph */
.banner-slider .banner-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

/* Button */
.banner-slider .default-btn {
    background: #ff440a;
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.banner-slider .default-btn:hover {
    background: #fff;
    color: #ff440a;
    transform: translateY(-3px);
}

/* Owl Navigation */
.banner-slider .owl-prev,
.banner-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 68, 10, 0.9) !important;
    color: #fff !important;
    font-size: 18px !important;
    transition: 0.3s ease;
    opacity: 0;
}

.banner-slider .owl-prev { left: 30px; }
.banner-slider .owl-next { right: 30px; }

.banner-slider:hover .owl-prev,
.banner-slider:hover .owl-next {
    opacity: 1;
}

.banner-slider .owl-prev:hover,
.banner-slider .owl-next:hover {
    background: #fff !important;
    color: #ff440a !important;
}

/* Animation */
.banner-slider .owl-item.active h1,
.banner-slider .owl-item.active p {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   RESPONSIVE OPTIMIZATION
================================ */

/* Tablet */
@media (max-width: 991px) {
    .banner-slider .banner-text h1 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .banner-slider .banner-item {
        height: 85vh;
        min-height: 500px;
        text-align: center;
        justify-content: center;
    }

    .banner-slider .banner-text {
        text-align: center;
        margin: 0 auto;
    }

    .banner-slider .banner-text h1 {
        font-size: 28px;
    }

    .banner-slider .banner-text p {
        font-size: 15px;
    }
}
/* ==============================
   Features Overlay Section
============================== */

.features-section {
  margin-top: -120px;
  /* overlay on banner */
  position: relative;
  z-index: 20;
  padding-bottom: 60px;
}

/* Remove row negative margin issue */
.features-section .row {
  margin-left: -12px;
  margin-right: -12px;
}

/* Fix column spacing */
.features-section .col-lg-3,
.features-section .col-sm-6 {
  padding: 12px;
  display: flex;
}

/* Card */
.features-section .feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  min-height: 250px;
  /* Equal height fix */
}

/* Full clickable */
.features-section .feature-card a {
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Icon circle */
.icon-wrap {
  width: 85px;
  height: 85px;
  background: linear-gradient(130deg, #ffffff, #f3450a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.features-section .feature-card img {
  width: 42px;
}

/* Title */
.features-section .feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

/* CTA always visible */
.category-link {
  font-size: 14px;
  font-weight: 500;
  color: #ff440a;
}

/* Hover subtle */
.features-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ==============================
   Responsive Fix
============================== */

/* Tablet */
@media (max-width: 991px) {
  .features-section {
    margin-top: -80px;
  }

  .features-section .feature-card {
    min-height: 230px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .features-section {
    margin-top: -50px;
    padding-bottom: 40px;
  }

  .features-section .feature-card {
    min-height: auto;
    padding: 30px 20px;
  }

  .icon-wrap {
    width: 70px;
    height: 70px;
  }

  .features-section .feature-card img {
    width: 36px;
  }

  .features-section .feature-card h3 {
    font-size: 17px;
  }
}

/* Features CSS End */
/* About CSS Start */
/* ===========================
   MODERN ABOUT SECTION
=========================== */

.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff4ef 100%);
  position: relative;
  overflow: hidden;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  transition: 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Floating Experience Badge */
.about-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: linear-gradient(135deg, #ff440a, #ff7a4d);
  color: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 68, 10, 0.4);
  text-align: center;
}

.about-badge span {
  font-size: 32px;
  font-weight: 800;
  display: block;
}

.about-badge p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

/* CONTENT SIDE */
.about-content {
  padding-left: 40px;
}

.about-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 68, 10, 0.1);
  color: #ff440a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: #ff440a;
  margin-bottom: 25px;
  border-radius: 10px;
}

.about-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Button */
.primary-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff440a, #ff7a4d);
  color: #fff;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 15px 30px rgba(255, 68, 10, 0.3);
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(255, 68, 10, 0.5);
  color: #fff;
}

/* ===========================
   DARK STRIP SECTION
=========================== */

.bgHome-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  position: relative;
  overflow: hidden;
}

.bgHome-modern h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
  max-width: 900px;
  margin: auto;
}

/* Responsive */
@media(max-width:991px) {
  .about-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-title {
    font-size: 32px;
  }

  .bgHome-modern h2 {
    font-size: 24px;
  }
}

/* ===============================
   CINEMATIC VIDEO SECTION
================================ */

.transport-section-modern {
  padding: 140px 0;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  position: relative;
  overflow: hidden;
}

/* Center Wrapper */
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* Glow Effect */
.video-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 68, 10, 0.4), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  filter: blur(80px);
}

/* Video Frame */
.video-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: perspective(1000px) rotateX(3deg);
  transition: 0.6s ease;
}

.video-frame iframe {
  width: 100%;
  height: 550px;
  border: none;
}

.video-frame:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

/* Overlay Content */
.video-content {
  text-align: center;
  margin-top: 50px;
  color: #fff;
}

.video-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.video-content p {
  font-size: 18px;
  color: #ccc;
  max-width: 700px;
  margin: auto;
}

/* Responsive */
@media(max-width:991px) {
  .video-frame iframe {
    height: 350px;
  }

  .video-content h2 {
    font-size: 28px;
  }

  .video-content p {
    font-size: 16px;
  }
}


/* Transport CSS End */

/* ===============================
   PRODUCT SHOWCASE MODERN FIXED
================================ */
.product-showcase-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

/* Section Heading */
.section-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff440a, #ff7a3d);
  margin: 0 auto 50px;
  border-radius: 50px;
}

/* Card */
.product-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.product-image {
  width: 100%;
  height: 260px; /* fixed uniform height */
  position: relative;
  overflow: hidden;
  background: #eee;
}

/* UNIVERSAL IMAGE FIX */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Important for any image size */
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

.product-card-modern:hover .product-image img {
  transform: scale(1.08);
}

/* Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.65));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.product-card-modern:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.overlay-btn:hover {
  background: #ff440a;
  color: #fff;
}

/* Content */
.product-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Button */
.read-more-btn {
  display: inline-block;
  padding: 11px 22px;
  background: linear-gradient(90deg, #ff440a, #ff7a3d);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .product-image {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .product-image {
    height: 200px;
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

  .section-heading {
    font-size: 30px;
  }

  .product-image {
    height: 200px;
  }

}

@media (max-width: 576px) {

  .product-showcase-section {
    padding: 70px 0;
  }

  .product-image {
    height: 190px;
  }

  .product-content {
    padding: 20px;
  }

  .product-content h3 {
    font-size: 18px;
  }

}

/* =====================================
   PREMIUM LIGHT QUOTE SECTION
===================================== */

.quote-modern {
  background: linear-gradient(120deg, #fff6f2, #ffe9df);
  padding: 120px 0;
  position: relative;
}

/* LEFT SIDE CONTENT */

.quote-content {
  padding-right: 50px;
}

.email-box span {
  font-size: 13px;
  font-weight: 700;
  color: #ff440a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-box a {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.quote-heading {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  margin: 25px 0;
  line-height: 1.2;
}

.quote-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

.call-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff440a, #ff7a18);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(255, 68, 10, 0.3);
}

.call-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 68, 10, 0.5);
}

/* ==========================
   FORM CARD
========================== */

.quote-form-modern {
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-form-modern h3 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 35px;
  text-align: center;
}

/* INPUTS */

.quote-form-modern .form-control {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  padding-left: 18px;
  font-size: 14px;
  transition: 0.3s ease;
  color: #222;
}

.quote-form-modern textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.quote-form-modern .form-control:focus {
  border-color: #ff440a;
  background: #fff;
  box-shadow: 0 5px 20px rgba(255, 68, 10, 0.1);
}

/* BUTTON */

.submit-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ff440a, #ff7a18);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: 0.4s ease;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 68, 10, 0.4);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {

  .quote-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }

  .quote-heading {
    font-size: 32px;
  }

}

@media (max-width: 576px) {

  .quote-form-modern {
    padding: 30px;
  }

  .quote-heading {
    font-size: 26px;
  }

}

/* =====================================
   MODERN WHY CHOOSE SECTION
===================================== */

.why-choose-section-modern {
  position: relative;
  overflow: hidden;
}

/* LEFT SLIDER */

.why-slider-wrapper {
  position: relative;
  height: 100%;
}

.why-slider-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay matching logo tone */

.slider-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(135deg, rgba(255, 68, 10, 0.85), rgba(124, 0, 255, 0.6));*/
  mix-blend-mode: multiply;
}

/* RIGHT SIDE CONTENT */

.why-content-modern {
  padding: 100px 80px;
  background: linear-gradient(120deg, #ffffff, #fff4ef);
  height: 100%;
}

/* Heading */

.why-heading span {
  font-size: 14px;
  font-weight: 700;
  color: #ff440a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-heading h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 15px 0;
  color: #111;
}

.heading-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff440a, #7c00ff);
  border-radius: 50px;
  margin-bottom: 40px;
}

/* USP LIST */

.usp-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usp-list-modern li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 25px;
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  transition: 0.3s ease;
}

/* Gradient Icon Bullet */

.usp-list-modern li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff440a, #7c00ff);
  box-shadow: 0 5px 15px rgba(255, 68, 10, 0.3);
}

/* Hover Effect */

.usp-list-modern li:hover {
  transform: translateX(5px);
  color: #000;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

  .why-content-modern {
    padding: 60px 30px;
    text-align: center;
  }

  .usp-list-modern li {
    padding-left: 0;
  }

  .usp-list-modern li::before {
    display: none;
  }

  .why-heading h2 {
    font-size: 30px;
  }
}


/* Why Choose CSS End */


/* ===============================
   MODERN GET QUOTE SECTION
================================ */

.get-quote-section {
  position: relative;
  padding: 120px 0;
  /* background: linear-gradient(135deg,#ff440a,#b31217); */
  overflow: hidden;
}

/* subtle animated overlay */
.get-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}

/* LEFT SIDE TEXT */

.get-quote-section .quote-text {
  color: #fff;
  padding-right: 50px;
}

.get-quote-section .quote-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.get-quote-section .quote-text p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 30px;
}

.get-quote-section .quote-text .theme-btn .default-btn {
  background: #fff;
  color: #ff440a;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  transition: .3s;
}

.get-quote-section .quote-text .theme-btn .default-btn:hover {
  background: #000;
  color: #fff;
}

/* EMAIL BADGE MODERN */

.offer-text span {
  background: #fff;
  color: #ff440a;
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.offer-text p {
  position: static !important;
  background: none !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600;
}

/* RIGHT SIDE FORM CARD */

.get-quote-section .quote-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.get-quote-section .quote-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

/* INPUT STYLE */

.get-quote-section .quote-form .form-control,
.get-quote-section .quote-form textarea {
  height: 50px;
  border-radius: 12px;
  border: none;
  padding: 10px 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  transition: .3s;
}

.get-quote-section .quote-form textarea {
  height: auto;
}

.get-quote-section .quote-form .form-control:focus,
.get-quote-section .quote-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* SUBMIT BUTTON */

.get-quote-section .quote-form button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
}

.get-quote-section .quote-form button:hover {
  background: #fff;
  color: #ff440a;
}

/* REMOVE OLD LINES EFFECT */
.get-quote-section .lines {
  display: none;
}

/* RESPONSIVE */

@media(max-width:991px) {
  .get-quote-section .quote-text {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
}


/* Get Qouote CSS End */
/* Worker CSS Start */
.worker-section .section-title p {
  margin: auto;
}

/* Card */
.worker-section .worker-card {
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  background: #fff;
}

/* Image wrapper */
.worker-section .worker-card .worker-img {
  position: relative;
  overflow: hidden;
  height: 260px; /* fixed height for equal layout */
}

/* IMPORTANT: Image fit fix */
.worker-section .worker-card .worker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* large images perfectly adjust */
  border-radius: 12px;
  transition: 0.5s ease;
  display: block;
}

/* Hover zoom (safe) */
.worker-section .worker-card:hover .worker-img img {
  transform: scale(1.08);
}

/* Card lift */
.worker-section .worker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
  .worker-section .worker-card .worker-img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .worker-section .worker-card .worker-img {
    height: 200px;
  }
}

.pt-70 {
  padding-top: 70px;
}

/* Worker CSS CSS End */
/* Feedback CSS Start */
.feedback-section {
  padding-bottom: 70px;
}

.feedback-section .section-title span,
.feedback-section .section-title h2,
.feedback-section .section-title p {
  color: #ffffff;
}

.feedback-section .section-title p {
  margin: auto;
}

.feedback-section .feedback-slider {
  position: relative;
}

.feedback-section .feedback-slider .feedback-items {
  text-align: center;
  max-width: 450px;
  margin: auto;
}

.feedback-section .feedback-slider .feedback-items i {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 35px;
  display: inline-block;
}

.feedback-section .feedback-slider .feedback-items p {
  margin-bottom: 40px;
  color: #ffffff;
}

.feedback-section .feedback-slider .feedback-items img {
  max-width: 100%;
  margin: 45px auto 10px;
  width: unset;
}

.feedback-section .feedback-slider .feedback-items h3 {
  color: #ffffff;
  margin-bottom: 5px;
}

.feedback-section .feedback-slider .feedback-items span {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 16px;
  display: inline-block;
}

.feedback-section .feedback-slider .owl-prev,
.feedback-section .feedback-slider .owl-next {
  position: absolute;
  left: -65px;
  top: 35%;
  background: #ff440a !important;
  color: #ffffff !important;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  font-size: 25px !important;
  line-height: 45px !important;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.feedback-section .feedback-slider .owl-prev:hover,
.feedback-section .feedback-slider .owl-next:hover {
  background: #ffffff !important;
  color: #ff440a !important;
}

.feedback-section .feedback-slider .owl-next {
  left: inherit;
  right: -65px;
}

.feedback-section .feedback-slider:hover .owl-prev {
  left: -50px;
  opacity: 1;
}

.feedback-section .feedback-slider:hover .owl-next {
  right: -50px;
  opacity: 1;
}

.feedback-section .feedback-slider .owl-nav {
  margin-top: 0;
}

.feedback-bg {
  background-image: url(../img/feedback/feedback-bg.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 0;
}

.feedback-bg::before {
  position: absolute;
  content: '';
  background: #3c0c70;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .85;
  z-index: -1;
}

/* Feedback CSS End */
/* Company CSS Start */
.company-section {
  margin-top: -100px;
}

.company-section .company-slider {
  padding: 60px 25px 50px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
}

.company-section .company-slider .company-logo img {
  max-width: 100%;
  width: unset;
  margin: auto;
  -webkit-transition: .5s;
  transition: .5s;
}

.company-section .company-slider .company-logo img:hover {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Company CSS End */
/* Blog CSS Start */
.blog-section .section-title p {
  margin: auto;
}

.blog-section .blog-card {
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-section .blog-card .blog-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog-section .blog-card .blog-img a img {
  border-radius: 10px 10px 0 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.blog-section .blog-card .blog-text {
  padding: 30px;
}

.blog-section .blog-card .blog-text h3 {
  line-height: 1.4;
  margin-bottom: 15px;
}

.blog-section .blog-card .blog-text h3 a {
  color: #3c0c70;
}

.blog-section .blog-card .blog-text h3 a:hover {
  color: #ff440a;
}

.blog-section .blog-card .blog-text ul {
  padding-left: 0;
  margin-bottom: 8px;
}

.blog-section .blog-card .blog-text ul li {
  font-size: 16px;
  list-style: none;
}

.blog-section .blog-card .blog-text ul li i {
  color: #ff440a;
  margin-right: 5px;
}

.blog-section .blog-card .blog-text p {
  margin-bottom: 18px;
}

.blog-section .blog-card .blog-text .blog-btn {
  display: inherit;
}

.blog-section .blog-card .blog-text .blog-btn i {
  color: #ff440a;
  font-size: 25px;
  width: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  background: #ffcdbd;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.blog-section .blog-card .blog-text .blog-btn i:hover {
  background: #ff440a;
  color: #ffffff;
}

.blog-section .blog-card:hover .blog-img img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

/* Blog CSS End */
/* Newsletter CSS Start */
.newsletter-section {
  margin-bottom: -100px;
}

.newsletter-section .newsletter-area {
  background: #190231;
  padding: 40px;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.newsletter-section .newsletter-area h2 {
  color: #ffffff;
  font-size: 33px;
  font-weight: 700;

  line-height: 1;
}

.newsletter-section .newsletter-area .newsletter-form {
  position: relative;
}

.newsletter-section .newsletter-area .newsletter-form .form-control {
  height: 60px;
  padding: 20px;
  border-radius: 5px;
}

.newsletter-section .newsletter-area .newsletter-form ::-webkit-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.newsletter-section .newsletter-area .newsletter-form :-ms-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.newsletter-section .newsletter-area .newsletter-form ::-ms-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.newsletter-section .newsletter-area .newsletter-form ::placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.newsletter-section .newsletter-area .newsletter-form .default-btn {
  font-size: 17px;
  background: #ff440a;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  margin: 0;
  display: inline-block;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  right: 4px;
  top: 4px;
  border: 1px solid #ff440a;
}

.newsletter-section .newsletter-area .newsletter-form .default-btn::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 100%;
  left: -14px;
  top: 0;
  background: #ffffff;
  z-index: -1;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  -webkit-transition: .5s;
  transition: .5s;
}

.newsletter-section .newsletter-area .newsletter-form .default-btn:hover {
  color: #ff440a;
}

.newsletter-section .newsletter-area .newsletter-form .default-btn:hover::before {
  width: 100%;
  -webkit-transform: skewX(0);
  transform: skewX(0);
  left: 0;
}

.newsletter-section .newsletter-area .newsletter-form .validation-danger {
  color: #ffffff;
}

.newsletter-section img {
  position: absolute;
  right: 65px;
  top: -35px;
  max-width: 400px;
  -webkit-animation: img-scale 5s infinite linear;
  animation: img-scale 5s infinite linear;
}

/* Newsletter CSS End */
/* Footer CSS Start */
/* =========================
   PREMIUM MODERN FOOTER
========================= */

.footer-area {
  padding-bottom: 91px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  padding: 100px 0 0;
}

.footer-wrapper {

  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-logo img {
  max-width: 220px;
  margin-bottom: 25px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.footer-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

.footer-contact i {
  margin-right: 12px;
  color: #ff6a00;
  font-size: 18px;
  margin-top: 4px;
}

.footer-contact a {
  color: #444;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ff6a00;
}

/* SOCIAL */
.footer-social {
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  background: #ffffff;
  margin-right: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: .3s ease;
  color: #ff6a00;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  color: #fff;
  transform: translateY(-4px);
}

/* RIGHT FORM */
.footer-right {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1c1c1c;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 15px;
  font-size: 14px;
  background: #f9fbfd;
  transition: .3s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.1);
  background: #fff;
  outline: none;
}

.footer-form button {
  width: 100%;
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  border: none;
  padding: 14px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  transition: .3s ease;
}

.footer-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* COPYRIGHT */
.copyright-area {
  margin-top: 80px;
  padding: 20px 0;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .footer-right {
    padding: 35px;
  }
}

.agency-footer {
  background: linear-gradient(120deg, #fff6f2, #ffe9df);
  color: #fff;
  padding: 90px 0 0;
  position: relative;
}

.footer-grid {
  row-gap: 50px;
}

.footer-col img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-brand h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-heading:after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff6a00;
  display: block;
  margin-top: 8px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  color: black;
}

.footer-links a,
.footer-contact a {
  color: #000000;
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ff6a00;
  padding-left: 5px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: .3s;
}

.footer-social a:hover {
  background: #ff6a00;
  color: #fff;
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border-radius: 12px;
}

.footer-cta {
  display: inline-block;
  margin-top: 15px;
  background: #ff6a00;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.footer-cta:hover {
  background: #ff3c00;
}

.footer-bottom {
  background: #1B5D5D;
  padding: 20px 0;
  margin-top: 70px;
  font-size: 14px;
}


/* Footer CSS End */
/*---------- Home Page One CSS End ----------*/
/*---------- Home Page Two CSS Strat ----------*/
/* Navbar CSS Start */
.nav-style-two {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-style-two .main-nav {
  background: transparent;
}

.nav-style-two .main-nav .navbar .navbar-nav .nav-item a {
  color: #ffffff;
}

.nav-style-two .main-nav .navbar .navbar-nav .nav-item a:hover {
  color: #ff440a;
}

.nav-style-two.is-sticky {
  background: #3c0c70;
  border-bottom: 0;
}

/* Navbar CSS End */
/* Banner CSS Start */
.banner-style-two.banner-bg {
  background-image: url(../img/banner/2.jpg);
  background-position: center center;
  background-size: cover;
  height: 1000px;
  position: relative;
  z-index: 0;
}

.banner-style-two.banner-bg::before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-style-two .banner-text h1 {
  font-size: 60px;
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  margin-bottom: 30px;
  font-weight: 700;
}

.banner-style-two .banner-text p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 35px;
}

.banner-style-two .banner-text .theme-btn .default-btn {
  padding: 18px 30px;
}

.banner-style-two .get-quote-section .quote-form {
  background: rgba(60, 12, 112, 0.5);
  padding: 45px 30px;
}

/* Banner CSS End */
/* Transport System CSS Start */
.transport-style-two {
  margin-top: -130px;
}

.transport-style-two .transport-card .transport-text p {
  margin-bottom: 0;
}

/* Transport System CSS End */
/* Why Choose CSS Start */
.choose-style-two .section-title p {
  margin: auto;
}

.choose-style-two .choose-card {
  text-align: center;
  padding: 25px;
  border-radius: 5px;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  border: 1px solid #eee0fe;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
}

.choose-style-two .choose-card::before {
  content: '';
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 5px;
  position: absolute;
  background: #3c0c70;
}

.choose-style-two .choose-card::after {
  content: '';
  width: 0;
  height: 0;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 5px;
  position: absolute;
  background: #3c0c70;
}

.choose-style-two .choose-card i {
  color: #ff440a;
  background: #fff0ec;
  margin-bottom: 20px;
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  line-height: 70px;
  font-size: 40px;
  -webkit-transition: .5s;
  transition: .5s;
}

.choose-style-two .choose-card h3 {
  font-size: 18px;
  margin-bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.choose-style-two .choose-card:hover::before,
.choose-style-two .choose-card:hover::after {
  width: 100%;
  height: 100%;
}

.choose-style-two .choose-card:hover h3 {
  color: #ffffff;
}

.choose-style-two .choose-card:hover i {
  color: #3c0c70;
}

.choose-style-two .why-choose-image {
  -webkit-animation: img-scale 5s infinite linear;
  animation: img-scale 5s infinite linear;
}

/* Why Choose CSS End */
/* Track Product CSS Start */
.track-product {
  padding-bottom: 200px;
}

.track-product .track-text h2 {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.track-product .track-text .newsletter-form {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.track-product .track-text .newsletter-form .form-control {
  height: 60px;
  padding: 20px;
  border-radius: 5px;
}

.track-product .track-text .newsletter-form ::-webkit-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.track-product .track-text .newsletter-form :-ms-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.track-product .track-text .newsletter-form ::-ms-input-placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.track-product .track-text .newsletter-form ::placeholder {
  color: #707070;
  font-size: 18px;
  text-transform: capitalize;
}

.track-product .track-text .newsletter-form .default-btn {
  font-size: 17px;
  background: #ff440a;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 5px;
  margin: 0;
  display: inline-block;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  right: 5px;
  top: 4px;
  border: 1px solid #ff440a;
}

.track-product .track-text .newsletter-form .default-btn::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 100%;
  left: -14px;
  top: 0;
  background: #ffffff;
  z-index: -1;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  -webkit-transition: .5s;
  transition: .5s;
}

.track-product .track-text .newsletter-form .default-btn:hover {
  color: #ff440a;
}

.track-product .track-text .newsletter-form .default-btn:hover::before {
  width: 100%;
  -webkit-transform: skewX(0);
  transform: skewX(0);
  left: 0;
}

.track-product.track-product-bg {
  background-image: url(../img/track-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.track-product.track-product-bg::before {
  position: absolute;
  content: '';
  background: rgba(60, 12, 112, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.track-product .lines {
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  z-index: -1;
}

.track-product .lines .line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  left: 50%;
  top: 0;
}

.track-product .lines .line::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 10px;
  background: #ffffff;
  left: 0;
  top: 0%;
  right: 0;
  margin: auto;
  -webkit-animation: line 8s infinite cubic-bezier(0.2, 0.69, 1, 1);
  animation: line 8s infinite cubic-bezier(0.2, 0.69, 1, 1);
}

.track-product .lines :nth-child(1) {
  margin-left: 25%;
}

.track-product .lines :nth-child(2)::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.track-product .lines :nth-child(3) {
  margin-left: -25%;
}

.track-product .lines :nth-child(3)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* Track Product CSS End */
/* Facilities CSS Start */
.facilities-section .facilities-text h2 {
  font-size: 35px;
  font-weight: 700;
  color: #3c0c70;
  margin-bottom: 10px;
}

.facilities-section .facilities-text p {
  margin-bottom: 30px;
}

.facilities-section .facilities-text ul {
  padding-left: 0;
  margin-bottom: 45px;
}

.facilities-section .facilities-text ul li {
  list-style: none;
  font-size: 20px;
  color: #3c0c70;
  margin-bottom: 5px;
}

.facilities-section .facilities-text ul li i {
  color: #ffffff;
  background: #ff9979;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  line-height: 25px;
  font-size: 15px;
  margin-right: 5px;
  top: -3px;
  position: relative;
}

.facilities-section .facilities-text .theme-btn .default-btn {
  border: 1px solid #ff440a;
}

.facilities-section .facilities-img {
  background-image: url(../img/facilities-img.jpg);
  background-position: center center;
  background-size: cover;
  height: 100%;
}

/* Facilities CSS End */
/* Company CSS Start */
.company-style-two {
  padding-top: 100px;
  padding-bottom: 100px;
}

.company-style-two .section-title p {
  margin: auto;
}

.company-style-two .company-slider {
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  padding: 0;
}

/* Compnay CSS End */
/* Feedback CSS Start */
.feedback-style-two {
  padding-bottom: 100px;
}

/* Feedback CSS End */
/* Contact CSS Start */
.contact-section {
  background: #f7efff;
}

.contact-section .section-title p {
  margin: auto;
}

.contact-section .contact-img {
  background-image: url(../img/contact.jpg);
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.contact-section .contact-area h2 {
  font-size: 35px;
  font-weight: 600;
  color: #3c0c70;
  margin-bottom: 30px;
}

.contact-section .contact-area .form-group {
  margin-bottom: 20px;
}

.contact-section .contact-area .form-group .form-control {
  height: 60px;
  padding: 20px;
  border: 1px solid #d8b5ff;
}

.contact-section .contact-area .form-group .message-field {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #d8b5ff;
  outline: 0;
}

.contact-section .contact-area .form-group ::-webkit-input-placeholder {
  color: #a1a1a1;
  font-size: 16px;
}

.contact-section .contact-area .form-group :-ms-input-placeholder {
  color: #a1a1a1;
  font-size: 16px;
}

.contact-section .contact-area .form-group ::-ms-input-placeholder {
  color: #a1a1a1;
  font-size: 16px;
}

.contact-section .contact-area .form-group ::placeholder {
  color: #a1a1a1;
  font-size: 16px;
}

.contact-section .contact-area .form-group .list-unstyled {
  color: #ff440a;
  font-size: 15px;
}

.contact-section .contact-area .default-btn {
  font-size: 18px;
  background: #ff440a;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 5px;
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 1px solid #ff440a;
}

.contact-section .contact-area .default-btn::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 100%;
  left: -14px;
  top: 0;
  background: #ffffff;
  z-index: -1;
  -webkit-transform: skewX(10deg);
  transform: skewX(10deg);
  -webkit-transition: .5s;
  transition: .5s;
}

.contact-section .contact-area .default-btn:hover {
  color: #ff440a;
}

.contact-section .contact-area .default-btn:hover::before {
  width: 100%;
  -webkit-transform: skewX(0);
  transform: skewX(0);
  left: 0;
}

.contact-section .contact-area .text-danger {
  font-size: 20px;
  margin-top: 10px;
}

/* Contact CSS End */
/* Newsletter CSS Start */
.newsletter-style-two {
  background: #f7efff;
}

/* Newsletter CSS End */
/*---------- Home Page Two CSS End ----------*/
/*---------- Home Page Three CSS Start ----------*/
/* Banner CSS start */
.banner-style-three {
  height: 100vh;
  position: relative;
  background: #3c0c70;
  padding-top: 60px;
}

.banner-style-three .banner-text {
  max-width: 650px;
}

.banner-style-three .banner-text h1 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Titillium Web", sans-serif;
  color: #ffffff;
  margin-bottom: 40px;
}

.banner-style-three .banner-text .theme-btn .default-btn {
  padding: 15px 25px;
}

.banner-style-three .banner-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 570px;
  border-radius: 10px;
}

.banner-style-three .banner-image img {
  border-radius: 10px;
}

.banner-style-three .banner-shape img {
  position: absolute;
  -webkit-animation: img-scale 5s infinite linear;
  animation: img-scale 5s infinite linear;
}

.banner-style-three .banner-shape :nth-child(1) {
  top: 20%;
  left: 10%;
}

.banner-style-three .banner-shape :nth-child(2) {
  top: 20%;
  left: 30%;
}

.banner-style-three .banner-shape :nth-child(3) {
  top: 20%;
  right: 10%;
}

.banner-style-three .banner-shape :nth-child(4) {
  bottom: 10%;
  left: 50%;
}

.banner-style-three .banner-shape :nth-child(5) {
  top: 30%;
  left: 50%;
}

.banner-style-three .banner-shape :nth-child(6) {
  bottom: 5%;
  left: 15%;
}

/* Banner CSS End */
/* About CSS Start */
.about-style-three {
  padding-bottom: 100px;
}

.about-style-three .about-img::before {
  background: #3c0c70;
  width: 90px;
  height: 150px;
  top: -65px;
  left: 0;
  -webkit-animation: none;
  animation: none;
  border-radius: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.about-style-three .about-img::after {
  background: #3c0c70;
  width: 90px;
  height: 150px;
  bottom: -60px;
  right: 15px;
  -webkit-animation: none;
  animation: none;
  border-radius: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: inherit;
}

.about-style-three .about-img img {
  border-radius: 10px;
}

/* About CSS End */
/* Trasnport CSS Start */
.transport-style-five .section-title p {
  margin: auto;
}

.transport-style-five .transport-card {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
}

.transport-style-five .transport-card img {
  margin-bottom: 30px;
}

.transport-style-five .transport-card h3 {
  margin-bottom: 10px;
}

.transport-style-five .transport-card p {
  margin-bottom: 0;
}

/* Transport CSS End */
/* Achivement CSS Start */
.achivement-section .section-title h2 {
  color: #ffffff;
}

.achivement-section .section-title p {
  color: #ffffff;
  margin: auto;
}

.achivement-section .company-section {
  margin-top: 0;
  margin-bottom: 60px;
}

.achivement-section .features-section {
  margin-top: 0;
}

.achivement-section .features-section .feature-card {
  border: 0;
}

.achivement-section .features-section .feature-card:hover {
  background: #ff440a;
}

.achivement-section .features-section .feature-card:hover span,
.achivement-section .features-section .feature-card:hover h3,
.achivement-section .features-section .feature-card:hover p {
  color: #ffffff;
}

.achivement-bg {
  background-image: url(../img/achivement-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 0;
}

.achivement-bg::before {
  position: absolute;
  content: '';
  background: rgba(60, 12, 112, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Achivement CSS End */
/* Feedback CSS Start */
.feedback-style-three .section-title p {
  margin: auto;
}

.feedback-style-three .feedback-slider-area {
  position: relative;
}

.feedback-style-three .feedback-slider-area .slider-items {
  max-width: 500px;
  margin: auto;
}

.feedback-style-three .feedback-slider-area .slider-items img {
  width: unset;
  margin: 0 auto 30px;
}

.feedback-style-three .feedback-slider-area .slider-items .client-info {
  margin-bottom: 15px;
}

.feedback-style-three .feedback-slider-area .slider-items .client-info h3 {
  margin-bottom: 0px;
}

.feedback-style-three .feedback-slider-area .slider-items .client-info span {
  color: #ff440a;
  font-size: 15px;
}

.feedback-style-three .feedback-slider-area .owl-prev,
.feedback-style-three .feedback-slider-area .owl-next {
  position: absolute;
  left: 20px;
  top: 45%;
  background: #ff440a !important;
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-size: 25px !important;
  line-height: 50px !important;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
  border: 1px solid #ff440a;
}

.feedback-style-three .feedback-slider-area .owl-prev:hover,
.feedback-style-three .feedback-slider-area .owl-next:hover {
  background: #ffffff !important;
  color: #ff440a !important;
}

.feedback-style-three .feedback-slider-area .owl-next {
  left: inherit;
  right: 20px;
}

.feedback-style-three .feedback-slider-area:hover .owl-prev {
  left: 40px;
  opacity: 1;
  border: 1px solid #ff440a;
}

.feedback-style-three .feedback-slider-area:hover .owl-next {
  right: 40px;
  opacity: 1;
  border: 1px solid #ff440a;
}

.feedback-style-three .feedback-slider-area .owl-nav {
  margin-top: 0;
}

/* Feedback CSS End */
/*---------- Home Page Three CSS End ----------*/
/*---------- About Page CSS Start ----------*/
/* Page Title CSS Start */
/* ==============================
   Premium Inner Hero (Bootstrap 4)
============================== */

.inner-hero {
  position: relative;
  padding-top: 75px;
  height:300px;
  background: url('../img/page-bg/1.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Balanced Dark Overlay */
.inner-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(358deg, #ada4a4, #f3450a);
  z-index: 1;
}

/* Ensure content above overlay */
.inner-hero .container,
.inner-hero .row,
.hero-content {
  position: relative;
  z-index: 2;
}

/* Heading */
.hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Bootstrap breadcrumb reset */
.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.custom-breadcrumb .breadcrumb-item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.custom-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: 0.3s;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #ff440a;
}

/* Separator */
.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.6);
}

/* Active item */
.custom-breadcrumb .breadcrumb-item.active {
  color: #0f2f2f;
  font-weight: 500;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 991px) {
  .inner-hero {
    height: 340px;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .inner-hero {
      padding-top: 0px;

    height: 150px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .custom-breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
}


/* Page Title CSS End*/
/* About Scetion CSS Start*/
.about-style-two {
  padding-top: 100px;
}

.about-style-two .about-img::before {
  background: none;
  border: 2px solid #ff440a;
}

.about-style-two .about-img::after {
  display: none;
}

/* About Section CSS End*/
/* Choose Section CSS Start*/
.choose-style-three .why-choose-img::before {
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.choose-style-three .why-choose-img:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

/* Choose Section CSS End*/
/* Worker Section CSS Start */
.worker-style-two .worker-card {
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
}

.worker-style-two .worker-card .worker-img img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  border-radius: 200px;
}

.worker-style-two .worker-card .worker-text {
  padding-bottom: 0;
}

.worker-style-two .worker-card .worker-social {
  display: none;
}

.worker-style-two .worker-card:hover .worker-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
}


.newSlide-carousel img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.newSlide-carousel .owl-nav {
  position: absolute;
  bottom: 30px;
  right: 50px;
}

.newSlide-carousel .owl-nav {
  gap: 10px;
  display: flex;
}

.newSlide-carousel .owl-nav button {
  display: inline-block;
  height: 30px;
  width: 30px;
  border: 2px solid #cccccc !important;
  background-color: #fbfbfb !important;
}

.newSlide-carousel .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #392f2f !important;
  text-decoration: none;
}

.newSlide-carousel .owl-nav .owl-prev::before {
  font: normal normal normal 16px / 1 "LineAwesome";
  content: "\f185";
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.newSlide-carousel .owl-nav .owl-next::before {
  font: normal normal normal 16px / 1 "LineAwesome";
  content: "\f186";
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.ht {
  color: #000;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  line-height: 24px;
}

/* Worker Section CSS End */
/* Blog Section CSS Start */
.blog-style-two .blog-card .blog-img {
  position: relative;
}

.blog-style-two .blog-card .blog-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-style-two .blog-card .blog-img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.blog-style-two .blog-card:hover .blog-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.blog-style-two .blog-card:hover .blog-img::before {
  -webkit-animation: circle .75s;
  animation: circle .75s;
}

/* Blog Section CSS End */
/*---------- About Page CSS End ----------*/
/*---------- Service Page Two CSS Start ----------*/
/* Page Title Start */
.page-title.title-bg-2 {
  background-image: url(../img/page-bg/2.jpg);
}

/* Page Title End */
/* Transport Section Start */
.transport-style-three .transport-card .transport-img {
  position: relative;
}

.transport-style-three .transport-card .transport-img::before {
  position: absolute;
  content: '';
  background: #3c0c70;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, -100%) skewX(10deg);
  transform: translate(-100%, -100%) skewX(10deg);
  opacity: .5;
  -webkit-transition: .5s;
  transition: .5s;
}

.transport-style-three .transport-card .transport-img::after {
  position: absolute;
  content: '';
  background: #3c0c70;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(100%, 100%) skewX(10deg);
  transform: translate(100%, 100%) skewX(10deg);
  opacity: .5;
  -webkit-transition: .5s;
  transition: .5s;
}

.transport-style-three .transport-card .transport-text {
  padding: 30px;
}

.transport-style-three .transport-card:hover .transport-img img {
  -webkit-transform: none;
  transform: none;
}

.transport-style-three .transport-card:hover .transport-img::before {
  -webkit-transform: translate(-60%, -60%) skewX(10deg);
  transform: translate(-60%, -60%) skewX(10deg);
}

.transport-style-three .transport-card:hover .transport-img::after {
  -webkit-transform: translate(60%, 60%) skewX(10deg);
  transform: translate(60%, 60%) skewX(10deg);
}

/* Transport Sectio End */
/*---------- Service Page One CSS End ----------*/
/*---------- Service Page Two CSS Start ----------*/
.page-title.title-bg-3 {
  background-image: url(../img/page-bg/3.jpg);
}

.transport-style-four .transport-card {
  padding: 25px;
}

.transport-style-four .transport-card .transport-text {
  padding: 0;
}

.transport-style-four .transport-card .transport-text i {
  position: unset;
  display: inline-block;
  margin-bottom: 35px;
}

.transport-style-four .transport-card .transport-text a i {
  background: transparent;
  color: #ff440a;
  width: 55px;
  height: 55px;
  font-size: 30px;
  line-height: 55px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 0 0;
  box-shadow: 0 0 0 0;
  position: unset;
  border: 1px dashed #ff440a;
}

.transport-style-four .transport-card:hover a i {
  -webkit-animation: none !important;
  animation: none !important;
}

.footer-style-two {
  padding-top: 100px;
}

/*---------- Service Page Two CSS End ----------*/
/*---------- Service Details CSS Start ----------*/
/* Blog Details CSS Start */
.service-details-area .service-post-area .service-details-img {
  margin-bottom: 30px;
}

.service-details-area .service-post-area .service-details-img img {
  width: 100%;
  border-radius: 5px;
}

.service-details-area .service-post-area h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3c0c70;
}

.service-details-area .service-post-area p {
  margin-bottom: 15px;
}

.service-details-area .service-post-area ul {
  margin-bottom: 15px;
  padding-left: 0;
}

.service-details-area .service-post-area ul li {
  list-style: none;
  color: #3c0c70;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details-area .service-post-area .post-img {
  margin-top: 15px;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-radius: 10px;
}

.service-details-area .service-post-area .post-img img {
  border-radius: 10px;
}

.service-details-area .service-sidebar .sidebar-widget {
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-details-area .service-sidebar .sidebar-widget h3 {
  font-size: 20px;
  padding: 20px;
  color: #ffffff;
  background: #3c0c70;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
}

.service-details-area .service-sidebar .sidebar-widget ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.service-details-area .service-sidebar .sidebar-widget ul li {
  font-size: 17px;
  padding: 10px 20px;
  border-bottom: 1px inset;
  font-weight: 600;
  -webkit-transition: .5s;
  transition: .5s;
}

.service-details-area .service-sidebar .sidebar-widget ul li i {
  font-weight: 600;
  margin-right: 5px;
}

.service-details-area .service-sidebar .sidebar-widget ul li:last-child {
  border-bottom: 0px solid #3c0c70;
}

.service-details-area .service-sidebar .sidebar-widget ul li:hover {
  background: #ff440a;
  color: #ffffff;
}

.service-details-area .service-sidebar .sidebar-widget ul li:hover a {
  color: #ffffff;
}

.service-details-area .service-sidebar .sidebar-widget ul li a {
  color: #545454;
}

.service-details-area .service-sidebar .sidebar-widget ul li a i {
  font-weight: 600;
  margin-right: 5px;
}

/* Blog Details CSS End */
/* Company CSS Start */
.company-style-three {
  margin-top: 0;
}

/* Company CSS End */
/*---------- Service Details CSS End ----------*/
/*---------- Why Choose Page CSS Start ----------*/
.page-title.title-bg-10 {
  background-image: url(../img/page-bg/10.jpg);
}

.choose-style-three .choose-card::before {
  height: 100%;
}

.choose-style-three .choose-card::after {
  height: 100%;
}

/*---------- Why Choose Page CSS End ----------*/
/*---------- Faq Page CSS Start ----------*/
.page-title.title-bg-4 {
  background-image: url(../img/page-bg/4.jpg);
}

.faq-section .accordions .accordion-item {
  background-color: #f9f9f9;
  margin-bottom: 30px;
  border: 1px solid #3c0c70;
}

.faq-section .accordions .accordion-item .accordion-title {
  cursor: pointer;
  padding: 15px 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #ffffff;
  position: relative;
}

.faq-section .accordions .accordion-item .accordion-title.active-title {
  background-color: #3c0c70;
}

.faq-section .accordions .accordion-item .accordion-title.active-title h2 {
  color: #ffffff;
}

.faq-section .accordions .accordion-item .accordion-title.active-title h2 i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq-section .accordions .accordion-item .accordion-title h2 {
  margin: 0;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #3c0c70;
  line-height: 20px;
}

.faq-section .accordions .accordion-item .accordion-title h2 i {
  font-size: 25px;
  position: inherit;
}

.faq-section .accordions .accordion-item .accordion-content {
  display: none;
  line-height: 1.7;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
}

.faq-section .accordions .accordion-item .accordion-content.active {
  display: block;
}

.faq-section .accordions .accordion-item .accordion-content p {
  margin: 0;
}

/*---------- Faq Page CSS End ----------*/
/*---------- Error Page CSS Start ----------*/
.page-title.title-bg-4 {
  background-image: url(../img/page-bg/4.jpg);
}

.error-section {
  position: relative;
}

.error-section::before {
  position: absolute;
  content: '';
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  background: linear-gradient(45deg, #3023AE 0%, #f09 100%);
  border-radius: 42% 58% 61% 39% / 55% 53% 47% 45%;
  opacity: .15;
  -webkit-animation: fluid 5s infinite linear;
  animation: fluid 5s infinite linear;
}

.error-section h2 {
  font-size: 50px;
  color: #3c0c70;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  margin-top: 35px;
}

.error-section .theme-btn .default-btn {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #ff440a;
  padding: 15px 40px;
}

/*---------- Error Page CSS End ----------*/
/*---------- Why Choose Page CSS Start ----------*/
.page-title.title-bg-5 {
  background-image: url(../img/page-bg/5.jpg);
}

/*---------- Why Choose Page CSS End ----------*/
/*----------  Privacy Page CSS Start ----------*/
.privacy-section .privacy-text h2 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 700;
}

.privacy-section .privacy-text p {
  margin-bottom: 15px;
}

.privacy-section .privacy-text p:last-child {
  margin-bottom: 0;
}

/*----------  Privacy Page CSS End ----------*/
/*----------  Terms Page CSS Start ----------*/
.page-title.title-bg-9 {
  background-image: url(../img/page-bg/9.jpg);
}

.terms-section .terms-text h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #3c0c70;
}

.terms-section .terms-text h3 {
  margin-bottom: 10px;
}

.terms-section .terms-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.terms-section .terms-text p:last-child {
  margin-bottom: 0;
}

/*----------  Terms Page CSS End ----------*/
/*----------  Coming Page CSS Start ----------*/
.coming-soon {
  height: 100vh;
}

.coming-soon h2 {
  margin-bottom: 20px;
}

.coming-soon a {
  color: #ff440a;
}

.coming-soon a:hover {
  color: #ffffff;
}

/*----------  Coming Page CSS End ----------*/
/*----------  Blog Page One CSS Start ----------*/
.page-title.title-bg-6 {
  background-image: url(../img/page-bg/6.jpg);
}

/*----------  Blog Page One CSS End ----------*/
/*----------  Blog Page Two CSS Start ----------*/
.page-title.title-bg-7 {
  background-image: url(../img/page-bg/7.jpg);
}

.blog-style-three .blog-card .blog-img {
  position: relative;
}

.blog-style-three .blog-card .blog-img .blog-btn {
  top: 0;
  left: 0;
  right: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-transition: .5s;
  transition: .5s;
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.blog-style-three .blog-card .blog-img .blog-btn a {
  left: 0;
  top: 40%;
  right: 0;
  width: 40px;
  margin: auto;
  height: 40px;
  line-height: 40px;
  border: 1px solid;
  text-align: center;
  position: absolute;
  color: #ffffff;
  border-radius: 45px;
  display: inline-block;
  background: transparent;
}

.blog-style-three .blog-card .blog-img .blog-btn a:hover {
  background: #3c0c70;
}

.blog-style-three .blog-card .blog-text p {
  margin-bottom: 0;
}

.blog-style-three .blog-card:hover .blog-img img {
  -webkit-transform: none;
  transform: none;
}

.blog-style-three .blog-card:hover .blog-img .blog-btn {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.blog-style-three nav .pagination {
  margin: 30px 0;
}

.blog-style-three nav .pagination .page-item .page-link {
  color: #545454;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  border: none;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(60, 60, 60, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(60, 60, 60, 0.1);
  border-radius: 50px;
  margin: 0 5px;
}

.blog-style-three nav .pagination .page-item .page-link.active {
  background: #3c0c70;
  color: #ffffff;
}

.blog-style-three nav .pagination .page-item .page-link:hover {
  background: #3c0c70;
  color: #ffffff;
}

/*----------  Blog Page Two CSS End ----------*/
/*----------  Blog Details Page Two CSS Start ----------*/
.page-title.title-bg-7 {
  background-image: url(../img/page-bg/7.jpg);
}

.blog-details-area .blog-post-area .blog-details-img {
  margin-bottom: 30px;
}

.blog-details-area .blog-post-area .blog-details-img img {
  width: 100%;
  border-radius: 5px;
}

.blog-details-area .blog-post-area h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3c0c70;
}

.blog-details-area .blog-post-area p {
  margin-bottom: 15px;
}

.blog-details-area .blog-post-area ul {
  margin-bottom: 15px;
  padding-left: 0;
}

.blog-details-area .blog-post-area ul li {
  list-style: none;
  color: #3c0c70;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-details-area .blog-post-area .post-img {
  margin-top: 15px;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-radius: 10px;
}

.blog-details-area .blog-post-area .post-img img {
  border-radius: 10px;
}

.blog-details-area .blog-sidebar .blog-search {
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px;
}

.blog-details-area .blog-sidebar .blog-search form {
  position: relative;
}

.blog-details-area .blog-sidebar .blog-search form input {
  width: 100%;
  height: 50px;
  padding: 20px;
  background: #ddd;
  border: 0;
  border-radius: 5px;
}

.blog-details-area .blog-sidebar .blog-search form input:focus {
  border: 1px solid #3c0c70;
  outline: 0;
}

.blog-details-area .blog-sidebar .blog-search form ::-webkit-input-placeholder {
  color: #3c0c70;
}

.blog-details-area .blog-sidebar .blog-search form :-ms-input-placeholder {
  color: #3c0c70;
}

.blog-details-area .blog-sidebar .blog-search form ::-ms-input-placeholder {
  color: #3c0c70;
}

.blog-details-area .blog-sidebar .blog-search form ::placeholder {
  color: #3c0c70;
}

.blog-details-area .blog-sidebar .blog-search form button {
  position: absolute;
  top: 4px;
  right: 2px;
}

.blog-details-area .blog-sidebar .blog-search form button i {
  color: #3c0c70;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  border: 1px solid;
  border-radius: 20px;
  -webkit-transition: .5s;
  transition: .5s;
  background: #dddddd;
}

.blog-details-area .blog-sidebar .blog-search form button i:hover {
  background: #3c0c70;
  color: #ffffff;
}

.blog-details-area .blog-sidebar .blog-widget {
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-details-area .blog-sidebar .blog-widget h3 {
  padding: 20px;
  color: #ffffff;
  background: #3c0c70;
  margin-bottom: 0;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
}

.blog-details-area .blog-sidebar .blog-widget .post-item {
  padding: 20px;
  border-bottom: 1px dashed #dddddd;
  overflow: hidden;
}

.blog-details-area .blog-sidebar .blog-widget .post-item a {
  float: left;
}

.blog-details-area .blog-sidebar .blog-widget .post-item .post-info {
  padding-left: 100px;
  padding-top: 10px;
  line-height: 1;
}

.blog-details-area .blog-sidebar .blog-widget .post-item .post-info time {
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
}

.blog-details-area .blog-sidebar .blog-widget .post-item .post-info h4 a {
  font-size: 16px;
  color: #545454;
  font-weight: 600;
}

.blog-details-area .blog-sidebar .blog-widget .post-item .post-info h4 a:hover {
  color: #ff440a;
}

.blog-details-area .blog-sidebar .blog-widget .post-item:last-child {
  border-bottom: 0;
}

.blog-details-area .blog-sidebar .blog-widget ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-area .blog-sidebar .blog-widget ul li {
  font-size: 17px;
  padding: 10px 20px;
  border-bottom: 1px inset;
  font-weight: 600;
  -webkit-transition: .5s;
  transition: .5s;
}

.blog-details-area .blog-sidebar .blog-widget ul li a {
  color: #545454;
}

.blog-details-area .blog-sidebar .blog-widget ul li a i {
  font-weight: 600;
}

.blog-details-area .blog-sidebar .blog-widget ul li:last-child {
  border-bottom: 0px solid #3c0c70;
}

.blog-details-area .blog-sidebar .blog-widget ul li:hover {
  background: #ff440a;
  color: #ffffff;
}

.blog-details-area .blog-sidebar .blog-widget ul li:hover a {
  color: #ffffff;
}

.blog-details-area .blog-sidebar .blog-tags ul {
  padding: 20px;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-area .blog-sidebar .blog-tags ul li {
  display: inline-block;
  padding: 0;
  border-bottom: 0;
}

.blog-details-area .blog-sidebar .blog-tags ul li:hover {
  background: transparent;
}

.blog-details-area .blog-sidebar .blog-tags ul li a {
  font-size: 15px;
  -webkit-transition: .5s;
  transition: .5s;
  font-weight: 400;
  border: 1px dashed #dddddd;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 10px;
  color: #545454;
  padding: 5px 15px;
}

.blog-details-area .blog-sidebar .blog-tags ul li a:hover {
  background: #ff440a;
  color: #ffffff;
}

/*----------  Blog Details Page Two CSS End ----------*/

/*----------  Contact Page Two CSS End ----------*/
/* PreLoader CSS Start */
.loader-content {
  background: #3c0c70;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  text-align: center;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* PreLoader CSS End */
/* Back Top CSS Start */
.top-btn i {
  width: 40px;
  height: 50px;
  color: #ffffff;
  background: #3c0c70;
  text-align: center;
  border-radius: 5px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
  line-height: 50px;
  z-index: 999;
  -webkit-transition: .5s;
  transition: .5s;
  display: inline-block;
}

.top-btn i::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  background: #000;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: .5s;
  transition: .5s;
}

.top-btn i:hover::before {
  height: 100%;
}

.top-btn i:hover {
  color: #ffffff;
}

/* Back Top CSS End */
/* Animation CSS  Start */
@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes rotate360 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@-webkit-keyframes translate-one {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes translate-one {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes line {
  0% {
    top: 0%;
  }

  100% {
    top: 95%;
  }
}

@keyframes line {
  0% {
    top: 0%;
  }

  100% {
    top: 95%;
  }
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}



.iconWrap img {
  width: 110px;
  margin: 0 auto 10px;
  display: table;
}


@-webkit-keyframes fluid {
  0% {
    border-radius: 42% 58% 61% 39% / 55% 53% 47% 45%;
  }

  30% {
    border-radius: 61% 39% 60% 40% / 58% 49% 51% 42%;
  }

  50% {
    border-radius: 63% 37% 62% 38% / 45% 53% 47% 55%;
  }

  60% {
    border-radius: 42% 58% 61% 39% / 55% 53% 47% 45%;
  }
}

@keyframes fluid {
  0% {
    border-radius: 42% 58% 61% 39% / 55% 53% 47% 45%;
  }

  30% {
    border-radius: 61% 39% 60% 40% / 58% 49% 51% 42%;
  }

  50% {
    border-radius: 63% 37% 62% 38% / 45% 53% 47% 55%;
  }

  60% {
    border-radius: 42% 58% 61% 39% / 55% 53% 47% 45%;
  }
}

@-webkit-keyframes bg-cng {
  0% {
    background: #f5ebff;
  }

  35% {
    background: #ff440a;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  70% {
    background: #3c0c70;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    background: #f5ebff;
  }
}

@keyframes bg-cng {
  0% {
    background: #f5ebff;
  }

  35% {
    background: #ff440a;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  70% {
    background: #3c0c70;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    background: #f5ebff;
  }
}

@-webkit-keyframes img-scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes img-scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}




.iconWrap h3 {
  text-transform: uppercase;
  color: #ed1c24;
  font-size: 19px;
  text-align: center;
  float: left;
  width: 100%;
  margin: 0 0 30px;
}

.clt {
  color: #fff;
  margin: 0 0 10px;
  float: left;
  width: 100%;
}


.clt a {
  float: left;
}

.clt a:first-child {
  float: left;
  margin: 0px;
}


.info h4 {
  color: #fff;
  text-align: left;
  margin: 0 0 14px;
}


.info strong {
  color: #fff208;
  width: 120px;
  float: left;
  text-align: left;
}








.phone1_icon {
  width: 55px;
  height: 55px;
  position: fixed;
  bottom: 50px;
  left: 20px;
  z-index: 100;
  animation: wiggles .3s infinite alternate;
}

.whatsapp_icon {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  animation: wiggle .3s infinite alternate;
}




#catalog1 {
  z-index: 100;
  position: fixed;
  top: 40%;
  right: 0;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

#catalog img.ctt1 {
  width: 32.7px;
}

#catalog1:hover {
  right: 120px;
}

#catalog_inner1 {
  position: fixed;
  top: 40%;
  right: -120px;
  width: 120px;
  height: 174px;
  background: #f00;
  padding: 10px 10px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 1;
}



#catalog1:hover #catalog_inner1 {
  right: 0;
}

#catalog_inner1 img {
  width: 220px;
  padding: 35px 10px 35px;
  background: #fff;
}


#catalog1 img.ctt {
  width: 32.5px;
}












#enquiry {
  z-index: 100;
  top: 30%;
  left: 0;
  background: 0 0;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .5s
}

#enquiry .form-control {
  border-radius: 0;
  margin-bottom: 9px
}

#enquiry_inner {
  top: 21%;
  left: -250px;
  width: 250px;
  min-height: auto;
  padding: 10px 10px 20px;
  float: left;
  display: block;
  background: #e4332b;
  border: 3px solid #e4332b;
  -moz-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .5s;
}

#enquiry_inner h5 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  padding: 5px 0;
  margin-bottom: 10px
}

#enquiry_inner .form-item {
  width: 100%;
  padding: 5px 8px;
  border: 0;
  outline: 0;
  background: #f0f0f0;
  color: #2e3192;
  border: 2px solid rgba(46, 49, 146, .5);
  margin-bottom: 1em
}

#enquiry_inner input[placeholder] {
  color: #000 !important
}

#enquiry_inner .form-item:focus,
#enquiry_inner .form-item:hover {
  box-shadow: 0 0 5px #e4322b;
  border: 2px solid #e4322b
}

#enquiry_inner .buttons button {
  font-family: 'Trebuchet MS';
  padding: 10px 12px;
  font-size: 14px;
  outline: 0;
  width: 30%;
  margin-right: 1em
}

#enquiry_inner .submit-btn {
  padding: 8px !important;
  background: #e4322b;
  border: none;
  color: #fff;
  opacity: 1;
  transition: background .2s ease-in, opacity .2s ease-in
}

#enquiry_inner .submit-btn:hover {
  background: #2e3192
}

#enquiry_inner .reset-btn {
  padding: 7px !important;
  background: 0 0;
  border: 1px solid #e4322b;
  color: #2e3192;
  transition: background .2s ease-in, opacity .2s ease-in, color .2s ease-in
}

#enquiry_inner .reset-btn:hover {
  background: #e4322b;
  color: #fff
}

#enquiry,
#enquiry_inner {
  position: fixed;
}


.ent .modal-content {
  background-color: #754712;
  border: 1px solid #754712;
}


.ent .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}


.ent .form-control {
  border-radius: 0;
  height: 45px;
  background: white;
  border: none;
  color: #fff;
}


















@media (min-width:768px) {
  .modal-dialog {
    max-width: 370px;
  }


}

@media (max-width:500px) {

  .get-quote-section .quote-text .offer-text p {
    right: -228px;
    width: 250px;
  }







}

.header-area .header-left ul li {
  color: #ffffff;
}

.header-area .header-left ul li i {
  color: #ffeb3b;
  margin-right: 6px;
  display: inline-block;
}


@media (min-width: 992px) {
  .features-section .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
  }
}


video {
  object-fit: cover;
}

.bgHome {
  background-image: url(https://adkeymedia.co.in/mobimeal/images/about.jpg);
  text-align: center;
  margin: 0 0 70px;
  background-size: cover;
  background-repeat: no-repeat;
  height: 360px;
}

.bgHome h2 {
  margin: 0;
  color: #fff;
}

.bgHome .section-title {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}