:root {
  --primary-color: #be8b2e;
  --secondary-color: #000;
  --dark-color: #1d2144;
  --light-color: #f8f9fa;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 400;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-color);
  color: #fff;
  padding: 10px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
}

.contact-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 5px;
  color: var(--primary-color);
}

.social-icon {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 0px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--primary-color);
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: var(--dark-color) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 10px;
  font-size: 1.5rem;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile Navbar */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-collapse {
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    margin-top: 2rem;
  }

  .nav-item {
    margin-bottom: 1rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0;
    border-radius: 8px;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
  }

  .dropdown-item {
    color: #fff;
    padding: 0.5rem 1rem;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .close-navbar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

/* Dropdown */
.dropdown-menu {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .dropdown-item {
  color: #fff;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  z-index: 3;
  position: relative;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  /* Move arrows below the text content on mobile */
  .slider-arrows {
    top: auto;
    bottom: 80px; /* Position above the navigation dots */
    transform: none;
  }

  .arrow {
    width: 45px;
    height: 45px;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .arrow.prev {
    left: 20px;
    bottom: 0;
    transform: none;
  }

  .arrow.next {
    right: 20px;
    bottom: 0;
    transform: none;
  }

  .arrow i {
    font-size: 1rem;
  }

  /* Adjust hero slider height on mobile */
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }

  /* Better text positioning on mobile */
  .slide-content {
    padding: 20px 15px;
    max-width: 90%;
    position: relative;
    z-index: 5; /* Higher z-index than arrows */
  }

  .slide-content h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .slide-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  /* Adjust navigation dots position */
  .slider-nav {
    bottom: 20px;
    z-index: 6;
  }

  .nav-dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
    min-height: 450px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Make arrows smaller on very small screens */
  .arrow {
    width: 40px;
    height: 40px;
  }

  .arrow.prev {
    left: 15px;
  }

  .arrow.next {
    right: 15px;
  }

  /* Reduce gap between content and arrows */
  .slider-arrows {
    bottom: 60px;
  }

  .slider-nav {
    bottom: 15px;
  }
}

/* Alternative solution: Hide arrows on mobile and rely on swipe */
@media (max-width: 576px) {
  .slider-arrows {
    display: none; /* Hide arrows completely on small mobile screens */
  }

  /* Add a swipe indicator */
  .hero-slider::after {
    content: "Swipe left or right to navigate";
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
    animation: fadeInOut 3s ease-in-out infinite;
  }

  @keyframes fadeInOut {
    0%,
    70%,
    100% {
      opacity: 0;
    }
    20%,
    50% {
      opacity: 1;
    }
  }
}
.slide-content h2 span {
  color: #be8b2e;
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: #be8b2e;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: #fff;
  color: #be8b2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Background images for each slide */
.slide-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/slider/2.png");
}

.slide-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/slider/3.png");
}

.slide-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/slider/4.png");
}

.slide-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/slider/1.png");
}

/* Navigation Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.arrow:hover {
  background: #be8b2e;
  border-color: #be8b2e;
  transform: translateY(-50%) scale(1.1);
}

.arrow.prev {
  left: 30px;
}

.arrow.next {
  right: 30px;
}

.arrow i {
  font-size: 1.2rem;
}

/* Navigation Dots */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 35px !important;
  z-index: 4;
}

.nav-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
  background: #be8b2e;
  transform: scale(1.2);
}

/* Features Section */
.features-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 3.5rem;
  color: #000;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #be8b2e;
}

.section-header p {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 30px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(190, 139, 46, 0.15);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #be8b2e;
  z-index: 2;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(190, 139, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: #be8b2e;
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  font-size: 2rem;
  color: #be8b2e;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 400;
}

/* About Us Section */
.about-section {
  padding: 100px 20px;
  background: #be8b2e0f;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  position: relative;
}

.image-main {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-image:hover .image-main {
  transform: scale(1.02);
}

.image-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 15px solid #be8b2e;
  top: -30px;
  left: -30px;
  z-index: -1;
  border-radius: 10px;
  opacity: 0.3;
}

.about-content h3 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #be8b2e;
}

.about-content p {
  color: #666;
  line-height: 2;
  margin-bottom: 25px;
  font-size: 1.15rem;
  font-weight: 400;
}

.highlight-text {
  background: rgba(190, 139, 46, 0.1);
  padding: 25px;
  border-left: 4px solid #be8b2e;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-text p {
  font-style: italic;
  color: #555;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.9;
  font-weight: 400;
}

.stats-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d2144;
  display: block;
  margin-bottom: 5px;
  text-shadow: 3px 4px 6px #fff;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background: #be8b2e;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #be8b2e;
  margin-top: 20px;
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: #be8b2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(190, 139, 46, 0.2);
}

.btn-outline {
  background: transparent;
  color: #be8b2e;
  border: 2px solid #be8b2e;
  text-align: center;
}

.btn-outline:hover {
  background: #be8b2e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(190, 139, 46, 0.3);
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

/* Services Slider */
.services-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.services-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  flex: 0 0 calc(33.333% - 20px);
  min-width: 350px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(190, 139, 46, 0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(190, 139, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: #be8b2e;
  transform: scale(1.1);
}

.service-icon i {
  font-size: 1.5rem;
  color: #be8b2e;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-content h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.05rem;
  font-weight: 400;
}

.service-content .full-description {
  display: none;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  margin: 20px 0;
  padding-left: 20px;
  display: none;
}

.service-features li {
  color: #666;
  margin-bottom: 8px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  color: #be8b2e;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #be8b2e;
  margin: 20px 0;
  display: none;
}

.service-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #be8b2e;
  color: #fff;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

/* Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  outline: none;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-secondary:hover:before {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.read-more {
  background: transparent;
  color: #be8b2e !important;
  border: 2px solid #be8b2e;
}

.read-more:hover {
  background: #be8b2e;
  color: #fff !important;
}

.book-now {
  background: linear-gradient(135deg, #be8b2e, #d4af37);
}

.book-now:hover {
  background: linear-gradient(135deg, #a87a25, #b8942f);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #be8b2e;
  color: #be8b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: #be8b2e;
  color: #fff;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #be8b2e;
  transform: scale(1.2);
}

/* Statistics Section */
.stats-section {
  padding: 80px 20px;
  background-image: url(../img/bg/1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  position: relative;
}

/* Add overlay to stats section */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 33, 68, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(190, 139, 46, 0.6) 100%
  );
  z-index: 1;
}

/* Ensure content appears above overlay */
.stats-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  background: rgba(190, 139, 46, 0.2);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #be8b2e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}

.stat-number::after {
  content: "+";
  color: #fff;
  font-size: 2rem;
  margin-left: 5px;
}

.stat-text {
  font-size: 1.1rem;
  opacity: 0.9;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 20px;
  background: var(--dark-color);
  color: #fff;
  position: relative;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio-header h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.portfolio-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #be8b2e;
}

.portfolio-header p {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-weight: 400;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 2px solid #be8b2e;
  color: #c1b7a5;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #be8b2e;
  color: #fff;
  transform: translateY(-3px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  cursor: pointer;
}

.portfolio-item.animate {
  opacity: 1;
  transform: scale(1);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1); /* Start zoomed in */
  filter: brightness(1.1) contrast(1.1);
}

/* Zoom Out Effect on Hover */
.portfolio-item:hover .portfolio-image {
  transform: scale(1); /* Zoom out to normal size */
  filter: brightness(0.8) contrast(1.2) saturate(1.3);
}

/* Enhanced Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 33, 68, 0.85) 0%,
    rgba(190, 139, 46, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  clip-path: circle(0% at 50% 50%);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  clip-path: circle(150% at 50% 50%);
}

/* Enhanced Portfolio Content */
.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  transform: translateY(30px) rotateX(45deg);
  transition: all 0.5s ease;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-category {
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  transform: translateY(30px) rotateX(45deg);
  transition: all 0.5s ease 0.1s;
  color: #fff;
  font-weight: 600;
}

.portfolio-links {
  display: flex;
  gap: 15px;
  transform: translateY(30px) rotateX(45deg);
  transition: all 0.5s ease 0.2s;
}

.portfolio-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.portfolio-link:hover {
  background: #be8b2e;
  border-color: #be8b2e;
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(190, 139, 46, 0.3);
}

/* Reset transforms on hover */
.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category,
.portfolio-item:hover .portfolio-links {
  transform: translateY(0) rotateX(0);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 20px;
  background: #be8b2e0f;
  position: relative;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: block;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  min-height: 500px;
  position: relative;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(190, 139, 46, 0.15);
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: rgba(190, 139, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  font-size: 1.5rem;
  color: #be8b2e;
}

.testimonial-content {
  padding: 20px 0 30px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.35rem;
  line-height: 2;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  font-weight: 400;
}

.testimonial-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #be8b2e;
  border-radius: 10px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #be8b2e;
  flex-shrink: 0;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 5px;
  font-weight: 600;
}

.client-details p {
  color: #be8b2e;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.rating {
  margin-top: 8px;
  color: #ffc107;
}

/* Auto-play indicator */
.auto-play-indicator {
  display: flex;
  justify-content: center;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
}

.auto-play-toggle {
  width: 40px;
  height: 20px;
  background: #ddd;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auto-play-toggle.active {
  background: #be8b2e;
}

.toggle-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.auto-play-toggle.active .toggle-handle {
  left: 22px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 20px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.faq-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faq-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(30, 33, 68, 0.8));
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.faq-image:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.image-overlay p {
  font-size: 1rem;
  opacity: 0.9;
}

.faq-content {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.2s;
}

.faq-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(190, 139, 46, 0.1);
  transform: translateY(-5px);
}

.faq-item.active {
  border-color: #be8b2e;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item.active .faq-question {
  background: rgba(190, 139, 46, 0.05);
}

.faq-question h3 {
  font-size: 1.4rem;
  color: #000;
  margin: 0;
  padding-right: 30px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.faq-item.active .faq-question h3 {
  color: #be8b2e;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(190, 139, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item.active .faq-icon {
  background: #be8b2e;
  transform: rotate(180deg);
}

.faq-icon i {
  color: #be8b2e;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon i {
  color: white;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 400;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 15px 0;
}

.faq-answer li {
  color: #666;
  margin-bottom: 8px;
  position: relative;
}

.faq-answer li::before {
  content: "•";
  color: #be8b2e;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

/* Contact CTA */
.faq-cta {
  background: linear-gradient(135deg, #be8b2e, #d4af37);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(190, 139, 46, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.faq-cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.faq-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-h {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  outline: none;
}

.btn-h-primary {
  background: white;
  color: #be8b2e !important;
}

.btn-h-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-h-outline {
  background: transparent;
  color: white !important;
  border: 2px solid white;
}

.btn-h-outline:hover {
  background: white;
  color: #be8b2e !important;
  transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: var(--dark-color);
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-list i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--primary-color);
}

.social-section h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: #1d2144;
  color: #fff;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.footer-column h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: left;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-around;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
}

/* Modal for Booking */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 20px 30px 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 15px 15px 0 0;
}

.modal-body {
  padding: 20px 30px 30px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: #be8b2e;
  background: #fff;
}

.modal h3 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
  padding-right: 50px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: #be8b2e;
  outline: none;
  box-shadow: 0 0 0 2px rgba(190, 139, 46, 0.1);
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #be8b2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #a87a25;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(190, 139, 46, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-image {
    order: 2;
  }

  .faq-content {
    order: 1;
  }

  .faq-image,
  .faq-content {
    transform: translateY(30px);
  }

  .faq-image.animate,
  .faq-content.animate {
    transform: translateY(0);
  }

  /* About Section Responsive */
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content,
  .about-image {
    flex: none;
    width: 100%;
  }

  .image-decoration {
    display: none;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .top-left {
    margin-bottom: 10px;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .hero-slider {
    height: 70vh;
  }

  .section-header h2,
  .portfolio-header h2 {
    font-size: 2.2rem;
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:hover,
  .service-card:hover {
    transform: translateY(-5px);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 80px 15px;
  }

  .service-card {
    flex: 0 0 calc(100% - 20px);
  }

  .service-actions {
    flex-direction: column;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
  }

  .modal-content {
    max-height: 85vh;
  }

  .modal-header,
  .modal-body {
    padding: 15px 20px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .testimonials-section {
    padding: 80px 15px;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .quote-icon {
    top: 20px;
    left: 25px;
    width: 50px;
    height: 50px;
  }

  .quote-icon i {
    font-size: 1.2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    padding-left: 15px;
  }

  .faq-section {
    padding: 80px 15px;
  }

  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 25px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px;
  }

  .faq-cta {
    padding: 25px 20px;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .stats-section {
    padding: 60px 15px;
    background-attachment: scroll;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-text {
    font-size: 1rem;
  }

  .stat-item {
    padding: 15px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .portfolio-image {
    height: 250px;
  }

  .portfolio-title {
    font-size: 1.3rem;
  }

  .portfolio-link {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  /* Footer Responsive */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 12px;
  }

  .contact-item {
    margin-right: 10px;
  }

  .social-icon {
    margin-left: 10px;
    font-size: 14px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 10px 25px;
  }

  .section-header h2,
  .portfolio-header h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-card {
    min-width: 280px;
  }

  .modal h3 {
    font-size: 1.5rem;
  }

  .form-control {
    padding: 10px 12px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-h {
    width: 100%;
  }

  .stats-section {
    padding: 50px 10px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-text {
    font-size: 0.9rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-image {
    height: 220px;
  }

  .portfolio-title {
    font-size: 1.2rem;
  }

  .portfolio-category {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  .portfolio-links {
    gap: 10px;
  }

  .portfolio-link {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* About Section Mobile */
  .about-content h3 {
    font-size: 1.6rem;
  }

  .highlight-text {
    padding: 20px;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 0 15px 0;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #be8b2e;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #a87a25;
}

/* Animation classes */
.animate {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar scroll effect */
.navbar.scrolled {
  /* padding: 0.5rem 0; */
  background: var(--primary-color);
}
/* Scroll to Top Button Styles */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background: #be8b2e;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

.navbar-brand{
    max-width: 90px;
}


.navbar-toggler-icon{
    border-radius: 3px;
    display: inline-block;
    width: 1.5em;
    background: #fff;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}





/* Breadcrumb Section with Background */
.breadcrumb-section {
  position: relative;
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.breadcrumb-bg-overlay {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../img/bg/1.png') center/cover no-repeat;
  display: flex;
  background-attachment: fixed;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: fadeIn 1s;
}
.breadcrumb {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 18px 20px;
  background: transparent;
  animation: slideInDown 0.8s ease-out;
}
.breadcrumb ul {
  display: flex;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(190, 139, 46, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(190, 139, 46, 0.08);
}
.breadcrumb a:hover {
  color: #fff;
  background: var(--primary-color);
  box-shadow: 0 4px 16px rgba(190, 139, 46, 0.18);
  transform: translateY(-2px) scale(1.04);
}
.breadcrumb i {
  margin: 0 8px;
  font-size: 13px;
  color: #ffd9a0;
}
.breadcrumb .current {
  color: #fff;
  font-weight: 700;
  background: rgba(255, 107, 107, 0.18);
  border: 1px solid rgba(255, 107, 107, 0.3);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .breadcrumb-section, .breadcrumb-bg-overlay {
    min-height: 140px;
  }
  .breadcrumb {
    padding: 18px 10px 10px 10px;
  }
  .breadcrumb a, .breadcrumb .current {
    font-size: 14px;
    padding: 7px 12px;
  }
  .breadcrumb ul {
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .breadcrumb-section, .breadcrumb-bg-overlay {
    min-height: 156px;
  }
  .breadcrumb {
    padding: 10px 2vw 6px 2vw;
  }
  .breadcrumb ul {
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  .breadcrumb a, .breadcrumb .current {
    font-size: 12px;
    padding: 5px 8px;
  }
}

        /* Error Content Styles */
        .error-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            flex-grow: 1;
        }

        .error-code {
            font-size: 12rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            animation: bounceIn 1.2s ease-out;
            color: #ff6b6b;
        }

        .error-message {
            font-size: 2rem;
            margin-bottom: 30px;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .error-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.6;
            color: #ddd;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Animated Icon */
        .error-icon {
            font-size: 5rem;
            margin-bottom: 30px;
            color: #ff6b6b;
            animation: pulse 2s infinite, rotate 8s linear infinite;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }

        .btn-primary {
            background: #1aad2b;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .btn-primary:hover {
            background: #ff5252;
            color: #fff !important;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        }

        .btn-secondary {
            background:#1a4aad;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: #1aad2b;
            transform: translateY(-3px);
            color: #be8b2e !important;
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            /* text-align: center; */
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
            animation: fadeIn 1s ease-out 1.2s both;
        }

        /* Animations */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .error-code {
                font-size: 8rem;
            }

            .error-message {
                font-size: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .error-code {
                font-size: 6rem;
            }

            .error-message {
                font-size: 1.3rem;
            }

            .error-description {
                font-size: 1rem;
            }

            .breadcrumb ul {
                flex-wrap: wrap;
            }
        }
 /* Main Content */
        .beauty-about-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        .beauty-about-content {
            padding: 30px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            animation: beauty-slideInLeft 1s ease-out;
        }

        .beauty-about-content h2 {
            color: #be8b2e;
            margin-bottom: 20px;
            font-size: 32px;
            position: relative;
            padding-bottom: 10px;
        }

        .beauty-about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #be8b2e, #f8a5c2);
        }

        .beauty-about-content p {
            margin-bottom: 20px;
            font-size: 16px;
            color: #555;
        }

        .beauty-about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: beauty-slideInRight 1s ease-out;
        }

        .beauty-about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .beauty-about-image:hover img {
            transform: scale(1.05);
        }

        /* Values Section */
        .beauty-about-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 60px 0;
        }

        .beauty-about-value-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .beauty-about-value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .beauty-about-value-icon {
            font-size: 40px;
            color: #be8b2e;
            margin-bottom: 20px;
        }

        .beauty-about-value-card h3 {
            margin-bottom: 15px;
            color: #333;
        }

        .beauty-about-value-card p {
            color: #666;
            font-size: 14px;
        }

        /* Team Section */
        .beauty-about-team {
            margin: 60px 0;
            text-align: center;
        }

        .beauty-about-team h2 {
            color: #be8b2e;
            margin-bottom: 40px;
            font-size: 32px;
        }

        .beauty-about-team-members {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .beauty-about-team-member {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .beauty-about-team-member:hover {
            transform: translateY(-10px);
        }

        .beauty-about-member-img {
            height: 250px;
            overflow: hidden;
        }

        .beauty-about-member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .beauty-about-team-member:hover .beauty-about-member-img img {
            transform: scale(1.1);
        }

        .beauty-about-member-info {
            padding: 20px;
        }

        .beauty-about-member-info h3 {
            margin-bottom: 5px;
            color: #333;
        }

        .beauty-about-member-info p {
            color: #be8b2e;
            font-weight: 500;
        }
/* Animations */
        @keyframes beauty-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes beauty-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes beauty-slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .beauty-about-main {
                grid-template-columns: 1fr;
            }

            .beauty-about-values {
                grid-template-columns: repeat(2, 1fr);
            }

            .beauty-about-team-members {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.beauty-about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }


        /* Courses Section */
.academy-courses {
    margin: 60px 0;
}

.academy-section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.academy-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--dark);
    display: inline-block;
}

.academy-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.academy-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.academy-course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.academy-course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.academy-course-img {
    height: 220px;
    overflow: hidden;
}

.academy-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.academy-course-card:hover .academy-course-img img {
    transform: scale(1.1);
}

.academy-course-content {
    padding: 25px;
}

.academy-course-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.academy-course-content p {
    color: var(--text);
    margin-bottom: 20px;
}

.academy-course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.academy-course-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text);
    font-size: 0.9rem;
}

.academy-course-info i {
    color: var(--primary);
}

.academy-course-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.academy-course-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.academy-course-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 133, 0.4);
}

/* Features Section */
.academy-features {
    background: white;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.academy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.academy-feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: var(--transition);
    animation: fadeInScale 0.8s ease-out;
}

.academy-feature:hover {
    background: var(--light);
    transform: translateY(-10px);
}

.academy-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    transition: var(--transition);
}

.academy-feature:hover .academy-feature-icon {
    background: var(--secondary);
    transform: scale(1.1) rotate(5deg);
}

.academy-feature h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.academy-feature p {
    color: var(--text);
}

/* CTA Section */
.academy-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin: 60px 0;
    animation: fadeIn 1s ease-out;
}

.academy-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.academy-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.academy-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: var(--dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.academy-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Responsive Adjustments for Sections --- */
@media (max-width: 768px) {
    .academy-section-title h2 {
        font-size: 28px;
    }

    .academy-courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .academy-course-info {
        flex-direction: column;
        gap: 10px;
    }
}