:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #de5034;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #003a66;
  --bs-secondary: #de5034;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f0f5fb;
  --bs-dark: #003a66;
  --bs-font-sans-serif:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1c1c;
  background-color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #1c1c1c;
}
h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

.bg-secondary {
  background: linear-gradient(
    90deg,
    #f26a3d 0%,
    #e33a2c 50%,
    #c4161c 100%
  ) !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: #e85f00 !important;
  color: var(--bs-white) !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn.btn-primary:hover {
  background: #e65539 !important;
  color: var(--bs-white);
  border: 1px solid var(--bs-white);
}

.btn.btn-secondary {
  background: transparent;
  color: var(--bs-secondary);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: none;
  transition: 0.5s;
}

.btn.btn-secondary:hover {
  color: var(--bs-primary) !important;
}

/*** Section Title Start ***/
.section-title {
  text-align: center;
  margin: 0 auto;
}

.section-title .sub-style {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #de5034;
}

.section-title .sub-style::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-bottom: -6px;
  margin-left: -100px;
  border: 1px solid #de5034 !important;
}

.section-title .sub-style::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-top: -8px;
  margin-left: -50px;
  border: 1px solid #000 !important;
}

.sub-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #444;
  font-weight: bold;
}

.sub-title::before {
  content: "";
  width: 100px;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-bottom: -8px;
  margin-right: -100px;
  border: 1px solid #de5034 !important;
}

.sub-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -6px;
  margin-right: -50px;
  border: 1px solid #444 !important;
}
/*responsive  line*/
@media (max-width: 768px) {
  .section-title .sub-style::before {
    width: 25px;
    margin-left: -30px;
  }

  .section-title .sub-style::after {
    width: 15px;
    margin-left: -20px;
  }

  .sub-title::before {
    width: 25px;
    margin-right: -25px;
  }

  .sub-title::after {
    width: 15px;
    margin-right: -18px;
  }

  .sub-title {
    font-size: 12px;
  }
}
.curtain-btn {
  margin-left: 15px;
}

@media (max-width: 768px) {
  .curtain-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .text-start {
    text-align: center !important;
  }

  .btn-primary1 {
    width: 100%;
  }
}
/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  position: relative;
  margin-right: 20px;
  padding: 30px 0;
  color: #000 !important;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: #000 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #de5034 !important;
}

.navbar-light .navbar-brand img {
  max-height: 70px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 0px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: #de5034;
  color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: #fff !important;

  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary) !important;
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 991.98px) {
  .sticky-top .navbar-light {
    background: var(--bs-white) !important;
  }

  /*** Top and Bottom borders go out ***/
  .navbar-light .navbar-nav .nav-link:after,
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    top: 30px;
    bottom: 30px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #de5034;
    opacity: 0;
    transition: all 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:before {
    bottom: auto;
  }

  .navbar-light .navbar-nav .nav-link:after {
    top: auto;
  }

  .navbar-light .navbar-nav .nav-link:hover:before,
  .navbar-light .navbar-nav .nav-link.active:before {
    top: 20px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    bottom: 20px;
    opacity: 1;
  }
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
    url(../img/bus-car-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: cover;
  padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
  width: 4rem;
  height: 4rem;
  margin-left: -60px;
  border-radius: 50%;
  background-size: 60% 60%;
  transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  margin-left: 0;
  margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
  padding-bottom: 0;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-primary);
  border-radius: 50%;
  margin-right: 30px;
  transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
  width: 8px;
  height: 8px;
  border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header {
    height: 700px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-top: 500px;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon {
    margin-left: 0px;
  }

  .carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-right: 0px;
  }

  .carousel-header .carousel .carousel-indicators {
    padding: 0;
  }
}
/*** Carousel Hero Header End ***/

/*** Counter Facts Start ***/

.counter-facts {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/bus-car-1.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
}
.counter-facts .counter {
  position: relative;
  text-align: center;
  width: 180px;
  min-height: 215px;
  padding: 10px 15px;
  margin: 0 auto;
  border-radius: 100px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
  background: var(--bs-white);
  margin-top: 50px;
}
.counter-facts .counter:before {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #f26a3d 0%, #e33a2c 50%, #c4161c 100%);
}
.counter-facts .counter .counter-icon {
  position: relative;
  width: 120px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 10px 10px 0 0;
  transform: translateY(-20px);
  font-size: 50px;
  line-height: 90px;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(242, 106, 61, 0.9),
    rgba(227, 58, 44, 0.9)
  );
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 90px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(
    90deg,
    rgba(227, 58, 44, 0.6),
    rgba(196, 22, 28, 0.6)
  );
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
  transform: rotate(360deg);
  transition: all 0.3s ease;
}
.counter-facts .counter h3 {
  color: #c4161c;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
  font-size: 30px;
  font-weight: 700;
  display: block;
  color: #e33a2c;
}

@media screen and (max-width: 1200px) {
  .counter-facts .counter {
    margin-bottom: 40px;
  }
}

/*** Counter Facts End ***/

/*** service Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
}

.service .service-item .service-inner .service-title {
  position: relative;
  margin-top: -30px;
  text-align: center;
  transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  border-radius: 10px;
  background: #de5034;
  opacity: 0;
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
  bottom: 0;
  opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
  border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.service .service-item .service-inner .service-title .service-title-name {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
  opacity: 0;
}

.service .service-item .service-inner .service-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
  height: 100%;
  opacity: 1;
}

.service .service-item .service-inner .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
  transform: scale(1.3);
}
/*** Service End ***/

/*** Features Start ***/
.features .feature-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.features .feature-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 58, 102, 0.1);
  z-index: -1;
  transition: 0.5s;
}

.features .feature-item:hover::after {
  height: 100%;
}
.features .feature-item {
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.features .feature-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  border-radius: 10px;
}

.features .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
  transition: 0.5s;
  font-size: 8px;
}

.features .feature-item:hover .feature-icon {
  border-radius: 50%;
  background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
  transition: 0.5s;
}
.feature-content p {
  font-size: 14px;
  font-weight: 500;

  word-wrap: break-word;
  overflow-wrap: break-word;
}
.feature-content h5 {
  font-size: 18px;
  font-weight: 600;
}
.features .feature-item:hover .feature-icon i {
  color: var(--bs-secondary) !important;
  transform: rotate(360deg);
  transition: all 0.5s ease;
}
/*** Features End ***/

/*** Country Start ***/
.country .country-item {
  position: relative;
}

.country .country-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 58, 102, 0.7);
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.country .country-item:hover::after {
  height: 100%;
}

.country .country-item .country-flag {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
  z-index: 2;
}

.country .country-item .country-flag img {
  border: 5px solid var(--bs-white);
  transition: 0.5s;
}

.country .country-item:hover .country-flag img {
  border: 5px solid var(--bs-white);
  transform: rotate(360deg);
  transition: all 0.5s ease;
}

.country .country-item .country-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 3;
  width: 300px;
}

.country .country-item:hover .country-name {
  opacity: 1;
}

.country .country-item img {
  transition: 0.5s;
}

.country .country-item:hover img {
  transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
  transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
  color: var(--bs-secondary) !important;
}
/*** Country End ***/

/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
  position: relative;
}

.testimonial
  .owl-carousel.testimonial-carousel
  .testimonial-item
  .testimonial-content {
  position: relative;
  border-radius: 10px;
  background: var(--bs-light);
}

.testimonial
  .owl-carousel.testimonial-carousel
  .testimonial-item
  .testimonial-content::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  bottom: -20px;
  left: 30px;
  transform: rotate(45deg);
  background: var(--bs-light);
  z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  font-size: 40px;
  color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
  margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
  transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-secondary);
}
/*** testimonial end ***/

/*** training Start ***/

.training-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.training-item img {
  transition: transform 0.6s ease;
}

.training-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.training-content h4 {
  font-size: 26px;
  font-weight: 800;
}

.training-content p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.training-content {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease;
}

.training-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.training-item:hover img {
  transform: scale(1.15);
}

.training-item:hover::before {
  opacity: 1;
}

.training-item:hover .training-content {
  bottom: 0;
} /*** training End ***/

/*** Contact Start ***/
.contact .office .office-item {
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
  background: var(--bs-light);
  transition: 0.5s;
}

.contact .office .office-item:hover {
  box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.contact .office .office-item .office-img img {
  transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
  transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
  transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
  color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
  color: var(--bs-primary) !important;
}
/*** Contact End ***/

/* Footer Background */
.footer {
  background: #021b3a; /* Dark Blue */
}

/* Footer Title */
.footer-title {
  color: #ffb400; /* Yellow Heading */
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ffb400;
  position: absolute;
  bottom: -8px;
  left: 0;
}

/* Footer Text */
.footer p,
.footer h6 {
  color: #ffffff;
  font-size: 15px;
}

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

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

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a::before {
  content: "›";
  margin-right: 8px;
  color: #ffb400;
}

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

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ffb400;
  color: #021b3a;
  border-color: #ffb400;
}

/* Copyright */
.copyright {
  background: #01152e;
  font-size: 14px;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000 !important;
}
/*** copyright end ***/

/* Increase button size */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* Style the arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem; /* size */
  height: 3rem;
  background-size: 100% 100%;
  filter: invert(1); /* makes icon white */
}

/* Change color (example: red) */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff0000' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff0000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 14.354a.5.5 0 0 1 0-.708L10.293 8 4.646 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #000 !important;
  text-decoration: none !important;
  outline: 0 !important;
  opacity: 0 !important;
}

.video-wrap {
  max-width: 500px;
  width: 100%;
}

.video-wrap video {
  width: 90%;
  height: auto;
  display: block;
}

.btn-primary1 {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  background-image: linear-gradient(90deg, #f28c5b 0%, #d9382c 100%);
  border: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* shimmer layer */
.btn-primary1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* hover effect */
.btn-primary1:hover {
  transform: translateY(-2px);
}

.btn-primary1:hover::before {
  transform: translateX(120%);
}

/* active */
.btn-primary1:active {
  transform: translateY(0);
}

.btn-primary2 {
  position: relative;
  overflow: hidden;
  color: #fff !important;

  /* Deep Navy Gradient */
  background-image: linear-gradient(90deg, #0b3c5d 0%, #06283d 100%);

  border: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* shimmer layer */
.btn-primary2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* hover effect */
.btn-primary2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 40, 61, 0.4); /* Navy shadow */
}

.btn-primary2:hover::before {
  transform: translateX(120%);
}

/* active */
.btn-primary2:active {
  transform: translateY(0);
}

.btn-primary3 {
  position: relative;
  overflow: hidden;
  color: #fff !important;

  /* Red Gradient */
  background-image: linear-gradient(90deg, #e10600 0%, #8b0000 100%);

  border: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* shimmer layer */
.btn-primary3::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* hover effect */
.btn-primary3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}

.btn-primary3:hover::before {
  transform: translateX(120%);
}

/* active */
.btn-primary3:active {
  transform: translateY(0);
}

.sub-title {
  font-size: 16px !important;
}

.display-6 {
  font-size: 28px !important;
  color: var(--bs-primary);
}

.service-title-name .bg-primary {
  background: linear-gradient(90deg, #f26a3d 0%, #e33a2c 50%, #c4161c 100%);
}

.sponsors-slider {
  padding: 20px 40px;
}

.sponsors-slider .swiper-slide {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors-slider img {
  max-height: 80px;

  transition: 0.3s ease;
}

.sponsors-slider img:hover {
  opacity: 1;
}

.service-title h4 {
  font-size: 18px !important;
}

.service-title .h4 {
  font-size: 18px !important;
}

.service-content p {
  color: #fff;
  font-size: 16px !important;
}

/* ===== SECTION ===== */
.traffic-section {
  height: 300px;
  position: relative;
  background: linear-gradient(to top, #87ceeb, #cdefff);
}

/* ===== SKY ===== */
.sky {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #87ceeb, #e0f7ff);
}

/* ===== CLOUDS ===== */
.cloud {
  position: absolute;
  width: 150px;
  opacity: 0.8;
}

.cloud1 {
  top: 40px;
  animation: cloudMove 60s linear infinite;
}

.cloud2 {
  top: 80px;
  animation: cloudMove 90s linear infinite;
}

/* ===== FLIGHT ===== */
.flight {
  position: absolute;
  width: 120px;
  top: 40px;
  animation: fly 25s linear infinite;
}

/* ===== METRO ===== */
.metro {
  position: absolute;
  width: 500px;
  bottom: 80px;
  animation: moveLeft 10s linear infinite;
}

/* ===== ROAD ===== */
.road {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #2c2c2c;
}

/* Lane markings */
.lane-markings {
  position: absolute;
  top: 50%;
  width: 200%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    white 0px,
    white 40px,
    transparent 40px,
    transparent 80px
  );
  /*  animation: roadMove 5s linear infinite;*/
}

/* ===== CARS ===== */
.car {
  position: absolute;
  width: 100px;
  bottom: 0px;
}
.car-a {
  position: absolute;
  width: 100px;
  bottom: 42px;
  will-change: transform;
}
.car1 {
  bottom: 0px;
  animation: moveRight 15s linear infinite;
}

.car1a {
  bottom: 0px;
  width: 150px;
  animation: moveRight 20s linear infinite;
}

/* Reverse Direction */
.car2 {
  animation: moveLeft 18s linear infinite;
}

/* Reverse Direction */
.car2a {
  width: 160px;
  animation: moveLefta 22s linear infinite;
}

/* ===== ANIMATIONS ===== */

@keyframes moveLeft {
  0% {
    transform: translateX(100vw) scaleX(-1);
  }
  100% {
    transform: translateX(-300px) scaleX(-1);
  }
}

@keyframes moveLefta {
  0% {
    transform: translateX(100vw) scaleX(-1);
  }
  100% {
    transform: translateX(-300px) scaleX(-1);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(-300px) scaleX(-1);
  }
  100% {
    transform: translateX(100vw) scaleX(-1);
  }
}

@keyframes fly {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(110vw);
  }
}

@keyframes cloudMove {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(110vw);
  }
}

@keyframes roadMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200px);
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important; /* Increase or decrease size */
}

.swiper-button-next,
.swiper-button-prev {
  color: #003a66 !important;
  font-weight: bold !important;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff5722 !important; /* Hover color */
  transform: scale(1.2);
}

.partners .partnerbox {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners {
  width: 100%;
  height: 180px;
  display: block;
}

.partners h2 {
  font-size: 26px;
  color: #1e2d43;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.partners .partnerbox {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /*margin: 0 20px 20px 20px;*/
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox span {
  background-color: #f3ad14;
  text-align: center;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

.partners h2 {
  font-size: 26px;
  color: #1e2d43;
  margin-bottom: 30px;
}

.partners .partnerbox2 {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners .partnerbox2 {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /*margin: 0 20px 20px 20px;*/
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox2 span {
  background-color: #c0355c;
  text-align: center;
  font-size: 14px;
  height: auto;

  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

.partners .partnerbox3 {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners .partnerbox3 {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /*margin: 0 20px 20px 20px;*/
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox3 span {
  background-color: #0c9dae;
  text-align: center;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

.partners .partnerbox4 {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners .partnerbox4 {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox4 span {
  background-color: #b1c04f;
  text-align: center;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

.partners .partnerbox5 {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners .partnerbox5 {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /*margin: 0 20px 20px 20px;*/
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox5 span {
  /*  background-color: #7b76dc;*/
  text-align: center;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

.partners .partnerbox5p {
  box-shadow: 0px 0px 5px #ccc;
  background: rgba(250, 250, 250);
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.partners .partnerbox5p {
  box-shadow: 0px 0px 5px #b4b4b4;
  background: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  display: block;
  /*margin: 0 20px 20px 20px;*/
  margin: 0px 2px 20px 2px;
  width: 100%;
  min-height: 150px;
  text-align: center;
  height: auto;
}

.partners .partnerbox5p span {
  /*  background-color: #7b76dc;*/
  text-align: center;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0px;
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    width: 20%;
  }
}
/**/
.sponsor-card-new {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: center;
}

.sponsor-card-new:hover {
  transform: translateY(-6px);
}

.sponsor-title {
  background: linear-gradient(90deg, #0b3c5d 0%, #06283d 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  padding: 10px;
}

.sponsor-logo-new {
  height: 120px;
}

.sponsor-logo-new img {
  max-height: 90px;
  max-width: 100%;
}
@media (max-width:768px){
.sponsor-logo-new{
height:100px;
display:flex;
align-items:center;
justify-content:center;
}
.sponsor-logo-new img{
max-height:80px;
width:auto;
}

}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

.sponsor-section {
  background: #f8f9fa;
}

/* Card Style */
.sponsor-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Highlight Card (Awards Partner) */
.highlight-card {
  border: 2px solid #ffc107;
}

.highlight-card1 {
  border: 2px solid #0dcaf0;
}

.highlight-card2 {
  border: 2px solid #e0372b;
}
.highlight-card3 {
  border: 2px solid #198754;
}

/* Badge Title */
.badge-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Logo Area */
.sponsor-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo img {
  max-height: 100px;
  transition: 0.3s;
}

/* Logo Hover Zoom */
.sponsor-card:hover img {
  transform: scale(1.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Remove default white filter */
.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
  filter: none;
  background-size: 100% 100%;
}

/* Red Color */
.custom-carousel-btn .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%231d64ac' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1 3 8l8 7V1z'/%3E%3C/svg%3E");
}

.custom-carousel-btn .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%231d64ac' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1v14l8-7-8-7z'/%3E%3C/svg%3E");
}

/* Hover #de5034 */
.custom-carousel-btn:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23de5034' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1 3 8l8 7V1z'/%3E%3C/svg%3E");
}

.custom-carousel-btn:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23de5034' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 1v14l8-7-8-7z'/%3E%3C/svg%3E");
}

/* Always visible */
.custom-carousel-btn {
  opacity: 1 !important;
}

/* Prevent fade on hover or active */
.custom-carousel-btn:hover,
.custom-carousel-btn:active,
.custom-carousel-btn:focus {
  opacity: 1 !important;
  outline: none;
  box-shadow: none;
}

/* Make sure icon never fades */
.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
  opacity: 1 !important;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 28px;
  color: #de5034;
}

.why-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 22px 28px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  text-align: left;
  border: 1px solid transparent;
  cursor: pointer;
}

.why-icon {
  width: 45px;
  height: 45px;
  background: #003a66;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-text {
  font-size: 16px;
  color: #444;
  font-weight: 500;
  line-height: 1.4;

  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #de5034;
}

.why-card:hover .why-icon {
  background: #de5034;
  transform: scale(1.1);
}

.why-card:hover .why-text {
  color: #003a66;
}

.why-icon i {
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .why-title {
    font-size: 24px;
    text-align: center;
  }
  .why-card {
    padding: 18px;
  }
}

.member-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.member-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-top: -60px;
  border: 5px solid #fff;
  background: #eee;
}

.member-role {
  color: #de5034;
  font-weight: 600;
  font-size: 14px;
}
.role-badge {
  background: linear-gradient(90deg, #f26a3d 0%, #e33a2c 50%, #c4161c 100%);
  font-size: 16px;
  padding: 6px 10px;
  font-weight: 600;
  border-radius: 20px;
}

/* Top Cards */
.main-card {
  background: #ffffff;

  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* City Cards */
.contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #de5034;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h6 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #212529;
  letter-spacing: 1px;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.contact-card a {
  color: #de5034;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.tariff-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.tariff-card {
  border: none;
  border-radius: 15px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.tariff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tariff-header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 25px;
  text-align: center;
}

.tariff-price {
  font-size: 28px;
  font-weight: 700;
  margin: 15px 0;
}

.tariff-body {
  padding: 30px;
  text-align: center;
}

.price-box {
  background: #f1f3f5;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.btn-custom {
  background: #de5034;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #c63f26;
}
.inr {
  position: relative;
  background: linear-gradient(135deg, #1e3c72, #2a5298);

  overflow: hidden;
  color: #fff !important;
  border: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* media font
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

/* responsive */
@media (max-width: 991px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand {
    margin: 0;
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
  }

  .navbar-nav {
    text-align: left;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 15px;
  }
}

/*confernce*/
.conf {
  background: var(--bs-light);
}
.conf-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.conf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: #e4572e;
}

.conf-title {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #343a40;
  margin-bottom: 10px;
}

.conf-text {
  color: #555;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  margin: 0;
}
/*delegate*/
.delegate-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.delegate-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-header {
  background: #e85f00;
  text-align: center;
  color: white;
  position: relative;
}

.card-header h2 {
  margin: 0;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.price-container {
  display: flex;
  background: white;
  padding: 1px 0 1px;
}

.price-item {
  flex: 1;
  text-align: center;
  padding: 0 5px;
}

.delegate-card::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

.price-label {
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1px;
  color: #444;
}

.price-big {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 10px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
  margin-right: 4px;
}
.early-text {
  color: #444;
  animation: blinkText 1s infinite;
}
/*
@keyframes blinkText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}*/
.old-price {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
  margin-top: 5px;
}
.buttons-row {
  padding: 0 30px 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-premium {
  flex: 1;
  max-width: 150px;
  padding: 14px 0;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-align: center;
  font-family: "Poppins", sans-serif;

  text-decoration: none;
  color: white;
  transition: all 0.35s ease;
}

.btn-red {
  background-image: linear-gradient(90deg, #f28c5b 0%, #d9382c 100%);
}
.btn-navy {
  background-image: linear-gradient(90deg, #0b3c5d 0%, #06283d 100%);
}

.btn-premium:hover {
  transform: translateY(-4px);
  color: white;
  filter: brightness(1.07);
}

@media (max-width: 768px) {
  .price-container {
    flex-direction: column;
    padding: 20px 0;
  }
  .price-item + .price-item {
    border-left: none;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 8px;
  }
  .buttons-row {
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 35px;
  }
  .btn-premium {
    max-width: none;
  }
  .price-big {
    font-size: 2.6rem;
  }
  .card-header h2 {
    font-size: 1.9rem;
  }
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  border-left: 4px solid #e4572e;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.contact-card h6 {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.contact-card a {
  color: #e4572e;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}
.custom-divider {
  width: 85%;
  height: 1px;
  background: #dcdcdc;
  margin: 40px auto;
}
/*brand assets*/

/*
.brand-row{
    padding:40px 0;
}*/
.brand-title {
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}
.brand-img {
  width: 240px;
  height: auto;
}
.theme-img {
  width: 150px;
}
.orange-btn {
  padding: 10px 28px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-image: linear-gradient(90deg, #f28c5b 0%, #d9382c 100%);
  color: #fff;
  transition: all 0.4s ease;
}

.orange-btn:hover {
  background-image: linear-gradient(90deg, #d9382c 0%, #f28c5b 100%);
  color: #fff;
}

.file-type {
  margin-top: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #343a40;
}
/*media*/
.download-section {
  background: #f8f9fa;
  /* background: var(--bs-light);*/
}
.download-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.download-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
  cursor: pointer;
}

.download-btn {
  padding: 9px 4px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    90deg,
    rgba(242, 106, 61, 0.9),
    rgba(227, 58, 44, 0.9)
  );
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  transition: 0.5s;
}

.download-btn:hover {
  transform: scale(1.1);
}
/*exhibhition*/
.focus-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.shell-card .tariff-header {
  background: linear-gradient(135deg, #de5034, #b63d25);
}

.shell-card:hover {
  transform: translateY(-10px);
}

.Pavilions {
  font-weight: 600;
  font-size: 20px;
  color: white;
}
.schoolbus.active {
  background: linear-gradient(135deg, #fb8c00, #ffb74d);
}
.tourism {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
}
.startups {
  background: linear-gradient(135deg, #8e24aa, #ba68c8);
}
.ev {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
}
.metro1 {
  background: linear-gradient(135deg, #e53935, #ef5350);
}

/* ===== EV CAR (Stops at Charger) ===== */
.car3a {
  width: 150px;
  animation: evMove 20s linear infinite;
  will-change: transform;
}

/* Charging light effect */
.car3a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: lime;
  border-radius: 50%;
  bottom: 0%;
  left: 25%;
  opacity: 0;
  animation: chargeBlink 20s linear infinite;
}

/* ===== CHARGING STATION ===== */
.charging-station {
  position: absolute;
  bottom: 0px;
  left: 10vw; /* Matches EV stop point */
  width: 60px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.charger {
  width: 25px;
  height: 50px;
  background: #1abc9c;
  border-radius: 2px;
  position: relative;
}

.charger::after {
  content: "⚡";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
}

/*.plug {
    width: 2px;
    height: 30px;
    background: black;
    position: absolute;
    right: -5px;
    bottom: 20px;
}*/
/* ===== CHARGING PLUG ===== */
.plug {
  width: 4px;
  height: 30px;
  background: #444;
  position: absolute;

  bottom: 20px;
  transform-origin: top;
  animation: plugMove 20s linear infinite;
  margin-left: 22px;
}

/* Plug goes down while charging */
@keyframes plugMove {
  /* Before reaching charger */
  0%,
  30% {
    transform: translateY(0px);
  }

  /* Start connecting */
  40% {
    transform: translateY(15px);
  }

  /* Fully connected (stay down) */
  45%,
  55% {
    transform: translateY(15px);
  }

  /* Disconnect */
  60% {
    transform: translateY(0px);
  }

  /* Continue driving */
  100% {
    transform: translateY(0px);
  }
}
/* ========================= */
/* ===== ANIMATIONS ======= */
/* ========================= */

@keyframes evMove {
  0% {
    transform: translateX(-300px);
  }

  /* Reach charger */
  35% {
    transform: translateX(10vw);
  }

  /* Stay charging */
  55% {
    transform: translateX(10vw);
  }

  /* Continue */
  100% {
    transform: translateX(110vw);
  }
}

@keyframes fly {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(110vw);
  }
}

@keyframes cloudMove {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(110vw);
  }
}

@keyframes roadMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200px);
  }
}

@keyframes chargeBlink {
  0%,
  35% {
    opacity: 0;
  }
  40%,
  55% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
  }
}

/* SECTION BACKGROUND */
.journey-section {
  background: linear-gradient(135deg, #1e1e8f, #6a11cb);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/*payment*/
.payment-page {
  background: #f0f5fb;
}
.payment-card {
  background: white;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.payment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.card-header-custom {
  background: linear-gradient(90deg, #f26a3d 0%, #e33a2c 50%, #c4161c 100%);
  color: white;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header-intl {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 25px;
  gap: 25px;
  border-bottom: 1px solid #e9eef5;
}

.info-row:last-child {
  border-bottom: none;
}

.label {
  min-width: 150px;
  color: #343a40;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.value {
  color: #444;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
  flex: 1;
}

.copy-btn {
  border: none;
  background: #eff6ff;
  color: #2563eb;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  cursor: pointer;
  margin-left: 5px;
  font-weight: 700;
}
.info-row:nth-child(odd) {
  background: #fcf8f8;
}

.info-row:nth-child(even) {
  background: #ffffff;
}

.info-row:last-child {
  border-bottom: none;
}

.copy-btn:hover {
  background: #dbeafe;
}
/*
      .highlight-code {
        color: #2563eb;
        font-size: 1rem;
      }*/
@media (max-width: 576px) {
  .label {
    font-size: 0.75rem;
    font-weight: 600;
  }

  .value {
    font-size: 0.82rem;
    font-weight: 500;
  }

  .info-row {
    gap: 15px;
    padding: 12px 18px;
  }

  .card-header-custom {
    font-size: 0.95rem;
    padding: 15px;
  }
}
/*photo gallery */

.gallery-card {
  background: var(--bs-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  width: 100%;
}

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

.post-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-date {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #e63946;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.post-content {
  padding: 15px;
}

.post-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/*prawaas 4 gallery*/
.gallery-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card .post-img {
  padding: 0;
}

/*curtain raiser gujarat*/
.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/*curtain raiser pune gujarat*/

.gallery-card {
  background: var(--bs-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  width: 100%;
}

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

.post-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.post-date {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: #e63946;
  color: #ffffff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.post-content {
  padding: 15px;
}

.post-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/*vdo gallery*/
.video-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}
.text1 {
  color: #003a66 !important;
  font-weight: bold !important;
  transition: all 0.3s ease;
}

.event-location-section1 {
  padding: 80px 0;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../img/venue-bg-1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
}

.location-card {
  background: #f0f5fb;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 550px;
}

@media (max-width: 991px) {
  .event-location-section1 {
    padding: 50px 0;
    background-attachment: scroll;
  }

  .location-card {
    max-width: 100%;
    padding: 25px;
    margin: auto;
  }

  .location-card .btn {
    width: 100%;
    margin-bottom: 12px;
    margin-left: 0 !important;
  }

  .map-wrapper {
    margin-top: 15px;
  }
}
.journey-section {
  background: #f4f6f9;
  padding: 100px 0;
}

.journey-title {
  color: #222;
  font-size: 42px;
  font-weight: 700;
}

.journey-subtitle {
  color: #666;
}

.journey-card {
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.4s ease;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.highlight-2026 {
  background: linear-gradient(90deg, #f28c5b 0%, #d9382c 100%);
  color: #111;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
/*faq*/
.custom-accordion .accordion-item {
  background: #f4f6f9;
  border-radius: 20px;
  border: 1px solid transparent;
  margin-bottom: 20px;
  padding: 5px 15px;
  transition: 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  border: 1px solid #ff6a00;
}

.custom-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  color: #0d2b45;
  padding: 22px 20px 22px 80px;
}

.custom-accordion .accordion-button::before {
  content: "→";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #003a66;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #ff6a00;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
  background: #ff6a00;
}

.custom-accordion .accordion-body {
  padding-left: 40px;
  color: #444;
  font-size: 15px;
}
/*exhibhitor*/
.sponsor-card-new1 {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;

  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sponsor-card-new1 img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.sponsor-card-new1:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #ff6a00;*/
  border-color: #ff6a00;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
}
@media (max-width:768px){


.sponsor-logo-new{
height:100px;
display:flex;
align-items:center;
justify-content:center;
}

.sponsor-logo-new img{
max-height:80px;
width:auto;
}

}