/* ============================================================
   1. GLOBAL RESET & BASE STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 200vh;
  background-color: #050505;
  color: white;
  width:100vw;
  padding-top: 55px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../Assets/bg-main.png') center / cover no-repeat;
  z-index: -1;
  opacity: 0.8;
}


/* ============================================================
   2. HEADER
   ============================================================ */

/* --- Layout --- */
header {
  width: 100%;
  height: 55px;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* --- Logo --- */
.logo-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

.header-logo-small {
  width: 140px;
  height: auto;
  display: block;
}

.logo-subtitle {
  color: #BCEF12;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Navigation --- */
nav {
  display: flex;
  gap: 8px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  flex-wrap: wrap;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
  padding: 7px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  opacity: 1;
  color: #BCEF12;
  border-bottom-color: #BCEF12;
  background-color: rgba(188, 239, 18, 0.1);
}

nav a.active {
  color: #BCEF12;
  opacity: 1;
  border-bottom-color: #BCEF12;
  background-color: rgba(188, 239, 18, 0.08);
}

/* --- Header Button --- */
.head-button {
  padding: 8px 16px;
  background-color: #BCEF12;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  color: black;
  transition: all 0.3s ease;
}

.head-button:hover {
  background-color: #a8d610;
  transform: scale(1.05);
}

/* --- Mobile Toggle --- */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

/* Mobile nav active state */
nav.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background-color: rgba(17, 15, 15, 0.98);
  backdrop-filter: blur(8px);
  padding: 15px;
  gap: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(188, 239, 18, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

nav.active a {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 5px;
}

/* --- Dropdown Menu Styles --- */
.dropdown {
  position: relative;
  display: inline-block;
  margin: 0 2px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
  padding: 7px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.dropdown-toggle:hover {
  opacity: 1;
  color: #BCEF12;
  border-bottom-color: #BCEF12;
  background-color: rgba(188, 239, 18, 0.1);
}

.dropdown-toggle.active {
  color: #BCEF12;
  opacity: 1;
  border-bottom-color: #BCEF12;
  background-color: rgba(188, 239, 18, 0.08);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: -10px;
  background-color: rgba(17, 15, 15, 0.99);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(188, 239, 18, 0.25);
  border-radius: 12px;
  width: 170px;
  text-align: center;
  min-width: 170px;
  box-shadow: 0 12px 40px rgba(188, 239, 18, 0.2), 0 6px 16px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  padding: 10px 0;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --- Dropdown Items --- */
.dropdown-item {
  display: block;
  color: #d0d0d0;
  text-decoration: none;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(188, 239, 18, 0.1);
  opacity: 0.9;
}

.dropdown-item:first-child {
  padding-top: 14px;
}

.dropdown-item:last-child {
  border-bottom: none;
  padding-bottom: 14px;
}

.dropdown-item:hover {
  background-color: rgba(188, 239, 18, 0.15);
  color: #BCEF12;
  opacity: 1;
  padding-left: 4px;
}

.mobile-social{
    display: none;
  }

/* Mobile dropdown styles */
@media (max-width: 768px) {
  .dropdown {
    width: 100%;
    margin: 0;
    display: block;
  }

  .dropdown-toggle {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    border-left: 3px solid transparent;
    color: #e0e0e0;
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    top: auto;
    left: auto;
    z-index: auto;
  }

  nav.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(188, 239, 18, 0.12);
    background-color: transparent;
    font-size: 13px;
    width: 100%;
    text-align: center;
    color: #e0e0e0 !important;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background-color: rgba(188, 239, 18, 0.1);
    color: #BCEF12 !important;
  }

  /* social icons row inside mobile nav */
  

  @media (max-width: 768px) {
    .mobile-social {
      display: flex;
    }
  }
  .mobile-social a {
    color: #e0e0e0;
    font-size: 20px;
    transition: color 0.2s;
  }
  .mobile-social a:hover {
    color: #BCEF12;
  }
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */

/* --- Layout --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

/* --- Logo Image --- */
.header-logo {
  width: 120px;
  margin-bottom: 20px;
  padding-bottom: 30px;
}

/* --- Text Content --- */
.subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.hero-section h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.highlight {
  color: #BCEF12;
}

.description {
  max-width: 650px;
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 35px;
  line-height: 1.5;
}

/* --- Info Pills Row --- */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.info-pill {
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid #BCEF12;
  background: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

/* --- CTA Button --- */
.cta {
  display: inline-block;
  padding: 16px 30px;
  background-color: #BCEF12;
  color: black;
  font-size: 12px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.2s;
}

.cta:hover {
  transform: scale(1.05);
}

/* --- Embedded Video --- */
.my-video {
  margin-top: 50px;
}

.my-video iframe {
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
}


/* ============================================================
   4. WORKSHOP CTA SECTION
   ============================================================ */

/* --- Layout --- */
.workshop-section {
  padding: 20px 20px 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- Badge --- */
.ws-badge {
  display: inline-flex;
  align-items: center;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
  gap: 10px;
}

.ws-check-icon {
  background-color: #BCEF12;
  color: black;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

/* --- Headline --- */
.ws-headline {
  font-size: 24px;
  line-height: 1.4;
  max-width: 700px;
  margin-bottom: 30px;
  font-weight: 400;
}

/* --- Workshop Button --- */
.ws-button {
  background-color: #BCEF12;
  color: black;
  padding: 18px 45px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.2s;
  margin-bottom: 25px;
}

.ws-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(188, 239, 18, 0.3);
}

/* --- Live Status Line --- */
.ws-status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
}

.ws-live-dot {
  width: 10px;
  height: 10px;
  background-color: #06c10c;
  border-radius: 50%;
  box-shadow: 0 0 8px #13d630;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.5; }
  100% { opacity: 1; }
}

/* --- Avatar Group --- */
.avatar-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #111;
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: black;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-left: -12px;
  z-index: 5;
}


/* ============================================================
   5. SPECIALITIES SECTION
   ============================================================ */

/* --- Section Layout --- */
.specialities-section {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 70px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.specialities-section .section-label {
  font-size: 14px;
  width: fit-content;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
}

.specialities-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}

.specialities-description {
  max-width: 650px;
  margin: 0 auto 60px auto;
  font-size: 15px;
  line-height: 1.7;
  color: #999;
}
.speciality-icon {
  /* Center the icon image */
  margin-bottom: 20px;
}

.service-icon {
  width: 70px; /* Adjust size of Figma icon */
  height: 70px;
  object-fit: contain; /* Ensure the image does not stretch */
  margin: 0 auto;
}


/* --- Cards Grid --- */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.speciality-card {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
}

.speciality-card:hover {
  border-color: #BCEF12;
  transform: translateY(-5px);
}

/* --- Icon --- */
.speciality-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speciality-icon svg {
  width: 100%;
  height: 100%;
  stroke: #BCEF12;
  fill: none;
  stroke-width: 1.5;
}

/* --- Card Title --- */
.speciality-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.speciality-underline {
  width: 40px;
  height: 3px;
  background: #BCEF12;
  margin: 0 auto 20px auto;
}

/* --- Card Description --- */
.speciality-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}


/* ============================================================
   6. TESTIMONIAL CAROUSEL
   ============================================================ */

/* --- Section Layout --- */
.testimonial-section {
  padding: 70px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-section::before {
  content: "";
  display: block;
  margin-bottom: 40px;
}

.testimonial-section .section-label {
  font-size: 14px;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
  display: inline-block;
}

.testimonial-section h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 50px;
  font-weight: 800;
}

/* --- Carousel Wrapper (clips overflow) --- */
.carousel-wrapper {
  --gap: 20px;
  --visible: 3;                                   /* cards visible at once */
  max-width: 1100px;
  margin: 0 auto 30px auto;
  overflow: hidden;
}

/* --- Sliding Track --- */
.carousel-track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.4s ease;
}

/* --- Individual Card --- */
.testimonial-card {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 20px;
  /* each card = (100% - total gaps) / visible count */
  width: 350px;
  /* min-height: 420px; */
  flex-shrink: 0;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* --- Arrow Buttons --- */
.carousel-btn {
  background: #1a1a1a;
  border: 1px solid #333;
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.carousel-btn:hover {
  background: #BCEF12;
  color: black;
  border-color: #BCEF12;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* --- Dot Indicators (built by JS) --- */
.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  transition: 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #BCEF12;
}

.quote-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #1a1a1a;
  font-family: serif;
}

/* --- Stars & Rating --- */
.stars {
  color: #BCEF12;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-num {
  color: #aaa;
  font-size: 14px;
  margin-left: 5px;
}

/* --- Quote Text --- */
.quote-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
  min-height: 60px;
}

/* --- User Info --- */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 2px;
}

.user-title {
  font-size: 12px;
  color: #777;
}

.user-country {
  font-size: 10px;
  color: #ddd;
  margin-top: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.country-flag {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  object-fit: cover;
}

.linkedin-icon {
  position: absolute;
  right: 0;
  width: 20px;
  opacity: 0.8;
}

/* ============================================================
   6.5 FAQ SECTION
   ============================================================ */

.faq-section {
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-container {
  text-align: center;
}

.faq-container .section-label {
  font-size: 14px;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
  display: inline-block;
}

.faq-section h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 800;
}

.faq-description {
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  text-align: left;
}

.faq-item {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}


.faq-item:hover {
  border-color: #BCEF12;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  background: #0f0f0f;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #1a1a1a;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: #BCEF12;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  background: #0f0f0f;
  animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* --- Trusted Partners Section --- */
.trusted-partners {
  padding: 10px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-container {
  text-align: center;
}

.trusted-partners h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}

.partners-description {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
}
.brand-icon {
  width: 100px; /* Adjust size of Figma icon */
  height: auto;
  object-fit: contain; /* Ensure the image does not stretch */
  margin: 0 auto;
}


/* ============================================================
   3.5 ABOUT SECTION
   ============================================================ */

/* --- Section Layout --- */
.about-section {
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.about-wrapper {
  width: 100%;
  max-width: 1100px;
}

.about-box {
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.1) 0%, rgba(188, 239, 18, 0.05) 100%);
  /* border: 1px solid #BCEF12; */
  border-radius: 20px;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  backdrop-filter: blur(10px);
  grid-auto-flow: row;
}

/* --- Content --- */
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-label {
  font-size: 13px;
  width: fit-content;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 5px 12px;
  margin-bottom: 15px;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
}

.about-content h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-description {
  font-size: 15px;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 28px;
}

/* --- Stats --- */
.about-stats {
  display: flex;
  gap: 35px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #BCEF12;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-cta {
  align-self: flex-start;
  padding: 12px 26px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

/* --- Image --- */
.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  border: 3px solid #BCEF12;
  box-shadow: 0 20px 60px rgba(188, 239, 18, 0.15);
  transition: transform 0.3s ease;
  object-fit: cover;
  aspect-ratio: 1 / 1.2;
}

.profile-img:hover {
  transform: scale(1.02);
}



/* ============================================================
   6.5 PROJECTS SECTION
   ============================================================ */

.projects {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  scroll-margin-top: 55px;
}

.projects .section-label {
  font-size: 15px;
  width: fit-content;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin: 0 auto 15px auto;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
  display: inline-block;
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}

.projects-description {
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Projects Grid --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* --- Project Card --- */
.project-card {
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.1) 0%, rgba(188, 239, 18, 0.05) 100%);
  border: 1px solid #BCEF12;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-card:hover {
  border-color: #BCEF12;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(188, 239, 18, 0.1);
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.15) 0%, rgba(188, 239, 18, 0.08) 100%);
}

.project-image {
  width: 100%;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.project-overlay p {
  font-size: 14px;
  color: #BCEF12;
}

.project-info {
  padding: 30px;
  text-align: left;
}

.project-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.project-tech {
  font-size: 12px;
  color: #BCEF12;
  margin-bottom: 12px;
}

.project-description {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.project-btn {
  display: inline-block;
  color: #BCEF12;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.project-btn:hover {
  transform: translateX(5px);
  color: white;
}

/* --- Projects CTA --- */
.projects-cta {
  text-align: center;
  padding: 40px;
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
}

.projects-cta p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.banner-buttons{
  display:flex;
  gap:15px;
}

.banner-button{
  padding:12px 22px;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
}

.banner-button.primary{
  background:#BCEF12;
  color:#000;
}

.banner-button.secondary{
  border:2px solid #ffffff;
  background:#ffffff;
  color:#000;
}

/* ============================================================
   8. FOOTER
   ============================================================ */

footer {
  background-color: #050505;
  padding: 60px 20px;
  margin-top: 80px;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  
}

.contact-icon {
  width: 50px; /* Adjust size of Figma icon */
  height: 50px;
  object-fit: contain; /* Ensure the image does not stretch */
  margin: 0 auto;
}
.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 20%;
  color: #BCEF12;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.social-icon:hover {
  background-color: #BCEF12;
  color: #050505;
  transform: scale(1.1);
  border-color: #BCEF12;
}

.contact-link {
  text-align: center;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: #BCEF12;
  font-size: 14px;
}

/* --- Footer Bottom --- */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 40px 15px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    font-size: 14px;
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}


/* ============================================================
   7.5 VIDEO TESTIMONIALS SECTION
   ============================================================ */

.video-testimonials {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-container {
  text-align: center;
}

.testimonial-container .section-label {
  font-size: 15px;
  width: fit-content;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin: 0 auto 15px auto;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
  display: inline-block;
}

.video-testimonials h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 800;
}

.videos-description {
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* --- Video Grid Full (for dedicated page) --- */
.video-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .video-grid-full {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* --- Video Card --- */
.video-card {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: #BCEF12;
  transform: translateY(-10px);
}

/* --- Video Testimonials Page --- */
.video-testimonials-page {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.video-testimonials-page .section-label {
  display: inline-block;
  margin-bottom: 20px;
}

.video-testimonials-page h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
}

.video-testimonials-page .videos-description {
  font-size: 16px;
  color: #999;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .video-testimonials-page {
    padding: 40px 15px;
  }

  .video-testimonials-page h2 {
    font-size: 28px;
  }
}

.video-card:hover {
  border-color: #BCEF12;
  transform: translateY(-10px);
}

.video-wrapper {
  width: 100%;
  position: relative;
  background: #000;
}

.video-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 30px;
  text-align: center;
}

.client-avatar {
  margin-bottom: 15px;
}

.client-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #BCEF12;
  object-fit: cover;
}

.video-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.client-role {
  font-size: 14px;
  color: #BCEF12;
  margin-bottom: 15px;
  font-weight: 600;
}

.client-testimonial {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  font-style: italic;
}

/* --- Video CTA --- */
.video-cta {
  text-align: center;
  padding: 40px;
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
}

.video-cta p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}


/* ============================================================
   9. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Body --- */
  body {
    width: 100%;
    overflow-x: hidden;
  }

  /* --- Header: collapse nav into hamburger --- */
  header {
    padding: 0 15px;
    height: 60px;
  }

  .logo {
    font-size: 16px;
  }

  nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(20, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    display: none;
    z-index: 999;
    border-bottom: 1px solid rgba(188, 239, 18, 0.2);
    border-radius: 0;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 12px 20px;
    border-radius: 0;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    color: #e0e0e0;
    text-align: center;
  }

  nav a:hover {
    background-color: rgba(188, 239, 18, 0.1);
    border-left-color: #BCEF12;
    color: #BCEF12;
  }

  nav a.active {
    background-color: rgba(188, 239, 18, 0.15);
    border-left: 3px solid #BCEF12;
    color: #BCEF12;
    font-weight: 600;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .head-button {
    display: none;
  }

  /* --- Mobile Nav Divider --- */
  .nav-divider {
    width: 100%;
    height: 1px;
    background: rgba(188, 239, 18, 0.15);
    margin: 12px 0;
  }

  /* --- Mobile Nav Stats Section --- */
  .nav-stats {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(188, 239, 18, 0.15);
  }

  .nav-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #e0e0e0;
    font-size: 13px;
  }

  .stat-icon {
    font-size: 18px;
    min-width: 24px;
  }

  .stat-text {
    flex: 1;
  }

  /* --- Mobile Nav Book Button --- */
  .nav-book-button {
    width: calc(100% - 40px);
    margin: 10px 20px 5px 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #BCEF12 0%, #a8d610 100%);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 239, 18, 0.3);
  }

  .nav-book-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(188, 239, 18, 0.4);
  }

  /* --- Hero Section --- */
  .hero-section {
    min-height: auto;
    padding: 30px 15px;
    text-align: center;
  }

  .header-logo {
    width: 100px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }

  .hero-section h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .info-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .info-pill {
    padding: 10px 16px;
    font-size: 12px;
  }

  .cta {
    padding: 14px 24px;
    font-size: 11px;
  }

  .my-video iframe {
    width: 95vw;
    max-width: 95vw;
  }

  /* --- Workshop Section --- */
  .workshop-section {
    padding: 25px 15px 40px 15px;
  }

  .ws-badge {
    padding: 6px 14px;
    font-size: 12px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 100%;
  }

  /* mobile: simplify badge text */
  @media (max-width: 480px) {
    .ws-badge {
      padding: 5px 10px;
      justify-content: center;
    }
    .ws-badge span {
      font-size: 0; /* hide text except strong */
    }
    .ws-badge span strong {
      font-size: 12px;
    }
  }

  .ws-check-icon {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .ws-headline {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .ws-button {
    padding: 12px 25px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  /* --- About Section --- */
  .about-section {
    padding: 40px 15px;
  }

  .about-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-template-rows: auto auto auto;
    gap: 0;
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(188, 239, 18, 0.2);
  }

  .about-image {
    position: absolute;
    right: 20px;
    top: 40px;
    flex-shrink: 0;
    z-index: 10;
  }

  .profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #BCEF12;
    box-shadow: 0 0 30px rgba(188, 239, 18, 0.6), inset 0 0 30px rgba(188, 239, 18, 0.3);
    object-fit: cover;
  }

  @media (max-width: 480px) {
    .about-image {
      top: 10px;
      right: 10px;
    }
    .profile-img {
      width: 70px;
      height: 70px;
      border-width: 3px;
    }
  }

  .about-content {
    text-align: left;
    grid-column: 1;
    grid-row: 1 / 4;
    padding-right: 0;
  }

  .about-content .section-label {
    font-size: 11px;
    margin-bottom: 12px;
    padding: 5px 10px;
    background-color: #263004;
    border-radius: 20px;
    width: fit-content;
  }

  .about-content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800;
  }

  .about-description {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .about-stats {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
  }

  .stat-item {
    text-align: center;
    min-width: 90px;
    padding: 12px 10px;
    border: 1px solid rgba(188, 239, 18, 0.25);
    border-radius: 12px;
    background: rgba(188, 239, 18, 0.05);
  }

  .stat-number {
    font-size: 20px;
    font-weight: 800;
  }

  .stat-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .about-text {
    font-size: 13px;
    margin-bottom: 0;
  }

  .about-cta {
    position: absolute;
    right: 20px;
    bottom: 20px;
    align-self: unset;
    padding: 12px 22px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    width: fit-content;
    margin-top: 0;
  }

  /* hide button on smaller screens */
  @media (max-width: 480px) {
    .about-cta {
      display: none;
    }
  }

  /* --- Specialities Section --- */
  .specialities-section {
    padding: 50px 15px;
  }

  .specialities-section h2 {
    font-size: 28px;
  }

  .specialities-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .specialities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .speciality-card {
    padding: 25px 20px;
  }

  .speciality-icon {
    width: 50px;
    height: 50px;
  }

  .speciality-card h3 {
    font-size: 18px;
  }

  .speciality-card p {
    font-size: 13px;
  }

  /* --- Testimonial Section --- */
  .testimonial-section {
    padding: 50px 15px;
  }

  .testimonial-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .carousel-wrapper {
    --visible: 1;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .testimonial-card {
    width: 100%;
    padding: 20px;
  }

  .carousel-controls {
    gap: 12px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* --- Video Testimonials Section --- */
  .video-testimonials {
    padding: 50px 15px;
  }

  .video-testimonials h2 {
    font-size: 28px;
  }

  .videos-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .video-card {
    padding: 0;
  }

  .video-info {
    padding: 20px;
  }

  .client-avatar img {
    width: 70px;
    height: 70px;
  }

  .client-testimonial {
    font-size: 13px;
  }

  /* --- Trusted Partners Section --- */
  .trusted-partners {
    padding: 50px 15px;
  }

  .trusted-partners h2 {
    font-size: 28px;
  }

  .partners-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .partners-logos {
    gap: 25px;
  }
  
  .partner-logo {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }

  /* --- Projects Section --- */
  .projects {
    padding: 50px 15px;
  }

  .projects h2 {
    font-size: 28px;
  }

  .projects-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-image {
    height: 200px;
  }

  .project-info {
    padding: 20px;
  }

  .project-info h3 {
    font-size: 18px;
  }

  .project-tech {
    font-size: 11px;
  }

  .project-description {
    font-size: 13px;
    min-height: auto;
  }

  .projects-cta {
    padding: 25px;
  }

  .projects-cta p {
    font-size: 14px;
  }

  /* --- Footer Section --- */
  footer {
    padding: 40px 15px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-here {
    font-size: 16px;
    padding: 8px 16px;
  }

  .footer-phone {
    font-size: 13px;
    margin-top: 5px;
  }

  .footer-location {
    font-size: 13px;
    margin-top: 5px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* --- Projects Page Grid (Desktop First) --- */
.projects-page {
  padding: 80px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.projects-page h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.projects-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px 0;
}

.projects-grid-full .project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.projects-grid-full .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(188, 239, 18, 0.25);
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .projects-page {
    padding: 60px 30px;
  }

  .projects-page h2 {
    font-size: 36px;
  }

  .projects-grid-full {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* FAQ on tablet */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (under 768px) */
@media (max-width: 768px) {
  .projects-page {
    padding: 40px 15px;
  }

  .projects-page h2 {
    font-size: 28px;
  }

  .projects-grid-full {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-grid-full .project-card:hover {
    transform: translateY(-5px);
  }

  .projects-cta {
    padding: 25px 15px;
  }
}

/* --- Additional Footer Contact Info --- */
.footer-phone,
.footer-location {
  margin-top: 8px;
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.6;
}

/* --- Projects Page Responsive --- */
@media (max-width: 768px) {
  .projects-page {
    padding: 40px 15px;
  }

  .projects-page h2 {
    font-size: 28px;
  }

  .projects-grid-full {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-cta {
    padding: 25px 15px;
  }

  /* --- FAQ Section --- */
  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 15px 15px 15px;
    font-size: 14px;
  }
}

/* ============================================================
   7. PROCESS SECTION
   ============================================================ */

/* --- Main Container --- */
.process-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-container {
  width: 100%;
  
}

/* --- Section Label --- */
.process-section .section-label {
  font-size: 14px;
  width: fit-content;
  letter-spacing: 3px;
  color: #BCEF12;
  padding: 6px 13px;
  margin: 0 auto 20px auto;
  font-weight: 600;
  background-color: #263004;
  border-radius: 6px;
  display: inline-block;
}

/* --- Heading --- */
.process-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.process-description {
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 15px;
  line-height: 1.7;
  color: #999;
}

/* --- Process Grid (Desktop Layout) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
  align-items: start;
}

/* --- Individual Process Step --- */
.process-step {
  position: relative;
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.1) 0%, rgba(188, 239, 18, 0.05) 100%);
  /* border: 1px solid #BCEF12; */
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.process-step:hover {
  border-color: #BCEF12;
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.15) 0%, rgba(188, 239, 18, 0.08) 100%);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(188, 239, 18, 0.15);
}

/* --- Process Number --- */
.process-number {
  background: linear-gradient(135deg, #BCEF12 0%, #a3d60f 100%);
  color: black;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

/* --- Step Content --- */
.process-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: white;
}

.process-content p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* --- Arrow Between Steps (Desktop Only) --- */
.process-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #BCEF12;
  font-weight: bold;
  z-index: 10;
  display: none;
}

/* Show arrows on desktop */
@media (min-width: 1200px) {
  .process-arrow {
    display: block;
  }
}

/* Hide arrow on last step */
.process-step.last-step .process-arrow {
  display: none;
}

/* ============================================================
   PROCESS SECTION - TABLET & MOBILE RESPONSIVE
   ============================================================ */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-step {
    min-height: auto;
  }

  .process-arrow {
    display: none;
  }

  .process-section h2 {
    font-size: 32px;
  }

  .process-description {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

/* Mobile (under 768px) */
@media (max-width: 768px) {
  .process-section {
    padding: 40px 16px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-step {
    padding: 25px 18px;
    min-height: auto;
  }

  .process-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .process-description {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .process-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .process-content h3 {
    font-size: 16px;
  }

  .process-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  .process-arrow {
    display: none;
  }
}

/* Small Mobile (under 480px) */
@media (max-width: 480px) {
  .process-section {
    padding: 30px 12px;
  }

  .process-section h2 {
    font-size: 24px;
  }

  .process-description {
    font-size: 12px;
    margin-bottom: 25px;
  }

  /* --- Trusted partners mobile tweaks --- */
  .trusted-partners {
    padding: 30px 12px;
  }
  .trusted-partners h2 {
    font-size: 22px;
    text-align: center;
    line-height: 1.2;
  }
  .partners-logos {
    justify-content: center;
    gap: 15px;
  }
  .partner-logo {
    width: 70px;
    height: 70px;
    margin: 8px;
  }
  .partner-logo .brand-icon {
    width: 60px;
    height: 60px;
  }
}

  .process-step {
    padding: 20px 15px;
  }

  .process-content h3 {
    font-size: 15px;
  }

  .process-content p {
    font-size: 12px;
  }



/* ============================================================
   7.5 PORTFOLIO BANNER SECTION
   ============================================================ */

/* --- Main Container --- */
.portfolio-banner {
  padding: 20px 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, rgba(188, 239, 18, 0.1) 0%, rgba(188, 239, 18, 0.05) 100%);
  border: 1px solid #BCEF12;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 50px;
  position: relative;
  overflow: hidden;
}

.banner-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(188, 239, 18, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Icon --- */
.banner-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.banner-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(188, 239, 18, 0.3));
}

/* --- Content --- */
.banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.banner-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.banner-content h2 .highlight {
  color: #BCEF12;
}

.banner-content p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
  margin: 0;
}

/* --- Button --- */
.banner-button {
  flex-shrink: 0;
  padding: 14px 32px;
  background: linear-gradient(135deg, #BCEF12 0%, #a3d60f 100%);
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(188, 239, 18, 0.2);
}

.banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 239, 18, 0.35);
  background: linear-gradient(135deg, #c8f71f 0%, #b8e318 100%);
}

.banner-button i {
  transition: transform 0.3s ease;
}

.banner-button:hover i {
  transform: translateX(4px);
}

/* ============================================================
   PORTFOLIO BANNER - RESPONSIVE
   ============================================================ */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 35px;
    gap: 25px;
  }

  .banner-content h2 {
    font-size: 28px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .banner-button {
    align-self: center;
  }
}

/* Mobile (under 768px) */
@media (max-width: 768px) {
  .portfolio-banner {
    padding: 30px 16px;
    margin: 30px auto;
  }

  .banner-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    border-radius: 16px;
  }

  .banner-icon {
    width: 80px;
    height: 80px;
  }

  .banner-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .banner-button {
    padding: 12px 24px;
    font-size: 14px;
    align-self: stretch;
    justify-content: center;
  }
  .partner-logo {
    height: 20px;
  }
  .partner-container h3{
    margin-bottom: 30px;
  }
}

/* Small Mobile (under 480px) */
@media (max-width: 480px) {
  .portfolio-banner {
    padding: 20px 12px;
    margin: 20px auto;
  }

  .banner-container {
    padding: 20px 16px;
    gap: 15px;
  }

  .banner-icon {
    width: 70px;
    height: 70px;
  }

  .banner-content h2 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 12px;
  }

  .banner-button {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   7.6 SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #BCEF12;
  color: #050505;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(188, 239, 18, 0.3);
}

.scroll-to-top:hover {
  background-color: #a3d60f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(188, 239, 18, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   18. WHATSAPP BUTTON
   ============================================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .whatsapp-btn {
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 80px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .whatsapp-btn {
    bottom: 25px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}


