/* ========= Root & Global ========= */
:root {
  --primary: #deca14;
  --primary-dark: #c0ae11;
  --accent: #247cf0;
  --accent-dark: #185bb4;
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --bg-soft: #eef1f8;
  --text-main: #222222;
  --text-muted: #666a73;
  --card-radius: 18px;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

main {
  min-height: 60vh;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

section {
  padding: 72px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading span {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.section-heading p {
  margin-top: 10px;
  max-width: 620px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ========= Navbar ========= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.navbar-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 10% 0, #ffffff 0, #deca14 40%, #247cf0 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.brand-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #414552;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-dark);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #111827;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
}

.btn-outline {
  background: transparent;
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.03);
  transform: translateY(-1px);
}

/* ========= Hero (Home) ========= */
.hero {
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(222, 202, 20, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(36, 124, 240, 0.18), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: normal;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #b1b1b1, #deca14);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 0.98rem;
}
.para {
  color: #111827;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: block;
  font-size: 1.2rem;
  color: #090909;
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18),
        rgba(0, 0, 0, 0.6)
      ),
    url("pool-project.jpg") center/cover no-repeat;
  min-height: 280px;
}

.hero-card-inner {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #39ff14;
  box-shadow: 0 0 10px #39ff14;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-taglist span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.75rem;
}

.floating-stat {
  position: absolute;
  bottom: -18px;
  right: 8px;
  transform: translateY(0);
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  min-width: 150px;
}

.floating-stat h3 {
  font-size: 1.4rem;
}

.floating-stat p {
  font-size: 0.77rem;
  color: var(--text-muted);
}

/* ========= Service Overview (Home) ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 20px 18px 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top left, rgba(222, 202, 20, 0.12), transparent 50%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(222, 202, 20, 0.6);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.18);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 247, 252, 0.9);
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========= Counters ========= */
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.counter-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.counter-value {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ========= Services Page ========= */
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: flex-start;
}

.services-sidebar {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}

.pill-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pill-list a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(246, 247, 252, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pill-list a:hover,
.pill-list a.active {
  background: linear-gradient(135deg, #ffffff, #f5f5fb);
  border-color: rgba(222, 202, 20, 0.7);
  color: #111827;
}

.service-detail {
  margin-bottom: 34px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--bg-alt);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.service-detail-media {
  height: 200px;
  background: #d6ddeb center/cover no-repeat;
}

.service-detail-content {
  padding: 18px 18px 20px;
}

.service-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.service-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(246, 247, 252, 0.9);
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ========= About Page ========= */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.about-copy h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.about-stat {
  padding: 12px 10px;
  border-radius: 14px;
  background: var(--bg-alt);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.about-stat h4 {
  font-size: 1.2rem;
}

.about-team {
  margin-top: 26px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.team-card {
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: var(--bg-alt);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.team-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, #ffffff, #deca14);
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 0.98rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-media {
  position: relative;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.7)),
    url("images/team-outdoor.jpg") center/cover no-repeat;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.85);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text-muted);
  font-size: 0.8rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* ========= Gallery / Projects ========= */
.gallery-hero {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 26px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.7)),
    url("images/pool-night.jpg") center/cover no-repeat;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 18px 18px 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
}

.gallery-hero p {
  max-width: 420px;
  
  font-size: 0.92rem;
  color: var(--text-muted);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--bg-alt);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%; /* Add this to ensure it spans the container */
}

.slide {
  flex: 0 0 100%; /* CHANGE THIS: Prevents the slide from shrinking or growing */
  width: 100%;    /* Ensures it takes the full container width */
  box-sizing: border-box; /* CHANGE THIS: Keeps padding inside the 100% width */
  padding: 16px 16px 18px;
}

.slide-media {
  height: 220px;
  width: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 12px;
  padding: 10px;
}
.slide h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.slide p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-controls {
  position: absolute;
  inset: auto 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 42px; /* Slightly larger for better UX */
  height: 42px;
  border-radius: 50%;
  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  
  /* Smooth Shadow & Transition */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

/* Stylish Hover State */
.slider-btn:hover {
  background: #ffffff;
  color: #007bff; /* Or your primary theme color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Active "Click" Animation */
.slider-btn:active {
  transform: translateY(0px) scale(0.95);
}

/* Make the arrows inside look cleaner */
.slider-btn svg, .slider-btn {
  font-size: 1.2rem;
  font-weight: bold;
}

.slider-dots {
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.slider-dot.active {
  background: var(--primary);
}

/* ========= Contact Page ========= */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-card {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: var(--bg-alt);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-item h4 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.86rem;
}

.map-embed {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.map-embed iframe {
  width: 100%;
  height: 230px;
  border: none;
}

.contact-form {
  border-radius: 22px;
  padding: 18px 18px 20px;
  background: var(--bg-alt);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(222, 202, 20, 0.9);
  box-shadow: 0 0 0 2px rgba(222, 202, 20, 0.25);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #4b5563;
  font-size: 0.86rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.9);
}

/* ========= Footer ========= */
footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 22px 0 16px;
  margin-top: 40px;
  background: #f8fafc;
}

.footer-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 20px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.footer-brand h1 {
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.8rem;
}

.footer-copy {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: #111827;
}

.footer-bottom-bar {
  width: min(1200px, 92vw);
  margin: 8px auto 0;
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* ========= Scroll Reveal ========= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Responsive ========= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .floating-stat {
    bottom: -12px;
  }

  .services-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-sidebar {
    position: static;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 58px 16px auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: rgba(5, 8, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-meta {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-meta {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}



.about-photo {
  width: 100%;
  max-width: 600px;
}

.about-photo video {
  width: 100%;
  height: auto;
  display: block;
}



.slide-media{
  width: 100%;
  height: 250px;          /* Important: gives the div visible space */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.gallery-hero{
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 60px;
  color: white;
}

.hero-video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content{
  position: relative;
  z-index: 2;
}










/* Testimonials Section */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}

.slider-track {
  display: flex;
  transition: transform 0.45s ease;
  gap: 16px; /* spacing between slides */
  background: white;
  border-radius:  var(--card-radius);;
  
}

.testimonial-card {
  flex: 0 0 calc((100% - 32px) / 3); /* Exactly 3 cards visible */
  box-sizing: border-box;
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 slides on medium screens */
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 slide on small screens */
  }
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.client-position {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #deca14;
  font-size: 1rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between; /* Make prev/next spread evenly */
  padding: 0 12px;               /* Add some horizontal spacing */
  pointer-events: none;           /* Keep buttons clickable individually */
  z-index: 10;
}

.slider-arrows {
  display: flex;
  gap: 12px;      /* space between buttons if needed */
  pointer-events: auto;
}

.slider-btn {
  pointer-events: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.24);
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}


/* Testimonial Section Background */


/* Remove background and shadow from testimonial cards */
/* Testimonial Section Background like Hero */
/* ========= Testimonial Section like Hero ========= */
#testimonials, #about {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
  background: var(--bg); /* fallback background */
}
#footer1 {
  position: relative;
  padding: 60px 0 20px;
  overflow: hidden;
  background: var(--bg); /* fallback background */
}
#testimonials::before,
#about::before,
#footer1::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(222, 202, 20, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(36, 124, 240, 0.18), transparent 60%);
  opacity: 0.9;
  mix-blend-mode: normal;
  pointer-events: none;
  z-index: 0;
}

/* Make sure testimonial cards appear on top of the background */
#testimonials .testimonial-card {
  position: relative;
  background: #ffffff; /* full white */
  border-radius: 18px;
 
  padding: 20px;
  z-index: 1;
}

/* Keep testimonial cards full white with shadow */
.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  padding: 20px;
  color: #222222;
}


.logo{
  height:60px;
  width:auto;
  margin-right:10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.footer-logo{
  height:50px;
  width:auto;
  margin-bottom:10px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* Distance from bottom */
  right: 20px;        /* Distance from right */
  width: 60px;        /* Size of the button */
  height: 60px;
  z-index: 1000;      /* Stay above other elements */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Round button */
  background-color: #25d366; /* WhatsApp green */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;  /* Icon size */
  height: 35px;
}

.service-img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:12px;
}

.slide:hover .slide-media{
  transform: scale(1.05);
  transition: 0.4s;
  }

  /* This adds the 16px gap your JS is expecting */
.slider-track {
  gap: 16px; 
}

/* This ensures the 100% width includes the padding so it doesn't jump */
.slide {
  flex: 0 0 calc(100% - 16px); /* Subtract the gap from the total width */
  box-sizing: border-box;
}

/* Prevent the container from showing the 'drift' */
.slider {
  overflow: hidden;
}


#testimonials {
  background: linear-gradient(to right, #fdfcf3, #f0f4fd); /* Soft yellow to soft blue gradient */
  padding: 80px 0;
}
