
        /* Global Optimized CSS */
        body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .template-title .title { font-size: 28px; }
            .col-md-7 img { width: 90%; display: block; margin: auto; }
            .blog-slider .container { padding: 20px; }
        }

    /* General Styles - How it works */
.about-box {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

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

.template-title .title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.template-title .title_over {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #bd8d2f;
    text-transform: uppercase;
    letter-spacing: 2px;
    top: 15px;
}

.subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
    color: #666;
}

/* Process Steps List */
.process-steps {
    list-style-type: none;
    padding: 0;
}

.process-steps li {
    margin-bottom: 30px;
}

.process-steps h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.process-steps p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Image Styling */
.col-md-7 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Custom Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
    .responsive-title .title {
        font-size: 28px;
    }

    .responsive-process-steps h3 {
        font-size: 20px;
    }

    .responsive-process-steps p {
        font-size: 14px;
    }

    .col-md-7, .col-md-5 {
        text-align: center;
    }

    .col-md-7 img {
        width: 80%;
        margin: 0 auto;
    }

    .about-box {
        padding: 30px 15px;
    }
}

    
        .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000; /* Adjust as needed */
}





/* Blog Section Fixes */
.blog-slider .entry-content ul {
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    margin-top: 10px;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

/* Individual List Items */
.blog-slider .entry-content ul li {
    display: flex;
    align-items: center;
    margin-right: 15px; /* Add spacing between items */
    white-space: nowrap; /* Prevent text from breaking weirdly */
}

/* Admin & Date Icon Size */
.blog-slider .entry-content ul li img {
    width: 18px;  /* Set icon width */
    height: 18px; /* Set icon height */
    margin-right: 5px;
    object-fit: contain;
}

/* Fix Centering on Mobile (Below 768px)** */
@media (max-width: 768px) {
    .blog-slider .entry-content ul {
        justify-content: center; /* Center items on small screens */
        flex-direction: column; /* Stack items vertically */
    }

    .blog-slider .entry-content ul li {
        width: 100%; /* Make full width */
        justify-content: center; /* Center text */
        text-align: center;
        margin-bottom: 5px; /* Add spacing between elements */
    }
}


    .explore-heading{
        font-size:12px;
    }

/* Service Page Specific Styles */
.service-page .mcc-about {
    padding: 60px 0;
    background-color: #fff;
}

.service-page .mcc-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.service-page .mcc-faq {
    padding: 60px 0;
    background-color: #fff;
}

/* If you have any additional service page–specific rules,
   prefix them with .service-page to avoid conflicts */

  /* === Review Section === */
.fb-section {
    background-color: #f9f9f9;
    background-image: url('https://sublimenchauffeur.syd1.digitaloceanspaces.com/assets/images/banner/banner2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 40px 0;
  }
  
  .fb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7); /* fade overlay */
    z-index: 1;
  }
  
  .fb-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
  }
  
  .fb-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
  }
  
  /* === Carousel Cards === */
  .fb-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
  }
  
  .fb-card {
    width: 100%;
    max-width: 320px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    height: 250px;
  }
  
  .fb-card:hover {
    transform: translateY(-3px);
  }
  
  .fb-header {
    text-align: right;
    margin-bottom: 8px;
  }
  
  .fb-header .google-icon {
    width: 50px;
    height: 50px;
  }
  
  .fb-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .fb-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 8px;
  }
  
  .fb-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    margin-right: 8px;
  }
  
  .fb-name {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
    font-size: 14px;
  }
  
  .fb-rating {
    color: #f39c12;
    font-size: 14px;
  }
  
  /* === Meta Box (Logo + Name + Button) === */
  .fb-meta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  
  .fb-logo {
    width: 60px;
    height: auto;
  }
  
  .fb-meta-content {
    text-align: center;
  }
  
  .fb-meta-content h3 {
    margin: 0;
    font-size: 18px;
    color: #222;
  }
  
  .fb-meta-rating {
    font-size: 14px;
    color: #f39c12;
    margin-top: 4px;
  }
  
  .fb-score {
    color: #333;
    margin-left: 5px;
  }
  
  .fb-write-btn {
    background-color: transparent;
    color: #0073e6;
    border: 1px solid #0073e6;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .fb-write-btn:hover {
    background-color: #0073e6;
    color: #fff;
  }
  
  /* === Mobile Responsive Adjustments === */
  @media (max-width: 767px) {
    .fb-section h2 {
      font-size: 22px;
    }
  
    .fb-card {
      height: auto;
      padding: 12px;
    }
  
    .fb-content p,
    .fb-name,
    .fb-rating {
      font-size: 13px;
    }
  
    .fb-avatar {
      width: 32px;
      height: 32px;
    }
  
    .fb-meta-box {
      flex-direction: column;
      text-align: center;
    }
  
    .fb-meta-content h3 {
      font-size: 16px;
    }
  
    .fb-meta-rating {
      font-size: 13px;
    }
  
    .fb-write-btn {
      margin-top: 6px;
      font-size: 12px;
    }
  
    .fb-logo {
      width: 50px;
    }
  }
/* HERO SECTION */
.mcc-hero {
    position: relative;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
}
.mcc-hero-overlay {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
}
.mcc-hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 20px;
}
.mcc-breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
}
.mcc-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.mcc-breadcrumb .breadcrumb-item.active {
    color: #ddd;
}

/* ABOUT SECTION */
.mcc-about {
    padding: 60px 0;
    background-color: #fff;
}
.mcc-about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}
.mcc-about-image img {
    width: 100%;
    border-radius: 8px;
}

/* CONTENT SECTION */
.mcc-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.mcc-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.mcc-content-text h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #222;
}
.mcc-content-text ul {
    list-style: disc inside;
    margin: 20px 0;
}
.mcc-content-text ul li {
    margin-bottom: 10px;
}

/* FAQ SECTION */
.mcc-faq {
    padding: 60px 0;
    background-color: #fff;
}
.mcc-faq-content {
    text-align: center;
}
.mcc-faq-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.mcc-faq-item {
    margin-bottom: 20px;
    text-align: left;
}
.mcc-faq-item h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}
.mcc-faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 767px) {
    .mcc-hero {
        height: 250px;
    }
    .mcc-hero-title {
        font-size: 32px;
    }
    .mcc-about, .mcc-content, .mcc-faq {
        padding: 40px 0;
    }
    .mcc-content-text h2, .mcc-faq-content h2 {
        font-size: 24px;
    }
    .mcc-faq-item h3 {
        font-size: 18px;
    }
}

/* ===== Luxury Slider Section ===== */
.luxury-slider-section {
    padding: 20px 0;  /* You can reduce this if needed */
    background-color: #fff;
  }
  
  .luxury-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
  }
  
  .luxury-slider-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* ===== Reset Owl Carousel Outer Stage Spacing ===== */
  .luxury-slider .owl-stage-outer {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  /* ===== Adjust Carousel Item Padding ===== */
  .luxury-carousel .owl-item {
    padding: 10px;  /* Reduced from 15px to reduce vertical gap */
  }
  
  /* ===== Slide Styles ===== */
  .luxury-slide {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 10px;
    margin-bottom: 10px;  /* Reduced from 15px */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .slide-image-wrapper {
    width: 320px;
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Always visible overlay strip at bottom of image */
  .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    color: #fff;
    font-size: 0.9rem;
  }
  
  .slide-heading {
    margin: 0;
  }
  
  /* Description area with fixed min-height for uniformity */
  .slide-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
    min-height: 60px;  /* Adjust as needed */
    padding: 0 10px;
    text-align: left;
  }
  
  /* ===== Responsive Settings ===== */
  /* Desktop: 3 items */
  @media (min-width: 992px) {
    .luxury-carousel .owl-item {
      width: calc(100% / 3);
    }
  }
  
  /* Mobile: 1 item */
  @media (max-width: 991px) {
    .luxury-carousel .owl-item {
      width: 100%;
    }
  }



  /* Table Styles */
  .table-container {
      overflow-x: auto;
      width: 100%;
  }
  .table-custom {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
      text-align: center;
      background: #f9f9f9;
  }
  .table-custom thead {
      background: #e3f2fd;
      color: #333;
      font-weight: bold;
  }
  .table-custom th, .table-custom td {
      padding: 4px 6px; /* Reduced padding for smaller row height */
      border: 1px solid #ddd;
  }
  .table-custom tbody tr {
      height: 30px; /* Explicitly setting a smaller row height */
  }
  .table-custom tbody tr:hover {
      background: #f1f8ff;
  }
  /* Category Titles */
  .category-title {
      background: #d7ecff;
      color: #333;
      padding: 6px;
      text-align: center;
      font-size: 14px;
      font-weight: bold;
      display: block;
  }
  /* Search Bar */
  .search-bar {
      width: 100%;
      max-width: 400px;
      padding: 6px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
      margin-bottom: 20px;
      background: #f9f9f9;
  }
  /* Mobile Optimization */
  @media (max-width: 768px) {
      .table-custom {
          font-size: 12px;
      }
      .table-custom th, .table-custom td {
          padding: 3px 5px;
      }
      .table-custom tbody tr {
          height: 28px; /* Slightly smaller for mobile */
      }
      .category-title {
          font-size: 12px;
          padding: 5px;
      }
  }

  button {
    display: inline-block;
    margin: 5px 5px 0 0;
    padding: 10px 30px;
    outline: 0;
    border: 0;
    cursor: pointer;
    background: #5185a8;
    color: #fff;
    text-decoration: none;
    font-family: arial, verdana, sans-serif;
    font-size: 14px;
    font-weight: 100;
}

.countryCode {
    width: 100%;
    margin: 0 0 5px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: arial, verdana, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    
}

.mbsc-page {
    padding: 1em;
}

.md-country-picker-item {
    position: relative;
    line-height: 20px;
    padding: 10px 0 10px 6px;
}

.md-country-picker-flag {
    position: absolute;
    left: 0;
    height: 20px;
}

.mbsc-scroller-wheel-item-2d .md-country-picker-item {
    transform: scale(1.1);
}



.booking-form {
    margin-top: 15%;
}

.schedule-booking .form-booking>div:nth-child(3) label:after {
    display: none;
}

input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
}

input[type="checkbox"]+label:before {
    height: 12px;
    width: 12px;
    margin-right: 2px;
    content: " ";
    display: inline-block;
    vertical-align: baseline;
    border: 1px solid #777;
}

input[type="checkbox"]:checked+label:before {
    background-color: white;
}

input[type="checkbox"]+label:before {
    border-radius: 50%;
}

#demo-country-picker {
    padding: 5px 5px;
}


@media only screen and (max-width: 600px) {
    .add-box .schedule-booking .form-booking {
        padding-left: 10px;
        padding-right: 10px;
    }
}




