 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
           
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

    
         /* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -80%;
  width: 60%;
  max-width: 300px;
  height: 100vh;
  z-index: 9999;
  transition: right 0.3s ease; 
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-left: 1px solid rgba(90, 85, 85, 0.045);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.sidebar.open {
  right: 0;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
   color: #fff;
  margin-bottom: 30px;
}

.sidebar-header h2 {
  font-size: 1.5rem;
  margin-top: 20px;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.sidebar-links li {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(37, 13, 13, 0.66);

}

.sidebar-links a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.2s ease;
  color: #3e3838;
  text-shadow: 0 0 2px rgba(69, 45, 45, 0.4)
}

.sidebar-links a:hover {
  color: darkred;
}

/* Disable body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}


       /* header */

   

  .header {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      background-color: #f8fafc;
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .header .carousel {
      height: 100vh;
    }

    .header .carousel-inner, .carousel-item {
      height: 100%;
    }

    .header .carousel-item img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .header .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
   .header .top-nav {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 25px 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      backdrop-filter: blur(10px);
      background-color: rgba(10, 14, 20, 0.5);
      /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    }

    .header .top-nav.scrolled {
      /* background-color: rgba(30, 41, 59, 0.98); */
      padding: 15px 0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .header .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .header .brand-section {
      display: flex;
      align-items: center;
      gap: 30px;
    }
.header span{
  color: red;
}
 
    .logo:hover .logo-icon {
      transform: rotate(0deg);
      background-color:  #f8fafc;
    }

    .logo-text h1 {
      font-size: 30px;
      font-weight: 700;
      margin: 0;
      color: white;
      line-height: 1.2;
    }

    .logo-text p {
      font-size: 12px;
      margin: 0;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.5px;
    }

   .header .contact-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      background-color: rgba(11, 10, 10, 0.1);
      border-radius: 20px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(9, 6, 6, 0.2);
    }

  
    .header .contact-btn i {
      font-size: 18px;
      color: #2563eb;
    }
     
    .header .navitems ul {
      display: flex;
      gap: 25px;
      list-style: none;
      margin: 0;
      padding: 0;
    
    }

    .header .navitems ul li {
      position: relative; 
      
    }

    .header .navitems ul li a {
      text-decoration: none;
      color: white;
      font-size: 20px;
   
    }

    .navitems ul li a:hover {
      color: red;
      background-color: rgba(255, 255, 255, 0.05);
    }

    .navitems ul li a.active {
      color: red;
      font-weight: 600;
    }

    .navitems ul li a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 15px;
      width: calc(100% - 30px);
      height: 2px;
      background-color: red;
      border-radius: 2px;
    }

    .toggle-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      z-index: 1001;
      transition: all 0.3s ease;
    }

    .toggle-btn:hover {
      color: red;
    }
.header h5{
  font-size: 1rem;
}
   

    @media (max-width: 768px) {
        .carousel {
    display: none !important;
  }
.header h5{
  display: none;
}
  .mobile-static-image {
    display: block !important;
    height: 100vh;
    overflow: hidden;
  }

  .mobile-static-image img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
    
  }
      .nav-container {
        padding: 0 25px;
      }
      
      .toggle-btn {
        display: block;
      }

      .navitems {
       display: none;
      }


    }




/* about */
.about-section {
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
}
.about-heading {
  text-align: center;
    font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;

}
.about-heading:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: darkred;
  margin: 15px auto;
}
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.about-img {
  flex: 1;
  min-width: 100px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.about-img img {
  width: 100%; 
  height: 350px;     
  object-fit: cover;  
  display: block;
  transition: transform 0.3s ease;
}
.about-img:hover img {
  transform: scale(1.03);
}
.about-content {
  flex: 1;
  min-width: 300px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.about-content p {
  margin-bottom: 20px;
}
.about-list {
  flex: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin-top: 40px;
  padding: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
  transition: color 0.3s ease;
}
.about-list li:hover {
  color: darkred;
  cursor: default;
}
.about-content p {
  font-size: 1.1rem;              
  line-height: 1.6;               
  color: #333;                    
  margin: 0 0 1.5em 0;           
  max-width: 65ch;               
  text-align: justify;           
  font-weight: 400;              
}

    /* popular */
.popular {
  padding: 80px 0;
}
.popular .section-title {
  text-align: center;
    font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  
}
.popular .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: darkred;
  margin: 15px auto;
}

/* Card Styles */
.popular .card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.popular .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.popular .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.popular .card:hover .card-img-top {
  transform: scale(1.05);
}
.popular .card-body {
  padding: 20px;
  color: darkred ;
}
.popular .card-body h6 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.popular .card-body h5 {
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Button Styles */
.popular .btn-outline-primary {
       display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 40px;
      margin-top: 20px;
      text-decoration: none;
      border-radius: 50px;
      font-size: 16px;
       font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
        background-color:  #be2828;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 1000;
      position: relative;
      overflow: hidden;
       font-size: 16px;
       animation: pulse 1.5s infinite;
      transition: 0.3s ease;
       color: rgb(255, 255, 255);
      border: rgb(180, 3, 3);
      box-shadow: 0 4px 15px rgba(210, 60, 119, 0.3);
  
}
  @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
}


/* packages */
    
.packages-header {
    text-align: center;
    margin-bottom: 50px;
}
.packages-header h1 {
     font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.packages-header h1::after {
    content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, darkred);
}
        .packages-header p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
            .packages  .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Packages Section */
        .packages-section {
            padding: 80px 0;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ff6b6b;
            border-radius: 2px;
        }
        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        /* Packages Grid */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        /* Package Card */
        .package-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .package-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: darkred;
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .package-content {
            padding: 25px;
        }
        .package-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #222;
        }
        .package-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .package-features {
            margin-bottom: 25px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #555;
        }
        .feature-item i {
            color: darkred;
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        .package-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .package-footer a{
          text-decoration: none;
          color: #ffffff;
        }
        .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #222;
        }
        .price span {
            font-size: 1rem;
            font-weight: normal;
            color: #666;
            display: block;
        }
        .btn-book {
            background: darkred;
            color: rgb(255, 255, 255);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-book:hover {
            background: darkred;
            transform: translateY(-2px);
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
            .packages-grid {
                grid-template-columns: 1fr;
            }
             .packages .a .btn-more{
        padding: 15px 20px;
        font-size: 0.8rem;
      }
        }
      .packages  .btn-more {
        font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 
        background-color:  #be2828;
              display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 40px;
     
      text-decoration: none;
      border-radius: 40px;
      font-size: 16px;
       animation: pulse 1.5s infinite;
      transition: 0.3s ease;
       color: rgb(255, 255, 255);
      border: rgb(180, 3, 3);
      box-shadow: 0 4px 15px rgba(210, 60, 119, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 1000;
      position: relative;
      overflow: hidden;
        }
        @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
}
         .more-packages {
    text-align: center;
    margin-top: 30px;
  }
       .packages .btn-more:hover {
        background-color: #dd0303;
        }


        /* gallery */
       

                .gallery {
  padding: 80px 20px;
}
.gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery .section-title {
  font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.gallery .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF4D4D, #F9CB28);
}
.gallery .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.gallery .photo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.gallery .photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.gallery .card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.gallery .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery .photo-card:hover .card-image img {
  transform: scale(1.05);
}
.gallery .like-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gallery .card-content {
  padding: 20px;
}
.gallery .location {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}
.gallery .photographer {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}
.gallery .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery .tags span {
  background: #f0f0f0;
  color: #555;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.gallery .button-container {
  text-align: center;
  margin-top: 30px;
  /* padding: 10px 20px; */
}
 
.gallery .explore-button {
 padding: 15px 35px;
   /*reduced height */
  background-color: #be2828;
  color: #fff;
  border: none; /* fixed border */
   border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(121, 4, 12, 0.25);  
}
        @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
}
.gallery .explore-button:hover {
    background-color: #dd0303;
  /* transform: translateY(-3px); */
  /* box-shadow: 0 8px 25px rgba(249, 203, 40, 0.4); */
}
.gallery .explore-button svg {
  transition: transform 0.3s ease;
}
.gallery .explore-button:hover svg {
  transform: translateY(3px);
}
.gallery .photo-card.hidden {
  display: none;
}
.gallery .photo-card.hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery .photo-card:not(.hidden) {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid {
  transition: grid-template-rows 0.3s ease;
}
.gallery-section.expanded {
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2.2rem;
  }
   .gallery .button-container{
      text-align: center;
  margin-top: 30px;
  padding: 14px 10px;
  }
}
        /* service */
        .service {
      max-width: 1200px;
      margin: 0 auto;
    }
    .wedding-car-service {
      text-align: center;
      margin-bottom: 30px;
    }
    .service .section-title {
      font-size: 2.8rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
    }
     .service .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: darkred;
  margin: 15px auto;
}
    .service .section-subtitle {
      font-size: 18px;
      color: #888;
      margin-bottom: 30px;
      font-style: italic;
      text-align: center;
      position: relative;
      display: inline-block;
      padding: 0 20px;
    }
    .service .section-subtitle:before,
    .section-subtitle:after {
      content: "";
      position: absolute;
      top: 50%;
      width: 50px;
      height: 1px;
      background: darkred;}
    .service .section-subtitle:before {
      left: -60px;
    }
    .service .section-subtitle:after {
      right: -60px;
    }
    .service .subtitle-booking {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .service .car-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    .service .car-card {
      border: 1px solid #f0d6e3;
      border-radius: 8px;
      overflow: hidden;
      background: white;
      transition: all 0.3s ease;
      position: relative;
    }
    .service .car-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(210, 60, 119, 0.1);
    }
    .service .car-image {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .service .car-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .service .decor-ribbon {
      position: absolute;
      top: 10px;
      left: -30px;
      background-color: darkred;
      color: white;
      padding: 5px 30px;
      transform: rotate(-45deg);
      font-size: 12px;
      font-weight: bold;
      width: 120px;
      text-align: center;
    }
    .service .price-tag {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background-color: darkred;
      color: white;
      padding: 8px 15px;
      border-radius: 4px;
      font-weight: bold;
      font-size: 16px;
    }
    .service .car-content {
      padding: 20px;
    }
    .service .car-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      color: black;
    }
    .service .car-details {
      margin: 0 0 15px;
      color: #666;
      font-size: 14px;
      line-height: 1.5;
      font-weight: bold;
    }
    .service .features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 15px;
    }
   .service  .feature {
      background-color: #f8e8f0;
      color: #f00e0e;
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 12px;
    }
   .service  .see-more-container {
      text-align: center;
      margin: 50px 0 30px;
    }
   .service  .see-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 40px;
      font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
       background-color:  #be2828;
      text-decoration: none;
      border-radius: 50px;
      font-size: 16px;
      animation: pulse 1.5s infinite;
      transition: 0.3s ease;
       color: rgb(255, 255, 255);
      border: rgb(180, 3, 3);
      box-shadow: 0 4px 15px rgba(210, 60, 119, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 1000;
      position: relative;
      overflow: hidden;
    }
        @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 117, 0); }
}
    @media (max-width: 768px) {
    .service   .section-subtitle:before,
      .section-subtitle:after {
        display: none;
      }
      .see-more-container{
          /* padding: 0 25px; */
          /* margin: 10px 2px; */
      }
      .see-more-container 
      .see-more-btn {
        padding: 15px 20px;
        font-size: 0.8rem;
      }
    }


/* contact */

 /* Main contact section */
.contact {
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main-container {
  max-width: 1200px;
  margin: auto;
  
}
.main-heading h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  position: relative;
}

.main-heading h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #800000;
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.contact-info {
  flex: 1 1 420px;
  background: #ebe5e5;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  padding: 30px;
}
.contact-header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
  font-size: 14px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
}
.contact-icon {
  font-size: 20px;
  color: #007bff;
  margin-right: 12px;
  padding-top: 4px;
}
.contact-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-text p,
.contact-text a {
  color: #444;
  font-size: 14px;
  text-decoration: none;
}
.form-containera {
  flex: 1 1 420px;
background: #ebe5e5;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  padding: 30px;
}

/* Labels and Inputs */
.form-containera label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
}

.form-containera input,
.form-containera select {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

/* Car Type Section initially hidden */
#carTypeSection {
  display: none;
}

/* Submit Button */
.form-containera button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
    background-color:  #be2828;
    border: rgb(180, 3, 3);
      box-shadow: 0 4px 15px rgba(210, 60, 119, 0.3);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-containera button:hover {
   background-color:  #be2828;
}

/* Responsive Queries */
@media (max-width: 991px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info,
  .form-containera {
    flex: 1 1 100%;
  }

  .main-heading h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .main-heading h1 {
    font-size: 28px;
  }

  .contact-header h1 {
    font-size: 20px;
  }

  .form-containera button {
    font-size: 15px;
  }
}

        
/* footer */

.footer-section {
  height :50vh;
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}
.footer-column h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #e74c3c;
}
.footer-column p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    background-color: #1a1a1a;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-column ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b3b3b3; gap: 1rem;
}
.contact-info i {
    margin-right: 10px;
    color: #e74c3c;
    width: 20px;
    text-align: center;
}
.footer-social {
    display: flex;
    margin-top: 20px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.site-footer{
  display: none;

}
  
@media (max-width: 768px) {
    
  /* About Section */
  
.about-wrapper {
    flex-direction: column;
  }
  .about-img, .about-content {
    min-width: 100%;
  }
  .about-list {
    justify-content: flex-start;
  }
  .about-heading{
    font-size: 1.8rem;
  } 

  /* Popular Section */
  .popular {
    padding: 50px 20px;
  }
 .popular .section-title {
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }
 /* packages */
 .packages{
  overflow-x: hidden;
 }
 .packages-header h1{
    font-size: 1.8rem;
  }
 /* gallery */
 .gallery .container {
                padding: 2rem 1.5rem;
            }
           .gallery .section-title{
    font-size: 1.8rem;
  } 
            /* service */
              .subtitle-booking {
    flex-direction: column;
  }
  .booking-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
   .service .section-title{
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }
     .car-grid{
      margin: 1.5rem;
     }   
     /* contact   */
  .cta-container{
  padding: 15px;
  }
 .footer-section{
  display: none;
 }
.site-footer{
  height: 15vh;
  display: block;
}
.site-footer {
  background-color: #222;
  color: #eee;
  padding: 8px 2px;
  font-size: 0.8rem;
  text-align: center;
}
.site-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-social a {
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  margin-top: -30px;   
}
.footer-social a:hover {
  color: #dc3545;
}
}
 @media (max-width: 600px) {
            .photo-card {
                width: 100%;
                max-width: 450px;
                min-width: auto;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }