@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --background-body: rgb(61, 116, 134);
  --basic-font-color: #fff;
  --grid-template-bg:#fff;
  --top-nav-bg: orange;
  --footer-bg-color:rgb(9, 56, 71);
  --WhatsApp-color: hsl(145, 63%, 50%);
  --WhatsApp-hover: rgb(18, 140, 63);
  --font-family: "Playwrite AU QLD", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  transition: background 0.3s, color 0.3s;
  font-family: 'Playfair Display', serif;
  background: var(--background-body);

}

#WhatsApp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  font-size: 40px;
  color: var(--WhatsApp-color);
  font-weight: bold;
  cursor: pointer;
  z-index: 1550;
  transition: all 1s ease;
  animation: bounce 2s infinite;
}

#WhatsApp:hover {
  color: var(--WhatsApp-hover);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  #WhatsApp:hover {
    color: var(--WhatsApp-hover);
  }

  #WhatsApp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    font-size: 40px;
    color: rgb(6, 92, 3);
    font-weight: bold;
    cursor: pointer;
    z-index: 1550;
    transition: all 0.8s ease;
    animation: bounce 2s infinite;
  }
}

/* Contact Strip and Navbar */
    .bg-dark-blue {
      background-color: #1a1a2e;
    }

    a {
      text-decoration: none;
    }

    .contact-strip {
      background-color: var(--background-body);
      color: white;
      font-size: 14px;
      padding: 10px 20px;
    }

    .contact-strip a {
      color: white;
      font-weight: bold;
      margin-right: 20px;
    }
     .contact-strip a:hover
     {
      color:rgb(162, 162, 221);
     }
    #desktop-logo
    {
      height: 100px;
      width: 200px;
      box-shadow: none;
      z-index: 999;
      margin: -10px 0 0 -50px;
    
    }
    .top-navbar {
      background-color: #fff;
      padding: 10px 20px;
    }

    .top-navbar .nav-link {
      color: #000;
      font-size: 25px;
    }
.top-navbar .nav-item .nav-link:hover
{
  color: red;
}
    .top-navbar .dropdown-menu {
      margin-top: 0;
    }

    @media (max-width: 767px) {
      .contact-strip,
      .top-navbar {
        display: none !important;
      }

      .mobile-logo-strip {
        display: flex !important;
      }

      .bottom-navbar {
        display: flex !important;
      }

      .mobile-submenu {
        display: none;
        background-color: #101020;
        position: fixed;
        bottom: 30px;
        width: 100%;
        z-index: 999;
        padding: 10px 0;
      }

      .mobile-submenu a {
        color: white;
        display: block;
        padding: 5px 20px;
        font-size: 16px;
        border-bottom: 1px solid #333;
      }
    }

    .mobile-logo-strip {
      background-color: #fff;
      padding: 10px;
      justify-content: center;
      align-items: center;
      display: none;
    }

    .mobile-logo-strip .mobile-logo {
      height: 100px;
      width: 190px;
      box-shadow: none;
    }

    .bottom-navbar {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color:var(--footer-bg-color);
      justify-content: space-around;
      border:3px solid var(--basic-font-color) ;
      align-items: center;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      padding: 8px 0;
      display: none;
      z-index: 1000;
    }

    .bottom-navbar a {
      color: var(--basic-font-color);
      font-size: 16px;
      text-align: center;
    }

    .bottom-navbar i {
      display: block;
      font-size: 20px;
    }

    .contact-panel {
      position: fixed;
      bottom: 60px;
      width: 100%;
      background-color: var(--footer-bg-color);
      color: white;
      padding: 20px;
      display: none;
      z-index: 999;
      border: 2px solid var(--basic-font-color);
    }

    .contact-panel a {
      color: white;
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
    }
      .contact-panel a:hover
      {
        background-color: var(--basic-font-color);
        color:var(--footer-bg-color);

      }

    .close-contact {
      position: absolute;
      top: 5px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
    }
/* Carousel CSS Begins Here.. */

.container-carousel {
  position: relative;
  overflow: hidden;
  width:100%;
  height: auto;

}

.trackcarousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  min-width: 100%;
  box-sizing: border-box;

}

.imgSlider {
  min-width: 100%;
}

.prevbtn,
.nextbtn {
  position: absolute;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}

.prevbtn {
  left: 10px;
}

.nextbtn {
  right: 10px;
}

@media (max-width:767px) {
  .container-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    top: 0px;

  }

  .trackcarousel {
    display: flex;
    transition: transform 0.5s ease-in-out;

  }
  .card {
    min-width: 100%;
    max-height: 400px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);

  }
  img {
    width: 100%;
    max-height: 400px;
  }

  .prevbtn,
  .nextbtn {

    /* top: 50%; */
    z-index: 999;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
  }

  .prevbtn {
    left: 10px;
  }

  .nextbtn {
    right: 10px;
  }

}


/* Scrolling Ticker Or Bottom strip */
.ticker-strip {
  position: fixed;
  background: var(--background-strip-color);
  bottom: 0;
  width: 100%;
  height: 60px;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  padding: 10px 0;
  overflow: hidden;
  z-index: 9999;
}

/* Scroll wrapper */
.ticker-wrapper {
  display: flex;
  width: max-content;
  animation: scroll-left 15s linear infinite;
}

/* Each repeat of the content */
.ticker-text {
  margin-top: 13px;
  padding-right: 100px;
  /* spacing between loops */
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
@media (max-width:768px){
  .ticker-strip 
  {
    display: none;
  }
}
/* Unfixed TopBAr And NavBar */


/***extra-div part start***/
.header-extradiv {
  width: 100%;
  height: auto;
  margin-top: 50px;
  text-align: center;

}

.extra-div {

  background: var(--grid-template-bg);
  border: medium none;
  padding: 20px !important;
  border-radius: 3px;
  margin: 10px 0;
  transition: 0.3s;
  border: 2px solid lightgray;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.header-extradiv .what {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--basic-font-color); /* Elegant, deep red */
  text-align: center;
  position: relative;
  margin: 40px 0 30px;
  letter-spacing: 1px;
}

.header-extradiv .what::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
    background-color: var(--basic-font-color); /* Elegant, deep red */

  margin: 12px auto 0;
  border-radius: 2px;
}

.extra-div:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
}

.extra-div h3 {
  color: ;

}

.extra-div p {
  font-size: 20px;
  color: ;
  font-family: 'Merriweather', serif;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
}

.extra-div .CheckOut {
  background-color: var(--background-body);
  font-weight: 500;
  color: var(--basic-font-color);
  width: 55%;
  text-align: center;
  padding: 10px;
  top: -10px;
  float: right;
  position: relative;
  z-index: 5;
  transition: all 0.2s ease-in;
  border-radius: 5px;

}

.extra-div .CheckOut:hover {
  background-color: rgb(39, 155, 228);

  border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.extra-div .service-img {
  position: relative;
  float: left;
  width: 100%;

  height: 250px;
  top: 0px;
  z-index: 4;
  transition: transform 0.5s ease-in;
  border-radius: 10px;

}

.extra-div .service-img:hover {
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .header-extradiv {
    margin-top: 50px;
  }

  .header-extradiv .what {
    margin-top: 10px;
    margin-bottom: 30px;

  }

  .header-extraServices .extra-Services
  {
    margin-top: 20px;

  }
  #TaxiServ
  {
    position: relative;
    margin-top: 10px;
  }

}

/***extra-div part end***/


/***extra-Services part end***/
.header-extraServices {
  width: 100%;
  height: auto;
  margin-top: 190px;
  text-align: center;

}

.extra-Services {

  background: var(--grid-template-bg);
  border: medium none;
  padding: 20px !important;
  border-radius: 3px;
  top: -180px;
  transition: 0.3s;
  border: 2px solid lightgray;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

h2 {
  color: #003366;
}

.extra-Services:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
}

.extra-Services h3 {
  color: ;

}

.extra-Services p {
  font-size: 20px;
  color: ;
  font-family: 'Merriweather', serif;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
}

.extra-Services .CheckOut {
  background-color: var(--background-body);
  font-weight: 500;
  color: var(--basic-font-color);
  width: 55%;
  text-align: center;
  padding: 10px;
  top: -10px;
  float: right;
  position: relative;
  z-index: 5;
  transition: all 0.2s ease-in;
  border-radius: 5px;

}

.extra-Services .CheckOut:hover {
  background-color: rgb(39, 155, 228);
  border-radius: 20px;
   box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.extra-Services .service-img {
  position: relative;
  float: left;
  height: 250px;
  width: 100%;
  top: 0px;
  z-index: 4;
  transition: transform 0.5s ease-in;
  border-radius: 10px;
}



/* Desktop form for multi services */
.form-container {
      max-width: 600px;
      margin: 50px auto;
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .btn-danger {
      background-color: var(--footer-bg-color);
     border-color: var(--footer-bg-color);
    }

    .btn-danger:hover {
      background-color: rgb(39, 155, 228);
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
      border-color:rgb(39, 155, 228);
  
    }

    h2 {
     color:rgb(9, 56, 71);

      font-weight: bold;
    }

    .services-label {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
@media (max-width: 767px) {
  .form-container {
   margin: -80px 20px 40px 20px;
  }
 .form-container h2
 {
  font-size: 1.5rem;
 }
}

/* Sign Up Form Ends */
/*** footer starts***/

.footer {
  width: 100%;
  height: auto;
  padding: 70px 0 20px 0;
  position: relative;
  margin-bottom: -150px;
  background-color:rgb(9, 56, 71);
}

.footer p {
  color: #fff;
}

.footer li {
  list-style: none;

}

.footer li a:hover {
  text-decoration: underline;
}

.footer li a {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
}

.footer h3 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem !important;
  font-weight: 600;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
a.mtm
{
  cursor: pointer;
  text-decoration: underline;
}
.bottom-Serv {
  display: block;
}

.bottom-Serv .serv-info {
  line-height: 3;
  color: #fff;
}

.bottom-Serv .serv-info:hover {
  text-decoration: underline;
   color: #f70d0d;

}

.social-icons {
  display: block;
}

.social-icons .contact-info {
  line-height: 2;
  color: #fff;
}

.social-icons .contact-info:hover {
  text-decoration: underline;
  color: #f70d0d;
}
@media (max-width: 480px){
.No-copyright
{
  margin-bottom: 60px;
}
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  z-index: 99;
  border: none;
  color: red;
  background: #fff;
  padding: 10px;
  border-radius: 10px;

}

#myBtn:hover {
  background: #e24c4c;
}

@media (max-width: 480px) {
  #myBtn {
    display: none;
    position: fixed;
    bottom: 140px;
    right: 23px;
    z-index: 1999;
    border: none;
    color: #154360;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: 1s ease;
  }

  #myBtn:hover {
    background: #606060;
    color: #fff;
  }

}

/*** footer ends***/