.logo img{
    height: 80px;
    background-color: white;
    border-radius: 10px;
}
.footer-logo{
background-color: white;
    border-radius: 10px;
}

.our-package-show-style{
    width: 100%;
    padding: 10px;
}


.our-package-container{
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


.our-package-left , .our-package-right{
    width: 48%;
    height: 450px;
}

.our-package-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 1px solid; */
}

.our-package-dt-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}
.section-tagline {
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(120deg, #000000c7, #702726);
    font-size: 14px;
    color: white;
}
.our-package-dt-1 h1{
    font-size: 2.4rem;
    line-height: 1.24;
    margin: 20px 0px;
}


/* testing */
.product-section {
      overflow: hidden;
      position: relative;
      width: 100%;
      text-align: center;
      margin-top:50px ;
    }

    .product-section .product-container {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll-left 25s linear infinite;
/* margin: 10px;   */
    }

    .product-section .main-product-card {
      flex: 0 0 auto;
      width: 200px;
      height: 200px;
      border-radius: 10px;
      overflow: hidden;
      background: #f9f9f9;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .product-section .main-product-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
/* testing */





.our-package-right{
    position: relative;
    background-image: url(../images/northeast/joy/1.png);
    background-size:cover ;
    padding: 20px;
    /* height: auto; */
    margin: 20px 20px 0px 20px;
    border-radius: 20px;
    display: flex;
    align-items: end;
}

.package-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.package-card h2 {
  font-size: 22px;
  margin: 0 0 5px;
}

.package-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.package-card .learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  margin-bottom: 5px;
}

.package-card .learn-more span {
  display: inline-block;
  background: black;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
}

.package-card .package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
}

.package-card .package-card .dots {
  display: flex;
  gap: 5px;
}

.package-card .dot {
  width: 8px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
}

.package-card .dot.active {
  background: black;
  width: 16px;
}



.package-section {
      padding: 30px 3%;
      width: 100%;
      /* border: 1px solid; */
      /* margin-top: 50px; */
    }

    .package-section .package-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      width: 100%;
    }

    .package-section .package-header h2 {
      font-size: 32px;
      font-weight: 700;
      /* max-width: 500px; */
      text-align: center;
    }

    .package-section .package-header p {
      font-size: 14px;
      color: #555;
      max-width: 300px;
    }

    .package-section .btn-book {
      background: #111;
      color: #fff;
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .package-section .btn-book:hover {
      background: #f97316; /* orange hover */
    }

    .package-section .package-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      /* width: ; */
      /* grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); */
      gap: 20px 20px;
      margin: 20px 0px;
    }

    .package-section .card {
      width: 360px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .package-section .card:hover {
      transform: translateY(-6px);
    }

    .package-section .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

.service-btns{
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}
.service-btns a{
  /* background-color: green; */
  color: white;
  text-align: center;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: bold;
  filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.537));
  flex: auto;
  padding: 5px 10px;
}

.service-btns a img{
  width: 35px !important;
  height: 35px !important;
}

.service-btns a:nth-child(1){
  background-color: #0078ff;
}
.service-btns a:nth-child(2){
  background-color: #25d366;
}


    .package-section .card-content {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 10px;
      background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
      color: #fff;
      padding-top: 20px;
    }

    .package-section .card-content h3 {
      font-size: 18px;
      margin: 0 0 8px;
    }

    .card-content p {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .package-section .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .package-section .tag {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.103);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.089);
    }

    /* Arrow button */
    .package-section .arrow-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #111;
      transition: 0.3s;
      transform: rotate(-25deg);
    }

    .package-section .card:hover .arrow-btn {
      background: linear-gradient(120deg, #000000c7, #702726);
      color: #fff;
    }

    .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 50px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
.package-destination-container{
  display: flex;
  justify-content: space-around
  ;
  align-items: center;
}
.package-destination-container .location-block_one-inner{
  width: 300px;
}

/* testimonial */
.custom-testimonial-section {
  padding: 60px 20px;
  background: #fafafa;
  text-align: center;
}
.custom-testimonial-header {
  margin-bottom: 40px;
}
.custom-testimonial-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 10px;
}
.custom-testimonial-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}
.custom-testimonial-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
  min-height: 220px;
}
.custom-testimonial-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.custom-testimonial-location {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.custom-testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-testimonial-title {
    font-size: 22px;
  }
  .custom-testimonial-item {
    padding: 20px;
  }
}
/* testimonial */

.custom-testimonial-rating i{
color: goldenrod;
}

.counter-one_icon {
  font-size: 60px;
  color: #509cff; /* Coral color – you can change */
  margin-bottom: 15px;
  margin-right: 10px;
}
.about-tag{
  background-color: rgb(74, 122, 255);
  color: white;
  width: 100px;
  padding: 5px 5px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 20px;

}
.counter-one_counter{
  margin-right: 50px;
}

.counter-one_block-inner{
  display: flex;
  gap: 0 25px;
  align-items: center;
}
.counter-one_counter-text{
  margin-top: 0px;
}

.about-counter{
  justify-content: center;
}
.odometer-inside{
  font-weight: 600;
}


/* page title */
.page-title{
  /* border: 1px solid; */
  height: 150px;
  padding-top: 30px;
  padding-left: 50px;
  background-image: url('../images/northeast/joy/ba1.png');
  background-size: cover;
  background-position: 0px 0px;
}
.page-title h1{
  font-size: 40px;
  color: white;

}
/* page title */
/* about */
.about-container{
  display: flex;
  justify-content: center;
  padding: 40px 0px;
  gap: 50px;
}

.about-container .about-img{
  width: 500px;
  height: 350px;
}
.about-container .about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.about-container .about-details{
  width: 500px;
  text-align: justify;
}
.about-container .about-details h2{
  margin: 10px 0px;
}
/* about */




/* Gallery Grid */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      padding: 20px;
    }

    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 80%;
      max-height: 80%;
      border-radius: 8px;
    }

    /* Controls */
    .lightbox .close, .lightbox .prev, .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 2rem;
      padding: 10px;
      cursor: pointer;
      user-select: none;
    }

    .lightbox .close {
      top: 20px;
      right: 30px;
      font-size: 2.5rem;
      transform: none;
    }

    .lightbox .prev {
      left: 30px;
    }

    .lightbox .next {
      right: 30px;
    }



    .package-card-1{
      width: 380px ;
    }

/* packagr detail  */
.package-container-d {
      max-width: 1100px;
      margin: 20px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .package-image img {
      width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    }

    .package-details-d h2 {
      text-transform: capitalize;
      font-size: 28px;
      margin-bottom: 10px;
      color: rgb(46, 46, 46);
    }

    .package-details-d p {
      margin-bottom: 10px;
    }

    .package-container-d .price {
      font-size: 18px;
      font-weight: bold;
      color:     #313471;
    }

    .package-container-d .enquire-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 14px;
      background:     linear-gradient(120deg, #000000c7, #702726);
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
    }

    .itinerary {
      max-width: 1100px;
      margin: 20px auto;
      padding: 20px;
    }

    .itinerary h3 {
      padding: 20px 0px;
      margin-bottom: 15px;
      font-size: 29px;
      border-bottom: 1px solid;
      color: rgb(46, 46, 46);


    }

    .day {
      padding:30px 0px;
      border-bottom: 1px solid;

    }
.day-title{
font-weight: bold;
font-size: 18px;
color:#383838;
font-family: 'Oswald', sans-serif;
}
    .day-title span{
      background: linear-gradient(120deg, #000000c7, #702726);
      color: #fff;
      padding: 5px 10px;
      border-radius: 3px;
      display: inline-block;
      margin-right: 10px;
      
    }

    .day p {
      padding: 30px 0 0px 50px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .package-container-d {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .package-details-d h2 {
        font-size: 20px;
      }
      .price {
        font-size: 16px;
      }
      .itinerary h3 {
        font-size: 18px;
      }
    }

    @media (max-width: 576px) {
      .package-container-d {
        padding: 10px;
      }
      .itinerary {
        padding: 10px;
      }
      /* .day-title {
        font-size: 14px;
      } */
    }
/* packagr detail  */


/* form */
.form-container-package {
      max-width: 500px;
      margin: 30px auto;
      background: #fff;
      padding: 30px 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .form-container-package h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #0a2850;
      font-size: 20px;
      font-weight: bold;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      font-size: 14px;
      color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      outline: none;
      transition: border 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #0a2850;
    }

    .form-group textarea {
      resize: none;
      height: 70px;
    }

    .btn-submit {
      display: block;
      width: 100%;
      padding: 12px;
      background: #0a2850;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-submit:hover {
      background: #133b7a;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .form-container-package {
        padding: 20px 15px;
      }
      .form-container-package h2 {
        font-size: 18px;
      }
    }
/* form */

.otehr-p-head{
  margin: 20px 0px;
text-align: center;
}


.card.service{
  width: 250px;
}

.card.service h3{
  text-align: center;
  position: relative;
}
.card.service h3::before{
  content: '';
}

.footer-bottom.contact{
  border-top: none;
}

.footer-bottom.contact a{
  margin: 0px 10px;
  text-align: center;
}



/* form */


    .form-container {
      background: #fff;
      /* padding: 20px; */
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      max-width: 1100px;
      width: 100%;
      margin: 0px auto 0px auto;
      margin-top: -55px;
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .form-group {
      flex: 1;
      min-width: 200px;
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 14px;
      margin-bottom: 5px;
      font-weight: bold;
      color: #003366;
    }

    .form-group input {
      padding: 12px;
          border: 2px solid #950000;
      border-radius: 25px;
      outline: none;
      font-size: 14px;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus {
      border-color: #0056b3;
    }

.btn {
    background: linear-gradient(120deg, #000000c7, #702726);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s 
ease;
    align-self: center;
    /* margin-top: auto; */
}

    .btn:hover {
      background: linear-gradient(120deg, #474646c7, #9c3635);
      color: white;
    }

    @media (max-width: 600px) {
      .form-row {
        flex-direction: column;
      }
    }
/* form */



/* Footer Wrapper */
.jt-footer {
  background: #0d0d0d; /* Matte black */
  color: #e6e6e6;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

/* Grid Layout */
.jt-footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

/* Sections */
.jt-footer-section h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
}

.jt-footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Links */
.jt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jt-footer-links li {
  margin-bottom: 10px;
}

.jt-footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.3s;
}

.jt-footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Social Icons */
.jt-social-links a {
  display: inline-block;
  margin-right: 12px;
  color: #e6e6e6;
  font-size: 18px;
  transition: 0.3s;
}

.jt-social-links a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Contact Info */
.jt-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jt-contact-info li {
  margin-bottom: 8px;
  color: #cccccc;
}

/* Bottom Bar */
.jt-footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  color: #8c8c8c;
  font-size: 14px;
}





/* Modal Background */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-content {
  background: #fff;
  padding: 25px;
  width: 400px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  background: #702726;
  color: white;
  padding: 12px 0;
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}



.tp-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 17px;
}

.tp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0px 8px 28px rgba(0,0,0,0.06);
    position: relative;
    width: 270px;
    border: 1px solid #702726;
}

.tp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 38px rgba(0,0,0,0.10);
}

/* Car Image */
.tp-img {
    height: 180px;
    background: #eef1f600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service .tp-img img{
      border-radius: 20px;
}
.service .tp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s 
ease;
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 270px;
    border: 1px solid #70272600;
    padding: 10px;
}

.tp-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Content */
.tp-content {
    padding: 10px;
}
.tp-content p{
  font-size: 12px;
  line-height: 1.24;
  color: rgb(55, 55, 55);
}

.tp-car-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Row info */
.tp-row {
    display: flex;
    gap: 9px;
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.tp-row i {
    color: #fe7e05;
}

/* Features */
.tp-features {
    list-style: none;
    padding: 0;
    margin: -8px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tp-features li {
    font-size: 10px;
    margin-bottom: 1px;
    padding: 2px 10px;
    border-radius: 20px;
    color: rgb(73, 73, 73) !important;
    background: #e0e0e0;
    box-shadow: 5px 4px 10px #bebebe, -4px -4px 10px #ffffff;
}
.tp-features i {
    color: #595353;
    margin-right: 7px;
}

/* CTA Buttons */
.tp-actions {
    display: flex;
    gap: 12px;
}

.tp-btn-call,
.tp-btn-wa {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

/* Call */
.tp-btn-call {
    background: #0078ff;
}

.tp-btn-call:hover {
    background: #005fcc;
    color: white;
}

/* WhatsApp */
.tp-btn-wa {
    background: #25d366;
}

.tp-btn-wa:hover {
    background: #1ebe57;
}

/* Responsive */
@media (max-width: 600px) {
    .tp-car-name { font-size: 20px; }
}



.services-section {
    padding: 80px 20px;
    background: #f9fafc;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 32px;
    color: #3d0202;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 16px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(120deg, #000000c7, #702726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: #ffffff;
    font-size: 28px;
}

.service-card h4 {
    font-size: 18px;
    color: #1f3c88;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



.alert-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.alert-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.alert-content h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.alert-content p,
.alert-content ul {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.alert-content ul {
    padding-left: 18px;
}

/* Close Button */
.alert-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

/* Success */
.alert-success {
    background: #ecfdf3;
    border-left: 6px solid #22c55e;
}

.alert-success .alert-icon {
    background: #22c55e;
}

/* Error */
.alert-error {
    background: #fef2f2;
    border-left: 6px solid #ef4444;
}

.alert-error .alert-icon {
    background: #ef4444;
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .alert-card {
        flex-direction: column;
    }

    .alert-icon {
        margin-bottom: 10px;
    }
}




/* ================================
   Modern Transport Section
================================ */

.joyx-transport-modern {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 90px 20px;
    color: #ffffff;
}

.joyx-container {
    max-width: 1200px;
    margin: 0 auto;
}

.joyx-transport-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 70px;
}

.joyx-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.joyx-transport-head h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.3;
}

.joyx-transport-head p {
    font-size: 17px;
    color: #cbd5f5;
    line-height: 1.7;
}

/* Layout */
.joyx-transport-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.joyx-transport-image img {
    width: 100%;
    height: 459px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

/* Feature Cards */
.joyx-transport-features {
    display: grid;
    gap: 22px;
}

.joyx-feature-card {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.joyx-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.joyx-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
}

.joyx-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.joyx-feature-card p {
    font-size: 15px;
    color: #dbeafe;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .joyx-transport-wrapper {
        grid-template-columns: 1fr;
    }

    .joyx-transport-head h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .joyx-feature-card {
        padding: 18px;
    }

    .joyx-transport-head h2 {
        font-size: 26px;
    }
}
