/* Base Styles */
:root {
  --primary-color: #669933; /* Dark Green */
  --secondary-color: #2b9b4a; /* Medium Green */
  --accent-color: #ff7a00; /* Vibrant Orange */
  --accent-gradient: linear-gradient(to right, #ff6600, #ffc48e);
  --text-color: #333;
  --light-text: #fff;
  --dark-text: #333;
  --bg-color: #f9f9f9;
  --card-bg: #ffffff;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --title-family: "Urbanist", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--title-family);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.2);
  font-size: 16px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
}

.btn:hover::before {
  width: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff7a005c;
  color: #fc7f0de0;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* New Section Title Design */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.section-subtitle::before {
  left: -40px;
}

.section-subtitle::after {
  right: -40px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: block;
}

.section-title span {
  color: var(--accent-color);
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 20px auto;
  border-radius: 2px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #fdfffc, #f3aa77);
}
header.innerPage {
  position: sticky;
  background: #fff;
}
header.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  width: 100%;
}

.logo-icon {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  max-width: 180px;
}

.logo-text-green {
  color: var(--primary-color);
}

.logo-text-orange {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  margin-right: 30px;
}

.nav-item {
  margin: 0 15px;
  padding: 15px 10px;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--dark-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, #fdfffc, #ee7e33),
    url(../assets/img/bg/section-bg1.png);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;

  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--light-text);
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
  color: var(--primary-color);
  font-family: var(--title-family);
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
  color: var(--dark-text);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

/* New Services Section Design */
.services {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.services-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.services-container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(26, 106, 46, 0.03),
    rgba(255, 122, 0, 0.03)
  );
  z-index: -1;
}

.service-card-inner {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 20px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.service-card:hover .service-icon-bg {
  transform: rotate(0deg);
  border-radius: 50%;
}

.service-icon {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: white;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 15px;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  transition: all 0.3s ease;
}

.service-card:hover .service-title::after {
  width: 80px;
}

.service-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-color);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(255, 122, 0, 0.1);
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about .about-content .section-subtitle {
  margin-left: 40px;
}

.about .about-image {
  flex: 1;
  /* position: relative; */
  /* overflow: hidden; */
  /* opacity: 0; */
  background: url("../img/bg/wh1.5.png") -9px -22px / cover no-repeat;
  padding: 20px;
}

.about .about-image.in-view {
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about .about-content {
  flex: 1;
  /* transform: translateX(50px); */
  /* opacity: 0; */
  /* transition: all 0.8s ease; */
}

.about .about-content.in-view {
  transform: translateX(0);
  /* opacity: 1; */
}

.about-text {
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  position: relative;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, rgba(26, 106, 46, 0.97), rgba(43, 155, 74, 0.97));
  background-blend-mode: overlay;
  background-size: 100px, cover;
  color: white;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials .section-subtitle::before,
.testimonials .section-subtitle::after {
  background: rgba(255, 255, 255, 0.6);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: absolute;
  margin: 20px auto;
  max-width: 800px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  min-height: 200px;
  left: calc(50% - 25vw);
  width: 50vw;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote-icon {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.testimonial-rating {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: white;
  margin-bottom: 25px;
  position: relative;
  text-align: left;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.testimonial-position {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.testimonials-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  margin-top: 60px;
  min-height: 400px;
}

.testimonial-item {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: absolute;
  margin: 20px auto;
  max-width: 800px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  min-height: 200px;
  left: calc(50% - 25vw);
  width: 50vw;
}

.testimonial-item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  padding: 0 20px;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  top: -20px;
  left: -10px;
}

.testimonial-quote::after {
  bottom: -50px;
  right: -10px;
  transform: rotate(180deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--light-text);
}

.testimonial-position {
  color: #ebe4dd;
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
  top: 450px;
  position: absolute;
  left: calc(50% - 50px);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--accent-color);
}

.testimonial-arrow:hover {
  background: var(--accent-color);
  color: white;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Portfolio Section */
.portfolio {
  padding: 120px 0;
  background: url(./assets/img/bg/section-bg.png) top right no-repeat;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  margin-top: 50px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  /* opacity: 0; */
  /* transform: translateY(30px);
  transition: all 0.5s ease; */
  height: 500px;
}

/* .portfolio-item.in-view {
  opacity: 1;
  transform: translateY(0);
} */

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #5a5a5a, #9a969600);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
/* 
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
} */

/* .portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
} */

.portfolio-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  opacity: 1;
  transition: all 0.3s ease 0.1s;
}

.portfolio-category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.2s;
}

/* .portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category {
  transform: translateY(0);
  opacity: 1;
} */

/* Contact Section */
.contact {
  padding: 120px 0;
  position: relative;
  background: url("./assets/img/bg/section-bg3.png") center/cover no-repeat;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(68deg, rgb(209 217 201), rgb(59 116 0 / 97%));
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.contact .section-title {
  color: white;
  margin-bottom: 20px;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.contact .section-subtitle::before,
.contact .section-subtitle::after {
  background: rgba(255, 255, 255, 0.6);
}

.contact .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: flex;
  width: 100%;
  gap: 50px;
  margin-top: 30px;
}

.contact-form-container {
  flex: 1;
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  /* transform: translateY(30px); */
  /* opacity: 0;
  transition: all 0.5s ease; */
}

.contact-form-container.in-view {
  /* transform: translateY(0); */
  /* opacity: 1; */
}

.contact-form-header {
  margin-bottom: 30px;
  text-align: left;
}

.contact-form-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-form-subtitle {
  color: #666;
  font-size: 1rem;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(43, 155, 74, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease 0.2s; */
  padding: 80px 0px;
}

.contact-info.in-view {
  /* transform: translateY(0); */
  opacity: 1;
}

.contact-info-header {
  text-align: left;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-subtitle {
  opacity: 0.8;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  /* transform: translateX(5px); */
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  text-align: left;
}

.contact-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.contact-text p {
  opacity: 0.8;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-start;
}

.contact-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.contact-social-link:hover {
  background: var(--accent-color);
  /* transform: translateY(-5px); */
}

/* Footer */
.footer {
  background: url(./assets/img/bg/footer-bg1.png) top left / contain #f4f5f9;
  color: var(--light-text);
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about {
  line-height: 1.4;
  margin-bottom: 20px;
  color: #53525b;
  font-size: 43px;
  font-style: italic;
}
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-text);
}

.social-link:hover {
  background: var(--accent-color);
  /* transform: translateY(-3px); */
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #221f3f;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-links li {
  margin-bottom: 10px;
  color: #221f3f;
}

.footer-links a {
  opacity: 0.8;
  transition: all 0.3s ease;
  color: #6d6c79;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgb(47 45 45 / 28%);
  /* opacity: 0.7; */
  font-size: 0.9rem;
  color: var(--dark-text);
}

/* .contact .section-title span, .contact .section-subtitle{
            color: var(--primary-color);
        } */

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    /* transform: translateY(30px); */
  }
  to {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    /* transform: translateX(-50px); */
  }
  to {
    opacity: 1;
    /* transform: translateX(0); */
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    /* transform: translateX(50px); */
  }
  to {
    opacity: 1;
    /* transform: translateX(0); */
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    /* transform: scale(0.9); */
  }
  to {
    opacity: 1;
    /* transform: scale(1); */
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
  opacity: 0;
  /* transform: translateY(30px); */
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
  opacity: 0;
  /* transform: translateX(-50px); */
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
  opacity: 0;
  /* transform: translateX(50px); */
  animation: fadeInRight 0.8s ease forwards;
}

.animate-zoom-in {
  opacity: 0;
  /* transform: scale(0.9); */
  animation: zoomIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Floating shapes */
.shape {
  position: absolute;
  opacity: 0.2;
  z-index: 0;
}

.shape-1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-color);
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 10s ease-in-out infinite;
}

.shape-3 {
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 30% 70% 50% 50% / 50%;
  animation: float 12s ease-in-out infinite;
}

/* @keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(10deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
} */

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-image {
    width: 45%;
  }

  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    flex: none;
    width: 100%;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form-container,
  .contact-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    margin: 0;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    right: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .mobile-toggle {
    display: block;
    z-index: 1002;
  }

  .hero {
    text-align: center;
    padding-top: 50px;
    margin-top: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 50px auto 0;
    /* transform: none; */
    top: auto;
    right: auto;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-arrow {
    display: none;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }

  .section-subtitle::before {
    left: -25px;
  }

  .section-subtitle::after {
    right: -25px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .service-card,
  .portfolio-item {
    margin-bottom: 20px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
  }
  .testimonial-position {
    font-size: 0.7rem;
  }
  .testimonial-name {
    font-size: 0.8rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;

    margin-bottom: 15px;
  }
  .testimonials-slider {
    margin-top: 30px;
  }
  .section-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .services,
  .about,
  .testimonials,
  .portfolio,
  .contact {
    padding: 60px 0px;
  }

  .testimonial-info {
    text-align: center;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    display: none;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 180px);
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  padding: 0 5%;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.caption {
  flex: 1;
  padding-right: 2rem;
  z-index: 2;
}

.caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #52881d;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.caption p {
  font-size: 1.2rem;
  color: var(--dark-text);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  /* transform: translateY(-2px); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  /* transition: transform 0.8s ease; */
}

.slide.active .hero-image {
  animation: slideInRight 0.8s ease-out;
}

/* @keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
} */

.slide.active .caption h1 {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.slide.active .caption p {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.slide.active .cta-button {
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

/* @keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
} */

.navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  /* transform: translateX(-50%); */
  display: flex;
  gap: 15px;
  z-index: 10;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: white;
  /* transform: scale(1.2); */
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.arrow {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  background: rgb(255 179 128);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.arrow:hover {
  background: var(--accent-color);
  /* transform: translateY(-50%) scale(1.1); */
}

.arrow.prev {
  left: 5px;
}

.arrow.next {
  right: 5px;
}

@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }

  .caption {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .caption h1 {
    font-size: 2.5rem;
  }

  .caption p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-image {
    max-height: 100%;
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .caption h1 {
    font-size: 2rem;
  }

  .slide {
    padding: 0 1rem;
  }
}

/* Page Header */
.page-header {
  color: var(--light-text);
  padding: 60px 0;
  text-align: left;
  width: 100%;
  background: #669933 url(../img/bg/faq-bg.jpg);
  background-blend-mode: overlay;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  /* margin: 0 auto; */
  text-align: left;
}

/* About Page */
.about-intro {
  padding: 80px 0;
  position: relative;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid .about-image img {
  border-radius: 8px;
  /* box-shadow: var(--box-shadow); */
}

.about-grid .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-grid .about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.mission-vision {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-box,
.vision-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.mission-box .icon,
.vision-box .icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.mission-box h2,
.vision-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.values {
  padding: 80px 0;
  position: relative;
  background: #fff7f1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  padding: 45px;
  border-radius: 25px;
  box-shadow: var(--box-shadow);
  text-align: left;
  transition: var(--transition);
  line-height: 1.4;
  border: 1px solid #d8d8d8;
  background: #fff;
}

.value-card:hover {
  background: #fff;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.value-card:hover .value-icon svg path {
  stroke: #fe5802;
}
.service-block--style5 {
  border: 1px solid #d8d8d8;
  background-color: var(--tg-common-color-white);
  border-radius: 20px;
  padding: 50px 29px 40px;
}
.value-card .value-icon svg path {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.value-card:hover .value-icon svg path {
  stroke: var(--tg-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.value-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.team {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

/* .team-member:hover .member-image img {
  transform: scale(1.1);
} */

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 0 5px;
  color: var(--primary-color);
}

.team-member .position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member .bio {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #666;
}

.team-member .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
}

.team-member .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--light-bg);
  border-radius: 50%;
  color: var(--primary-color);
  transition: var(--transition);
}

.team-member .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .why-us-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 0 0 15px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 15px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-grid,
  .services-grid,
  .values-grid,
  .team-grid,
  .advantages-grid,
  .testimonials-grid,
  .gallery-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 360px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
}
/* Services */
.service-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #666;
}

.service-features li::before {
  content: "\2022";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Our Works */
.filter-section {
  background: white;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.filter-form {
  display: grid;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #475569;
  font-size: 0.9rem;
}

.filter-group select,
.filter-group .search-input-wrapper input {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  min-width: 150px;
  transition: border-color 0.3s ease;
}

.filter-group .search-input-wrapper input {
  padding-left: 2rem;
}
.filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.clear-filters {
  padding: 0.95rem 1.5rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.clear-filters:hover {
  background: var(--accent-color);
}

.tabs-container {
  margin-bottom: 2rem;
}

.tabs {
  display: flex;
  background: white;
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  gap: 0.5rem;
}

.tab {
  padding: 1rem 1.5rem;
  background: transparent;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: #64748b;
}

.tab.active {
  background: var(--primary-color);
  color: white;
  /* transform: translateY(0px); */
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.tab:hover:not(.active) {
  background: #f1f5f9;
  color: #475569;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.work-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.work-item:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.work-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-item:hover .work-image {
  transform: scale(1.05);
}

.work-content {
  padding: 1.5rem;
}

.work-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.work-description {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.work-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.work-category {
  background: #f2f7ee;
  color: #669933;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.work-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #64748b;
}

.no-results h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.results-count {
  text-align: center;
  margin-bottom: 2rem;
  color: #64748b;
  font-weight: 600;
}
/* 
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            padding: 2rem;
        }

        .modal-content {
            background: white;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-header {
            padding: 2rem;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #64748b;
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
        } */
.ourworks-gallery {
  padding: 4rem 0rem 2rem;
}
@media (max-width: 768px) {
  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .tabs {
    justify-content: flex-start;
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 2rem;
  }

  .modal {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .work-content {
    padding: 1rem;
  }

  .work-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/*================================================
Contact Area CSS
=================================================*/
.page-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact-area .section-title .sub-title {
  text-align: center;
}
.section-sub-title {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}
.contact-info-box {
  margin-bottom: 30px;
  position: relative;
  padding-left: 100px;
  z-index: 1;
}
.contact-info-box .icon {
  width: 75px;
  height: 85px;
  background-color: #f7f7f7;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  left: 0;
  font-size: 40px;
  color: var(--mainColor);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}
/* .contact-info-box .icon:hover{
    background-color: var(--accent-color);
}

.contact-info-box .icon:hover i{
    color: #FFF;
} */
.contact-info-box .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
}
.contact-info-box h3 {
  margin-bottom: 10px;
  font-size: 25px;
}
.contact-info-box p {
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-info-box p:last-child {
  margin-bottom: 0;
}
.contact-info-box .back-icon {
  position: absolute;
  right: 0;
  bottom: -15px;
  z-index: -1;
  color: var(--blackColor);
  line-height: 1;
  opacity: 0.04;
  font-size: 100px;
  transform: rotate(-5deg);
}
.contact-info-box:hover .icon {
  background-color: var(--accent-color);
}
.contact-info-box:hover .icon i {
  color: var(--light-text);
}

.contact-image {
  margin-top: 20px;
  text-align: center;
}

.contact-form {
  padding: 40px;
  margin-left: 15px;
  box-shadow: 0 0 20px rgba(158, 158, 158, 0.16);
  background-color: var(--whiteColor);
}
.contact-form form .form-group {
  margin-bottom: 15px;
}
.contact-form form .form-group textarea.form-control {
  height: auto;
}
.contact-form form .help-block ul {
  margin-bottom: 0;
  margin-top: 12px;
}
.contact-form form .help-block ul li {
  color: red;
}
.contact-form form .default-btn {
  margin-top: 5px;
}
.contact-form form #msgSubmit {
  margin: 0 !important;
}
.contact-form form #msgSubmit.text-danger,
.contact-form form #msgSubmit.text-success {
  margin-top: 15px !important;
}

#map iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -7px;
  border: none;
}
.info-box-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.contact-info-area {
  padding: 100px 0px;
  background: #fff;
}
.contact-area {
  padding: 100px 0px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.contact-bg .contact-image img {
  width: 100%;
}
.breadcrumb {
  margin-top: 2rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Statistics Section */
.stats-section {
  background: white;
  padding: 4rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 600;
}

/* Filter Section */
.filter-section {
  background: white;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  display: none;
}

.filter-label {
  padding: 0.75rem 1.5rem;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #64748b;
  user-select: none;
}

.filter-label:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.filter-tab:checked + .filter-label {
  background: #667eea;
  color: white;
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Featured Testimonials */
.featured-section {
  padding: 4rem 0px;
}
.featured-section .section-title,
.video-section .section-title {
  text-align: center;
}

.featured-section .section-title h2,
.video-section .section-title h2 {
  color: var(--primary-color);
}

.section-title h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.featured-testimonial {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  margin: 4rem 0 0rem;
}

.featured-testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--light-text);
  font-family: serif;
  line-height: 1;
  background: var(--accent-color);
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.featured-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h4 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #64748b;
  font-size: 0.95rem;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.star {
  color: #fbbf24;
  font-size: 1.5rem;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonials-grid .testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.testimonials-grid .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.testimonials-grid .testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonials-grid .testimonial-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonials-grid .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details h5 {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-details p {
  color: #64748b;
  font-size: 0.9rem;
}

.company-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.testimonial-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #e0e7ff;
  color: #3730a3;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Video Testimonials */
.video-section {
  background: white;
  padding: 4rem 0 5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-testimonial {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-testimonial:hover {
  transform: scale(1.02);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-testimonial:hover .video-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.play-button {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.video-testimonial:hover .play-button {
  transform: scale(1.1);
}

.video-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: white;
}

.video-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.video-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Filter Logic */
.testimonials-grid .testimonial-card {
  display: none;
}

#filter-all:checked ~ .testimonials-grid .testimonial-card {
  display: block;
}

#filter-web:checked
  ~ .testimonials-grid
  .testimonial-card[data-category="web"] {
  display: block;
}

#filter-mobile:checked
  ~ .testimonials-grid
  .testimonial-card[data-category="mobile"] {
  display: block;
}

#filter-design:checked
  ~ .testimonials-grid
  .testimonial-card[data-category="design"] {
  display: block;
}

#filter-marketing:checked
  ~ .testimonials-grid
  .testimonial-card[data-category="marketing"] {
  display: block;
}

#filter-ecommerce:checked
  ~ .testimonials-grid
  .testimonial-card[data-category="ecommerce"] {
  display: block;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #b5c9a1 0%, #669933 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  /* margin-bottom: 2rem; */
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #667eea;
  
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--accent-color);
}
.mg-50 {
  margin-top: 50px;
}

.swiper {
  padding: 1.5em;
}
.swiper .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: ".";
  width: 100%;
  justify-items: center;
  align-items: center;
}
.swiper .content-wrapper .content {
  padding: 3em 1.5em;
  text-align: center;
  display: grid;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  color: #000;
}
.swiper .content-wrapper .content :first-child {
  margin: 0;
}
.swiper .content-wrapper .content .swiper-avatar {
  width: 100%;
  max-width: 125px;
  height: auto;
}
.swiper .content-wrapper .content .swiper-avatar img {
  border-radius: 500px;
}
.swiper .content-wrapper .content .cite {
  font-size: 14px;
  font-weight: bold;
}
.swiper .swiper-slide {
  margin: 0;
  height: auto;
  width: 100%;
  padding: 0;
  opacity: 0.2;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}
.swiper .swiper-slide.swiper-slide-active {
  background: white;
  opacity: 1;
  transform: scale(1.1);
}
.swiper .swiper-nav-wrapper {
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: auto;
  padding-top: 3em;
}
.swiper .swiper-nav-wrapper .swiper-button-next,
.swiper .swiper-nav-wrapper .swiper-button-prev {
  top: 0;
  top: auto;
  left: auto;
  right: auto;
  position: relative !important;
}
.swiper .swiper-nav-wrapper .swiper-button-next:after,
.swiper .swiper-nav-wrapper .swiper-button-prev:after {
  display: none;
}
.swiper .swiper-nav-wrapper .swiper-button-next,
.swiper .swiper-nav-wrapper .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}
.swiper .swiper-nav-wrapper .swiper-button-prev,
.swiper .swiper-nav-wrapper .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='9px' height='16px' viewBox='0 0 9 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='chevron-right' transform='translate(4.508789, 7.870605) rotate(-180.000000) translate(-4.508789, -7.870605) translate(-0.000000, -0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M8.674805,7.066406 L1.924805,0.316406 C1.696288,0.105468 1.432619,0 1.133789,0 C0.834959,0 0.57129,0.105468 0.342773,0.316406 C0.114257,0.544923 0,0.808592 0,1.107422 C0,1.406251 0.114257,1.669921 0.342773,1.898438 L6.301758,7.857422 L0.342773,13.816406 C0.114257,14.044923 0,14.308592 0,14.607422 C0,14.906251 0.114257,15.169921 0.342773,15.398438 C0.465821,15.521485 0.584472,15.609375 0.69873,15.662109 C0.812989,15.714844 0.958007,15.741211 1.133789,15.741211 C1.309571,15.741211 1.454589,15.714844 1.568848,15.662109 C1.683106,15.609375 1.801757,15.521485 1.924805,15.398438 L8.674805,8.648438 C8.903321,8.419921 9.017578,8.156251 9.017578,7.857422 C9.017578,7.558592 8.903321,7.294923 8.674805,7.066406 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

.swiper-pagination {
  margin: 0;
  padding: 0;
  width: auto;
  position: relative !important;
  display: block;
  width: auto;
}
.swiper-pagination .swiper-pagination-bullets {
  margin: 0;
}
.swiper-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  background: #fff !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  transition: all 0.2s ease-in-out;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 0;
  top: 0;
  bottom: 0;
  width: auto;
  padding: 0 1.5em;
}

.swiper-pagination-bullet-active {
  transform: scale(1.5);
}

.search-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.875rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px #cbcec730;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
}

.view-toggle {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  overflow: hidden;
}

.view-btn {
  padding: 0.5rem;
  border: none;
  background: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-btn.active {
  background: var(--accent-color);
  color: white;
}

.view-btn:hover:not(.active) {
  background: #f3f4f6;
}

/* Main Layout */
.main-container {
  padding: 1.5rem 1rem;
}

.services-content-wrapper {
  display: flex;
  gap: 1.5rem;
}

/* Sidebar */
.sidebar {
  width: 20rem;
  flex-shrink: 0;
}

.filter-panel {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.filter-panel h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.filter-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
}

.filter-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px #cbcec730;
}

.filter-select:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-color);
}

.checkbox-item label {
  font-size: 0.875rem;
  cursor: pointer;
}

.clear-filters-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.clear-filters-btn:hover {
  background: #f3f4f6;
}

/* Main Content */
.mt-50 {
  margin-top: 50px;
}

.main-content {
  flex: 1;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.content-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.results-count {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Result Card */
.result-card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.result-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  position: relative;
  height: 25rem;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.card-content {
  padding: 1rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #797979;
}

.card-button {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.card-button:hover {
  background: var(--accent-color);
}

/* List View Styles */
.result-card.list-view {
  display: flex;
  height: 8rem;
}

.result-card.list-view .card-image-container {
  width: 12rem;
  height: 100%;
  flex-shrink: 0;
}

.result-card.list-view .card-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.result-card.list-view .card-info {
  flex: 1;
}

.result-card.list-view .card-actions {
  text-align: right;
}

.result-card.list-view .card-price {
  margin-bottom: 0.5rem;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 3rem 0;
}

.no-results-icon {
  color: #9ca3af;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-results h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.5rem;
}

.no-results p {
  color: #6b7280;
}

/* Mobile Filter Modal */
.mobile-filter-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  left: calc(50% - 8rem);
  top: 0;
  bottom: 0;
  max-width: 80%;
  max-width: 16rem;
  background: white;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6b7280;
}

.modal-body {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Service Details Page */
/* Main Layout */
.main-container {
  padding: 2rem 1rem;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Image Gallery */
.image-gallery {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.main-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    transparent,
    rgba(0, 0, 0, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-btn:hover {
  background: white;
  transform: scale(1.1);
}

.image-counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.thumbnail-gallery {
  padding: 1rem;
}

.thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 0.375rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail.active {
  border-color: var(--accent-color);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Description Section */
.description-section {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.description-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.description-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #374151;
}

.description-content p {
  margin-bottom: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.highlights-list {
  list-style: none;
  margin: 1rem 0;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.highlights-list i {
  color: var(--primary-color);
  font-size: 0.875rem;
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
}

.landmark-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Analytics Section */
.analytics-section {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.analytics-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.analytics-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.analytics-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.analytics-content h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.analytics-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.analytics-desc {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Location Section */
.location-section {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.location-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.map-container {
  margin-bottom: 1.5rem;
}

.map-placeholder {
  height: 300px;
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.location-item strong {
  color: #374151;
  margin-bottom: 0.25rem;
  display: block;
}

.location-item p {
  color: #6b7280;
  margin: 0;
}

/* Reviews Section */
.reviews-section {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.reviews-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.reviews-summary {
  margin-bottom: 2rem;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.rating-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.25rem;
}

.rating-count {
  color: #6b7280;
  font-size: 0.875rem;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-item {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-info h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.review-author-info p {
  font-size: 0.875rem;
  color: #6b7280;
}

.review-rating {
  color: #fbbf24;
}

.review-text {
  color: #374151;
  line-height: 1.6;
}

.load-more-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: #f3f4f6;
}

/* Right Column - Booking Panel */
.right-column {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.booking-panel {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.space-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.space-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.space-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.space-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.pricing-section {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
}

.price-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.specifications {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.specifications h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.spec-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.spec-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
}

/* Availability Calendar */
.availability-section {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.availability-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.availability-calendar {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.calendar-nav {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
}

.calendar-nav:hover {
  background: #e5e7eb;
}

.calendar-title {
  font-weight: 600;
  color: #111827;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #e5e7eb;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.calendar-day.available {
  background: #f0fdf4;
  color: var(--primary-color);
}

.calendar-day.booked {
  background: #fef2f2;
  color: #dc2626;
  cursor: not-allowed;
}

.calendar-day.selected {
  background: var(--accent-color);
  color: white;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.legend-color.available {
  background: #f0fdf4;
  border: 1px solid var(--primary-color);
}

.legend-color.booked {
  background: #fef2f2;
  border: 1px solid var(--accent-color);
}

/* Booking Actions */
.booking-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.book-now-btn,
.contact-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.book-now-btn {
  background: var(--primary-color);
  color: white;
  border: none;
}

.book-now-btn:hover {
  background: var(--accent-color);
}

.contact-btn {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.contact-btn:hover {
  background: #f3f4f6;
}

/* Contact Info */
.contact-info1 {
  padding: 1.5rem;
  background: #f9fafb;
}

.contact-info1 h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.contact-info1 .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0px;
}

.contact-info1 .contact-item i {
  color: var(--accent-color);
  width: 1rem;
}

/* Related Spaces */
.related-section {
  background: white;
  padding: 3rem 0;
  margin-top: 2rem;
}

.related-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.related-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.related-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.related-card-content {
  padding: 1rem;
}

.related-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.related-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.related-card-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Modal Styles */
.book-now-modal,
.success-modal,
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  height: calc(100vh - 150px);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #374151;
}

.modal-body {
  padding: 1rem;
}

/* Form Styles */
.selected-space-info {
  background: #eaeaea;
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
}

.selected-space-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.selected-space-info p {
  color: #5d5d5d;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.book-now-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* .btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
} */

.btn-primary {
  background: var(--accent-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

/* Success Modal */
.success-content {
  padding: 2rem;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.success-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .right-column {
    position: static;
    order: -1;
  }

  .booking-panel {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }

  .left-column {
    gap: 1.5rem;
  }

  .description-section,
  .analytics-section,
  .location-section,
  .reviews-section {
    padding: 1.5rem;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .analytics-card {
    padding: 1rem;
  }

  .landmarks-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .share-options {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    flex: none;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .action-btn {
    padding: 0.5rem;
    font-size: 0;
  }

  .action-btn i {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .main-image-container {
    height: 250px;
  }

  .thumbnails {
    gap: 0.25rem;
  }

  .thumbnail {
    width: 60px;
    height: 45px;
  }

  .price {
    font-size: 1.5rem;
  }

  .space-header h1 {
    font-size: 1.25rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .search-section {
    flex-direction: column;
  }

  .mobile-filter-btn {
    display: flex;
  }

  .sidebar {
    display: none;
  }

  .content-wrapper {
    flex-direction: column;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card.list-view {
    flex-direction: column;
    height: auto;
  }

  .result-card.list-view .card-image-container {
    width: 100%;
    height: 12rem;
  }

  .result-card.list-view .card-content {
    flex-direction: column;
  }

  .result-card.list-view .card-actions {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (min-width: 769px) {
  .search-section {
    flex-direction: row;
    align-items: center;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .featured-testimonial {
    padding: 2rem;
  }

  .featured-quote {
    font-size: 1.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about .about-content .section-subtitle {
    margin-left: 0px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .container {
    padding: 0 10px;
  }
  p {
    font-size: 1rem;

    line-height: 1.6;
  }
  .logo-icon {
    max-width: 175px;
  }
  .page-header p {
    font-size: 1rem;
    line-height: 1.5;
  }
  header {
    padding: 1rem 0;
    background: #fff;
  }
  .hero {
    margin-top: 0px;
  }
  .testimonial-card {
    padding: 2.5rem 1.5rem;
    left: calc(50% - 40vw);
    width: 80vw;
  }

  .featured-testimonial {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.card-button {
  background: linear-gradient(to right, #669933, #a2bd87);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.search-service {
  position: relative;
  min-height: 155px;
}
.search-service .filter-section {
  background: #fdfffc;
  padding: 1.975rem 3rem 1rem;
  margin-bottom: 0px;
  border-radius: 80px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 5px;
  width: 100%;
  z-index: 9;
}
.modalImage {
  width: 100%;
}
/* Works Gallery */
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Filter Section */
.filter-section {
  background: white;
  padding: 2rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  /* display: none; */
}

.filter-section.active {
  display: block;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filter-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.clear-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #6b7280;
  transition: all 0.2s;
}

.clear-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-option {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 2rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.filter-option.active {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.filter-option:hover:not(.active) {
  background: #f3f4f6;
}

/* Gallery Main */
.gallery-main {
  padding: 3rem 0;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.tab-btn:hover:not(.active) {
  background: #f3f4f6;
}

.tab-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.3);
}

/* View Controls */
.view-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  overflow: hidden;
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.view-btn.active {
  background: var(--accent-color);
  color: white;
}

.view-btn:hover:not(.active) {
  background: #f3f4f6;
}

.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  outline: none;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.project-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-content {
  color: white;
}

.project-overlay h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-description {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-tag {
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Gallery List */
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-list-item {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.2s;
  cursor: pointer;
}

.project-list-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.project-list-image {
  width: 200px;
  height: 120px;
  border-radius: 0.375rem;
  overflow: hidden;
}

.project-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-list-content {
  flex: 1;
}

.project-list-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.project-list-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.project-list-description {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
}

.project-list-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-action-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.project-action-btn:hover {
  background: #f3f4f6;
}

.project-action-btn.primary {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.project-action-btn.primary:hover {
  background: #2563eb;
}

/* Gallery Masonry */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.masonry-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.masonry-image {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-content {
  padding: 1rem;
}

.masonry-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.masonry-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.masonry-description {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

/* Featured Projects */
.featured-projects {
  background: white;
  padding: 4rem 0;
  margin-top: 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.featured-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.featured-track {
  display: flex;
  transition: transform 0.5s ease;
}

.featured-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.featured-card {
  background: #f9fafb;
  border-radius: 0.5rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.featured-image {
  border-radius: 0.375rem;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.featured-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured-stat {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 0.375rem;
}

.featured-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.featured-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.featured-btn:hover {
  background: var(--primary-color);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-btn:hover {
  background: #f3f4f6;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s;
}

.slider-dot.active {
  background: var(--accent-color);
}

/* Load More */
.load-more-section {
  text-align: center;
  margin-top: 3rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.load-more-btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Results Info */
.results-info {
  text-align: center;
  margin-top: 2rem;
  color: #6b7280;
  font-size: 0.875rem;
}
/* Modal Styles */
.project-modal,
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.modal-overlay,
.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #374151;
}

.modal-body {
  padding: 1rem;
}

/* Lightbox */
.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-close:hover {
  background: white;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background: white;
}

.lightbox-prev {
  left: -4rem;
}

.lightbox-next {
  right: -4rem;
}

.lightbox-info {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
}

.lightbox-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .project-list-item {
    grid-template-columns: 150px 1fr;
    gap: 1rem;
  }

  .project-list-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .tab-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-btn {
    justify-content: center;
  }

  .view-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .project-list-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project-list-image {
    width: 100%;
    height: 200px;
  }

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .section-header h3 {
    font-size: 1.5rem;
  }

  .cta-text h3 {
    font-size: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .featured-stats {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .project-card {
    margin: 0 -0.5rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .action-btn {
    padding: 0.5rem;
    font-size: 0;
  }

  .action-btn i {
    margin: 0;
  }
}
.project-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 0.5fr));
  gap: 0.5rem;
  padding: 15px 0px;
}

.project-detail-meta .meta-item {
  padding: 10px 0px;
}
.project-detail-description h4,
.project-detail-tags h4 {
  margin-bottom: 5px;
}
.project-detail-description {
  margin-bottom: 10px;
}
/* Testimonials Page */

/* Featured Testimonial */
.featured-testimonial {
  background: white;
  padding: 4rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.featured-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.7;
  position: relative;
}

.featured-quote::before,
.featured-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  top: -1rem;
}

.featured-quote::before {
  left: -2rem;
}

.featured-quote::after {
  right: -2rem;
}

.featured-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.featured-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.featured-author-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.featured-author-info p {
  color: #6b7280;
}

.featured-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Filter Section */

/* Hero Section */
.testimonial-hero-section {
  background: #fff7f1;
  color: var(--dark-text);
  padding: 4rem 0;
}

.testimonial-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-hero-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.testimonial-hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.testimonial-hero-image {
  text-align: center;
}

.testimonial-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.testimonial-filter-section {
  background: #ffffff;

  padding: 3rem 2rem 1rem;
}

.testimonial-filter-section .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-filter-section .filter-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.view-toggle {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  overflow: hidden;
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.view-btn.active {
  background: var(--primary-color);
  color: white;
}

.view-btn:hover:not(.active) {
  background: #f3f4f6;
}

.testimonial-filter-section .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.testimonial-filter-section .filter-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 2rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
}

.testimonial-filter-section .filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.testimonial-filter-section .filter-btn:hover:not(.active) {
  background: #f3f4f6;
}

/* Testimonials Main */
.testimonials-main {
  padding: 2rem 0;
  background: #fff;
}

/* Carousel View */
.tasti-testimonials-carousel {
  position: relative;
}

.tasti-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.tasti-carousel-track-container {
  overflow: hidden;
}

.tasti-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.tasti-testimonial-slide {
  flex: 0 0 100%;
  padding: 0 10rem;
}

.tasti-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tasti-testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tasti-testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.tasti-testimonial-author h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.tasti-testimonial-author p {
  color: #6b7280;
  font-size: 0.875rem;
}

.tasti-testimonial-rating {
  color: #fbbf24;
  margin-left: auto;
}

.tasti-testimonial-text {
  flex: 1;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.tasti-testimonial-category {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.tasti-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tasti-carousel-btn:hover {
  background: #f3f4f6;
  transform: translateY(-50%) scale(1.1);
}

.tasti-carousel-btn.prev-btn {
  left: 1.5rem;
}

.tasti-carousel-btn.next-btn {
  right: 1.5rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s;
}

.indicator.active {
  background: var(--primary-color);
}

/* Grid View */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Video Testimonials */
.video-testimonials {
  background: white;
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.video-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.video-track {
  display: flex;
  transition: transform 0.5s ease;
}

.video-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.video-testimonial {
  background: #111827;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(59, 130, 246, 0.9);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.video-play-btn:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
  color: white;
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.video-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.video-info p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.video-nav-btn {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.video-nav-btn:hover {
  background: #f3f4f6;
}

.video-dots {
  display: flex;
  gap: 0.5rem;
}

.video-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s;
}

.video-dot.active {
  background: var(--primary-color);
}

/* Success Metrics */
.success-metrics {
  background: #f9fafb;
  padding: 4rem 0;
}

.metrics-slider {
  overflow: hidden;
}

.metrics-track {
  display: flex;
  animation: scroll 30s linear infinite;
}

.metric-card {
  flex: 0 0 300px;
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-right: 1.5rem;
  text-align: center;
}

.metric-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.metric-description {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.5;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Industry Testimonials */
.industry-testimonials {
  background: white;
  padding: 4rem 0;
}

.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.industry-tab {
  padding: 0.75rem 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 2rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  font-weight: 500;
}

.industry-tab.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.industry-tab:hover:not(.active) {
  background: #f3f4f6;
}

.industry-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Floating Review Button */
.floating-review-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.floating-review-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.write-review-modal,
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  font-weight: 600;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #374151;
}

.modal-body {
  padding: 1rem;
}

/* Form Styles */
.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.rating-input {
  display: flex;
  gap: 0.25rem;
}

.rating-input i {
  font-size: 1.5rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s;
}

.rating-input i:hover,
.rating-input i.active {
  color: #fbbf24;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

/* Success Modal */
.success-content {
  padding: 2rem;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #059669;
  margin-bottom: 1rem;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.success-content p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-hero-stats {
    justify-content: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .carousel-btn {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .testimonial-hero-text h2 {
    font-size: 2rem;
  }

  .testimonial-hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .filter-options {
    justify-content: center;
  }

  .featured-quote {
    font-size: 1.25rem;
  }

  .featured-quote::before,
  .featured-quote::after {
    display: none;
  }

  .featured-author {
    flex-direction: column;
    text-align: center;
  }

  .section-header h3 {
    font-size: 1.5rem;
  }

  .cta-text h3 {
    font-size: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .industry-tabs {
    flex-direction: column;
    align-items: center;
  }

  .industry-content {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    flex: none;
  }

  .floating-review-btn span {
    display: none;
  }

  .floating-review-btn {
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .metric-card {
    flex: 0 0 250px;
  }

  .floating-review-btn {
    bottom: 1rem;
    right: 1rem;
  }
}

.project-detail-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 1rem;
  text-align: center;
}
.project-detail-stats,
.project-detail-stats h4 {
  margin-bottom: 5px;
}

.project-detail-tags h4 {
  margin-bottom: 10px;
}

.project-detail-description p {
  margin-bottom: 10px;
}
.project-detail-stats .stat-number {
  margin-bottom: 0px;
}

/* .slick-slider {
  position: relative;
}

.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
}

.slick-slide {
  outline: none;
}

.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  color: white;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}

.slick-arrow {
  z-index: 1;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slick-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slick-arrow:before {
  color: white;
  opacity: 1;
}

.motion-item {
  will-change: transform, opacity;
}

.portfolio-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.portfolio-overlay {
  transition: all 0.3s ease;
} */

/* Dropdown Styles */

/* .dropdown {
  position: relative;
}

.dropdown-icon {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .sub-menu,
.sub-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-item {
  padding: 0;
}

.sub-link {
  padding: 8px 20px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sub-link:hover {
  background: #f5f5f5;
  color: #ff7a00;
}

@media (max-width: 768px) {
  .dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sub-menu {
    position: static;
    width: 80%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
  }

  .sub-menu.show {
    max-height: 500px;
    padding: 10px 0;
    margin-top: 10px;
    border-top: 1px solid #eee;
  }

  .sub-item {
    width: 100%;
  }

  .sub-link {
    padding: 8px 0;
  }
}

#remove::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: none !important;
  transition: width 0.3s ease;
} */

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Icon Animation */
.dropdown-icon {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon,
.dropdown:focus-within .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.175);
  z-index: 1000;
  border: 1px solid #f0f0f0;
}

.dropdown:hover .sub-menu,
.dropdown:focus-within .sub-menu,
.sub-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items */
.sub-item {
  padding: 0;
  margin: 0;
}

/* Dropdown Buttons */
.sub-link {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  border: none;
  color: #333333;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

/* Button States */
.sub-link:hover {
  background-color: #f8f8f8;
  color: #ff7a00;
}

.sub-link:focus {
  outline: none;
  background-color: #f0f0f0;
  color: #ff7a00;
}

.sub-link:active {
  background-color: #f0f0f0;
  transform: translateY(1px);
}

/* Add subtle left accent on hover */
.sub-link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #ff7a00;
  border-radius: 0 3px 3px 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
  }

  .sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
    border-radius: 0;
    border: none;
    padding: 0;
    margin: 0;
  }

  .sub-menu.show {
    max-height: 500px;
    padding: 5px 0;
    margin-top: 5px;
    border-top: 1px solid #eeeeee;
  }

  .sub-link {
    padding: 12px 25px;
    font-size: 15px;
  }

  .sub-link:hover::before {
    width: 2px;
  }

  #removes {
    text-align: center !important;
  }
}

#remove::after {
  background: none !important;
}
