/* ===== BASE ===== */
:root {
  --green: #00c853;
  --green-dark: #00a844;
  --black: #000000;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --white: #ffffff;
  --gray: #888888;
  --light-gray: #f5f5f5;
  --font: 'Poppins', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.3);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.5);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-green {
  color: var(--green) !important;
}

.bg-dark-section {
  background: var(--dark);
}

.section-padding {
  padding: 100px 0;
}

.section-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--white);
}

.section-title.text-dark {
  color: var(--black);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  margin: 20px auto 0;
}

.btn-green {
  background: var(--green);
  color: var(--black);
  font-weight: 600;
  border: 2px solid var(--green);
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-green:hover {
  background: transparent;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0,200,83,0.4);
}

.btn-outline-green {
  background: var(--green);
  color: var(--black);
  font-weight: 600;
  border: 2px solid var(--green);
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-green:hover {
  background: transparent;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0,200,83,0.4);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 5px 30px rgba(0,0,0,0.5);
  padding: 10px 0;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}

.navbar-brand i {
  font-size: 20px;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
  font-weight: 500;
  margin: 0 12px;
  padding: 6px 0 !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green) !important;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1920&q=80') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 30%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #a0ffb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-camera-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero-camera {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(0,200,83,0.3));
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.camera-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,200,83,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  animation: fadeInRight 1s ease 0.3s forwards;
}

@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
  height: 180px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: var(--black);
  box-shadow: 0 0 0 4px white, 0 5px 20px rgba(0,200,83,0.3);
}

.service-body {
  padding: 24px 20px 28px;
  text-align: center;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.service-features {
  text-align: left;
  margin-bottom: 20px;
}

.service-features li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  font-size: 16px;
  flex-shrink: 0;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}

.service-link i {
  font-size: 12px;
  margin-left: 4px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--green-dark);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}



.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

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

.portfolio-card:hover img {
  transform: scale(1.12);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay i {
  font-size: 56px;
  color: var(--green);
  filter: drop-shadow(0 0 20px rgba(0,200,83,0.5));
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.portfolio-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-info span {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Panel */
.stats-panel {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-icon {
  font-size: 36px;
  width: 56px;
  text-align: center;
}

.stat-content h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--white);
}

.stat-content p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  font-weight: 400;
}

/* ===== NEWS ===== */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.08);
}

.news-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
}

.news-body {
  padding: 20px;
}

.news-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.news-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-body h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}

.news-link i {
  font-size: 12px;
  margin-left: 4px;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--green-dark);
}

.news-link:hover i {
  transform: translateX(4px);
}

/* Newsletter */
.newsletter-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.newsletter-card .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 12px 20px;
  color: var(--white);
  font-size: 14px;
}

.newsletter-card .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(0,200,83,0.15);
  background: rgba(255,255,255,0.12);
}

.newsletter-card .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--green);
}

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

.footer-links li a {
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--green);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-contact li i {
  width: 20px;
  text-align: center;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80') center center / cover no-repeat;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.92) 20%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  background: linear-gradient(to right, #ffffff, #a0ffb0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  height: 100%;
  border: 1.5px solid rgba(0,0,0,0.6);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: var(--green);
}

.team-card:hover .team-body h5,
.team-card:hover .team-designation,
.team-card:hover .team-bio {
  color: var(--black);
}

.team-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}

.team-socials {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-socials {
  opacity: 1;
}

.team-socials a {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.team-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0,200,83,0.4);
}

.team-body {
  padding: 24px 20px;
  text-align: center;
}

.team-body h5 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.team-designation {
  font-size: 13px;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 14px;
  color: #111;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== SERVICE DETAIL ===== */
.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--black);
  margin-bottom: 20px;
  box-shadow: 0 0 0 4px rgba(0,200,83,0.15), 0 5px 20px rgba(0,200,83,0.3);
}

.service-detail-list {
  margin-top: 16px;
}

.service-detail-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-detail-list li i {
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== CONTACT & QUOTE FORMS ===== */
.form-section {
  background: var(--white);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-card .form-control,
.form-card .form-select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
}

.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(0,200,83,0.12);
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
}

.contact-info-card h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  font-size: 22px;
  width: 24px;
  margin-top: 2px;
}

.contact-info-item h6 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

/* ===== SINGLE NEWS ===== */
.single-news-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.single-news-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-news-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.9));
  z-index: 1;
}

.single-news-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.single-news-content {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.single-news-content p {
  margin-bottom: 20px;
}

/* ===== SUCCESS/ALERT MESSAGES ===== */
.alert-success-custom {
  background: rgba(0,200,83,0.08);
  border: 1px solid var(--green);
  color: var(--green-dark);
  border-radius: 12px;
  padding: 20px 24px;
  font-weight: 500;
}

/* ===== PAGINATION ===== */
.page-link {
  color: var(--black);
  border-radius: 8px !important;
  margin: 0 4px;
  font-weight: 500;
  border: 1px solid #ddd;
  transition: var(--transition);
}

.page-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.page-item.active .page-link {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}

.page-item.disabled .page-link {
  color: #bbb;
}

/* ===== HAPPY CLIENTS ===== */
.clients-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.clients-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.clients-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.clients-track {
  display: flex;
  gap: 30px;
  width: fit-content;
  animation: marquee 40s linear infinite;
}

.clients-carousel-wrapper:hover .clients-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(0, 200, 83, 0.3);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.client-logo-circle:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.3), inset 0 0 30px rgba(0, 200, 83, 0.05);
  transform: scale(1.08);
  background-color: rgba(255, 255, 255, 0.08);
}

.logo-fallback {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-logo-circle:not([style*="background-image"]) .logo-fallback,
.client-logo-circle .logo-fallback:only-child {
  opacity: 1;
}

.client-stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.client-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.client-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--green);
  transition: all 0.4s ease;
}

.client-stat-card:hover .client-stat-icon {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.3);
}

.client-stat-card .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.client-stat-card p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-title { font-size: 64px; }
}

@media (max-width: 991px) {
  .navbar { background: rgba(0,0,0,0.95); }

  .navbar-nav {
    background: rgba(0,0,0,0.98);
    padding: 20px;
    border-radius: 12px;
    margin-top: 12px;
  }

  .nav-link { margin: 8px 0; }

  .hero-title { font-size: 52px; }
  .hero-section { min-height: 600px; }
  .page-hero-title { font-size: 40px; }

  .section-title { font-size: 32px; }
  .section-padding { padding: 70px 0; }

  .stats-panel { margin-top: 24px; }

  .newsletter-card { margin-top: 24px; }

  .form-card { padding: 24px; }
  .contact-info-card { margin-top: 24px; }

  .client-logo-circle { width: 100px; height: 100px; }
  .clients-track { gap: 24px; }
  .client-stat-card .stat-number { font-size: 36px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 40px; }
  .hero-tagline { font-size: 12px; }
  .hero-subtitle { font-size: 14px; }
  .hero-desc { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-section { min-height: 500px; }
  .page-hero-title { font-size: 30px; }
  .page-hero { min-height: 300px; height: 35vh; }

  .section-title { font-size: 26px; }
  .section-tagline { font-size: 12px; }
  .section-padding { padding: 50px 0; }

  .service-card { max-width: 400px; margin: 0 auto; }
  .news-card { max-width: 400px; margin: 0 auto; }
  .team-card { max-width: 400px; margin: 0 auto; }

  .portfolio-filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 8px 16px; }

  .stat-content h3 { font-size: 22px; }

  .client-logo-circle { width: 80px; height: 80px; }
  .clients-track { gap: 16px; }
  .client-stat-card { padding: 28px 20px; }
  .client-stat-card .stat-number { font-size: 30px; }
  .client-stat-card p { font-size: 13px; }
  .clients-carousel-wrapper::before,
  .clients-carousel-wrapper::after { width: 40px; }

  .footer-section { padding: 50px 0 0; }
  .footer-bottom { margin-top: 40px; }

  .form-card { padding: 20px; }
  .single-news-hero { height: 40vh; min-height: 300px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-btns .btn { font-size: 14px; padding: 10px 20px; }
}
