* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:  #e4eef3;
 
  background-attachment: fixed; 
  font-family: 'Poppins', sans-serif;
  color: #333; 
  line-height: 1.6; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif; 
  font-weight: 600; 
  color: #000; 
}

p, span, li, a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; 
}


html {
  overflow-y: scroll; 
  scrollbar-width: 0; 
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}


button, .btn {
  background-color: #E67300; 
  color: white;
  border: none;
  padding: 12px 20px; 
  border-radius: 5px;
  font-size: 16px; 
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; 
}

button:hover, .btn:hover {
  background-color: #003366; 
  transform: scale(1.05); 
  color: #f0f0f0;
 font-weight: 400;}


.navbar-toggler, .navbar-toggler span {
  background-color: inherit;
  transition: none; 
}


.btn-primary {
  background-color: #E67300;
  color: white;
}

.btn-primary:hover {
  background-color: #003366;
  font-weight: 200;
}


#navbar {
  background-color: #003366;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link, .navbar-brand {
  font-family: 'Poppins', sans-serif;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  animation: fadeInDown 0.6s ease-in-out;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: contain;
}

.nav-link {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  transform: scale(1.1);
  font-weight: bold;
}


.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.navbar-toggler {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50px;
  height: 30px;
  cursor: pointer;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin: 0;
  transition: all 0.3s ease-in-out;
}


.navbar-toggler.menu-opened span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #ffffff;
}

.navbar-toggler.menu-opened span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.menu-opened span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #ffffff;
}

.navbar-collapse {
  animation: slideInDown 0.5s ease-in-out;
}

@media (max-width: 768px) {

  .nav-link::before {
    display: none;
  }

  .nav-link:hover::before {
    display: none;
  }

  .navbar-collapse {
    background-color: #4a6bb5;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .nav-link:hover::before {
    background-color: transparent; 
  }

  .navbar-collapse {
    background-color: #4a6bb5;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-link:last-child {
    border-bottom: none;
  }
}

.scroll-top-percentage {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: bold;
  background: conic-gradient(rgb(227, 115, 0) 49%, rgb(0, 51, 102) 49%);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}


.scroll-top-percentage.active {
  opacity: 1;
  visibility: visible;
}


#back-to-top-arrow {
  display: none; 
  font-size: 28px;
  color: white;
  z-index: 1;
  cursor: pointer;
}


.scroll-top-percentage.scroll-complete #back-to-top-arrow {
  display: block;
}

.scroll-top-percentage.scroll-complete #scroll-value {
  display: none;
}


#scroll-value {
  position: absolute;
  z-index: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




.whatsapp-float {
  position: fixed;
  bottom: 100px; 
  right: 20px; 
  z-index: 9999; 
  animation: floatEffect 2s infinite ease-in-out; 
}

.whatsapp-button img {
  width: 70px;
  height: 70px;
  border-radius: 50%; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  transition: all 0.3s ease; 
}

.whatsapp-button:hover img {
  transform: scale(1.1); 
}


@keyframes floatEffect {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


/*banner & overlay */
#banner {
  position: relative;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(24, 24, 24, 0.486);
  padding: 30px;
  border-radius: 10px;
  opacity: 50%;
  animation: slideIn 1.5s ease-in-out forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.overlay-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003366;
  color: white;
  text-decoration: none;
  font-size: 1em;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #E67300;
}
.image-slider {
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.slider {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  animation: slideAnimation 15s infinite;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
}

@keyframes slideAnimation {
  0%, 20% { transform: translateX(0); }
  33%, 53% { transform: translateX(-100%); }
  66%, 86% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}


@media (max-width: 768px) {
  .slide img {
    height: 300px;  
  }
}


#our-transport {
  padding: 20px 15px;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}


.transport-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.transport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.transport-card:nth-child(1) {
  animation-delay: 0.4s;
}

.transport-card:nth-child(2) {
  animation-delay: 0.6s;
}

.transport-card:nth-child(3) {
  animation-delay: 0.8s;
}


.transport-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.transport-title {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.transport-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .transport-card {
    margin-bottom: 20px;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}



#product-specification {
  padding: 20px 15px;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.specification-card {
  background-color: #fff;
  border: 3px solid #E67300;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.specification-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.specification-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.specification-detail {
  font-size: 1.25rem;
  color: #555;
  font-weight: bold;
  text-align: center;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .specification-card {
    margin-bottom: 15px;
    text-align: center;
  }
}

#services {
  padding: 20px 15px;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  margin-bottom: 20px; 
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card:nth-child(1) {
  animation-delay: 0.4s;
}

.service-card:nth-child(2) {
  animation-delay: 0.6s;
}

.service-card:nth-child(3) {
  animation-delay: 0.8s;
}


@media (max-width: 768px) {
  .col-md-4 {
 
    width: 100%;
    padding: 0 15px;
  }
  
  .service-card {
 
    margin-bottom: 30px;
  }
}


#why-us {
  padding: 20px 15px;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card:nth-child(1) {
  animation-delay: 0.4s;
}

.card:nth-child(2) {
  animation-delay: 0.6s;
}

.card:nth-child(3) {
  animation-delay: 0.8s;
}

.card:nth-child(4) {
  animation-delay: 0.8s;
}

.card:nth-child(5) {
  animation-delay: 2s;
}

.card:nth-child(6) {
  animation-delay: 2s;
}


@media (max-width: 768px) {
  #why-us .row {
    row-gap: 20px; 
  }

  #why-us .col-md-4 {
    margin-bottom: 20px; 
  }
}


.enquiry-form-container {
  background-color: #003366; 
  padding: 40px 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  
}


.enquiry-form-container h1 {
  color: #ffffff;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}


.form-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
}


.form-control {
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 5px #0056b3;
  border-color: #0056b3;
}


.btn-submit {
  display: inline-block;
  background-color: #E67300;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;

  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-submit:hover {
  background-color: #E67300;
  font-weight: bold;
  color: #ffffff;
}


@media (max-width: 768px) {
  .enquiry-form-container {
    padding: 20px 30px;
  }

  .enquiry-form-container h1 {
    font-size: 28px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

#about-us {
  padding: 20px 20px;
  background-color: #ffffff;
  margin: auto;
}

.about-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
  max-width: 1200px;
  margin: 20px auto;
}

h2 {
  text-align: center;
  padding: 20px 0;
  color: #333;
}

.paragraph {
  overflow: hidden; 
}

.wrap-image {
  float: left; 
  width: 350px;
  height: auto; 
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  margin-bottom: 10px; 
}

p {
  text-align: justify;
  font-size: 16px;
  color: #000000;
}


@media (max-width: 768px) {
  .wrap-image {
    float: left;; 
    display: block; 
    width: 50%; 
    margin: 10 10 15px 0; 
    object-fit: cover;
  }

  p {
    font-size: 14px;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px; 
    text-align: justify;
  }
}


#faqs {
  padding: 20px 15px;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 30px;
}

.faq-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
max-width: 1500px;
  margin: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  overflow: hidden;
}

.question {
  background-color: #003366;
  color: white;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3 {
  font-size: 1rem;
  margin: 0;
  color: #ffffff;;
}

.arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .arrow {
  transform: rotate(-135deg);
}

.answer {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq-item.open .answer {
  display: block;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }

  .question h3 {
    font-size: 1.1rem;
  }

  .answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }

  .question h3 {
    font-size: 1rem;
  }

  .answer {
    font-size: 0.85rem;
  }
}
.contact-us { 
  padding: 20px 20px; 
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px; 
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px; 
  color: #000000;
}

.contact-card, .map-container {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 32px; 
  width: 100%;
  max-width: 900px; 
  margin: 0 auto; 
}

.map-container iframe {
  width: 100%;
  height: 520px;
  border-radius: 8px;
}

.map-body {
  padding: px;
}

.contact-form  {
  background-color: #db4505;
  border: none;
  padding: 12px 30px; 
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block; 
  margin: 10px auto 0;
}

.contact-form {
  background-color: #060b43;
}

.contact-form {
  background-color: #fff;
  padding: 40px 20px; 
  transition: transform 0.3s ease;
  text-align: left;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
}

.contact-form .form-control {
  margin-bottom: 25px; 
}

@media (max-width: 768px) {
  .contact-us {
    padding: 25px 15px; 
  }

  .contact-section {
    padding: 15px; 
  }

  .contact-form {
    margin-bottom: 25px; 
  }

  .map-container {
    margin-top: 20px; /
  }
}




  footer {
    background-color: #001B36; 
  
  
  color: white;
  padding: 20px 15px;
  text-align: center;
  position: relative; 
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-links {
  width: 30%; 
}


.quick-links ul {
  list-style-type: none;
  padding: 0;
}

.quick-links ul li {
  margin: 8px 0;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.quick-links a:hover {
  color: #f0f0f0;
}

.footer-info p {
  margin-top: 15px;
  color: #ffffff;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quick-links {
    width: 100%; 
    margin-bottom: 25px;
  }

  .quick-links ul li {
    display: inline-block;
    margin: 8px 15px;
  }

  .footer-info p {
    margin-top: 10px;
    color: #ddd;

  }
}
.pricing-table {
  background-color: #003366;
  color: white;
  padding: 20px 20px; /* 30px top & bottom, 20px left & right */
  max-width: 85%;
  margin: 0 auto; /* Centers the div */
}

.pricing-table h1 {
  color: white;
}
.pricing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
  width: 100%;
  max-width: 350px;
}
.pricing-card h3 {
  color: #003366;
}
.price {
  font-size: 24px;
  font-weight: bold;
  color: #E67300;
}
.btn-primary {
  background-color: #003366;
  border: none;
  width: 50%; /* Reduce width to make the button smaller */
  padding: px px; /* Adjust padding for a smaller appearance */
  font-size: 14px; /* Optionally reduce font size */
}

.btn-primary:hover {  
  background-color: #E67300;
}

.list-group-item {
  display: flex;
  align-items: center;
  border: none;
  padding: 8px 0;
}
.list-group-item img {
  width: 20px;
  margin-right: 10px;
}
.equal-height {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}