.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 1250px;
    height: 1260px;
    object-fit: cover;
    z-index: -1;
}
.container,
.row.no-gutters {
    position: relative;
    z-index: 2;
}
 .services {
            position: relative;
            padding: 40px;
            background-color: #f5f5f5;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .services .icon {
            font-size: 50px;
            color: #fff;
            background-color: #ff6f61;
            border-radius: 50%;
            padding: 15px;
        }
        .services .heading {
            font-size: 24px;
            font-weight: bold;
        }
        .services img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
    
     /* Form styling */
    .search-property-1 {
        width: 400px; /* Form width reduced */
        background-color: #f9f9f9;
    }

    /* Fields styling */
    .search-property-1 .form-group {
        padding: 10px; /* Reduced padding */
        margin: 5px; /* Reduced margin */
    }

    .search-property-1 .form-control {
        width: 90%; /* Reduced field width */
        margin: auto; /* Center fields */
    }

    .search-property-1 select,
    .search-property-1 input[type="text"],
    .search-property-1 input[type="date"],
    .search-property-1 input[type="time"],
    .search-property-1 input[type="number"] {
        font-size: 14px; /* Smaller font size */
        padding: 8px; /* Reduced padding inside fields */
    }

    /* Button styling */
    .search-property-1 input[type="submit"] {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
    }

    .search-property-1 input[type="submit"]:hover {
        background-color: #0056b3;
    }
    /* CSS for flex display of the project-wrap */
.project-wrap-container {
    display: flex;
    flex-wrap: nowrap; /* No wrapping, all items in a single row */
    gap: 20px;
    overflow-x: auto; /* Allows horizontal scrolling if items overflow */
}

.project-wrap {
    flex: 0 0 auto; /* Prevents shrinking, ensures items stay in a row */
    width: px; /* Fixed width for consistent size */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.project-wrap .img {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
}

.project-wrap .text {
    padding: 20px;
    text-align: center;
}

.project-wrap .price {
    background-color: #ff6f61;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
}

.project-wrap ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 10px;
}

.project-wrap ul li {
    font-size: 14px;
    color: #555;
}

.outstation-section {
            padding: 50px 5%;
            background-color: #ffffff;
            text-align: center;
        }

        .outstation-section h1 {
            font-size: 36px;
            color: #000000;
            margin-bottom: 10px;
        }

        .outstation-section .divider {
            width: 100px;
            height: 5px;
            background-color: #ff8c00;
            margin: 0 auto 30px;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .services-list li {
            font-size: 16px;
            color: #4a4a4a;
            text-align: left;
        }

        .services-list li a {
            text-decoration: none;
            color: #4a4a4a;
            transition: color 0.3s ease;
        }

        .services-list li a:hover {
            color: #ff8c00;
        }

        @media (max-width: 768px) {
            .services-list {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 480px) {
            .services-list {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .services-list li {
                text-align: center;
            }
        }
  

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .subtitle {
            color: #ff6600;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .title {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .rating-summary {
            text-align: center;
            margin-bottom: 40px;
        }

        .rating-text {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stars {
            color: #ffd700;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .review-count {
            color: #666;
            margin-bottom: 10px;
        }

        .google-reviews {
            max-width: 120px;
        }

        .reviews-carousel {
            position: relative;
            margin-bottom: 40px;
        }

        .reviews-container {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .review-card {
            flex: 0 0 calc(33.333% - 20px);
            background-color: #333;
            color: white;
            padding: 20px;
            margin: 0 10px;
            border-radius: 8px;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .reviewer-name {
            font-weight: bold;
        }

        .review-date {
            font-size: 12px;
            color: #999;
        }

        .review-text {
            font-size: 14px;
            line-height: 1.4;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .prev {
            left: -20px;
        }

        .next {
            right: -20px;
        }

        .customer-photos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .customer-photo {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        @media (max-width: 768px) {
            .review-card {
                flex: 0 0 calc(100% - 20px);
            }
        }
        .feature-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color: #FBB030; 
      padding: 20px 0;
      position:relative;
      top:-87px;
    }

    .feature-item {
      text-align: center;
      color: white;
    }

    .feature-icon img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }

    p {
      margin: 0;
      font-size: 14px;
      font-weight: bold;
    }
    /* Base styles for larger screens */
    .hero-wrap {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .background-video {
        width: 130%;
        height: 2000px;
        object-fit: cover;
    }
    .overlay {
        /*position: absolute;*/
        /*top: 0;*/
        /*left: 0;*/
        /*width: 100%;*/
        /*height: 100%;*/
        /*background: rgba(0, 0, 0, 0.4);*/
    }
    .container {
        position: relative;
        z-index: 2;
    }
    .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .col-md-5, .col-md-6 {
        padding: 20px;
        background-color:;
        
    }
    .col-md-5 {
        flex: 1;
        margin-right: 20px;
        text-align: left;
    }
    .col-md-6 {
        flex: 1;
        
        padding: 20px;
        
    }
    /* Form Input Styling */
    .form-control {
        font-size: 0.85rem;
        padding: 10px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .btn {
        padding: 10px 20px;
        background-color: #FBB030;
        border-color: #FBB030;
        color: black;
        cursor: pointer;
    }
    .btn i {
        margin-right: 8px;
    }

    /* Media Queries for Mobile Responsiveness */
    @media (max-width: 768px) {
        .hero-wrap {
            height: auto;
            padding-top: 50px;
        }
        .background-video {
            height: 50vh;
        }
        .col-md-5, .col-md-6 {
            padding: 15px;
        }
        .col-md-5 {
            text-align: center;
            margin-right: 0;
        }
        .col-md-6 {
            background: rgba(255, 255, 255, 0.8);
        }
        .row {
            flex-direction: column;
            /*align-items: flex-start;*/
        }
        .col-md-5 h3 {
            /*font-size: 1.5rem;*/
        }
        .col-md-5 p {
            font-size: 1rem;
        }
        .form-control {
            font-size: 1rem;
        }
        .btn {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 991px){
        h2{
            font-size:1.3rem!important;
        }
    }

    /* Mobile View - Additional Tweaks */
    @media (max-width: 480px) {
        .col-md-5 h3 {
            /*font-size: 1.2rem;*/
        }
        .col-md-5 p {
            font-size: 0.9rem;
        }
        .col-md-6 h3 {
            /*font-size: 1.2rem;*/
        }
        .form-control {
            font-size: 1rem;
        }
        .btn {
            width: 100%;
            font-size: 1.1rem;
        }
        label{
            font-size:0.6rem !important;
        }
    }
    @media (max-width: 768px) {
    .col-md-5 {
        text-align: justify;
        /*text-align: center !important;*/
        right: 0 !important;
        width: 100% !important;
        padding: 10px !important;
    }

    .col-md-5 h3 {
        /*font-size: 1.4rem !important;*/
        white-space: normal !important;
    }

    .col-md-5 p {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }

    .col-md-5 img {
        width: 18px !important;
        height: 18px !important;
    }
}
/* Responsive form layout for mobile */
@media (max-width: 768px) {
   
    .about-row{
        display:flex!important;
        flex-direction:column!important;
        align-items:center!important;
    }}

@media (max-width: 768px) {
    .col-md-5 {
        width: 100% !important;
        margin-bottom: 20px!important;
    }
    .about-row{
        display:flex!important;
        flex-direction:column!important;
    }
    
    /* Form fields aligned in rows for smaller screens */
    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        width: 100% !important;
        font-size: 14px !important;
        padding: 12px !important;
        border-radius: 5px;
    }

    .form-group select {
        font-size: 14px !important;
    }

    /* Video section - responsive height */
    .hero-wrap1 .background-video {
        height: 1250px !important; /* Full height for mobile view */
        object-fit: cover;        /* Ensure video covers the screen without distortion */
        width: 100% !important;
    }

    /* Adjust overlay position */
    .hero-wrap1 .overlay { 
        background: rgba(0, 0, 0, 0.6);  /*Darker overlay for better contrast 
    }

    /* Adjust content section */
    .hero-wrap1 .container {
        padding: 10px;
    }

    /* Welcome section styling for mobile */
    .col-md-5 h3 {
        /*font-size: 1.4rem;*/
        text-align: center !important;
    }

    .col-md-5 p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    /* Book your ride button */
    .btn {
        font-size: 1rem !important;
        padding: 12px 20px !important;
        width: 100% !important;
    }
}
   @media (min-width: 250px) and (max-width: 557px){
   .formfirstrow{
       /*display:block !important;*/
   }
   .formdiv{
       max-width:100% !important;
       flex: 2 !important;
   }
   .form-control{
       font-size:10px!important;
   }
       
   }
   @media (min-width: 518px) and (max-width: 576px){
   
       label{
           font-size:0.7rem !important;
       }
      
   }
  
}
 @media (min-width: 518px) and (max-width: 999px){
      
      .form-container{
          max-width: 540px!important;
      } 
     .formin{
         flex: 0 0 100%!important;
     }
     .textdiv{max-width: 100.666667%!important;
         
     }       
    
 }
 #head-three{
      font-size: 1.7rem;
 }
  @media (min-width: 260px) and (max-width: 769px){
         #head-three{
         
             font-size: 15px!important;
         }
         .form-para{
             font-size:10px!important;
             
   
         }
         @media (min-width: 300px) and (max-width: 500px){
              .form-para{text-align: left !important;}
         }
         }
    /* Mobile Responsive */
    @media (min-width: 768px) and (max-width: 992px) { 
        .cars-grid{
            gap:4px!important;
            
        }
        .en-btn{
           font-size:11px !important;
           padding: 7px 17px !important;
           
        }
        .car-card-inner{
            display:list-item!important;
        }
       
    }
    
    @media screen and (max-width: 768px) {
    .cars-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Ensure center alignment */
    }
    .car-card-inner{
        width:100%!important;
    }
}



        .car-card {
            flex: 1 1 100%; /* Make cards take full width on mobile */
            max-width: 100%;
        }

        .car-image img {
            width: 100%;
            object-fit: cover;
        }

        .car-content h3 {
            font-size: 18px;
        }

        .car-content span {
            font-size: 16px;
        }

        .car-buttons a {
            font-size: 12px;
            padding: 8px 15px;
        }
    }

    /* Tablet Responsive */
    @media screen and (max-width: 1024px) {
        .car-card {
            flex: 1 1 calc(50% - 20px);
        }
    }

    /* Desktop view */
    @media screen and (min-width: 1025px) {
        .car-card {
            flex: 1 1 calc(33.33% - 20px);
        }
    }
    .carousel-destination .item {
        transition: transform 0.3s ease;
    }

    .carousel-destination .item:hover {
        transform: scale(1.05); /* Slight zoom effect */
    }

    .carousel-destination .item a {
        display: block;
        position: relative;
        height: 200px; /* Fixed size for image */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .carousel-destination .item a:hover {
        transform: scale(1.05); /* Zoom effect on image */
    }
    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
        .container {
            flex-direction: column; /* Stack cards vertically on mobile */
        }
        .row{
            flex-direction:row;
        }

        .tour-card {
            flex: 0 0 100%; /* Make cards take full width on mobile */
            max-width: 100%;
        }
    }

    /* Tablet Responsive */
    @media screen and (max-width: 1024px) {
        .tour-card {
            flex: 0 0 calc(50% - 20px); /* Two columns on tablet */
        }
    }

    /* Desktop view */
    @media screen and (min-width: 1025px) {
        .tour-card {
            flex: 0 0 calc(33.333% - 20px); /* Three columns on larger screens */
        }
    }
@media (max-width: 768px) {
    .hello {
        display: block;  /* Mobile view me content ek ke neeche ek aayega */
        /*text-align: center;*/
        flex-direction:column;
    }

    .image-section {
        order: -1; /* Image aur content pehle aayenge */
    }

    .image-section h1 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .image-section p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .image-section img {
        max-width: 100%;
        height: auto;
    }

    .features-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0.5rem;
    }

    .feature-card {
        width: 95%;
        padding: 0.6rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        justify-content: flex-start;
        flex-direction: row;
        background-color: #ffffff;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }

    .feature-card img {
        width: 20px;
        height: 20px;
    }

    .feature-card h3 {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .image-section h1 {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .image-section p {
        font-size: 0.7rem;
    }

    .feature-card {
        width: 100%;
        padding: 0.5rem;
    }

    .feature-card img {
        width: 18px;
        height: 18px;
    }

    .feature-card h3 {
        font-size: 0.75rem;
    }
}
.ftco-section {
    padding: 20px 0;
    background-color: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

.heading-section {
    margin-bottom: 40px;
}

.heading-section h2 {
    font-size: 42px;
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
   
}

/* Hotel card styles */
.project-wrap.hotel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top:20px;
    
}

.project-wrap.hotel:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Hotel image */
.project-wrap.hotel .img {
    background-size: cover;
    background-position: center;
    height: 165px;
    position: relative;
}

.project-wrap.hotel .price {
    position: relative;
    top: 83px;
    left: 1px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background-color: #FBB030;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Text section */
.project-wrap.hotel .text {
    padding: 15px;
}

.project-wrap.hotel .text .location {
    font-size: 12px;
    /*font-weight: bold;*/
    color: #666;
    margin: 0;
}
.project-wrap.hotel .text .location .hello{
    font-weight:normal;
}

.project-wrap.hotel .text .location span {
    color: #FBB030;
    /*font-weight: bold;*/
}

/* Responsive design */
@media (max-width: 768px) {
    .ftco-section {
        padding: 30px 0;
    }
    .project-wrap.hotel .img {
        height: 200px;
    }
    .project-wrap.hotel .text {
        padding: 10px;
    }
}
