/* FONT RULE (below) */
@font-face {
  font-family: "MyTravelFont";
  src: url("fonts/Mauno-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* FONT RULE (above) */

 
/*********************************************************
******************UNIVERSAL STYLES************************
**********************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  min-height: 100vh;
  font-family: "Dancing Script", cursive;
}


/*********************************************************
*************************NAVBAR***************************
**********************************************************/
nav {
  background: #111111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
  color: #e97c22d2;
  font-size: 1.8rem;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
  display: flex;
  transition: transform 0.4s ease;
  align-items: center;
  gap: 10px;
}

.logo i {
  margin-right: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-family: garamond, sans-serif;
  font-size: 1.5rem;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  color: #e97c22d2;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.4s ease, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffe082;
  transform: scale(1.1);
}

/* Existing styles remain unchanged, then add below */

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #e9656f;
  cursor: pointer;
}

.btn {
  display: flex;
  flex-wrap: nowrap;
}

.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -400px;
  background: #f0944a;
  display: none;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 100;
  border-radius: 10px;
  min-width: 800px; /* reduced from 800px */
  max-width: 90vw;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}


.mega-dropdown:hover .mega-menu {
  display: flex;
}

.mega-column {
  min-width: 180px;
  flex: 1;
}

.mega-column h4 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.mega-column ul li {
  margin: 0.3rem 0;
}

.mega-column ul li a {
  text-decoration: none;
  color:#130a03 ;
  font-size: 0.95rem;
  transition: color 0.3s;
  
}

.mega-column ul li a:hover {
  color: #ffe082;
}


/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal Content Box */
.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  text-align: center;
}

/* Close Button */
.modal-content .close {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-content .close:hover {
  color: #000;
}

/* Headings & Text */
.modal-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #0d426a;
}

.modal-content p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Book Button */
#bookNowBtn {
  margin-top: 1.2rem;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background-color: #00a0dc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#bookNowBtn:hover {
  background-color: #007bb5;
}

/* Animations */
@keyframes fadeIn {
  from { background: rgba(0, 0, 0, 0); }
  to { background: rgba(0, 0, 0, 0.6); }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  nav {
    padding: 1rem 1rem;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 45%;
    right: 0%;
    background: #ffe3cbc9;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
    display: none;
    border-radius: 0px 0px 20px 20px;
    border-left: #fdfbfb solid 2px;
    border-bottom: #f5f3f3 solid 2px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: medium;
  }

  .nav-links li {
    position: relative;
    list-style: none;
  }

  .logo {
    font-size: 1.2rem;

  }
  
}


@media (max-width: 768px) {
  .mega-menu {
    position: static;
    display: none;
    flex-direction: column;
    /* flex-wrap: nowrap; */
    background: #fff5ec;
    box-shadow: none;
    padding: 1rem;
    min-width: 100%;
    border-radius: 0;
    overflow-y: auto; /* better than scroll */
    max-height: 60vh; /* or any height you want */
  }

  .mega-dropdown:hover .mega-menu {
    display: none; /* disable hover effect on mobile */
  }

  .mega-dropdown.active .mega-menu {
    display: flex;
  }

  .mega-column {
    width: 100%;
    padding: 0;
    border: none;
  }

  .accordion-section {
    border-bottom: 1px solid #ccc;
    padding: 0.5rem 0;
    width: 75%;
  }

  .accordion-section h4 {
    margin: 0;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    font-weight: bold;
  }

  .accordion-section h4::after {
    content: '▼';
    position: absolute;
    right: 10px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .accordion-section.active h4::after {
    transform: rotate(180deg);
  }

  .accordion-section ul {
    display: none;
    margin-top: 0.3rem;
    padding-left: 1rem;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: max-height 0.3s ease;
  }

  .accordion-section.active ul {
    display: block;
    max-height: 500px;
  }
}






/*********************************************************
******************HERO SECTION STYLES*********************
**********************************************************/
/* Background Video */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Welcome Section */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85vh;
  width: 100%;
  color: white;
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-family: "Marck Script", cursive;
  font-size: 1.5rem;
}

.content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.content p {
  font-size: 1.5em;
}

@media (max-width: 768px) {
 

  .content h1 {
    font-size: 1.5em;
    line-height: 1;
  }

  .content h1 .tws {
    font-size: 0.9em;
  }

  .content p {
    font-size: 0.7em;
  }
}


/*********************************************************
******************TOP DESTINATIONS STYLES************************
**********************************************************/
section.destinations {
  padding: 4rem 2rem;
  background: transparent;
  text-align: center;
  width: 100vw;
}

section.destinations h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #e97c22e7;
  background: #1a1919d0;
  backdrop-filter: blur(30px);
  display: inline-block;
  border-radius: 10px;
  padding: 1rem 2rem;
}

.swiper {
  padding-bottom: 3rem;
}

.swiper-slide {
  background: #e97c22;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.swiper-slide:hover {
  transform: rotateY(5deg) scale(1.03);
}

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.slide-content {
  padding: 1rem;
  text-align: left;
}

.slide-content h3 {
  margin: 0.5rem 0;
  color: #0a0a0ae7;
  font-size: 1.5rem;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

.slide-content p {
  font-size: 0.95rem;
  color: #070606;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: center;
}


@media (max-width: 768px) {
  section.destinations h2 {
    font-size: 1rem;
  }

  .swiper-slide img {
    height: 200px;
  }

  .slide-content h3 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.8rem;
  }
}


/*********************************************************
***********TOP TOUR PACKAGES SECTION STYLES***************
**********************************************************/
section.packages {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  backdrop-filter: blur(5px);
}

section.packages h2 {
  font-size: 2.5rem;
  color: #e97c22e7;
  margin-bottom: 2rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  background: #080808ec;
  backdrop-filter: blur(30px);
  display: inline-block;
  border-radius: 10px;
  padding: 1rem 2rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.package-card {
  background: rgba(255, 255, 255, 0);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.6s ease,transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.package-card img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.package-info {
  padding: 0;
  text-align: center;
  color: #fff;
}

.package-info h3 {
  margin: 0.5rem 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-size: 3rem;
  color: #e97c22e7;
}

.package-info p {
  font-size: 2rem;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.package-info .price {
  display: inline-block;
  margin-top: 0.5rem;
  background: #050505d2;
  color: #e97c22e7;
  font-weight: bold;
  padding: 1rem 1.2rem;
  border-radius: 15px;
  font-size: 2rem;
}

.place-item {
  height: 100%;
  background: #f79b50;
  padding: 1rem;
  border-radius: 20px;
  /* flex: 2 2 200px; */
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

.place-item h4 {
  color: #070707;
  font-size: 2rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.place-card {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 1px;
  height: 100%;
  transform-origin: top center;
}

.place-item:hover {
  transform: scale(1.03);
}

.place-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.place-item p {
  padding: 0 10px 15px;
  color: #292525;
  font-size: 1rem;
  font-family: "Times New Roman", Times, serif;
}


@media (max-width: 768px) {
  section.packages {
    padding: 0rem;
  }

  section.packages h2 {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  .package-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
    padding: 0;
  }

  .package-card {
    height: 100%;
    padding: 0;
    margin: 1rem;
    margin-top: 0;
  }

  .package-info {
    padding: 0.5rem;
    text-align: center;
    color: #fff;
  }

  .package-info h3 {
    margin: 0.5rem 0;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
    font-size: 1.5rem;
    color: #e9656f;
  }

  .package-info p {
    font-size: 1rem;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .package-info .price {
    display: inline-block;
    margin-top: 0.5rem;
    background: #ffe3cb;
    color: #e9656f;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 1.2rem;
  }
  .place-item {
    max-width: 100%;
    padding: 0.5rem;
  }
  .place-item h4 {
    font-size: 1.5rem;
  }
  .place-item p {
    font-size: 0.8rem;
  }

  
.place-card {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 1px;
  height: 100%;
  transform-origin: top center;
}

  .place-item:hover {
    transform: scale(1.03);
  }
  .place-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 10px;
  }
}



/*********************************************************
****************PORTFOLIO SECTION STYLES******************
**********************************************************/
.portfolio-section {
  padding: 4rem 2rem;
  background: #f8af6ef8;
  color: white;
  text-align: center;
}

.portfolio-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0e0d0d;
  font-family: "Times New Roman", Times, serif;
}

.portfolio-filters {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  margin: 0;
  padding: 0.5rem 1.5rem;
  border: none;
  background: #ffe3cb;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  animation: zoomIn 0.5s ease forwards;
}

.filter-btn:hover,
.filter-btn.active {
  background: #e97c22e7;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-top: 1rem;
  color: black;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.portfolio-item {
  background: transparent;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: scale(1.03);
}

.portfolio-item.active {
  animation: cardClickAnimation 0.8s ease forwards;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .portfolio-section {
    margin: 1rem 0;
    padding: 1rem;
  }
  .portfolio-title {
    font-size: 0.9rem;
  }

  .portfolio-item img {
    height: 200px;
  }

  .portfolio-filters {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .filter-btn {
    margin: 0;
    padding: 0.5rem;
    border: none;
    background: #ffe3cb;
    color: black;
    font-weight: lighter;
    border-radius: 5px;
    cursor: pointer;
    animation: zoomIn 0.5s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
  }
}


/*********************************************************
******************FEEDBACK FORM STYLES********************
**********************************************************/
/* Feedback Section Styling */
.feedback {
  background-color: #f3a15e5d;
  padding: 40px;
  margin: 50px 0;
  text-align: center;
  border-radius: 8px;
}

.feedback h2 {
  font-family: "MyTravelFont", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #080808f5;
}

.feedback p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: black;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 8px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  background-color: #ffe3cb;
  border-radius: 8px;
  font-size: 1.3rem;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: black;
  resize: vertical;
}

.form-group textarea:focus {
  outline: none;
  border-color: #e9656f;
}

.submit-btn {
  background-color: #ffe3cb;
  color: black;
  font-size: 1.2rem;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e97c22e7;
}

@media (max-width: 768px) {


  .feedback {
    padding: 0px;
    margin:  0;
  }
  .feedback h2 {
    font-size: 1.3rem;
  }

  .feedback p {
    font-size: 0.7rem;
  }

  .feedback-form {
    max-width: 90%;
    padding: 0 10px;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group textarea {
    font-size: 1rem;
    padding: 5px;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 8px 20px;
  }
}





/*********************************************************
******************CONTACT FORM STYLES*********************
**********************************************************/
.contact-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.575);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-info,
.social-icons,
.faq {
  margin-top: 2rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  text-align: center;
}

.contact-info p,
.faq p {
  margin: 0.5rem 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.contact-info i,
.social-icons i {
  margin-right: 0.5rem;
  color: #1eff00;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #ff8c00;
  text-decoration: none;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 2rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 0.8rem;
    margin: 10;
  }

  .contact-info,
  .social-icons,
  .faq {
    font-size: 2rem;
  }

  .contact-info p,
  .faq p {
    font-size: 0.8rem;
  }
  
  .faq h3 {
    font-size: 1rem;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }

  iframe {
    height: 100px;
  }

  
}


/*********************************************************
******************ENQUIRY FORM STYLES*********************
**********************************************************/
/* Modal Backdrop */
.enquiry-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* toggle this to 'flex' to show */
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Enquiry Form Container */
.enquiry-container {
  position: relative;
  background: #f0944ae7;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  animation: zoomIn 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 1000;
}

/* Heading */
.enquiry-container h2 {
  font-size: 2rem;
  font-family: "MyTravelFont", sans-serif;
  color: #050505;
  text-align: center;
  margin-bottom: 1rem;
}

/* Form Styling */
#enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #333;
}

.form-group1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #333;
}

.form-group1 label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.form-group1 input,
.form-group1 select,
.form-group1 textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #f9f9f9;
  color: #333;
  font-size: 1rem;
}

.form-group1 input:focus,
.form-group1 select:focus,
.form-group1 textarea:focus {
  outline: none;
  border-color: #007bff;
}

/* Submit Button */
.submit {
  background: #fad8b9;
  color: black;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit:hover {
  background-color: #080808;
  color: white;
}

/* Close Button */
.enquiry-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
}

.enquiry-close:hover {
  background: #e9656f;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .enquiry-container {
    width: 90vw;
    height: 80vh;
    padding: 1rem;
  }

  .enquiry-container h2 {
    font-size: 1.5rem;
  }

  .form-group1 label {
    font-size: 1rem;
  }

  .form-group1 input,
  .form-group1 select,
  .form-group1 textarea {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .submit {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .enquiry-close {
    font-size: 1.2rem;
  }
}




/*********************************************************
******************VIEW COUNT BOX STYLES*******************
**********************************************************/
.view-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 120px;
  height: 50px;
  background: #f5a967ec;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0e0d0d;
  font-family: sans-serif;
  cursor: pointer;
  z-index: 9999;
  transition: background 0.3s ease;
}

.view-count-popup {
  position: fixed;
  bottom: 90px;
  right: 15px;
  background: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-weight: bold;
  display: none;
  animation: popFade 0.5s ease-out forwards;
  z-index: 10000;
}

@media (max-width: 768px) {
  .view-box {
    width: 80px;
    height: 30px;
    font-size: 0.8rem;
  }

  .view-count-popup {
    font-size: 0.7rem;
    padding: 5px 10px;
    margin: 20px 20;
  }

  .view-count-popup {
    bottom: 60px;
    right: 20px;
  }
}

/*********************************************************
******************WHATSAPP FLOAT BUTTON*******************
**********************************************************/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 10px;
    left: 10px;
    padding: 10px;
    font-size: 24px;
  }
}


/*********************************************************
**************************ANIMATIONS**********************
**********************************************************/
@keyframes popFade {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes cardClickAnimation {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.5);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: /* translate(-50%, -50%) */ scale(0.8);
  }
  to {
    opacity: 1;
    transform: /* translate(-50%, -50%) */ scale(1);
  }
}

@keyframes trackmove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-400%);
  }
}

@keyframes carmove {
  0% {
    left: -40%;
  }
  100% {
    left: 110%;
  }
}

@keyframes wheelspin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search container animation on hover */
@keyframes hoverShake {
  0% {
    transform: skew(0deg, 0deg);
  }
  25% {
    transform: skew(5deg, 5deg);
  }
  75% {
    transform: skew(-5deg, -5deg);
  }
  100% {
    transform: skew(0deg, 0deg);
  }
}

@keyframes messagefloat {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(20px) scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: translateX(-20px) scale(1);
    opacity: 1;
  }
}

/*********************************************************
*******************MOBILE STYLES (below)******************
**********************************************************/
@media (max-width: 768px) {
  /* HERO SWIPER (MOBILE-L) */
  .swiper-slide {
    height: auto;
  }

  /* PORTFOLIO (MOBILE-L) */
  .portfolio-title {
    font-size: 2rem;
  }
  .portfolio-item img {
    height: 200px;
  }

  .login-box {
    width: 95vw;
    aspect-ratio: 4/3;
  }

  .car {
    width: 40%;
    bottom: 2%;
  }

  .message {
    font-size: 1.2rem;
  }

  li .search-container {
    display: none;
  }

  .asd .search-container {
    display: flex;
  }
}


@media (max-width: 640px) {
  


  /* ENQUIRY (MOBILE-S) */
  .enquiry-container {
    padding: 1.5rem;
  }

}


@media (max-width: 480px) {
  /* PORTFOLIO (MOBILE-XS) */
  .portfolio-title {
    font-size: 1.8rem;
  }
  .portfolio-item img {
    height: 180px;
  }

  .login-box {
    width: 98vw;
    aspect-ratio: 3/4;
  }

  .car {
    width: 50%;
    bottom: 3%;
  }

  .message {
    font-size: 1rem;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .search-container {
    width: 90%;
  }

  .search-container .search-input {
    width: 0;
  }

  .search-container:hover > .search-input {
    width: 160px;
  }
}