* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #e5ac41;
  --secondary-color: #3a2b29;
  --light-theme: #f5f5f5;
  --dark-theme: #212529;
  --text-color: #070404;
}

::selection {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

html {
  scroll-behavior: smooth !important;
}

body {
  background-color: var(--dark-theme);
  color: var(--light-theme-text);
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/*--------------------------------------------------------------
# Import Font
--------------------------------------------------------------*/
@font-face {
  font-family: crimson-text;
  src: url(./../font/CrimsonText-Regular.ttf);
}

@font-face {
  font-family: parkinsans-regular;
  src: url(./../font/Parkinsans-Regular.ttf);
}

.title {
  font-family: crimson-text !important;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6 {
  font-family: crimson-text !important;
}

.lead,
li,
label {
  font-family: parkinsans-regular !important;
}

.p,
p {
  font-size: 18px !important;
  font-family: parkinsans-regular !important;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Scrollbar Styles
--------------------------------------------------------------*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/*--------------------------------------------------------------
# Bootstrap Class Customize Section
--------------------------------------------------------------*/

.form-label {
  font-family: parkinsans-regular !important;
  margin-bottom: 0.75rem !important;
}

.form-control {
  outline: none !important;
  border: 0px !important;
  border-bottom: 1px solid var(--primary-color) !important;
  border-radius: 0px !important;
  font-family: parkinsans-regular !important;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: green !important;
}

.form-select {
  outline: none !important;
  box-shadow: none !important;
  border: 0px !important;
  border-bottom: 1px solid var(--primary-color) !important;
  border-radius: 0px !important;
  font-family: parkinsans-regular !important;
}

.form-select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: green !important;
}

select,
option {
  text-transform: capitalize !important;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
.bg-theme-primary {
  background-color: var(--primary-color) !important;
}

.text-gray {
  color: var(--text-color) !important;
}

.bg-theme-secondary {
  background-color: var(--secondary-color) !important;
}

.text-theme-primary {
  color: var(--primary-color) !important;
}

.text-theme-secondary {
  color: var(--secondary-color) !important;
}

.shadow-primary {
  box-shadow: 0 0.5rem 1rem var(--primary-color);
}

.shadow-secondary {
  box-shadow: 0 0.5rem 1rem var(--secondary-color);
}

body {
  overflow-x: hidden !important;
}

a:hover {
  color: var(--primary-color) !important;
}

.btn-theme-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 1rem 1.25rem !important;
  border-radius: 30px;
  color: white !important;
  font-family: parkinsans-regular !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(58, 43, 41, 0.4);
}

.btn-theme-primary:hover {
  transform: translateY(-5px);
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  box-shadow: 0 8px 20px rgba(229, 172, 65, 0.6);
}


.btn-outline-theme-primary {
  border: 3px solid var(--primary-color) !important;
  transition: 0.5s;
  color: var(--text-color);
  font-size: 20px;
  font-family: parkinsans-regular !important;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 1.5rem;
}

.btn-outline-theme-primary:hover {
  border: 3px solid transparent !important;
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 0px;
  border-radius: 1.5rem;
}

.btn-light {
  background-color: #f8f9fa !important;
  transition: 0.5s;
  color: #000;
  font-family: parkinsans-regular !important;
  border: 2px solid transparent;
  font-size: large;
  font-weight: 700;
  padding: 10px 25px;
}

.btn-light:hover {
  background-color: transparent !important;
  color: #f8f9fa;
  border: 2px solid #f8f9fa;
  border-color: #f8f9fa !important;
  border-radius: 5px;
}

.border-theme-primary {
  border: 1px solid var(--primary-color);
}

.border-theme-primary-2 {
  border: 2px solid var(--primary-color);
}

.border-theme-primary-3 {
  border: 3px solid var(--primary-color);
}

.border-theme-primary-4 {
  border: 4px solid var(--primary-color);
}

.border-top-theme-primary {
  border-top: 1px solid var(--primary-color);
}

.border-bottom-theme-primary {
  border-bottom: 1px solid var(--primary-color);
  border-left: 0px;
  border-right: 0px;
  border-top: 0px;
}

.border-left-theme-primary {
  border-left: 1px solid var(--primary-color);
}

.border-right-theme-primary {
  border-right: 1px solid var(--primary-color);
}

/*------------------------------------------------------------------- 
Section Style
-------------------------------------------------------------------*/

.section {
  scroll-margin-top: 80px; 
}

/*------------------------------------------------------------------- 
Slider Gallery 
-------------------------------------------------------------------*/
.arrow-btn {
  width: auto;
  background-color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-left: 0.25rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Preloader Styles
--------------------------------------------------------------*/

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-img {
  max-width: 300px;
  position: relative;
  margin-bottom: 0.5rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.content {
  margin: 0;
  display: none;
}

.content.loaded {
  display: block;
}

/*--------------------------------------------------------------
# Title Sections
--------------------------------------------------------------*/

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5e6cc 0%, #d4a5a5 100%);
}

.main-title {
  font-size: 3.75rem;
  font-family: crimson-text !important;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.main-title::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 10px;
  width: 100px;
  height: 100px;
  background-image: url(./../img/flower-rose.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 100px;
  height: 100px;
  background-image: url(./../img/flower-rose.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

/*--------------------------------------------------------------
  # Section Heading
  --------------------------------------------------------------*/

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  font-family: crimson-text !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.navbar-custom {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--dark-theme);
  transition: all 0.3s ease;
}

.logo-container {
  position: relative;
  padding: 5px;
}

.logo {
  transition: transform 0.3s ease;
}

.logo-container:hover .logo {
  transform: scale(1.05);
}

.custom-toggler {
  border: none;
  padding: 8px 12px;
  background: var(--primary-color) !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.custom-toggler:hover {
  background: var(--primary-color) !important;
  transform: translateY(-2px);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-item {
  position: relative;
}

.nav-list {
  gap: 1.25rem;
  padding: 0 15px;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif !important;
  padding: 12px 18px !important;
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  left: -10px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.nav-link.active {
  color: var(--light-theme) !important;
  background: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.offcanvas {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 0.75rem;
}

.offcanvas-body {
  padding: 0.5rem !important;
}

.offcanvas-title {
  font-size: 1.25rem;
  font-family: crimson-text !important;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offcanvas .nav-link {
  margin: 0.5rem 0;
  padding: 0.5rem 0.75rem !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-custom {
  animation: slideDown 0.5s ease-out;
}

.dropdown-menu {
  width: 230px;
  background-color: #f5f5f5 !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu li a {
  color: var(--text-color);
  font-family: parkinsans-regular !important;
  text-decoration: none !important;
}

.dropdown-item {
  color: var(--text-color) !important;
  font-family: parkinsans-regular !important;
  margin-bottom: 15px !important;
  text-transform: capitalize !important;
}

.dropdown-item-icon {
  color: var(--primary-color) !important;
}

.dropdown-item-img {
  width: 20% !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
}

.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: #f5f5f5 !important;
}

.dropdown-item:hover .dropdown-item-icon {
  color: #f5f5f5 !important;
}

.dropdown-item.active {
  background-color: var(--secondary-color) !important;
  color: #f5f5f5 !important;
}

.dropdown-item.active .dropdown-item-icon {
  color: #f5f5f5 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
  # Home - Carousel Section
  --------------------------------------------------------------*/

.home-slider {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.carousel-item {
  position: relative;
}

.my-carousel-1 .carousel-item .carousel-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  padding: 1rem;
  border-radius: 5px;
}

.carousel-title {
  color: #fff;
}

.carousel-sub-title {
  font-size: 26px;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-top: 10px;
  /* Add space between title and subtitle */
}

.carousel-sub-title::before {
  position: absolute;
  content: "";
  width: 154px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: -180px;
  transform: translateY(-50%);
}

.carousel-sub-title::after {
  position: absolute;
  content: "";
  width: 170px;
  height: 2px;
  background: #fff;
  top: 50%;
  right: -190px;
  transform: translateY(-50%);
}


/*--------------------------------------------------------------
# Home - About us
--------------------------------------------------------------*/

.about-img-section {
  background: linear-gradient(135deg, #f5e6cc 0%, #d4a5a5 100%);
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.about-img-section::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 150px;
  height: 150px;
  background-image: url(./../img/flower-rose.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.about-img {
  border: 1px solid #f5f5f5;
  border-radius: 0.75rem;
  padding: 0.15rem;
  margin-bottom: 1rem;
}

.about-img:hover {
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
  # Home - Ride Option
  --------------------------------------------------------------*/

.trip-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.trip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.trip-card-header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
}

.trip-card-body {
  padding: 20px;
}

.trip-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dee2e6;
}

.trip-info:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.trip-value {
  font-weight: 500;
  color: #28a745;
}

.trip-label {
  color: #6c757d;
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
  # Home - Call to Action
  --------------------------------------------------------------*/
.call-to-section {
  background-color: var(--secondary-color);
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.call-to-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 50%);
  opacity: 0.3;
  transform: rotate(30deg);
  z-index: 0;
  animation: rotateGlow 15s infinite linear;
}

.cta-title,
.cta-subtitle,
.btn-theme-primary {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.btn-cta {
  background: var(--primary-color);
  color: #f5e6cc;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  background: none;
  color: var(--primary-color);
  transform: translateY(-3px);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.phone-icon {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  vertical-align: middle;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animate-slide-in {
  animation: slideIn 1s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

/*--------------------------------------------------------------
  # Home - Portfolio
  --------------------------------------------------------------*/

.portfolio-img {
  border: 1px solid #f5f5f5;
  border-radius: 0.75rem;
  padding: 0.15rem;
  margin-bottom: 1.25rem;
}

.portfolio-img:hover {
  border: 1px solid var(--primary-color);
  transform: translateY(-5px);
}

/*--------------------------------------------------------------
  # Home - Contact Us
  --------------------------------------------------------------*/

.get-in-touch-img {
  height: 550px;
  margin-bottom: 0.75rem;
}

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/

.about-img {
  border-radius: 0.75rem;
}

.experience-section {
  background: linear-gradient(135deg, #f5e6cc 0%, #d4a5a5 100%);
  color: #070404;
  padding: 50px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.specialty-card {
  width: 100%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem 0.75rem;
  transition: all 0.3s ease-in-out;
  border: none;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.specialty-img {
  width: 150px;
  height: 150px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 0.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid #fff;
  transition: transform 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #f5e6cc 0%, #d4a5a5 100%);
}

.specialty-card:hover .specialty-img {
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.specialty-card:hover::before {
  opacity: 1;
}

.testimonial-card {
  padding: 1rem;
  margin-bottom: 1.2rem;
}

.testimonial-card-1 {
  border-right: 1px solid #ccc;
}

.testimonial-card-2 {
  border-right: 1px solid #ccc;
}

.testimonial-card-3 {
  border-right: 1px solid #ccc;
}

.testimonial-card-4 {
  border-right: 0px solid #ccc;
}

.testimonial-card-img {
  background-color: var(--primary-color);
  width: 125px;
  height: 125px;
  padding: 0.25rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.testimonial-card-content {
  height: 180px;
}

.testimonial-card-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.accordion {
  --bs-accordion-border-color: transparent;
}

.accordion-button {
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 5px 2.5px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  transition: 0.4s;
}

.accordion-body {
  background-color: var(--primary-color);
  color: #fff !important;
  cursor: pointer;
  padding: 1.25rem 0.75rem;
  border-radius: 0.35rem;
  margin-bottom: 1.25rem;
  transition: 0.4s;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  border-color: 0px !important;
  outline: none !important;
}

.accordion-button {
  background-color: transparent;
  color: #000;
  border: none;
}

.accordion-button:not(.collapsed):not(:focus) {
  background-color: var(--primary-color);
  color: white;
  border-color: rgba(0, 0, 0, .125);
  outline: 0px !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  background-color: var(--primary-color);
  color: white;
  border-color: rgba(0, 0, 0, .125);
  outline: 0px !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed):focus {
  background-color: var(--primary-color);
  color: white;
  border-color: rgba(0, 0, 0, .125);
  outline: 0px !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
}

/*--------------------------------------------------------------
  # Gallery Icon 
  --------------------------------------------------------------*/

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-img {
  border: 3px solid #d88e7d !important;
  padding: 0.15rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.img-responsive {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.zoom-icon {
  font-size: 24px;
  color: white;
}

img {
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
  # Contact 
  --------------------------------------------------------------*/
.contact-card {
  background-color: #f5f5f5;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 26px;
}

.contact-text {
  color: #f5f5f5;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.contact-form {
  width: 100% !important;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  z-index: 99 !important;
  margin-bottom: 1rem;
}

.contact-map {
  width: 100% !important;
  border-radius: 1rem;
  height: 400px;
  border: 1px solid #f5f5f5;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/

.footer-section {
  background-color: var(--dark-theme);
}

.footer-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-img {
  width: 30%;
}

.foot-svg-txt {
  width: 275px;
  height: 40px;
  font-size: 30px;
}

.footer-title {
  color: var(--primary-color);
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer-text {
  font-size: 18px;
  color: #f5f5f5;
  text-transform: capitalize;
  font-family: parkinsans-regular;
  text-decoration: none !important;
  margin-bottom: 0.25rem;
}

a .footer-text:hover {
  color: var(--primary-color) !important;
}

.footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 45px;
  background: var(--primary-color);
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: #f7f7f7;
  border-radius: 50%;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

.footer-bg-secondary {
  background-color: #4c4174;
}

.company-link {
  font-size: 18px !important;
  font-family: parkinsans-regular;
  width: auto !important;
  transition: transform 0.3s ease;
}

.company-link a {
  display: inline-block;
  background: #fff;
  color: #1e3c72;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.company-link:hover {
  color: var(--primary-color) !important;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/

.mobile-widget {
  background-color: rgba(58, 43, 41);
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  box-shadow: 0 1rem 0.5rem rgba(142, 69, 36, 0.35);
}

.widget-icon {
  background-color: var(--primary-color);
  width: 45px;
  height: 40px;
  margin: 0rem 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 26px !important;
  text-decoration: none;
  color: var(--secondary-color) !important;
  box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
}

.widget-icon a {
  color: var(--secondary-color) !important;
}

.widget-icon:hover {
  color: var(--light-theme) !important;
}