/* CSS Variables for Maintainability */
:root {
  --whatsapp-color: #25d366;  --primary-color: #deb55d;  /* teal-ish */  --secondary-color: #002955;  --text-dark: #1e293b;  --text-light: #4b5563;  --white: #ffffff;  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  --transition: 0.3s ease;}

/* General Reset */
html,body,div,section,article,nav,header,footer,main {  margin: 0;  padding: 0;  box-sizing: border-box;}
body {  font-family: "Poppins", Arial, Tahoma, sans-serif;  background: var(--white);}h1,h2,h3,h4,h5,h6 {  font-family: "Philosopher", Arial, Tahoma, sans-serif;  font-weight: 700;  line-height: 1.3;  margin-bottom: 15px;}
h1 {  font-size: 38px;}h2 {  font-size: 30px;}h3 {  font-size: 24px;}h4 {  font-size: 20px;}h5 {  font-size: 18px;}h6 {  font-size: 16px;}
 
@media (max-width: 768px) {  h1 {    font-size: 28px;  }  h2 {    font-size: 24px;  }  h3 {    font-size: 20px;  }  h4 {    font-size: 18px;  }  h5 {    font-size: 16px;  }  h6 {    font-size: 15px;  }}
li a {  font-family: "Philosopher", Arial, Tahoma, sans-serif;}.container {  max-width: 1400px;  margin: 0 auto;  padding: 0 15px;}.p-20 {  padding: 20px;}
.pb-20 {
  padding-bottom: 20px;
}  
.used-button {  background: var(--primary-color);  color: var(--white);  border: none;  padding: 12px 25px;  border-radius: 25px;  cursor: pointer;  font-size: 0.9375rem;  transition: background-color var(--transition);  align-self: flex-start;  margin-bottom: 5px;}
.used-button:hover,
.used-button:focus {  background: #16a085;  outline: 2px solid #16a085;  outline-offset: 2px;}
/* Top Bar */
.top-bar {  background: var(--primary-color);  color: var(--white);  font-size: 0.9375rem;   padding: 8px 0;  border-bottom: 1px solid #e2e8f0;}
.top-bar-container {  display: flex;  justify-content: space-between;  align-items: center;  padding: 0 20px;}
.top-bar-left,           
.top-bar-right {  display: flex;  align-items: center;  gap: 15px;}
.top-bar-text,  
.top-bar-contact, 
.top-bar-email,.top-bar-social {  /* display: flex; */  align-items: center;  font-weight: 500;  color: var(--white);  text-decoration: none;} 
/* Icon size and color */ 
.top-bar-text i,
.top-bar-contact i,   
.top-bar-email i, 
.top-bar-social i {  font-size: 12px;  margin-right: 5px;  color: var(--white);}
/* Social links hover/focus */
div.top-bar > div.top-bar-container > div.top-bar-right > a.top-bar-social {
  color: var(--white);
  transition: color 0.3s ease;
}                                     
div.top-bar > div.top-bar-container > div.top-bar-right > a.top-bar-social:hover,
div.top-bar > div.top-bar-container > div.top-bar-right > a.top-bar-social:focus {
  color: #f0f0f0;
}
/* Optional: cursor pointer for links */
.top-bar-social {
  cursor: pointer;
} 
/* Desktop Navbar */
.navbar {  display: flex;  justify-content: center;  align-items: center;  background: var(--white);  box-shadow: var(--shadow);  z-index: 999;}
.navbar-container {  display: flex;  justify-content: space-between;  align-items: center;  width: 100%;  padding: 0 20px;}
.logo img {  height: 70px;  width: auto;  transition: transform var(--transition);}
.logo img:hover {  transform: scale(1.05);}
.nav-links {  list-style: none;  display: flex;  gap: 15px;  margin: 0;  padding: 0;  align-items: center;  justify-content: flex-end;  flex: 1;}
.nav-links li {  position: relative;}.nav-links a {
  text-decoration: none; color: #000;  font-size: 1rem;  font-weight: 600;  padding: 12px 16px;  border-radius: 10px;  transition: background-color var(--transition), color var(--transition),    transform var(--transition);}
.nav-links a:hover,
.nav-links a:focus {  background: rgba(255, 255, 255, 0.2);  color: #65dbff;  transform: translateY(-2px);}
/* Desktop Dropdown Menu */
.nav-links .dropdown-menu {  display: none;  position: absolute;  top: 100%;  left: 0;  background: rgba(255, 255, 255, 0.95);  backdrop-filter: blur(10px);  box-shadow: var(--shadow);  padding: 12px 5px;  width: 250px;  border-radius: 12px;  opacity: 0;  visibility: hidden;  transition: opacity var(--transition), transform var(--transition);  transform: translateY(-12px);  list-style: none;  z-index: 999;}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {  display: block;  opacity: 1;  visibility: visible;  transform: translateY(0);}
.nav-links .dropdown-menu li a {  color: #005d85;  font-size: 1rem;  font-weight: 500;  padding: 10px 5px;  display: flex;  align-items: center;}
.nav-links .dropdown-menu li a:hover,
.nav-links .dropdown-menu li a:focus {  color: #090909;}
/* Mobile Navbar */
.mobile-navbar {  display: none;  padding: 15px 20px;  box-shadow: var(--shadow);  z-index: 999;}
.mobile-navbar-container {  display: flex;  justify-content: space-between;  align-items: center;  max-width: 1400px;  width: 100%;  margin: 0 auto;}

.mobile-navbar-logo img {  height: 55px;  width: auto;}.mobile-navbar-right {  display: flex;  gap: 20px;  align-items: center;}
.mobile-search-btn,
.menu-icon {  background: none;  border: none;  color: #000;  font-size: 1.5rem;  cursor: pointer;  transition: color var(--transition);}
.mobile-search-btn:hover,
.mobile-search-btn:focus,
.menu-icon:hover,
.menu-icon:focus {  color: #00eaff;}
/* Mobile Menu (Sidebar) */
.menu-overlay {  display: none;  position: fixed;  top: 0;  left: 0;  width: 80%;  max-width: 320px;  height: 100%;  background: var(--white);  z-index: 1000;  padding: 20px;  transform: translateX(-100%);  transition: transform var(--transition);}
.menu-overlay.active {  display: block;  transform: translateX(0);}
.menu-header {  display: flex;  justify-content: space-between;  align-items: center;  margin-bottom: 20px;}
.close-icon {  font-size: 1.75rem;  cursor: pointer;  color: #000;  background: rgba(255, 255, 255, 0.1);  border: none;  border-radius: 50%;  width: 40px;  height: 40px;  display: flex;  align-items: center;  justify-content: center;  transition: color var(--transition), background var(--transition);}
.close-icon:hover,
.close-icon:focus {  color: var(--white);  background: rgba(255, 255, 255, 0.2);}
.mobile-nav-links {  list-style: none;  padding: 0;  margin: 0;}.mobile-nav-links li {  margin-bottom: 15px;}
.mobile-nav-links a {  text-decoration: none;  color: #000;  font-size: 1.0625rem;  padding: 12px 18px;  border-radius: 10px;  display: block;  transition: background-color var(--transition), color var(--transition);}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus {  background: rgba(255, 255, 255, 0.2);  color: #006278;}
.mobile-nav-links .dropdown .dropdown-menu {  display: none;  margin-left: 10px;  padding: 0px 0;  list-style: none;}
.mobile-nav-links .dropdown.open .dropdown-menu {  display: block;}.mobile-nav-links .dropdown > a {  display: flex;  align-items: center;  justify-content: space-between;}
.mobile-nav-links .dropdown .plus-icon {  font-size: 1.125rem;  transition: transform var(--transition);}
.mobile-nav-links .dropdown.open .plus-icon {
  transform: rotate(45deg);
}.mobile-nav-links .dropdown-menu li a {  font-size: 1rem;  color: #000;  padding: 5px 20px;}.mobile-nav-links .dropdown-menu li a:hover,.mobile-nav-links .dropdown-menu li a:focus {  background: rgba(255, 255, 255, 0.1);  color: #009f9d;}

/* Responsive Styles */
@media (max-width: 1024px) {  .navbar {    display: none;  }  .mobile-navbar {    display: flex;  }  .menu-overlay {    display: block;  }
  .top-bar {    display: none;  }} /* Banner Slider */.banner-slider {  position: relative;  width: 100%;  overflow: hidden;}
.slides-container {  display: flex;  width: 100%;  transition: transform 0.5s ease-in-out;}
.slide {  flex: 0 0 100%;  position: relative;}.slide img {  width: 100%;  height: auto;  display: block;  object-fit: cover; /* Better image scaling */}
.overlay {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  display: flex;  flex-direction: column;  justify-content: center;  align-items: center;  color: var(--white);  padding: 20px;  text-align: center;}
.overlay h1 {  margin-bottom: 10px;}.overlay p {  font-size: 1.2rem;  margin-bottom: 20px;}.overlay a {  text-decoration: none;  background: #b11c21;  padding: 12px 25px;  color: var(--white);  border-radius: 6px;  font-weight: bold;  transition: background var(--transition);}
.overlay a:hover,
.overlay a:focus {  background: #d63333;}.dots {  position: absolute;  bottom: 15px;  left: 50%;  transform: translateX(-50%);  display: flex;  gap: 10px;  z-index: 2;}

.dots span {  width: 10px;  height: 10px;  background: #bbb;  border-radius: 50%;  cursor: pointer;  transition: background var(--transition);}
.dots span.active {  background: #ff4c4c;}
.arrow {  position: absolute;  top: 50%;  transform: translateY(-50%);  font-size: 1.8rem;  color: var(--white);  background: rgba(0, 0, 0, 0.5);  padding: 10px;  cursor: pointer;  border-radius: 50%;  user-select: none;  z-index: 2;}
.arrow:hover,
.arrow:focus {  background: rgba(0, 0, 0, 0.8);}
.arrow.left {  left: 15px;}.arrow.right {  right: 15px;}
@media (max-width: 768px) {    .overlay p {    font-size: 1rem;  }  .overlay a {    padding: 10px 20px;    font-size: 0.9rem;  }  .arrow {    font-size: 1.5rem;    padding: 8px;  }}
@media (max-width: 480px) {  .overlay p {    font-size: 0.9rem;  }  .overlay {    padding: 10px;  }  .dots span {    width: 8px;    height: 8px;  }  .arrow {    font-size: 1.2rem;    padding: 6px;  }}
/* SEO Marketing Benefits */
.seo-marketing-benefits {
  background: #fdfcff;
  padding: 60px 20px;
}
 
.seo-marketing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
  
.seo-marketing-left {
  flex: 0 0 35%;
  text-align: center;
} 
.image-wrapper {
  /* aspect-ratio: 3 / 2; */
  width: 100%;
  /* max-width: 600px; */
  overflow: hidden;
}
 
.seo-marketing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.seo-marketing-left:hover .seo-marketing-image {
  transform: scale(1.05);
}

.seo-marketing-right {
  flex: 0 0 55%;
  flex-direction: column;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-marketing-heading {
  font-size: 2.375rem;
  font-weight: 800;
  color: var(--text-dark);
}

.seo-marketing-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .seo-marketing-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .seo-marketing-left,
  .seo-marketing-right {
    flex: 0 0 100%;
  }
}

/* Removed animations like fadeInLeft/fadeInRight to prevent layout shifts */

/* Footer Section */
.footer-section {
  background: linear-gradient(to bottom, #002955, #000000);
  color: var(--white);
  padding: 40px 20px 0;
  border-top: 2px solid #9b7b1e;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo and Description */
.footer-logo img {
  margin-bottom: 15px;
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-logo p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

/* Social Links */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  font-size: 1.375rem;
  color: var(--white);
  margin-right: 10px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social a:hover,
.footer-social a:focus {
  color: #e63946;
  outline: none;
}

/* Footer Headings */
.footer-heading {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
}

/* Footer Links List */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #e63946;
  outline: none;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: var(--white);
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #e63946;
  outline: none;
}

.footer-bottom img {
  width: 60px;
  height: 20px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-accordion .footer-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .footer-accordion .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .footer-accordion.active .footer-links {
    max-height: 300px;
  }
  .footer-accordion .accordion-icon {
    font-size: 1rem;
  }
  .footer-accordion.active .accordion-icon::before {
    content: "-";
  }
  .footer-accordion .accordion-icon::before {
    content: "+";
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.customer-support {
  background: #ffe6e6;
  padding: 20px 0;
}

.customer-support-section {
  overflow: hidden;
}

.customer-support-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 30px;
  transition: transform 0.3s ease;
}
 
.customer-support-card {
  background: #00515C;
  color: var(--white);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform var(--transition);
}

.customer-support-card:hover {
  transform: translateY(-5px);
}

.customer-support-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform var(--transition);
}

.customer-support-card:hover .customer-support-icon img {
  transform: translateY(-8px);
}

.customer-support-content h3 {
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.customer-support-content p {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 992px) {
  .customer-support-track {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
  }
}

/* Mobile Carousel View */
@media (max-width: 600px) {
  .customer-support-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 10px;
    padding: 10px;
    gap: 15px;
  }

  .customer-support-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .customer-support-icon img {
    width: 40px;
    height: 40px;
  }

  .customer-support-content p {
    font-size: 0.8125rem;
  }

  .customer-support-track::-webkit-scrollbar {
    display: none;
  }
}

/* Booking Section */
.booking-section {
  margin: 40px auto;
  padding: 20px;
}

.booking-section-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.booking-section-title span {
  color: var(--primary-color);
}

.booking-section-subtitle {
  text-align: center;
  color: #444;
  line-height: 1.6;
  max-width: 950px;
  margin: 0 auto 30px;
}

.booking-section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.booking-section-list {
  display: flex;
  flex-direction: column;
}

.booking-section-list button {
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  background: var(--white);
  border: 1px solid var(--primary-color);
  margin-bottom: 10px;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.booking-section-list button.active {
  background: var(--primary-color);
  color: var(--white);
}

.booking-section-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.booking-section-content h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.booking-section-content p {
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.booking-section-info {
  margin-bottom: 15px;
  color: #222;
}

@media (max-width: 992px) {
  .booking-section-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-section-container {
    grid-template-columns: 1fr;
  }
  .booking-section-list {
    overflow-x: auto;
    white-space: nowrap;
  }
  .booking-section-list button {
    flex: 0 0 auto;
    margin-right: 10px;
    text-align: center;
  }
  .booking-section-subtitle {
    padding: 0 10px;
  }
}

/* Tour Section */
.tour-section {
  padding: 40px 20px;
  background: #ffe1cf;
  text-align: center;
}

.tour-title {
  color: #333;
  margin-bottom: 15px;
  font-family: "Philosopher", serif;
}
.tour-description {
  color: #666;
  margin: 0 auto 30px;
  max-width: 800px;
}
.tour-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.tour-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}
.tour-card:hover {
  transform: translateY(-5px);
}
.tour-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}
.tour-image:hover {
  transform: scale(1.05);
}
.tour-name {
  margin: 15px 0 5px;
  color: #333;
}
/* .tour-subtitle {
  color: #777;
  margin-bottom: 15px;
} */
@media (max-width: 768px) {
  .tour-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 10px;
  }
  .tour-image {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .tour-container {
    grid-template-columns: 1fr;
  }
  .tour-image {
    height: 180px;
  }
}
/* Holiday Experience */
.holiday-experience {
  padding: 40px 20px;
  background: #f9f9f9;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}/* Testimonials Section */
.Testimonials-container {
  padding: 40px 0;
  background: #f8f8f8;
}

.Testimonials-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.Testimonials-left,
.Testimonials-right {
  flex: 1;
  min-width: 320px;
}

/* Left Side */
.Testimonials-title {
  font-weight: bold;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.Testimonials-title span {
  color: var(--primary-color);
}

.Testimonials-slider {
  position: relative;
}

.Testimonials-box {
  border: 1px solid #ddd;
  padding: 20px;
  background: #ffffff;
  line-height: 1.6;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.Testimonials-box.active {
  display: block;
  opacity: 1;
}

.Testimonials-name {
  font-weight: bold;
  margin-top: 15px;
  text-align: right;
}

.Testimonials-stars {
  color: gold;
  margin-top: 5px;
  text-align: right;
}

.Testimonials-arrows {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.Testimonials-arrow {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.Testimonials-arrow:hover,
.Testimonials-arrow:focus {
  background: #008080;
}

/* Right Side (Form) */
.Testimonials-right {
  background: #fbf5f5;
  padding: 20px;
  box-shadow: var(--shadow);
}

.Testimonials-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Testimonials-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.Testimonials-input,
.Testimonials-select,
.Testimonials-textarea {
  width: 96%;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 0.875rem;
}

.Testimonials-select-wrapper {
  width: 100%;
}

.Testimonials-textarea {
  resize: none;
  height: 100px;
}

.Testimonials-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9375rem;
  transition: background var(--transition);
}

.Testimonials-button:hover,
.Testimonials-button:focus {
  background: #008080;
}

/* Accessibility: Hide label visually */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .Testimonials-inner {
    flex-direction: column;
  }

  .Testimonials-left,
  .Testimonials-right {
    width: 100%;
  }

  .Testimonials-row {
    flex-direction: column;
  }
}

 
/* Portfolio */
.portfolio-banner {
  background: url("images/portfolio/breadcumb-bg.webp") center/cover no-repeat;
  padding: 100px 20px;
  color: var(--white);
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center; 
  position: relative;
}

.portfolio-banner-content h1 {
  font-weight: 700;
}

.portfolio-section {
  padding: 20px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px;
}

.contact-title {
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #003d4d;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border-left: 6px solid var(--primary-color);
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card i {
  font-size: 1.375rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #003d4d;
}

.info-card p {
  font-size: 0.8125rem;
  color: #444;
}

.social-icons a {
  margin-right: 10px;
  color: #444;
  transition: color var(--transition);
}

.social-icons a.linkedin:hover,
.social-icons a.linkedin:focus {
  color: #0077b5;
}

.social-icons a.youtube:hover,
.social-icons a.youtube:focus {
  color: #ff0000;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  font-size: 0.8125rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-form textarea {
  grid-column: span 2;
  resize: none;
  height: 80px;
}

.contact-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.contact-button:hover,
.contact-button:focus {
  background: #007f6f;
  transform: translateY(-1px);
}

.map-section {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 992px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form textarea,
  .contact-button {
    grid-column: span 1;
  }
  .contact-button {
    justify-self: stretch;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 1.75rem;
  }
  .info-card h4 {
    font-size: 0.9375rem;
  }
  .info-card p {
    font-size: 0.75rem;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.75rem;
    padding: 6px;
  }
}

/* Blog Detail */
.blog-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-detail-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/header_hello_rajasthan.webp") no-repeat center/cover;
  color: var(--white);
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.blog-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1.5s ease-in-out;
}

.blog-detail-section {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.blog-detail-main {
  flex: 0 0 70%;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-detail-main:hover {
  transform: translateY(-5px);
}

.blog-detail-image-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.blog-detail-social {
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  margin-right: 15px;
}

.blog-detail-social a {
  color: #333;
  font-size: 1.5rem;
  transition: color var(--transition);
}

.blog-detail-social a:hover,
.blog-detail-social a:focus {
  color: var(--secondary-color);
}

.blog-detail-image img {
  /* width: calc(100% - 55px);
  height: 300px;
  object-fit: cover; */ 
  border-radius: 12px;
  box-shadow: var(--shadow);  
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 10px;
}

.blog-detail-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--secondary-color);
}

.blog-detail-meta-info {
  color: #555;
  font-size: 0.875rem;
}

.blog-detail-meta-info span {
  margin-right: 15px;
  font-weight: 500;
}

.blog-detail-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.blog-detail-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.blog-detail-content blockquote {
  background: #f0f8ff;
  padding: 20px;
  border-left: 5px solid var(--secondary-color);
  margin: 20px 0;
  font-style: italic;
  border-radius: 10px;
}

.blog-detail-comments {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.blog-detail-comment-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.blog-detail-comment-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform var(--transition);
}

.blog-detail-comment-card:hover {
  transform: translateY(-3px);
}

.blog-detail-user-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--secondary-color);
}

.blog-detail-user-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.blog-detail-comment-date {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 10px;
}

.blog-detail-comment-description {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
}

.blog-detail-reply-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background var(--transition);
}

.blog-detail-reply-btn:hover,
.blog-detail-reply-btn:focus {
  background: #005bb5;
}

.blog-detail-reply-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.blog-detail-form-title {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.blog-detail-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.blog-detail-form-group {
  flex: 1;
}

.blog-detail-form-group label {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 8px;
  display: block;
}

.blog-detail-form-group input,
.blog-detail-form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 0.875rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color var(--transition);
}

.blog-detail-form-group input:focus,
.blog-detail-form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.blog-detail-form-group textarea {
  height: 150px;
  resize: vertical;
}

.blog-detail-submit-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}

.blog-detail-submit-btn:hover,
.blog-detail-submit-btn:focus {
  background: #005bb5;
}

@media (max-width: 1024px) {
  .blog-detail-section {
    flex-direction: column;
  }
  .blog-detail-main {
    flex: 0 0 100%;
  }
  .blog-detail-image-container {
    flex-direction: column;
    align-items: center;
  }
  .blog-detail-social {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
  .blog-detail-image img {
    max-width: 100%; height:auto;
  }
}

@media (max-width: 768px) {
  .blog-detail-banner {
    min-height: 300px;
  }
  .blog-detail-title {
    font-size: 2rem;
  }
  .blog-detail-image img {
    /* height: 250px; */  max-width:100%; height:auto;
  }
  .blog-detail-form-row {
    flex-direction: column;
  }
  .blog-detail-comment-card {
    flex-direction: column;
  }
  .blog-detail-user-image {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .blog-detail-title {
    font-size: 1.5rem;
  }
  .blog-detail-image {
    height: 200px;
  }
  .blog-detail-content h2 {
    font-size: 1.5rem;
  }
  .blog-detail-content p {
    font-size: 0.875rem;
  }
}

/* Additional Sections (Commented for Brevity) */
/* Add other sections like portfolio, service-detail, recommended-service, etc., as needed. */
/* CSS Variables for Maintainability */

/* Banner Section */
.portfolio-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/header_hello_rajasthan.webp") no-repeat center/cover;
  color: var(--white);
  text-align: center;
  padding: 6.25rem 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Use WebP for better performance; ensure image is optimized */
}

.portfolio-banner-content {
  position: relative;
  z-index: 1;
}

.breadcumb-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-in-out;
}

/* Blog Section */
.blog-section {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1.875rem;
}

.blog-main {
  flex: 0 0 70%;
}

/* Category Section */
.category-section, .widget_block {
  background: var(--white);
  padding: 1.5625rem;
  margin-bottom: 1.25rem;
  border-radius: 0.625rem;
  box-shadow: var(--shadow);
}

.category-section h4 {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  color: var(--secondary-color);
}

.category-section ul, .wp-block-categories, ul.wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.category-section li {
  margin: 0.625rem 0;
}

.category-section a, .wp-block-categories li a, ul.wp-block-latest-posts li a {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0.9375rem;
  border-radius: 1.5625rem;
  transition: background-color var(--transition), color var(--transition);
}

.category-section a:hover,
.category-section a:focus,
.wp-block-categories li a:hover, .wp-block-latest-posts li a:focus {
  background: #00afef;
  color: var(--white);
}

.category-section i {
  font-size: 0.875rem;
  color: #999;
}

/* Latest Updates */
.latest-updates {
  background: var(--white);
  padding: 1.5625rem;
  margin-bottom: 1.25rem;
  border-radius: 0.625rem;
  box-shadow: var(--shadow);
}

.latest-updates h4 {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  color: var(--secondary-color);
}

.update-card {
  display: flex;
  align-items: center;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #eee;
}

.update-image {
  width: 4.375rem;
  height: 4.375rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-right: 0.9375rem;
  /* Add loading="lazy" in HTML for images */
}

.latest-Date-section {
  text-align: left;
}

.latest-Date {
  font-size: 0.875rem;
  color: #777;
}

.update-card a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color var(--transition);
}

.update-card a:hover,
.update-card a:focus {
  color: #00afef;
}

/* Popular Tags */
.popular-tags {
  background: var(--white);
  padding: 1.5625rem;
  border-radius: 0.625rem;
  box-shadow: var(--shadow);
}

.popular-tags h4 {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  color: var(--secondary-color);
}

.popular-tags ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.popular-tags a {
  text-decoration: none;
  color: var(--text-light);
  background: #f0f0f0;
  padding: 0.25rem 0.9375rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  transition: background-color var(--transition), color var(--transition);
}

.popular-tags a:hover,
.popular-tags a:focus {
  background: #00afef;
  color: var(--white);
}

/* Blog Post */
.blog-post {
  background: var(--white);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-post:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge {
  background: red;
  color: var(--white);
  padding: 0.375rem 0.75rem;
  font-weight: 600;
  border-radius: 0.3125rem;
  position: absolute;
  top: 0.9375rem;
  left: 0.9375rem;
  z-index: 1;
}

.blog-image {
  position: relative;
  width: 100%;
  max-width: 30%;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  /* Add loading="lazy" in HTML for images */
}

.blog-image:hover img {
  transform: scale(1.05);
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.625rem;
  border-radius: 50%;
}

.blog-image:hover .search-icon {
  opacity: 1;
}

.blog-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.9375rem;
}

.blog-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.blog-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0.9375rem;
}

.Blog-btn {
  background: #00afef;
  color: var(--white);
  border: none;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border-radius: 1.5625rem;
  font-size: 0.9375rem;
  transition: background-color var(--transition);
  align-self: flex-start;
}

.Blog-btn:hover,
.Blog-btn:focus {
  background: var(--secondary-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 0.3125rem;
}

.pagination a {
  color: var(--secondary-color);
  padding: 0.625rem 0.9375rem;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 0.3125rem;
  transition: background-color var(--transition), color var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.pagination .prev,
.pagination .next {
  font-weight: 600;
}

/* Service Detail Section */
.service-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.service-detail-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/header_hello_rajasthan.webp") no-repeat center/cover;
  color: var(--white);
  text-align: center;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
  /* Use WebP for better performance; ensure image is optimized */
}

.service-detail-banner-content {
  position: relative;
  z-index: 1;
}

.service-detail-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-in-out;
}

.service-detail-main-container {
  padding: 2.5rem 1.25rem;
}

.service-detail-content {
  /* text-align: center; */
  margin-bottom: 2.5rem;
}

.service-detail-main-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.service-detail-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.service-detail-card-section {
  text-align: center;
}

.service-detail-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.service-detail-card {
  width: 28.125rem;
  background: var(--white);
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-0.3125rem);
}

.service-detail-image {
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
  /* Add loading="lazy" in HTML for images */
}

.service-detail-card-content {
  padding: 0.9375rem;
  text-align: center;
}

.service-detail-card-title {
  font-size: 1.125rem;
  margin: 0.625rem 0;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.service-detail-card-text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.9375rem;
}

.service-detail-card-buttons {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.9375rem;
}

.service-detail-card-btn {
  padding: 0.5rem 0.9375rem;
  border: 1px solid #ddd;
  background: var(--white);
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  text-transform: uppercase;
}

.service-detail-card-btn.call-now {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.service-detail-card-btn.book-now {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.service-detail-card-btn.call-now:hover,
.service-detail-card-btn.call-now:focus {
  background: var(--primary-color);
  color: var(--white);
}

.service-detail-card-btn.book-now:hover,
.service-detail-card-btn.book-now:focus {
  background: var(--secondary-color);
  color: var(--white);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-section {
    flex-direction: column;
  }
  .blog-main {
    flex: 0 0 100%;
  }
  .blog-image {
    max-width: 100%;
  }
  .blog-content {
    padding: 0.9375rem;
  }
  .service-detail-card {
    width: 100%;
    max-width: 20rem;
  }
}

@media (max-width: 768px) {
  .portfolio-banner {
    padding: 3.75rem 1.25rem;
    min-height: 18.75rem;
  }
  .breadcumb-title {
    font-size: 1.5rem;
  }
  .blog-post {
    flex-direction: column;
  }
  .blog-image {
    max-width: 100%;
    height: 12.5rem;
  }
  .blog-content h4 {
    font-size: 1rem;
  }
  .Blog-btn {
    padding: 0.5rem 0.9375rem;
    font-size: 0.875rem;
  }
  .service-detail-banner {
    min-height: 18.75rem;
  }
  .service-detail-title {
    font-size: 1.5rem;
  }
  .service-detail-main-title {
    font-size: 1.625rem;
  }
  .service-detail-description {
    font-size: 0.9375rem;
  }
  .service-detail-card {
    max-width: 100%;
  }
  .service-detail-image {
    height: 10rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.625rem;
  }
  .portfolio-banner {
    padding: 2.5rem 1.25rem;
    min-height: 12.5rem;
  }
  .breadcumb-title {
    font-size: 1.25rem;
  }
  .blog-content h4 {
    font-size: 0.9375rem;
  }
  .blog-content p {
    font-size: 0.875rem;
  }
  .pagination a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  .service-detail-main-container {
    padding: 1.875rem 0.9375rem;
  }
  .service-detail-banner {
    min-height: 15.625rem;
  }
  .service-detail-title {
    font-size: 1.25rem;
  }
  .service-detail-main-title {
    font-size: 1.375rem;
  }
  .service-detail-card-title {
    font-size: 1rem;
  }
  .service-detail-card-text {
    font-size: 0.75rem;
  }
  .service-detail-card-btn {
    padding: 0.4375rem 0.75rem;
    font-size: 0.6875rem;
  }
}
/* Recommended Services Section */

/* Recommended Services Section */
.recommended-service-container {
  padding: 2.5rem 1.25rem;
  background: #f8f8f8;
  font-family: "Poppins", Arial, sans-serif;
}

.recommended-service-title {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
  font-family: "Philosopher", Arial, sans-serif;
}

.recommended-service-slider {
  position: relative;
  overflow: hidden;
}

.recommended-service-slide-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.recommended-service-card {
  flex: 0 0 calc(33.33% - 1.25rem);
  margin: 0.625rem;
}

.recommended-service-card-inner {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform var(--transition);
}

.recommended-service-card-inner:hover {
  transform: translateY(-0.3125rem);
}

.recommended-service-image {
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
  /* Add loading="lazy" in HTML for images */
}

.recommended-service-card-content {
  padding: 0.9375rem;
  text-align: center;
}

.recommended-service-card-title {
  font-size: 1.125rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0.625rem 0;
  text-transform: uppercase;
}

.recommended-service-card-text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.9375rem;
}

.recommended-service-card-btn {
  padding: 0.5rem 0.9375rem;
  border: 1px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.3125rem;
  transition: background-color var(--transition), color var(--transition);
  text-transform: uppercase;
}

.recommended-service-card-btn:hover,
.recommended-service-card-btn:focus {
  background: var(--primary-color);
  color: var(--white);
}

.recommended-service-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 168, 176, 0.8);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
  border-radius: 50%;
  transition: background-color var(--transition);
  z-index: 10;
}

.recommended-service-nav-prev {
  left: 0.625rem;
}

.recommended-service-nav-next {
  right: 0.625rem;
}

.recommended-service-nav:hover,
.recommended-service-nav:focus {
  background: var(--secondary-color);
}

/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  z-index: 999;
}

.floating-buttons a {
  width: 3.4375rem;
  height: 3.4375rem;
  background: var(--whatsapp-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.5rem;
}

.floating-buttons .call-button {
  background: var(--secondary-color);
}

.floating-buttons a:hover,
.floating-buttons a:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
  background: #333;
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background-color var(--transition), transform var(--transition);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
  background: #000;
  transform: scale(1.1);
}

/* Our Cars Service Section */
.Our-Cars-Service-section {
  text-align: center;
  padding: 3.75rem 1.25rem;
}

.Our-Cars-Service-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.Our-Cars-Service-container {
  display: flex;
  justify-content: center;
}

.Our-Cars-Service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
  justify-items: center;
  width: 100%;
}

.Our-Cars-Service-card {
  background: var(--white);
  border-radius: 0.625rem;
  box-shadow: var(--shadow);
  padding: 1.25rem 0.625rem;
  width: 100%;
  max-width: 18.75rem;
  transition: transform var(--transition);
}
.Our-Cars-Service-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.Our-Cars-Service-card:hover {
  transform: translateY(-0.3125rem);
}

.Our-Cars-Service-card img {
  width: 90%;
  height: auto;
  /* Add loading="lazy" in HTML for images */
}

.Our-Cars-Service-stars {
  color: var(--secondary-color);
  font-size: 1.125rem;
  text-align: right;
  padding-right: 0.9375rem;
}

.Our-Cars-Service-card h3 {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.625rem 0 0.3125rem;
}

.Our-Cars-Service-card p {
  color: var(--secondary-color);
  font-size: 0.9375rem;
  font-weight: 500;
}
/* Luxury Travel Section */
.Luxry-travel-section {
  padding: 3.75rem 1.25rem;
  text-align: center;
  background: #f9f9f9;
}

.Luxry-travel-title {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.Luxry-travel-icon-dots {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
}

.Luxry-travel-container {
  display: flex;
  justify-content: center;
}

.Luxry-travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  width: 100%;
}

.Luxry-travel-card {
  background: var(--white);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  text-align: left;
  transition: transform var(--transition);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.Luxry-travel-card:hover {
  transform: translateY(-0.3125rem);
}

.Luxry-travel-img {
  position: relative;
  flex: 1;
}

.Luxry-travel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 15.625rem;
}

.Luxry-travel-booknow-btn {
    position: absolute;
    top: 0.75rem;
    left: 0;
    /* background: var(--accent-color); */
    color: var(--white);
    border: none;
    padding: 0.4375rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition);
    background: rgb(248, 60, 60);
}

.Luxry-travel-bottom-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.375rem 0.75rem;
}

.Luxry-travel-content {
  flex: 1.2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Luxry-travel-content h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.Luxry-travel-reviews {
  color: #555;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.Luxry-travel-reviews span {
  color: #ffb400;
  font-size: 1rem;
}

.Luxry-travel-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Luxry-travel-details li {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.Luxry-travel-details strong {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .Luxry-travel-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.hello-faq-section {
  margin: 2.5rem auto;
  padding: 0 1.25rem;
  font-family: "Poppins", Arial, sans-serif;
}

.hello-faq-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 1.875rem;
}

.hello-faq-item {
  margin-bottom: 0.9375rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hello-faq-question {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-size: 1rem;
  background: #f7f7f7;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color var(--transition);
}

.hello-faq-question:hover,
.hello-faq-question:focus {
  background: #eaeaea;
}

.hello-faq-answer {
  display: none;
  padding: 0.9375rem 1.25rem;
  background: var(--white);
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
 
/* Responsive Design */
@media (max-width: 1024px) {
  .recommended-service-card {
    flex: 0 0 calc(50% - 1.25rem);
  }
  .Our-Cars-Service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}  
 
@media (max-width: 992px) {
  .Luxry-travel-card {
    flex-direction: column;
  }
  .Luxry-travel-img img {
    height: 14.375rem;
  }
  .Luxry-travel-grid {
    grid-template-columns: 1fr;
  }              
} 
        
@media (max-width: 768px) {
  .recommended-service-title {
    font-size: 1.625rem;
  }
  .recommended-service-card {
    flex: 0 0 calc(100% - 1.25rem);
  }
  .recommended-service-image {
    height: 10rem;
  }
  .recommended-service-nav-prev {
    left: 0.3125rem;
  }
  .recommended-service-nav-next {
    right: 0.3125rem;
  }
  .Our-Cars-Service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
  .Our-Cars-Service-title {
    font-size: 1.625rem;
  }
  .Our-Cars-Service-card {
    max-width: 100%;
  }
  .Luxry-travel-content {
    text-align: left;
  }
  .Luxry-travel-details li {
    text-align: left;
  }
  .Luxry-travel-bottom-info {
    gap: 0.25rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .recommended-service-container {
    padding: 1.875rem 0.9375rem;
  }
  .recommended-service-title {
    font-size: 1.375rem;
  }
  .recommended-service-image {
    height: 8.75rem;
  }
  .recommended-service-card-title {
    font-size: 1rem;
  }
  .recommended-service-card-text {
    font-size: 0.75rem;
  }
  .recommended-service-card-btn {
    padding: 0.4375rem 0.75rem;
    font-size: 0.6875rem;
  }
  .recommended-service-nav {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
  }
  .Our-Cars-Service-title {
    font-size: 1.375rem;
  }
  .Luxry-travel-title {
    font-size: 1.5rem;
  }
  .Luxry-travel-content h3 {
    font-size: 1.125rem;
  }
  .Luxry-travel-reviews {
    font-size: 0.8125rem;
  }
  .Luxry-travel-details li {
    font-size: 0.8125rem;
  }
  .hello-faq-title {
    font-size: 1.5rem;
  }
  .hello-faq-question {
    font-size: 0.9375rem;
  }
}
/* tempotravel section css  */

    .tempoTraveller-container {
      max-width: 1400px;
      margin: auto;
    }

    .tempoTraveller-heading {
      font-size: 28px;
      font-weight: 600;
      color: #222;
      margin-bottom: 40px;    text-align: center;margin-top: 20px;
    }

  .tempoTraveller-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Responsive (tablet & mobile) */
@media (max-width: 1024px) {
  .tempoTraveller-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-image img {
    max-width: 100%;
    height: auto;
}
}

@media (max-width: 600px) {
  .tempoTraveller-cards {
    grid-template-columns: 1fr;
  }
  
    .post-image img {
    max-width: 100%;
    height: auto;
}
}

    .tempoTraveller-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 370px;
      transition: all 0.3s ease;
    }

    .tempoTraveller-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .tempoTraveller-img {
      position: relative;
      height: 250px;
      overflow: hidden;
      /* border-top-left-radius: 20%;
      border-top-right-radius: 20%; */
    }

    .tempoTraveller-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* border-top-left-radius: 20%;
      border-top-right-radius: 20%; */
      transition: all 0.4s ease;
    }

    .tempoTraveller-card:hover .tempoTraveller-img img {
      transform: scale(1.05);
    }

 .tempoTraveller-whatsapp {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 50px;              /* fixed width */
  height: 50px;             /* fixed height */
  display: flex;            /* center the icon horizontally & vertically */
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* optional */
  cursor: pointer;          /* optional */ 
}

.tempoTraveller-whatsapp a{color:#fff;}

/* Default icon style + transition */
.tempoTraveller-btn i {
  color: #fff; 
  background-color: #325ef7;
  padding: 10px;
  border-radius: 50%;
  transition: color 0.3s ease;
}

/* Hover पर icon orange हो जाएगा */
.tempoTraveller-btn:hover i {
  color: rgb(244, 244, 244);
  background-color: #fb6f04;
  padding: 10px;
  border-radius: 50%;
}

    .tempoTraveller-content {
      padding: 20px 15px 25px;
      background: #fff;
      border-top-left-radius: 20%;
      border-top-right-radius: 20%;
      margin-top: -20px;
      position: relative;
      z-index: 1;
    }

    .tempoTraveller-title {
      font-size: 18px;
      font-weight: 600;
      color: #222;
      margin-bottom: 15px;    text-align: center;

    }

    .tempoTraveller-info {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }

    .tempoTraveller-info-item {
      background: #f57c00;
      color: #fff;
      padding: 8px 15px;
      border-radius: 30px;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tempoTraveller-info-item i {
      background: #fff;
      color: #f57c00;
      border-radius: 50%;
      padding: 5px;
      font-size: 12px;
    }

.services_hilight{ border-radius: 10px; margin-bottom:15px; overflow:hidden;}
    .tempoTraveller-details {
      background: #eef5ff;
      padding: 10px;
      font-size: 14px;
      color: #001b57;
      font-weight: 500;
    }

    .tempoTraveller-outstation {
      background: #e7f0f7;
      padding: 10px;
      font-size: 14px;
      color: #001b57;
      font-weight: 500;      
    }

    .tempoTraveller-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .tempoTraveller-btn {
      padding: 8px 18px;
      border-radius: 25px;
      border: none;
      font-weight: 500;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .tempoTraveller-btn.call {
      background: #325ef7;
      color: #fff;
    }

    .tempoTraveller-btn.book {
      background: #5e17eb;
      color: #fff;
    }

    .tempoTraveller-btn:hover {
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .tempoTraveller-card {
        width: 100%;
      }
    }
	
	
	.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 0;
    margin-bottom: 0;
    font-size: .9375rem;
    list-style: none;
    background-color: transparent;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    margin: 0 15px;
    color: #9b9b9b;
    font-size: 0;
    width: 20px;
    height: 1px;
    background-color: currentColor;
}
.breadcrumb-item.active {
    color: #000;
}