/* --- HERO SECTION (Scroll Fixed) --- */
.hero {
  padding: 220px 8% 140px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.95)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
  color: white;
}

.hero h1 span {
  background: linear-gradient(to right, #fff, #c0c0c0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .highlight-light {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.hero h1 .highlight-dark {
  color: var(--primary-dim);
  -webkit-text-fill-color: var(--primary-dim);
}

.hero p {
  max-width: 1200px;
  margin: 0 auto 40px;
  color: #b0c4b8;
  font-size: 1.15rem;
}

/* --- CLIENT SLIDER (New) --- */
.client-slider {
  background: #050a06;
  padding: 40px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.client-track {
  display: inline-block;
  animation: slide 30s linear infinite;
  will-change: transform;
}

.client-logo {
  display: inline-block;
  margin: 0 40px;
  opacity: 1; /* Changed from 0.5 to 1 for full visibility of original color */
  transition: 0.3s;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.client-logo:hover {
  opacity: 1;
  color: var(--primary);
}

.client-logo img {
  max-height: 40px; /* Adjust as needed */
  width: auto;
  filter: grayscale(0); /* Original color */
  transition: filter 0.3s ease;
  vertical-align: middle;
}

.client-logo:hover img {
  filter: grayscale(100%); /* B&W on hover */
}

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

/* --- RECENT WORKS SLIDER --- */
.works-slider-section {
  background: #070e08;
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.works-slider-header {
  text-align: center;
  margin-bottom: 30px;
}

.works-slider-label {
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.8;
  margin: 0;
  text-align: center;
}

.works-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 30, 20, 0.95);
  border: 1px solid rgba(39, 217, 83, 0.5);
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.works-slider-btn:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(39, 217, 83, 0.4);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

@media (max-width: 1460px) {
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .works-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }

  .work-card {
    flex: 0 0 280px;
  }
  .work-cover {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .work-card {
    flex: 0 0 260px;
  }
  .work-cover {
    height: 140px;
  }
}

.works-slider-wrapper {
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  padding: 20px 0;
  margin-top: -20px;
  margin-bottom: -20px;
}

.works-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.work-card {
  flex: 0 0 320px;
  background: rgba(18, 30, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  padding: 0; /* Remove padding from container */
}

.work-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.work-cover {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

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

.work-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(14, 22, 16, 0.9) 100%
  );
}

.work-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(39, 217, 83, 0.15);
  color: #fff;
  border: 1px solid rgba(39, 217, 83, 0.4);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.work-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-info h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
  transition: color 0.3s;
}

.work-card:hover .work-info h4 {
  color: var(--primary);
}

.work-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.work-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-meta i {
  color: var(--primary);
  font-size: 0.9rem;
}

.about-clean-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
}

.about-text-col h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.highlight-quote {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 2px solid var(--primary);
  padding-left: 25px;
  margin-bottom: 40px;
  font-style: italic;
}

.stats-row {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}
.clean-stat h4 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}
.clean-stat p {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- INTRO CARDS (Homepage) --- */
.intro-cards-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.intro-card-home {
  background: rgba(24, 36, 27, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition:
    border-color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intro-card-home:hover {
  border-color: rgba(39, 217, 83, 0.3);
  background: rgba(24, 36, 27, 0.6);
  transform: translateX(5px);
}

.intro-icon-home {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(
    135deg,
    rgba(39, 217, 83, 0.15),
    rgba(39, 217, 83, 0.05)
  );
  border: 1px solid rgba(39, 217, 83, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition:
    background 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-card-home:hover .intro-icon-home {
  background: var(--primary);
  color: #000;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(39, 217, 83, 0.4);
}

.intro-card-content-home h4 {
  font-size: 1rem;
  color: white;
  margin-bottom: 6px;
  font-weight: 700;
}

.intro-card-home:hover .intro-card-content-home h4 {
  color: var(--primary);
}

.intro-card-content-home p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.small-cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.small-card {
  background: rgba(24, 36, 27, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 35px;
  border-radius: 20px;
  flex: 1;
  transition:
    border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.small-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: 0.3s;
}

.small-card:hover {
  border-color: rgba(39, 217, 83, 0.3);
  background: rgba(24, 36, 27, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.small-card:hover::before {
  opacity: 1;
}

.small-card h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.small-card h5 i {
  color: var(--primary);
  background: rgba(39, 217, 83, 0.1);
  padding: 6px;
  border-radius: 7px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.small-card:hover h5 i {
  background: var(--primary);
  color: #000;
  transform: rotate(-10deg);
}

.small-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.3s;
}

.values-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.small-card:hover .values-list li {
  color: #ccc;
}

/* IMAGE WRAPPER WITH OVERLAY */
.about-image-col {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.about-image-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(14, 22, 16, 0.2),
    rgba(6, 235, 26, 0.15)
  );
  mix-blend-mode: multiply;
}

.clean-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  filter: grayscale(40%) contrast(1.1) brightness(0.9);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- CARDS & GRID --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-premium .feature-list {
  flex-grow: 1;
}
.card-premium .card-btn-wrapper {
  margin-top: auto;
  text-align: right;
  width: 100%;
}
.card-premium:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: var(--glow);
}
.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(39, 217, 83, 0.1);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.card-premium h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}
.feature-list li {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 3px;
}

/* --- ROADMAP --- */
.roadmap-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.roadmap-step {
  background: linear-gradient(
    180deg,
    var(--bg-card) 0%,
    rgba(24, 36, 27, 0) 100%
  );
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.step-circle {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: black;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* --- INDUSTRIES (Redesigned) --- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.industry-card {
  background: rgba(24, 36, 27, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 25px;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(39, 217, 83, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}
.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(39, 217, 83, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.industry-card:hover::after {
  opacity: 1;
}

.ind-icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgba(39, 217, 83, 0.1),
    rgba(39, 217, 83, 0.02)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(39, 217, 83, 0.1);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ind-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: 0.4s;
}
.industry-card:hover .ind-icon-box {
  background: var(--primary);
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(39, 217, 83, 0.3);
  border-color: var(--primary);
}
.industry-card:hover .ind-icon {
  color: #050a06;
  transform: scale(0.9);
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  transition: 0.3s;
}
.industry-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  transition: 0.3s;
}
.industry-card:hover h3 {
  color: var(--primary);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  filter: blur(70px);
  opacity: 0.08;
  transition: 0.6s;
  pointer-events: none;
}
.industry-card:hover::before {
  opacity: 0.25;
  background: #fff;
}

/* INDUSTRIES SECTION BACKGROUND */
#industries {
  position: relative;
  background: transparent;
}

.industry-card:nth-of-type(1) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(2) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(3) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(4) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(5) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(6) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(7) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(8) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1560243563-062bfc001d68?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}
.industry-card:nth-of-type(9) {
  background:
    linear-gradient(to bottom, rgba(14, 22, 16, 0.85), rgba(14, 22, 16, 0.98)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&q=80&w=800");
  background-size: cover;
  background-position: center;
}

/* --- FOUNDER SECTION (Professional) --- */
.founder-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 80px;
  background: rgba(24, 36, 27, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 70px 60px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
  position: relative;
  overflow: hidden;
}
.founder-wrapper::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}

.founder-quote-col {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}
.founder-quote-icon {
  position: absolute;
  top: -40px;
  left: -10px;
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.05;
  z-index: -1;
}
.founder-quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: white;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 35px;
  position: relative;
}
.founder-quote-text::before {
  content: "“";
  font-size: 3rem;
  color: var(--primary);
  line-height: 0;
  margin-right: 10px;
  vertical-align: -10px;
  opacity: 0.8;
}
.founder-quote-text::after {
  content: "”";
  font-size: 3rem;
  color: var(--primary);
  line-height: 0;
  margin-left: 10px;
  vertical-align: -10px;
  opacity: 0.8;
}
.founder-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.founder-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
}

.founder-img-col {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.founder-img-box {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  position: relative;
  padding: 5px;
  background: radial-gradient(
    circle at center,
    rgba(39, 217, 83, 0.2) 0%,
    rgba(24, 36, 27, 0.9) 70%,
    rgba(14, 22, 16, 1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.founder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.founder-img-box::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(39, 217, 83, 0.15);
  box-shadow: 0 0 30px rgba(39, 217, 83, 0.05);
}
@media (max-width: 900px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
    gap: 40px;
  }
  .founder-wrapper {
    display: flex;
    flex-direction: column-reverse; /* Image on top */
  }
  .founder-quote-text {
    font-size: 1.25rem;
  }
  .founder-img-box {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}

/* --- RESPONSIVENESS (Homepage Specific) --- */
@media (max-width: 900px) {
  .section {
    padding: 60px 5%;
  }
  .hero {
    padding: 140px 5% 80px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  /* Ensure buttons are clickable on mobile */
  .btn-job-seekers,
  .btn-consultancy,
  .btn-card-premium {
    position: relative;
    z-index: 10;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(39, 217, 83, 0.3);
    touch-action: manipulation;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .roadmap-wrapper,
  .contact-container,
  .industry-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .about-clean-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-row {
    justify-content: space-between;
    gap: 10px;
  }
  .intro-cards-home {
    gap: 15px;
  }
  .intro-card-home {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .intro-icon-home {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.3rem;
  }
  .intro-card-content-home h4 {
    font-size: 1rem;
  }
  .intro-card-content-home p {
    font-size: 0.85rem;
  }
  .small-cards-row {
    flex-direction: column;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 20px;
  }
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  /* Mobile button improvements */
  .service-mini-card {
    padding-bottom: 50px; /* More space for arrow button */
  }
  .mini-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .industry-card {
    min-height: 200px;
  }
}

/* --- JOB SEEKER BUTTON (Hero) --- */
.btn-job-seekers {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--text-muted);
  color: white !important; /* Ensure visibility */
  text-decoration: none;
  font-weight: 600;
  transition:
    border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.btn-job-seekers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scaleX(0);
  transform-origin: right;
}

.btn-job-seekers:hover {
  border-color: var(--primary);
  color: black !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(39, 217, 83, 0.2);
}

.btn-job-seekers:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- CONSULTANCY BUTTON (Hero - Opposite Animation) --- */
.btn-consultancy {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  color: #000 !important; /* Start black on green */
  text-decoration: none;
  font-weight: 700;
  transition:
    border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
}

.btn-consultancy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scaleX(1);
  transform-origin: left;
}

.btn-consultancy:hover {
  color: white !important; /* Become white on transparent */
  box-shadow: 0 0 20px rgba(39, 217, 83, 0.4);
}

.btn-consultancy:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}

/* --- SERVICE CARD BUTTON (Unified) --- */
/* --- SERVICE CARD BUTTON (Unified) --- */
.btn-card-premium {
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  background: var(--primary); /* Default Green */
  color: black !important; /* Default Black Text */
  text-decoration: none;
  font-weight: 600;
  transition:
    border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  width: auto;
  min-width: 160px;
  max-width: none;
}

.btn-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; /* New Hover Color */
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scaleX(0);
  transform-origin: right;
}

.btn-card-premium:hover {
  color: var(--primary) !important; /* Text becomes Green on White */
  border-color: white;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3); /* White Glow */
}

.btn-card-premium:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- SERVICES MINI GRID (Nested) --- */
.services-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: auto; /* Push to bottom if parent flexes */
}

.service-mini-card {
  background: rgba(255, 255, 255, 0.03); /* Lighter than card premium */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  height: 100%;
  position: relative; /* For absolute positioning of arrow */
  padding-bottom: 40px; /* Make space for the button */
}

.service-mini-card:hover {
  background: rgba(39, 217, 83, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.mini-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.8rem;
  opacity: 1; /* Always visible */
  transform: scale(1); /* Always full size */
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(39, 217, 83, 0.3);
}

.service-mini-card:hover .mini-arrow {
  transform: scale(1.15) rotate(-45deg); /* Slight pop and point on hover */
  box-shadow: 0 6px 15px rgba(39, 217, 83, 0.5);
}

.mini-icon {
  width: 35px;
  height: 35px;
  background: rgba(39, 217, 83, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: 0.3s;
}

.service-mini-card:hover .mini-icon {
  background: var(--primary);
  color: #000;
}

.service-mini-card h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.2;
}

.service-mini-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 500px) {
  .services-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* --- TOAST NOTIFICATION --- */
.toast {
  position: fixed;
  top: 100px;
  right: 30px;
  background: rgba(24, 36, 27, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(39, 217, 83, 0.2);
}

.toast.error {
  border-color: #ff4444;
  box-shadow: 0 20px 40px rgba(255, 68, 68, 0.2);
}

.toast-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.toast.success .toast-icon {
  background: rgba(39, 217, 83, 0.15);
  color: var(--primary);
}

.toast.success .toast-icon::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.toast.error .toast-icon {
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
}

.toast.error .toast-icon::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.toast-message {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast {
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: calc(100% - 30px);
  }
}

/* =============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================= */

/* --- WORKS SLIDER --- */
@media (max-width: 768px) {
  .works-slider-section {
    padding: 40px 0;
  }
  .works-slider-header {
    padding: 0 5%;
    margin-bottom: 25px;
  }
  .works-slider-header h2 {
    font-size: 1.5rem;
  }
  .work-card {
    flex: 0 0 280px;
  }
  .work-cover {
    height: 150px;
  }
  .work-info {
    padding: 15px;
  }
  .work-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .work-meta {
    font-size: 0.75rem;
    gap: 10px;
  }
}

/* --- ABOUT SECTION (Homepage) --- */
@media (max-width: 768px) {
  .about-clean-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-image-col {
    min-height: 250px;
    order: -1; /* Image on top */
  }
  .about-text-col h2 {
    font-size: 1.6rem;
  }
  .highlight-quote {
    font-size: 1rem;
    padding-left: 15px;
    margin-bottom: 25px;
  }
  .stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }
  .clean-stat h4 {
    font-size: 1.8rem;
  }
  .small-cards-column {
    gap: 10px;
  }
  .small-card {
    padding: 16px 18px;
  }
}

/* --- HERO SECTION --- */
@media (max-width: 480px) {
  .hero {
    padding: 120px 5% 60px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-job-seekers,
  .btn-consultancy {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}

/* --- SERVICES SECTION --- */
@media (max-width: 768px) {
  .services-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .services-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .services-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SECTION HEADER --- */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  .section-header p {
    font-size: 0.85rem;
  }
  .section {
    padding: 50px 5%;
  }
}

/* --- SLIDER CARD BUTTON --- */
.work-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start; /* Align left */
  width: 100%;
}

.btn-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000; /* Dark text for contrast against primary color */
  background: var(--primary);
  padding: 10px 24px;
  border-radius: 50px; /* Pill shape */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    gap 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2); /* Subtle glow */
  text-decoration: none !important; /* Remove underline */
}

.work-card:hover .btn-text {
  gap: 12px;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4); /* Stronger glow on hover */
}

.work-card:hover .btn-text i {
  transform: translateX(3px);
}

/* --- GALLERY MODAL STYLES (Copied from gallery.css) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: #0f1811;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 0;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-close:hover {
  background: var(--primary);
  color: black;
  transform: rotate(90deg);
}
.modal-body {
  padding: 40px;
}
.modal-header-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.modal-header-content h2 {
  color: white;
  margin-bottom: 15px;
  font-size: 2.2rem;
}
.modal-meta {
  display: flex;
  gap: 25px;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.modal-desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: zoom-in;
  transition: 0.3s;
}
.gallery-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 95%;
  }
  .modal-body {
    padding: 30px 20px;
  }
  .modal-header-content h2 {
    font-size: 1.6rem;
  }
  .modal-gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .modal-header-content h2 {
    font-size: 1.3rem;
  }
  .modal-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2010;
  transition: 0.3s;
}
.lightbox-close:hover {
  color: var(--primary);
}
