/* 
  Inbuild Design - Style Sheet
  Theme colors: 
  Burgundy/Deep Red: #8a151b
  Golden Orange: #e5a93d
*/

:root {
  --primary-color: #8a151b;
  --secondary-color: #e5a93d;
  --text-dark: #333333;
  --text-light: #f5f5f5;
  --bg-color: #ffffff;
  --bg-light: #fdfdfd;
  --bg-dark: #1a1a1a;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 0 auto 3rem auto;
  position: relative;
  display: table; /* Perfectly centers and shrink-wraps content width */
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s;
}

.section-title.show::after {
  width: 80px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

/* Header & Navigation */
header {
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links li a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  background-color: var(--secondary-color);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active {
  color: var(--primary-color);
}

/* Unique Animation for Book Now Button */
.nav-links .btn {
  color: var(--secondary-color); /* Yellow text color */
  box-shadow: 0 4px 10px rgba(138,21,27,0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.nav-links .btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0; height: 100%;
  background-color: var(--secondary-color);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.nav-links .btn:hover {
  color: #fff;
  border-color: var(--secondary-color);
  box-shadow: 0 6px 15px rgba(229,169,61,0.4);
}

.nav-links .btn:hover::before {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1);
  transition: transform 8s linear; /* Ken Burns zoom effect */
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(138, 21, 27, 0.6), rgba(0, 0, 0, 0.8));
}

.slide.active .slide-bg {
  transform: scale(1.1); /* Triggers zoom when active */
}

.slide-content {
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
  z-index: 10;
}

.slide-content h1 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.slide-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.7s;
}

.slide-content .btn {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.9s;
}

.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-controls button {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-controls button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slide-content h1 { font-size: 2.5rem; }
  .slide-content p { font-size: 1.1rem; }
  .slider-controls { padding: 0 15px; }
  .slider-controls button { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* Page Header */
.page-header {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay to make text readable */
  z-index: 1;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(138, 21, 27, 0.2);
}

.about-text h3 {
  font-size: 2rem;
  color: var(--secondary-color);
}

.about-text ul {
  margin: 20px 0;
}

.about-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
}

/* =====================
   Founder / Leader Section
   ===================== */
.founder-section {
  padding: 20px 20px 80px 20px;
  background: linear-gradient(135deg, #f9f5f5 0%, #ffffff 100%);
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
}

.founder-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* Image Card */
.founder-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(138, 21, 27, 0.15);
}

.founder-img-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.founder-img-card:hover img {
  transform: scale(1.04);
}

.founder-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(138, 21, 27, 0.85));
  padding: 30px 20px 20px;
  text-align: center;
}

.founder-img-overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Content */
.founder-name {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
  line-height: 1.1;
}

.founder-title {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.founder-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  margin: 20px 0;
}

.founder-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 35px;
}

.founder-desc strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Stats */
.founder-stats {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.founder-stat {
  background: #fff;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  flex: 1;
  min-width: 130px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
  transition-delay: var(--anim-delay, 0s);
}

.founder-stat.show {
  opacity: 1;
  transform: translateY(0);
}

.founder-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(138, 21, 27, 0.12);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-img-card img {
    height: 350px;
  }
  .founder-name {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .founder-stats {
    gap: 15px;
  }
  .founder-stat {
    min-width: 100%;
  }
  .founder-name {
    font-size: 1.8rem;
  }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  background-color: transparent;
  color: var(--text-dark);
}

.services-section .section-title {
  color: var(--primary-color);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  color: var(--text-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background-color: var(--bg-dark);
  color: #fff;
}

.why-choose-us .section-title {
  color: #fff;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: var(--primary-color);
  transition: height 0.4s ease;
  z-index: 0;
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(229, 169, 61, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .feature-icon {
  background-color: #fff;
  color: var(--primary-color);
  transform: rotateY(360deg) scale(1.1);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-item p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.4s;
}

.feature-item:hover p {
  color: #fdfdfd;
}

/* Our Work Section */
.our-work-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Must be white */
  color: var(--text-dark);
}

.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns strictly on desktop */
  gap: 30px;
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.work-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 1; /* For hover stack context */
}

.work-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(138,21,27,0.9), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.work-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work-item:hover img {
  transform: scale(1.1) rotate(2deg); /* Unique scale & twist animation */
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item:hover .work-overlay h3 {
  transform: translateY(0);
}

.view-more-container {
  text-align: center;
  margin-top: 50px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Gallery Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 21, 27, 0.3);
}

/* Gallery Item Filtering Animations */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.5s ease;
  transform: scale(1);
  opacity: 1;
}

.gallery-item.hide {
  display: none;
}

/* Animation class for items showing up */
.gallery-item.show-filter {
  animation: filterIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes filterIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 15px;
  }
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .filter-buttons {
    gap: 10px;
  }
  .filter-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(138, 21, 27, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  color: var(--secondary-color);
  font-size: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Footer */
.main-footer {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column .footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  background-color: #fff; /* Added white bg just in case logo isn't transparent or needs contrast */
  padding: 10px;
  border-radius: 4px;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-column p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #aaa;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow: hidden;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  position: relative;
  min-height: 350px;
}

.testimonial-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.testimonial-slide.exit {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100px) scale(0.9);
}

.testimonial-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  border-top: 5px solid var(--primary-color);
}

.quote-icon {
  font-size: 3rem;
  color: rgba(229, 169, 61, 0.3);
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.client-info h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.client-info span {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.testi-controls button {
  background: #fff;
  border: 1px solid #ddd;
  color: var(--primary-color);
  width: 45px; height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testi-controls button:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.testi-dots {
  display: flex;
  gap: 10px;
}

.t-dot {
  width: 10px; height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.t-dot.active {
  background: var(--secondary-color);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  .review-text {
    font-size: 1.05rem;
  }
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate.fade-in {
  transform: translateY(0);
}

.animate.slide-left {
  transform: translateX(-50px);
}

.animate.slide-right {
  transform: translateX(50px);
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Lightbox Styles */
.lightbox-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  border: 4px solid #fff;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-close:hover {
  background: #fff;
  color: var(--primary-color);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2010;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: -15px;
    right: -5px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}

/* Floating Contact Buttons */
.floating-contacts {
  position: fixed;
  right: 25px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn {
  background-color: var(--primary-color);
}

/* Ripple effect setup */
.float-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.5s ease-out;
}

.float-btn:hover {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  color: #fff;
}

.whatsapp-btn:hover::before {
  border-color: #25D366;
  transform: scale(1.5);
  opacity: 0;
}

.call-btn:hover::before {
  border-color: var(--primary-color);
  transform: scale(1.5);
  opacity: 0;
}

/* Continuous pulse for WhatsApp */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  animation: none;
}

@media (max-width: 768px) {
  .floating-contacts {
    right: 15px;
    bottom: 25px;
    gap: 12px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Comprehensive Services List Section */
.ds-section {
  padding: 0 0 80px 0;
  background-color: var(--bg-color);
}

.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ds-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.ds-number {
  font-size: 8rem;
  font-weight: 300;
  color: #dcdcdc; /* Light grey */
  line-height: 1;
}

.ds-text-wrap h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 0;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

/* The Card */
.ds-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  /* Unique hover animation base */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.ds-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.ds-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.ds-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ds-card:hover .ds-img-wrap img {
  transform: scale(1.1);
}

.ds-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ds-card:hover .ds-img-wrap::after {
  opacity: 1;
}

.ds-content {
  padding: 20px;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 2;
  border-top: 3px solid transparent;
  transition: border-color 0.4s ease;
}

.ds-card:hover .ds-content {
  border-top-color: var(--secondary-color);
}

.ds-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.ds-card:hover .ds-content h3 {
  color: var(--primary-color);
}

/* Unique Entry Animation */
.ds-anim {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: var(--anim-delay, 0s);
}

.ds-anim.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ds-number {
    font-size: 5rem;
  }
  .ds-text-wrap h2 {
    font-size: 1.8rem;
  }
  .ds-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .ds-img-wrap {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .ds-grid {
    grid-template-columns: 1fr;
  }
  .ds-number {
    font-size: 4rem;
  }
  .ds-text-wrap h2 {
    font-size: 1.5rem;
  }
}
