@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap");

:root {
  --red: #f94038;
  --black: #0f0f0f;
  --white: #ffffff;
  --muted: #f5f6f8;
  --text: #1f1f1f;
  --shadow: 0 18px 45px rgba(15, 15, 15, 0.12);
  --radius: 18px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(249, 64, 56, 0.18), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.04), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.site-header .container {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  color: var(--black);
}

.brand span {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 15, 15, 0.1);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #1e1e1e;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
    gap: 12px;
    box-shadow: 0 24px 50px rgba(15, 15, 15, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--muted);
  color: var(--red);
}

.hero {
  position: relative;
  padding: 56px 0 46px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 0.06), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(249, 64, 56, 0.08), transparent 40%);
  opacity: 0.9;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60H120' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M60 0V120' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='60' cy='60' r='6' fill='%23f94038' fill-opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: #454545;
  margin-bottom: 26px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(249, 64, 56, 0.25);
}

.btn-outline {
  border-color: rgba(0, 0, 0, 0.12);
  background: var(--white);
}

.btn-cta {
  border: none;
  background: linear-gradient(135deg, #f94038, #ff6b63);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(249, 64, 56, 0.35);
  padding: 12px 26px;
  position: relative;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(249, 64, 56, 0.45);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.15);
}

.section {
  padding: 62px 0;
}

.section-tight {
  padding-top: 45px;
}

.section--muted {
  background: var(--muted);
}

.section-alt {
  background: linear-gradient(180deg, rgba(249, 64, 56, 0.06), rgba(255, 255, 255, 0.9));
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section p.lead {
  max-width: 720px;
  color: #5a5a5a;
  margin-bottom: 28px;
  font-weight: 500;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card {
  position: relative;
  padding-top: 48px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(249, 64, 56, 0.9), rgba(249, 64, 56, 0.2));
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 64, 56, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 15, 15, 0.16);
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), #fff);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(249, 64, 56, 0.12);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.workshops-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(249, 64, 56, 0.12), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.05), transparent 40%);
}

.workshops-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 70H140' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M70 0V140' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='70' cy='70' r='8' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.workshops-hero .container {
  position: relative;
  z-index: 1;
}

.workshop-card {
  position: relative;
  padding-top: 50px;
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 1));
  border: 1px solid rgba(249, 64, 56, 0.12);
}

.workshop-card .feature-icon {
  top: 16px;
  right: 16px;
  background: rgba(249, 64, 56, 0.18);
}

.workshop-gallery {
  position: relative;
  background: linear-gradient(180deg, rgba(249, 64, 56, 0.05), rgba(255, 255, 255, 0.9));
  overflow: hidden;
}

.workshop-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(249, 64, 56, 0.15), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.06), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.workshop-gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
  border: 1px solid rgba(249, 64, 56, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-slider {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
  padding: 8px 0;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #1f1f1f;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(15, 15, 15, 0.15);
  cursor: pointer;
  flex: 0 0 auto;
}

.gallery-card {
  min-width: 300px;
  transform: scale(0.9);
  opacity: 0.7;
}

.gallery-card.is-active {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 24px 50px rgba(15, 15, 15, 0.2);
}

.service-card {
  position: relative;
  padding-top: 50px;
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 1));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(249, 64, 56, 0.12);
  pointer-events: none;
}

.service-card .feature-icon {
  top: 16px;
  right: 16px;
  background: rgba(249, 64, 56, 0.16);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 15, 15, 0.16);
}

.card h3 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 64, 56, 0.08);
  color: var(--red);
  font-weight: 600;
  font-size: 12px;
}

.badge-hero {
  background: rgba(249, 64, 56, 0.12);
  border: 1px solid rgba(249, 64, 56, 0.25);
  padding: 6px 16px;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(249, 64, 56, 0.12);
}

.accent-red {
  color: var(--red);
}

.accent-black {
  color: var(--black);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

.stat {
  text-align: left;
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 8px 0;
}

.stat h3 {
  font-size: 2.2rem;
  color: var(--red);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

.stat p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #3d3d3d;
  font-weight: 600;
}

@media (max-width: 680px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.logo-card {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(249, 64, 56, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
  opacity: 0.7;
  z-index: 0;
}

.clients-section .container {
  position: relative;
  z-index: 1;
}

.logo-grid {
  margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.logo-item {
  position: relative;
  padding: 22px 18px 20px;
  text-align: center;
  border: 1px solid rgba(249, 64, 56, 0.14);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.08);
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 1));
}

.logo-name {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #1f1f1f;
}

.logo-location {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6a6a6a;
  letter-spacing: 0.2px;
}

.logo-img {
  width: 120px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
  background: transparent;
}

.logos-more {
  text-align: center;
  margin-top: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #5a5a5a;
  letter-spacing: 0.3px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
  background: #fff;
  color: #6a6a6a;
}

.input::placeholder,
textarea::placeholder {
  color: #6a6a6a;
}

select:invalid {
  color: #6a6a6a;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.workshop-form {
  background: linear-gradient(180deg, rgba(249, 64, 56, 0.08), #ffffff);
  border: 1px solid rgba(249, 64, 56, 0.12);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
}

.workshop-form .form-actions {
  justify-content: center;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-card {
  position: relative;
  padding-top: 46px;
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 1));
  border: 1px solid rgba(249, 64, 56, 0.14);
}

.contact-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(249, 64, 56, 0.16);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--red);
}

.contact-form-section {
  background: linear-gradient(180deg, rgba(249, 64, 56, 0.05), rgba(255, 255, 255, 1));
  position: relative;
  overflow: hidden;
}

.contact-form {
  background: #ffffff;
  border: 1px solid rgba(249, 64, 56, 0.12);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
}

.contact-form-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(249, 64, 56, 0.12), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.04), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.contact-form-section .container {
  position: relative;
  z-index: 1;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(15, 15, 15, 0.12);
  border: 1px solid rgba(249, 64, 56, 0.12);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.blog-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.blog-card p {
  color: #5a5a5a;
}

.blog-media {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.blog-robotics {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1581091012184-5c1c7f1f9d6b?auto=format&fit=crop&w=800&q=60");
}

.blog-arduino {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=800&q=60");
}

.blog-ai {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=800&q=60");
}

.blog-stem {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=800&q=60");
}

.blog-renewable {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?auto=format&fit=crop&w=800&q=60");
}

.blog-components {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1518779578993-ec3579fee39f?auto=format&fit=crop&w=800&q=60");
}

.blog-automation {
  background-image: linear-gradient(120deg, rgba(249, 64, 56, 0.2), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?auto=format&fit=crop&w=800&q=60");
}

.mission-vision {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.mission-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.mission-vision .container {
  position: relative;
  z-index: 1;
}

.what-we-do {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.what-we-do::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.what-we-do .container {
  position: relative;
  z-index: 1;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.mission-media {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(249, 64, 56, 0.16);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
}

.mission-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 900px) {
  .mission-layout {
    grid-template-columns: 1fr;
  }
  .mission-media img {
    height: 260px;
  }
}

.team-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.team-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.team-hero .container {
  position: relative;
  z-index: 1;
}

.founder-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 32px;
}

.founder-card {
  max-width: 520px;
  width: 100%;
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), #fff);
  border: 1px solid rgba(249, 64, 56, 0.18);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  text-align: center;
  background: transparent;
  position: relative;
}

.team-flip {
  perspective: 1000px;
}

.team-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.team-flip:hover .team-card-inner {
  transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #ffffff);
  border: 1px solid rgba(249, 64, 56, 0.18);
  box-shadow: 0 20px 44px rgba(15, 15, 15, 0.14);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
  padding: 18px;
}

.team-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.08), #fff);
}

.member-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(249, 64, 56, 0.22), rgba(249, 64, 56, 0.06));
  margin: 0 auto 12px;
  border: 2px solid rgba(249, 64, 56, 0.3);
  box-shadow: 0 12px 26px rgba(249, 64, 56, 0.25);
  background-size: cover;
  background-position: center;
}

.member-info h3 {
  margin-bottom: 8px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  margin-top: 8px;
}

.linkedin-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.persistent-link {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
}

.team-card-front::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 15%, rgba(249, 64, 56, 0.14), transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(0, 0, 0, 0.04), transparent 40%);
  opacity: 0.6;
  pointer-events: none;
}

.team-card-front > * {
  position: relative;
  z-index: 1;
}

.member-bio {
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  max-width: 320px;
  margin: auto;
}

.contact-form textarea {
  grid-column: 1 / -1;
}

.contact-form .form-actions {
  justify-content: center;
}

.book-workshop-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.04), transparent 45%);
}

.book-workshop-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.book-workshop-section .container {
  position: relative;
  z-index: 1;
}

.footer {
  background: linear-gradient(180deg, #fff, #f8f7f9);
  color: #1f1f1f;
  padding: 0 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer a {
  color: #1f1f1f;
}

.footer a:hover {
  color: var(--red);
}

.footer-newsletter {
  background: linear-gradient(120deg, rgba(249, 64, 56, 0.08), rgba(255, 255, 255, 0.98));
  padding: 24px 0;
  border-bottom: 1px solid rgba(249, 64, 56, 0.12);
  position: relative;
  overflow: hidden;
}

.footer-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(249, 64, 56, 0.16), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.04), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
}

.footer-newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1f1f1f;
}

.newsletter-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(249, 64, 56, 0.12);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--red);
}

.newsletter-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.newsletter-subtitle {
  font-size: 0.95rem;
  color: #5a5a5a;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 20px;
  min-width: 230px;
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 999px;
  border: none;
  padding: 12px 22px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(249, 64, 56, 0.25);
}

.footer-body {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(170px, 1fr));
  gap: 18px;
  padding: 28px 0 18px;
  align-items: start;
}

.footer-brand .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-address {
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 6px;
}

.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer h4 {
  color: #1f1f1f;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.footer p {
  color: #5a5a5a;
  line-height: 1.7;
}

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

.footer small {
  color: #7a7a7a;
}

.policy-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.policy-modal.active {
  display: flex;
}

.policy-modal-card {
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(249, 64, 56, 0.2);
  overflow: hidden;
  max-height: 80vh;
  overflow-y: auto;
}

.policy-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 15%, rgba(249, 64, 56, 0.12), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.04), transparent 45%);
  opacity: 0.35;
  pointer-events: none;
}

.policy-modal-header,
.policy-modal-body {
  position: relative;
  z-index: 1;
}

.policy-modal-header h3 {
  font-size: 1.6rem;
  margin: 10px 0 6px;
}

.policy-modal-body {
  margin-top: 16px;
  color: #4b4b4b;
  line-height: 1.7;
}

.policy-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 10px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.floating-whatsapp img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: grid;
  place-items: center;
  z-index: 1000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-item {
  min-width: 100%;
  padding: 20px;
}

.testimonials-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 0, 0, 0.05), transparent 45%);
}

.testimonials-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.testimonials-hero .container {
  position: relative;
  z-index: 1;
}

.rating-banner {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 24px;
  align-items: center;
}

.rating-badge {
  background: linear-gradient(135deg, rgba(249, 64, 56, 0.18), #ffffff);
  border: 1px solid rgba(249, 64, 56, 0.2);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.12);
}

.google-logo {
  width: 160px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}

.rating-score {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
}

.rating-label {
  color: #5a5a5a;
  font-weight: 600;
}

.testimonial-card {
  text-align: left;
  padding: 28px;
}

.stars {
  color: #f5b301;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.carousel-dots .dot.active {
  width: 14px;
  height: 14px;
  background: var(--red);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.testimonial-arrow.left {
  left: -10px;
}

.testimonial-arrow.right {
  right: -10px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 12px;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal.active {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f94038, #ff6b63);
  color: #fff;
  box-shadow: 0 12px 26px rgba(249, 64, 56, 0.28);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(249, 64, 56, 0.38);
}
