@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #078C8C;
  --secondary-color: #E5A914;
  --bg-color: #F5F8F7;
  --white-color: #FFFFFF;
  --dark-text: #0B2948;
  --paragraph-color: #64748B;
  --border-color: #E5E7EB;
  --btn-hover: #0B2948;
  --success-color: #4D9142;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --soft-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 35px rgba(7, 140, 140, 0.15);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-btn: 50px;
}

body {
  font-family: var(--font-body);
  color: var(--paragraph-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utilities */
.section-padding {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.text-primary-custom {
  color: var(--primary-color) !important;
}
.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

/* Buttons */
.btn-custom {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(7, 140, 140, 0.2);
}
.btn-primary-custom:hover {
  background-color: var(--btn-hover);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}
.btn-secondary-custom {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn-secondary-custom:hover {
  background-color: var(--bg-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-custom {
  background-color: var(--white-color);
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar-custom.scrolled {
  box-shadow: var(--soft-shadow);
  padding: 10px 0;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.navbar-brand .tagline {
  font-size: 0.75rem;
  color: var(--paragraph-color);
  font-family: var(--font-body);
  font-weight: 400;
}
.nav-link {
  color: var(--dark-text) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 15px 0;
  margin-top: 10px;
  min-width: 240px;
  animation: dropdownFade 0.3s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu-custom .dropdown-item {
  padding: 10px 25px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.dropdown-menu-custom .dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--primary-color);
  margin-right: 5px;
}
.dropdown-menu-custom .dropdown-item:hover {
  background-color: rgba(7, 140, 140, 0.08);
  color: var(--primary-color);
  padding-left: 30px;
}
.dropdown-menu-custom .dropdown-divider {
  border-color: var(--border-color);
  margin: 8px 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--bg-color);
  overflow: hidden;
}
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.hero-features span {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-text);
}
.hero-features i {
  color: var(--success-color);
}
.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  height: 500px;
  object-fit: cover;
  background-color: #cbd5e1;
}

/* Banner Carousel */
.banner-carousel-section {
  margin-bottom: 0;
}
.banner-slide {
  padding: 100px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.banner-content {
  max-width: 600px;
}
.banner-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
}
.banner-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--btn-hover);
}
.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}
.carousel-indicators {
  bottom: 20px;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white-color);
  opacity: 0.5;
  border: none;
  margin: 0 5px;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* About Section */
.about-section {
  background-color: var(--white-color);
}
.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  height: 500px;
  object-fit: cover;
  background-color: #cbd5e1;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(7, 140, 140, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.feature-content p {
  font-size: 0.9rem;
  margin: 0;
}

/* Services Section */
.services-section {
  background-color: var(--bg-color);
}
.service-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-color);
}
.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(7, 140, 140, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Service Card with Image */
.service-card-custom {
  background-color: var(--white-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}
.service-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-color);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-custom:hover .service-card-img img {
  transform: scale(1.1);
}
.service-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(229, 169, 20, 0.3);
}
.service-card-body {
  padding: 25px;
  text-align: center;
}
.service-card-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--paragraph-color);
  margin-bottom: 20px;
}

/* Services Slider Section */
.services-slider-section {
  background-color: var(--bg-color);
}
.services-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}
.services-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}
.services-slider .service-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .services-slider .service-card {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .services-slider .service-card {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 8px !important;
  }
  .services-slider-wrapper {
    padding: 0 45px !important;
    overflow: hidden !important;
  }
  .services-slider {
    gap: 0 !important;
  }
  .slider-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.9rem !important;
    z-index: 20 !important;
  }
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(7, 140, 140, 0.3);
}
.slider-btn:hover {
  background-color: var(--btn-hover);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn-prev {
  left: 0;
}
.slider-btn-next {
  right: 0;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}
.slider-dot:hover {
  background-color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-us-section {
  background-color: var(--white-color);
}
.why-box {
  text-align: center;
  padding: 20px;
}
.why-box .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.why-box h4 {
  font-size: 1.1rem;
}

/* How We Work Section */
.work-section {
  background-color: var(--bg-color);
}
.work-step {
  text-align: center;
  position: relative;
}
.work-icon {
  width: 90px;
  height: 90px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  box-shadow: var(--soft-shadow);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.step-arrow {
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  color: var(--border-color);
  font-size: 2rem;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .step-arrow { display: none; }
  .work-step { margin-bottom: 30px; }
}
.work-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--white-color);
}
.testimonial-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  height: 100%;
}
.stars {
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #cbd5e1;
}
.client-details h5 {
  margin: 0;
  font-size: 1.1rem;
}
.client-details p {
  margin: 0;
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #056969);
  color: var(--white-color);
  padding: 80px 0;
  border-radius: var(--radius-lg);
  margin: 0 15px 80px;
}
.cta-section-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-section h2 {
  color: var(--white-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.cta-image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  background-color: #cbd5e1;
  height: 300px;
  object-fit: cover;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-color);
}
.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border-color);
  background-color: var(--white-color);
  color: var(--dark-text);
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white-color);
  padding: 25px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-overlay h5 {
  color: var(--white-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
  background-color: var(--white-color);
}
.stat-box {
  padding: 30px 20px;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.stat-box p {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 500;
  margin: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: #94A3B8;
  padding: 80px 0 20px;
}
.footer h4 {
  color: var(--white-color);
  margin-bottom: 25px;
  font-size: 1.3rem;
}
.footer-logo {
  color: var(--white-color) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
}
.footer-logo .tagline {
  font-size: 0.8rem;
  color: #94A3B8;
  display: block;
  font-weight: 400;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  margin-right: 10px;
}
.social-icons a:hover {
  background-color: var(--primary-color);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #94A3B8;
}
.footer-links a:hover {
  color: var(--white-color);
  padding-left: 5px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Animations - Fade Up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: var(--font-body);
}

.wa-floating-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.wa-floating-btn:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1;
}

.wa-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-popup-header {
  background-color: #075E54;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-header-info i {
  font-size: 2rem;
}

.wa-header-info h5 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-body);
  color: white;
}

.wa-header-info p {
  margin: 0;
  font-size: 0.75rem;
  color: #d1f4cc;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
}

.wa-close-btn:hover {
  opacity: 1;
}

.wa-popup-body {
  padding: 20px;
  background-color: #e5ddd5;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  min-height: 200px;
}

.wa-message {
  background-color: white;
  padding: 12px 15px;
  border-radius: 0 8px 8px 8px;
  font-size: 0.9rem;
  color: #303030;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  display: inline-block;
  max-width: 90%;
  line-height: 1.4;
}

.wa-popup-footer {
  padding: 15px;
  background-color: #f0f0f0;
  display: flex;
  gap: 10px;
}

.wa-popup-footer input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  outline: none;
  font-size: 0.9rem;
}

.wa-send-btn {
  width: 40px;
  height: 40px;
  background-color: #1ebe57;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-send-btn:hover {
  background-color: #128C7E;
}

@media (max-width: 576px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .wa-popup {
    width: 280px;
  }
}

/* Call Floating Button */
.call-floating-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #0056b3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.4);
  transition: all 0.3s ease;
  z-index: 9998;
}

.call-floating-btn:hover {
  transform: scale(1.1);
  background-color: #004494;
  color: white;
}

@media (max-width: 576px) {
  .call-floating-btn {
    bottom: 20px;
    left: 20px;
  }
}

/* Booking Popup Container */
.booking-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.booking-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.booking-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Fix WhatsApp Floating Button */
.wa-floating-btn {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9998 !important;
  text-decoration: none !important;
}

@media (max-width: 576px) {
  .wa-floating-btn {
    bottom: 20px !important;
    right: 20px !important;
  }
}

/* Custom Accordion FAQ */
.custom-accordion .accordion-item {
  border: none;
  border-radius: var(--radius-md) !important;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--dark-text);
  padding: 18px 24px;
  background-color: var(--white-color);
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #f1f8fc;
}

.custom-accordion .accordion-button::after {
  background-size: 1rem;
}

.custom-accordion .accordion-body {
  padding: 20px 24px;
  color: var(--paragraph-color);
  background-color: var(--white-color);
  border-top: 1px solid var(--border-color);
}

/* About Image Fix */
.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-text {
    padding-left: 0 !important;
    text-align: center;
  }
}

/* Override About Image Height */
.about-image {
  height: auto !important;
  object-fit: contain !important;
  max-height: 600px;
}
