@import url('https://fonts.googleapis.com/css2?family=Abel&family=Anton&family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fredericka+the+Great&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lilita+One&family=Noto+Serif+Devanagari:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik+Dirt&family=Squada+One&family=Teko:wght@300..700&family=Viga&display=swap');
/* font-family: "Poppins", serif; */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body{
    background-color: #ffffff;
  }
html{
  scroll-behavior: smooth;
}
#hero-section{
    width: 100%;
    height: 100vh;
    background-image: url(https://i.ibb.co/VwRv4mW/home-page.png);
    background-position: center;
    background-size: cover;
}
.nav-logo{
 width: 100px;
 height: 92px;
 /* background-color: aqua; */
 background-image: url(https://i.ibb.co/8X5GP4y/YEMURA-removebg-preview.png);
 background-position: center;
 background-size: contain;
 background-repeat: no-repeat;
 @media (max-width: 500px) {
    width: 160px;
    height: 92px;
 }
 @media (max-width: 500px) {
    width: 100px;
    height: 92px;
 }
 @media (max-width: 500px) {
    width: 90px;
    height: 70px;
 }
}
.navbar {
    position: fixed;
    width: 100%;
    padding: 10px 20px;
    background-color: transparent;
    z-index: 1000;
    top: 0;
    transition: background-color 1.3s ease, backdrop-filter 1.3s ease;
  }
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.411); /* Dark translucent background */
    backdrop-filter: blur(10px); /* Adds the blur effect */
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  .nav-links li a {
    color: #133244;
    /* text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.541); */
    text-decoration: none;
    font-size: 18px;
    /* font-family: "Abel", sans-serif; */
    font-family: "Poppins", serif; 
    font-weight: normal;
  }

  .nav-links li a:hover{
    background-color: rgba(0, 0, 0, 0.212);
    padding: 3px;
    border-radius: 2px;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    /* position: absolute; */
    right: 70px;
    @media (max-width:426px) {
      gap: 5px;
    }
    a{
        text-decoration: none;
        color: #133244;
        font-size: 35px;
        @media (max-width: 426px) {
            font-size: 25px;
        }
    }
  }
  .social-icons{
    a:hover{
     color: rgba(255, 255, 255, 0.568);
    }
  }
  /* Hamburger Menu */
  .hamburger {
    display: none;
    /* position: absolute; */
    right: 20px;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #133244;
    border-radius: 2px;
  }
  .hamburger span:hover{
    background-color: rgba(255, 255, 255, 0.568);
  }
  
  /* Responsive Styling */
  @media (max-width: 998px) {
    .nav-links {
      position: absolute;
      top: 80px;
      right: 0;
      background-color: #ffffffb9;
      backdrop-filter: blur(10px);
      border-radius: 10px;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      padding: 20px;
      gap: 15px;
      transform: translateY(-100%);
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      pointer-events: none;
    }
  
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .social-icons {
      top: 10px;
      right: 60px;
    }
  
    .hamburger {
      display: flex;
    }
  }
  /* .filter{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.397);
  } */
  .home-content h1 {
    color: #da3f24;
    /* font-family: "Viga", serif; */
    font-family: "Poppins", serif; 
    font-size: 50px;
    margin-left: 20px;
    @media (max-width:826px) {
        font-size: 30px;
    }
    @media (max-width:361px) {
      font-size: 20px;
  }
}

.home-content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-align: left;
}

.words {
    display: inline-block;
    /* overflow: hidden; */
    /* height: 10px; */
    /* position: relative; */
    background-color: aqua;
}

.words span {
    margin-left: 20px;
    font-size: 40px;
    /* font-family: "Viga", serif; */
    font-family: "Poppins", serif; 
    position: absolute;
    opacity: 0;
    animation: rotateWords 12s infinite;
    white-space: nowrap;
    color: #133244;
    @media (max-width:826px) {
        color: #133244;
        background-color: #ffffff91;
        border-radius: 3px;
        font-size: 25px;
        padding: 2px 5px;
    }
    @media (max-width:361px) {
      font-size: 16px;
  }
}

.words span:nth-child(1) { animation-delay: 0s; }
.words span:nth-child(2) { animation-delay: 3s; }
.words span:nth-child(3) { animation-delay: 6s; }
.words span:nth-child(4) { animation-delay: 9s; }

/* Keyframes for rotating the words */
@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(100%); }
    10% { opacity: 1; transform: translateY(0); }
    25% { opacity: 1; }
    35% { opacity: 0; transform: translateY(-50%); }
    100% { opacity: 0; }
}
.button-book{
    margin-top: 80px;
    margin-left: 15px;
    animation: pulse 1.5s infinite;
    /* display: flex;
    justify-content: center; */
    button{
        border: none;
        border-radius: 25px;
        color: white;
        /* background-color: transparent; */
        background-color: #da3f24;
        width: 200px;
        height: 40px;
        @media (max-width:361px) {
          width: 150px;
      }
    }
    a{
        text-decoration: none;
        color: rgb(255, 255, 255);
        /* font-family: "Abel", sans-serif; */
        font-family: "Poppins", serif;
        font-size: 20px;
        font-weight: 600;
        @media (max-width:361px) {
          font-size: 13px;
      }
    }
    button:hover{
        background-color: #133244;
        animation: none;
        a{
            color: #ffffff;
        }
    }
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(255, 68, 0, 0.027);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 68, 0, 0);
  }
}
#section-2{
 width: 100%;
 /* height: 100vh; */
 background-color: #ffffff;
}
.titles-1{
  p{
    color: #133244;
    /* font-family: "Abel", sans-serif; */
    font-family: "Poppins", serif; 
  }
  h1{
    color: #133244;
    /* font-family: "Abel", sans-serif; */
    font-family: "Poppins", serif; 
    /* font-size: 40px; */
  }
  .line{
    width: 40px;
    height: 2px;
    background-color: #da3f24;
  }
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
.category-paragraph{
  color: #133244;
  font-family: "Poppins", serif; 
  text-align: center;
  width: 70%;
  margin: 20px auto;
  @media(max-width:500px)  {
    width: 80%;
  }
}
.category-pic {
  width: 200px; /* Set the width of the container */
  height: 200px; /* Set a fixed height for the container */
  overflow: hidden; /* Ensures the image doesn’t spill out of the container */
  position: relative; /* Allows positioning of child elements */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.411);
}

.category-pic img {
  width: 100%; /* Make the image width match the container */
  height: 100%; /* Make the image height match the container */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  transition: transform 0.5s ease; /* Smooth scaling effect on hover */
}

.category-pic::before {
  content: ""; /* Add a dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.493); /* Dark overlay with 76.7% opacity */
  z-index: 1; /* Ensures it is above the image but below the text */
  transition: opacity 0.5s ease; /* Smooth fade-out effect */
}

.label {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust positioning to perfect center */
  color: white; /* Make the text visible against the dark background */
  font-size: 15px; /* Adjust font size as needed */
  z-index: 2; /* Ensure the label is above the overlay */
  text-align: center;
  /* font-family: "Abel", sans-serif; */
  font-family: "Poppins", serif; 
  transition: opacity 0.5s ease; /* Smooth fade-out effect */
}

/* Hover effect */
.category-pic:hover::before {
  opacity: 0; /* Hide the overlay */
}

.category-pic:hover .label {
  opacity: 0; /* Hide the label */
}

.category-pic:hover img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.image-categories {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* ABOUT SECTION */
.about-container{
  padding: 20px;
}
.about-pic{
  width: 50%; /* Set the width of the container */
  height: 50%; /* Set a fixed height for the container */
  overflow: hidden; /* Ensures the image doesn’t spill out of the container */
  position: relative; /* Allows positioning of child elements */
}
.about-pic img{
  width: 100%; /* Make the image width match the container */
  height: 100%; /* Make the image height match the container */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  background-position: center;
}

.about-info{
  /* background-color: #10af9a; */
  width: 50%;
  @media (max-width: 1086px) {
    width: 100%;
  }
}
.about-paragraph{
  color: #133244;
  /* font-family: "Abel", sans-serif; */
  font-family: "Poppins", serif; 
  width: 90%;
  margin: 20px auto;
}
.about-paragraph span{
  color: #da3f24;
}
.about-wrapper{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  @media (max-width: 1086px) {
    flex-direction: column;
    align-items: center;
  }
  align-items: center;
}
.rate-record{
  display: flex;
  align-items: center;
  gap: 9px;
  width: 250px;
  .rate-text{
    color: #133244;
    /* font-family: "Abel", sans-serif; */
    font-family: "Poppins", serif; 
    /* width: 60%; */
  }
}
  .rate-number{
  color: #da3f24;
  font-family: "Abel", sans-serif;
  font-size: 40px;
}

.rate-wrapper{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.rates-heading{
  text-align: center;
  color: #133244;
  font-family: "Poppins", serif; 
}
.rates{
  margin-top: 50px;
}
.rate-heading{
  color: #da3f24;
  font-family: "Poppins", serif; 
}
.read-more-btn{
  background-color: #da3f24;
  width: 100px;
  height: 30px;
  border: none;
  border-radius: 10px;
  a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: "Poppins", serif; 
    font-weight: 700;
  }
}
.btn-read-more{
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
}

/* TOP BRANDS */
.partner-logo, .partner-logo-2, .partner-logo-3, .partner-logo-4,
.partner-logo-5, .partner-logo-6{
    width: 100px; /* Or specify a fixed width, e.g., 300px */
    height: 100px;
    background-size: contain; /* Keeps the image's original dimensions */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image within the div */
    /* border: 1px solid #ccc; */
}
.partner-logo{
    background-image: url('../assets/images/HONDA.jpeg');
}
.partner-logo-2{
    background-image: url(../assets/images/Mercedes\ Benz.jpeg);
}
.partner-logo-3{
    background-image: url(../assets/images/Nissan\ Skyline\ R34\ GT-R\ M\ Spec\ NISMO\ R1.jpeg);
}
.partner-logo-4{
    background-image: url(../assets/images/download\ \(19\).jpeg);
}
.partner-logo-5{
    background-image: url(../assets/images/ford.jpeg);
}
.partner-logo-6{
    background-image: url(https://i.ibb.co/cQB2fYJ/all.jpg);
}
.logos-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
#our-partners-section{
    width: 100%;
    padding-bottom: 30px;
}
/* PORTFOLIO SECTION */
#portfolio-section{
  width: 100%;
  padding-bottom: 20px;
  background-color: #e2e2e2;
}
.photo{
  display: inline-block;
  margin-bottom: 10px;
  overflow: hidden;
}
.photo img{
  width: 100%;
}
.grid-container{
  position: relative;
  column-count: 4;
  padding: 10px;
  margin-top: 20px;
  @media (max-width:592px) {
    column-count: 2;
    padding: 5px;
  }
}
.grid-wrapper{
    /* height: ; */
    overflow: hidden;
    position: relative;
}
.btn-view-more{
display: flex;
justify-content: center;
align-items: center;
}
#testimonial-section {
  width: 100%;
  height: 100%;
  background-color: #3b9cd4;
}
.testimonial-heading .titles-1{
  p, h1{
    color: white;
  }
}
.testimonial-filter {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.testimonial-heading {
  color: white;
}

.testimonial-heading .description {
  font-size: 15px;
  color: rgb(138, 138, 138);
  /* font-family: "Abel", sans-serif; */
  font-family: "Poppins", serif; 
  margin-top: 10px;
  /* line-height: 1.5; */
}

.testimonial-wrapper .swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  background-color: transparent;
  border: 2px solid rgba(192, 192, 192, 0.2);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: white;
}

.circular-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.name {
  font-size: 18px;
  margin: 10px 0 5px;
  font-family: "Poppins", serif; 
}

.testimony {
  font-size: 14px;
  color: rgb(138, 138, 138);
  font-family: "Poppins", serif; 
  margin-bottom: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr; /* Single-column layout */
    text-align: center; /* Center-align the text for smaller screens */
  }

  .testimonial-heading {
    margin-bottom: 20px; /* Add spacing below the text */
  }
}
/* Use more specific selectors */
#testimonial-section .swiper-pagination-bullet {
  background: #b4b4b459 ; /* Force the change using !important */
  opacity: 1; /* Ensure the bullets are fully visible */
}

#testimonial-section .swiper-pagination-bullet-active {
  background: #e0e0e0; /* Force the active bullet color */
}
.follow-section{
  width: 100%;
  padding-bottom: 20px;
}
.instagram-paragraph{
  color: #133244;
  font-family: "Poppins", serif; 
  text-align: center;
  width: 70%;
  margin: 20px auto;
  @media(max-width:500px)  {
    width: 80%;
  }
}
.category-pic i{
  color: rgba(255, 255, 255, 0.363);
  /* font-weight: 100; */
  font-size: 40px;
}
.btn-follow{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  }

/* CONTACT-SECTION */
#contact-section{
  width: 100%;
  background-image: url(https://i.ibb.co/c6FNyhr/image-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact--us{
  background-color: #ffffff00;
  backdrop-filter: blur(3px);
  p, h1{
    color: white;
  }
}
.contact-wrapper a button{
  background-color: #133244;
  width: 200px;
  height: 30px;
  border: none;
  border-radius: 3px;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
/* .contact-wrapper a .email-button{
  background-color: rgb(0, 0, 71);
  color: white;
} */
.contact-wrapper a button:hover{
  background-color: #da3f24;
  color: white;
}
.contact-wrapper{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
/* LOCATION SECTION */
#location-section {
  width: 100%;
  height: 50vh; /* Full height of the section */
  position: relative; /* Ensure it works with child elements */
  overflow: hidden; /* Prevent any overflow issues */
}

#location-section iframe {
  width: 100%; /* Full width of the section */
  height: 100%; /* Full height of the section */
  border: 0; /* Removes the iframe border */
  display: block; /* Ensures no gaps */
}
footer {
  background: linear-gradient(90deg, #133244, #215574, #da3f24);
  background-size: 300% 300%;
  animation: gradient-animation 8s ease infinite;
}

/* Keyframes for the gradient animation */
@keyframes gradient-animation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.footer-logo{
  width: 100px;
  height: 100px;
  background-color: rgb(255, 255, 255);
  background-image: url(https://i.ibb.co/8X5GP4y/YEMURA-removebg-preview.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 10px;
}
footer h3{
  color: white;
  font-size: 16px;
  font-weight: normal;
  font-family: "Poppins", serif;
}
.call-to-action{
  color: white;
  font-weight: normal;
  font-size: 13px;
  font-family: "Poppins", serif;
  margin-top: 20px;
}
footer a{
  text-decoration: none;
  color: white;
}
.second-column a, .third-column a, .fouth-column a{
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.486);
  font-family: "Poppins", serif;
}
footer a:hover{
  color: rgb(255, 255, 255);
}
.fouth-column a{
  font-size: 20px;
}
.fouth-column a:hover{
  color: rgb(255, 255, 255);
}
.footer-wrapper{
  display: flex;
  justify-content: flex-start;
  gap: 10%;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  @media (max-width:890px) {
      flex-wrap: wrap;
  }
}
.developer{
  width: 100%;
  padding: 20px;
  text-align: center;
  font-family: "Poppins", serif;
  color: white;
  a{
    text-decoration: none;
    color: #ff8411;
  }
}