    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
    }

    nav {
      background-color: #1B304D;
      border-bottom: 1px solid #ccc;
      padding: 10px 20px;
	  height: 114px;
    }
	
/*
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
	  display: block;
    }
	
    .navbar-brand {
      font-size: 24px;
      font-weight: bold;
	  padding: 0px 20px !important;
    }
	.navbar-brand img{
		width:220px;
		height:100px;
	}
    .navbar-menu {
      display: flex;
      gap: 20px;
	  float: right;
	  margin-top: 10px;
    }

    .navbar-menu li {
      list-style: none;
      position: relative;
    }

    .navbar-menu a {
      text-decoration: none;
      color: #fff;
      font-weight: 800;
      padding: 20px 20px;
      display: block;
	  font-size: 20px;
	  font-family: "Poppins", sans-serif;
    }
	.navbar-menu a:hover{
		color: #2CA4E0 !important;
		text-decoration: none;
	}

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #1B304D !important;
	  color: #fff !important;
      min-width: 300px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .dropdown-menu li {
      position: relative;

    }
	.dropdown-menu li a{
		 color: #fff !important;
	}
	.dropdown-menu li a:hover{
		color: #fff !important;
		background-color: #2CA4E0 !important;
	}

    .dropdown-submenu .dropdown-menu {
      top: 0;
      left: 100%;
    }

    /* Hover for desktop 
    .navbar-menu li:hover > .dropdown-menu {
      display: block;
    }

    /* Hamburger 
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 45px;
	  height: 3px;
	  background: #fff;
	  margin: 4px 0;
}
	  
    */
    .main-banner-div{
      position: relative;
      padding-top: 90px;
    }
	.banner-div{
		background-image: url('../images/banner.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		width: 100%;
		height: 700px;
	}
	.banner-cover{
		background: rgba(0,0,0,0);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		width: 100%;
		height: 700px;
	}
	.banner-txt{
		padding-top: 175px;
    padding-left: 80px;
		text-align: left;
		color: #fff;
	}
	.banner-txt h3{
		  font-family: "Playfair Display", serif;
		font-weight: bold;
		font-size: 58px;
	}
	.banner-txt p{
		 font-family: "Roboto", sans-serif;
		font-style: italic;
		font-size: 18px;
		color: #000;
	}
	.primary-btn{
		background-color: #C49A6C;
		border: none;
		color: #fff;
		 font-family: "Roboto", sans-serif;
		font-weight: bold;
		padding:14px;
		cursor: pointer;
	   position: relative;
      overflow: hidden;
      z-index: 1;
	}
	.primary-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background-color: #000;
      transition: left 0.4s ease;
      z-index: -1;
    }
	 .primary-btn:hover::before {
      left: 0;
    }
	.main-us{
		padding: 0;
		margin: 0;
		width:100%;
		overflow: hidden;
	}
	.main-tle{
		padding-top: 60px;
	}
	.main-container {
		padding: 40px;
	}
	.main-tle h3{
			  font-family: "Playfair Display", serif;
		font-weight: bold;
		font-size: 40px;
	}
	.abouts{
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    background-color: #FEE5B9;
  }
	.about-txt {
    padding: 40px;
}

.section-header {
    margin-bottom: 25px;
}
.section-header h3 {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    	  font-family: "Playfair Display", serif;
}


.line {
    width: 160px;
    height: 3px;
    background-color: #C49A6C;
    margin-bottom: 20px;
}

.about-txt p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
     text-align: justify;
     padding-right: 40px;
     font-family: "Poppins", sans-serif;
}


.about-img-div{
  width: 100%;
  height: auto;
}
.about-img-div img{
  width: 100%;
  height: auto;
}
	    .category-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .service-card {
      flex: 1 1 400px;
      color: #fff;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      padding: 30px;
      min-height: 300px;
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }
.card-overlay_blue {
      background: linear-gradient(to right, rgba(254, 229, 185, 1), rgba(255, 255, 255, 0.6));
      position: absolute;
      inset: 0;
      z-index: 1;
    }  
	.card-overlay_dark {
     background: linear-gradient(to right, rgba(254, 229, 185, 1), rgba(255, 255, 255, 0.6));
      position: absolute;
      inset: 0;
      z-index: 1;
    }


    .service-content {
      position: relative;
      z-index: 2;
    }

    .service-content h2 {
      margin: 0 0 10px; 
      font-size: 24px;
	   font-family: "Playfair Display", serif;
		font-weight: bold;
		font-size: 36px;
    color:#000;
    }

    .service-content p {
      margin: 0 0 20px;
	    font-family: "Poppins", sans-serif;
      color:#000;
    }

    .btn {
      background-color: white;
      color: #2CA4E0;
      border-radius: 40px;
      padding: 10px 20px;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      transition: background-color 0.3s, color 0.3s;
    }

    .btn:hover {
      background-color: #FEE5B9;
      color: white;
    }

   
 .car-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      
    }

    .car-card {
      background: white;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: 0.3s ease-in-out;
       background-color: #FEE5B9;
    }

    .car-card:hover {
      transform: translateY(-5px);
    }

    .car-img {
      width: 100%;
      height: 250px;
      object-fit: contain;
      background: #fff;
      padding: 10px;
    }

    .car-info {
      padding: 20px;
	  font-family: "Poppins", sans-serif;
   
    }

    .car-info h3 {
      margin: 0 0 10px;
      font-size: 20px;
      color: #000;
	  font-family: "Playfair Display", serif;
	  font-weight: bold;
    }

    .car-features {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
	 
    }

    .features-list li {
      padding: 3px 0;
      font-size: 14px;
      color: #444;
	  font-family: "Poppins", sans-serif;
	  font-style: italic;
    }

    .price {
      font-size: 20px;
      color: #000;
      font-weight: bold;
      margin-bottom: 10px;
      	  font-family: "Playfair Display", serif;
    }

    .rent-btn {
      display: block;
      width: 100%;
      padding: 10px 0;
      text-align: center;
      background-color: #f2858a;
      color: white;
      font-weight: bold;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
    }

    .rent-btn:hover {
      background-color: #d05f64;
    }
    .serviceimg{
      width: 100%;
      height: 200px;
      object-fit: cover;
   
    }
.testimonials-section {
  padding: 30px 8px;
 margin-left: -30px;
  text-align: center;
  color: #000;
}
.ahref{
	color:#fff;
}
.ahref:hover{
	text-decoration: none;
	color: #fff;
}
.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}
    .media-contacts{
		text-align: center;
		padding: 0;
		margin: 0;
		overflow:hidden;
		font-family: "Poppins", sans-serif;
		cursor: Pointer;
		height: 450px;
		margin-left: -30px;
	}
	.contact-span{
	background-color: #fff;
  padding: 20px;
  border-radius: 20%;
  height: 11px;
  font-size: 22px;
  color:#1B304D
  }
	.blue{
		background-color: #EFE5DA;
		padding:30px;
		color:#000;

	}

  .blue h3{
    font-family: "Playfair Display", serif;
  }

	
	
	.main-navbar input[type="checkbox"],
.main-navbar .hamburger-lines{
    display: none;
}

.main-container{
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.main-navbar{
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    /*opacity: 0.95;*/
    z-index: 100;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items{
    order: 2;
    display: flex;
	margin-right: -87px;
  gap: 20px;
}
.logo{
    order: 1;
  font-size: 2.3rem;
  width: 220px;
  height: 110px;
  float: left;
  margin-left: -80px;
}

.menu-items li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
	
}

.main-navbar a{
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
	color: #fff;
	font-size: 16px;
	 font-family: "Playfair Display", serif;
}

.main-navbar a:hover{
    color: #C49A6C;
	text-decoration: none;
}
.contact-form{
	width: 100%;
	overflow: hidden;
}
.contact-form h3{
    font-family: "Playfair Display", serif;
    font-weight: bold;
    font-size: 40px;
    padding-bottom: 20px;  
  }
  .contact-form p{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding-bottom: 20px;  
  }
  .contact-form ul{
    list-style: none;
    padding: 0;
  }
  .contact-form ul li{
    padding: 8px 0;
    font-size: 16px;
    color: #000;
      font-family: "Poppins", sans-serif;
  }
  .contact-form ul li a{
    color: #000;
      font-family: "Poppins", sans-serif;
      text-decoration: none;
      
  }
a:hover{
	text-decoration:none;
}
.whatsapp-icon-section {
   align-items: center;
  background-color: #25d366;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  bottom: 30rem;
  display: flex;
  height: 5rem;
  justify-content: center;
  position: fixed;
  right: 0;
  width: 6rem;
  color: #fff;
  font-size: 40px;
   z-index: 999;
}
.whatsapp-icon-section:hover{
	text-decoration: none;
	color: #fff;
}
.phone-icon-section {
   align-items: center;
  background-color: #1B304D;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  bottom: 22rem;
  display: flex;
  height: 5rem;
  justify-content: center;
  position: fixed;
  right: 0;
  width: 6rem;
  color: #fff;
  font-size: 36px;
  z-index: 999;
}
.phone-icon-section:hover{
	text-decoration: none;
	color: #fff;
}
.icons-blocks a{
	text-decoration: none;
	color: #fff;
}
.packagre-card{
	height: 800px;
}
.icons-blocks{
  display: inline-flex;
  float: left;
  padding: 20px;
}
.icons-blocks p{
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-left: 10px;
  float: left;
}
.footer-details{
 padding-left: 20px;
}
.footer{
  background-color: #EFE5DA;
  color:#000
}
@media (max-width: 768px){
  	.banner-txt p{
		
    padding-top: 270px;
	}
		.banner-txt h3{
		  font-family: "Playfair Display", serif;
		font-weight: bold;
		font-size: 48px;
	}
  .about-txt {
    padding-left: 40px !important;
}
.icons-blocks{
 margin-left:  -56px !important;
  padding-top: 20px !important;
}
    .main-navbar{
       
		height: 90px;
    }
	.media-contacts {
		margin-left: 0px;
	}
	.banner-txt {
	padding:20px;
    
}
.packagre-card{
	height: auto;
}
.main-container {
  padding: 10px 16px;
}
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines{
        display: block;
    }

    .navbar-container{
        display: block;
        position: relative;
        height: 64px;
    }
.mob-hide{
	display: none;
}
    .navbar-container input[type="checkbox"]{
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 70px;
        width: 35px;
        position: absolute;
        top: 10px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #fff;
    }
    
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2{
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .main-navbar .menu-items{
           padding-top: 128px;
    background: #000;
    height: 100vh;
    max-width: 300px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -78px;
    padding-left: 60px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
    overflow: scroll;
    margin-top: -50px;
    }

    .main-navbar .menu-items li{
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo{
        position: absolute;
		top: -8px;
		right: -6px;
		font-size: 2.5rem;
		width: 195px;
		height: 82px;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items{
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1{
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2{
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3{
        transform: rotate(-45deg);
    }
	.car-card {
      background: white;
      border-radius: 10px;
      width: 340px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: 0.3s ease-in-out;
    }
	.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(362px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
  cursor: Pointer;
}
.quote-icon{
    font-size: 40px;
  color: #2CA4E0;
  position: absolute;
  top: 20px;
  right: 20px;
}
.testimonial-user{
    display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonial-user img{
    width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.mob-block{
	display:none;
}
}

@media (max-width: 500px){
    .navbar-container input[type="checkbox"]:checked ~ .logo{
        display: none;
    }
}
	@media (max-width: 768px) {
      .car-list {
        flex-direction: column;
        align-items: center;
      }
    }
    @media (max-width: 768px) {
      .category-container {
        flex-direction: column;
      }
    }
	
	/*
	
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
		    padding-top: 24px; 
	float: right;
      }
	  nav {
  background-color: #1B304D;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  height: 100px;
}
.navbar-brand img {
  width: 169px;
  height: 80px;
  float: left;
  margin-left: -47px;
}
      .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
      }

      .navbar-menu.active {
        display: flex;
      }

      .dropdown-menu {
        position: static;
        box-shadow: none;
      }

      .dropdown-submenu .dropdown-menu {
        left: 0;
      }

      /* Disable hover on mobile 
      .navbar-menu li:hover > .dropdown-menu {
        display: none;
      }

      .dropdown-toggle.open + .dropdown-menu {
        display: block;
      }
    }
	*/