html {
  scroll-behavior: smooth;
}

/* ==========================================================================
   Page loader
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #2BACE2, #3DB54A, #F99E1F, #2BACE2);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 6px));
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .loader-ring {
    animation: none;
  }
}
/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  color: #121212;
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 57px;
}
@media (min-width: 992px) {
  body {
    padding-top: 85px;
  }
}

h1, h2, h3, .navbar-brand {
  font-family: "Poppins", sans-serif;
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .section-padding {
    padding: 30px 0;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #03652e;
}
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.title-underline {
  width: 80px;
  height: 4px;
  background-color: #f5811f;
  margin: 0 auto;
}

.text-secondary {
  color: #f5811f !important;
}

.text-primary {
  color: #03652e !important;
}

.max-width-700 {
  max-width: 700px;
}

/* Shared full-bleed container used by every section (header, banner, mega menu, ...) */
.nav-shell {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  background-color: #121212;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #2BACE2 0%, #3DB54A 50%, #F99E1F 100%);
}
.site-header .navbar {
  padding: 5px 0;
}
.site-header .logo-img {
  height: 65px;
  width: auto;
  transition: height 0.35s ease;
}
@media (max-width: 575.98px) {
  .site-header .logo-img {
    height: 40px;
  }
}
.site-header.scrolled .logo-img {
  height: 48px;
}
@media (max-width: 575.98px) {
  .site-header.scrolled .logo-img {
    height: 34px;
  }
}
.site-header .navbar-toggler {
  border: none;
  padding: 4px 6px;
  box-shadow: none !important;
}
.site-header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.site-header .navbar-nav {
  gap: 2px;
}
@media (min-width: 1200px) {
  .site-header .navbar-nav {
    gap: 4px;
  }
}
.site-header .nav-item {
  position: relative;
}
@media (min-width: 992px) {
  .site-header .mega-dropdown {
    position: static;
  }
}
.site-header .nav-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 16px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-header .nav-link:hover, .site-header .nav-link.active {
  color: #ffffff;
}
.site-header .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-header .btn-contact svg {
  transition: transform 0.3s ease;
}
.site-header .btn-contact:hover {
  background-color: #f5811f;
  border-color: #f5811f;
  color: #121212;
}
.site-header .btn-contact:hover svg {
  transform: translate(2px, -2px);
}
@media (max-width: 991.98px) {
  .site-header .btn-contact {
    margin: 16px 0 0;
    align-self: flex-start;
  }
}

/* Mega menu (Services) */
.mega-toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  line-height: 0;
}
.mega-toggle-btn .caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.mega-toggle-btn[aria-expanded=true] .caret {
  transform: rotate(-135deg);
}

.mega-menu {
  background-color: #121212;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.4s ease;
}
.mega-menu .mega-menu-title {
  display: inline-block;
  color: #f5811f;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mega-menu .mega-menu-title:hover {
  color: #ffffff;
  text-decoration: none;
}
.mega-menu .mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu .mega-menu-list li {
  margin-bottom: 8px;
}
.mega-menu .mega-menu-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mega-menu .mega-menu-list a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
@media (min-width: 992px) {
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    pointer-events: none;
    z-index: 1020;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  }
}

.mega-dropdown.show-mega .mega-menu {
  max-height: 2000px;
  opacity: 1;
  padding: 20px 0 8px;
}

@media (min-width: 992px) {
  .mega-dropdown.show-mega .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    padding: 40px 0;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    max-height: calc(100vh - 57px);
    overflow-y: auto;
  }
}
/* ==========================================================================
   Scroll / load reveal system
   ========================================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ==========================================================================
   Banner
   ========================================================================== */
.banner {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 550px at 12% 15%, rgba(43, 172, 226, 0.28), transparent 60%), radial-gradient(ellipse 800px 550px at 88% 80%, rgba(43, 172, 226, 0.18), transparent 60%), linear-gradient(180deg, #0a0b0d 0%, #101319 55%, #0a0b0d 100%);
  padding: 40px 0 90px;
}
@media (max-width: 991.98px) {
  .banner {
    padding: 30px 0 60px;
  }
}
@media (max-width: 575.98px) {
  .banner {
    padding: 70px 0 50px;
  }
}

.banner-hero {
  min-height: 60vh;
  padding-bottom: 60px;
}
@media (max-width: 991.98px) {
  .banner-hero {
    min-height: auto;
    padding-bottom: 40px;
  }
}

.eyebrow {
  color: #f5811f;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.banner-title {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}
@media (max-width: 991.98px) {
  .banner-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 575.98px) {
  .banner-title {
    font-size: 1.9rem;
  }
}

.text-gradient-brand {
  background: linear-gradient(90deg, #2BACE2 0%, #3DB54A 50%, #F99E1F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.banner-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  color: #121212;
  background-color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-hero-cta:hover {
  background-color: #f5811f;
  color: #ffffff;
  transform: translateY(-3px);
}

.service-icon-cycle {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-cycle::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .service-icon-cycle {
    height: 300px;
    margin-top: 20px;
  }
}

.icon-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  animation: iconFadeCycle 18s ease-in-out infinite;
  animation-delay: calc(var(--slot, 0) * 3s);
}
.icon-slide .cycle-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 26px rgba(43, 172, 226, 0.25));
}
@media (max-width: 991.98px) {
  .icon-slide .cycle-icon {
    width: 150px;
    height: 150px;
  }
}
.icon-slide .cycle-icon path, .icon-slide .cycle-icon circle, .icon-slide .cycle-icon rect {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawIcon 18s linear infinite;
  animation-delay: calc(var(--slot, 0) * 3s);
}
.icon-slide .cycle-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}

.service-icon-cycle.single-icon .icon-slide {
  animation: none;
  opacity: 1;
}
.service-icon-cycle.single-icon .icon-slide .cycle-icon path, .service-icon-cycle.single-icon .icon-slide .cycle-icon circle, .service-icon-cycle.single-icon .icon-slide .cycle-icon rect {
  animation: iconDrawLoop 4s ease-in-out infinite;
}

@keyframes iconDrawLoop {
  0% {
    stroke-dashoffset: 1;
  }
  30% {
    stroke-dashoffset: 0;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1;
  }
}
@keyframes iconFadeCycle {
  0% {
    opacity: 0;
  }
  3.3% {
    opacity: 1;
  }
  13.3% {
    opacity: 1;
  }
  16.6% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes drawIcon {
  0% {
    stroke-dashoffset: 1;
  }
  8% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .icon-slide {
    animation: none;
    opacity: 0;
  }
  .icon-slide.is-default {
    opacity: 1;
  }
  .icon-slide .cycle-icon path,
  .icon-slide .cycle-icon circle,
  .icon-slide .cycle-icon rect {
    animation: none;
    stroke-dashoffset: 0;
  }
}
.emblem-stage {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.emblem-stage[data-animate] {
  opacity: 1;
  transform: none;
  transition: none;
}
@media (max-width: 991.98px) {
  .emblem-stage {
    margin-top: 40px;
  }
}

.emblem-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  animation: emblemFloat 5s ease-in-out infinite;
  animation-delay: 5s;
}
.emblem-svg polygon {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.emblem-svg .grp-top {
  transform: translateY(-90px);
}
.emblem-svg .grp-right {
  transform: translateX(90px);
}
.emblem-svg .grp-bottom {
  transform: translateY(90px);
}
.emblem-svg .grp-left {
  transform: translateX(-90px);
  filter: blur(14px);
}

.emblem-stage.in-view .emblem-svg .grp-top {
  animation: enterFromTop 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0s + var(--i, 0) * 40ms);
}
.emblem-stage.in-view .emblem-svg .grp-right {
  animation: enterFromRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.9s + var(--i, 0) * 40ms);
}
.emblem-stage.in-view .emblem-svg .grp-bottom {
  animation: enterFromBottom 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(1.8s + var(--i, 0) * 40ms);
}
.emblem-stage.in-view .emblem-svg .grp-left {
  animation: enterFromLeftBlur 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(2.7s + var(--i, 0) * 40ms);
}

@keyframes enterFromTop {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes enterFromRight {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes enterFromBottom {
  0% {
    opacity: 0;
    transform: translateY(90px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes enterFromLeftBlur {
  0% {
    opacity: 0;
    transform: translateX(-90px);
    filter: blur(14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
@keyframes emblemFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .emblem-svg {
    animation: none;
  }
  .emblem-svg polygon {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.banner-services {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.service-chip {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-chip .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(43, 172, 226, 0.12);
  color: #f5811f;
  margin-bottom: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-chip .service-icon svg {
  width: 22px;
  height: 22px;
}
.service-chip h6 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-chip p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.service-chip:hover {
  transform: translateY(-4px);
  color: inherit;
}
.service-chip:hover .service-icon {
  background: #f5811f;
  color: #ffffff;
}

/* ==========================================================================
   Who We Are
   ========================================================================== */
.who-we-are {
  position: relative;
  overflow: hidden;
  background-color: #121212;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .who-we-are {
    padding: 60px 0;
  }
}
.who-we-are .nav-shell {
  position: relative;
  z-index: 1;
}

.bg-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.bubble-blue {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(43, 172, 226, 0.35), transparent 70%);
}

.bubble-green {
  width: 320px;
  height: 320px;
  bottom: -140px;
  left: 32%;
  background: radial-gradient(circle, rgba(61, 181, 74, 0.28), transparent 70%);
}

.bubble-orange {
  width: 340px;
  height: 340px;
  top: -80px;
  right: -100px;
  background: radial-gradient(circle, rgba(249, 158, 31, 0.3), transparent 70%);
}

.section-heading {
  background: linear-gradient(90deg, #2BACE2 0%, #3DB54A 50%, #F99E1F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .section-heading {
    font-size: 1.7rem;
  }
}

.who-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.who-text:last-child {
  margin-bottom: 0;
}

.who-stat {
  margin-bottom: 28px;
}
.who-stat:last-child {
  margin-bottom: 0;
}
.who-stat h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #2BACE2, #F99E1F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.who-stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Recent Projects
   ========================================================================== */
.recent-projects-section {
  position: relative;
  background-color: #121212;
  padding: 100px 0 80px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .recent-projects-section {
    padding: 60px 0 50px;
  }
}
.recent-projects-section .nav-shell {
  margin-bottom: 48px;
}

.recent-projects-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .recent-projects-intro {
    margin-bottom: 24px;
  }
}

.projects-swiper {
  position: relative;
  padding: 0 5% 60px;
}
.projects-swiper .swiper-wrapper {
  align-items: stretch;
}
.projects-swiper .swiper-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.projects-swiper.in-view .swiper-slide {
  opacity: 1;
  transform: translateY(0);
}
.projects-swiper .swiper-slide:nth-child(1) {
  transition-delay: 0ms;
}
.projects-swiper .swiper-slide:nth-child(2) {
  transition-delay: 90ms;
}
.projects-swiper .swiper-slide:nth-child(3) {
  transition-delay: 180ms;
}
.projects-swiper .swiper-slide:nth-child(4) {
  transition-delay: 270ms;
}
.projects-swiper .swiper-slide:nth-child(5) {
  transition-delay: 360ms;
}
.projects-swiper .swiper-slide:nth-child(6) {
  transition-delay: 450ms;
}
.projects-swiper .swiper-slide:nth-child(7) {
  transition-delay: 540ms;
}
.projects-swiper .swiper-slide:nth-child(8) {
  transition-delay: 630ms;
}
.projects-swiper .swiper-slide:nth-child(9) {
  transition-delay: 720ms;
}
.projects-swiper .swiper-slide:nth-child(10) {
  transition-delay: 810ms;
}

.project-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.project-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-card:hover img {
  transform: scale(1.06);
}
.project-card .project-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
.project-card .project-card-overlay h6 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.project-card .project-card-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

.projects-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.projects-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
}
.projects-swiper .swiper-button-next,
.projects-swiper .swiper-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.projects-swiper .swiper-button-next::after,
.projects-swiper .swiper-button-prev::after {
  font-size: 16px;
}
.projects-swiper .swiper-button-next:hover,
.projects-swiper .swiper-button-prev:hover {
  background: #f5811f;
}
@media (max-width: 991.98px) {
  .projects-swiper .swiper-button-next,
  .projects-swiper .swiper-button-prev {
    display: none;
  }
}

/* ==========================================================================
   Startup CTA
   ========================================================================== */
.home_startup {
  background-color: #121212;
  overflow: hidden;
}

.startup-image {
  position: relative;
  min-height: 340px;
}
.startup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: grayscale(55%) contrast(1.05);
  border-radius: 0 90px 0 0;
}
@media (max-width: 991.98px) {
  .startup-image img {
    border-radius: 0 48px 0 0;
  }
}
@media (max-width: 991.98px) {
  .startup-image {
    min-height: 280px;
  }
}

.startup-content {
  display: flex;
  align-items: center;
  padding: 80px 60px;
}
@media (max-width: 991.98px) {
  .startup-content {
    padding: 50px 24px;
  }
}

.startup-content-inner {
  max-width: 540px;
}

.startup-heading {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width: 991.98px) {
  .startup-heading {
    font-size: 2rem;
  }
}

.startup-subheading {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.startup-text {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 18px;
}

.startup-why {
  color: #f5811f;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0 14px;
}

.startup-checklist {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.startup-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.startup-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2BACE2, #3DB54A, #F99E1F);
}
.startup-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

/* ==========================================================================
   Popular Services
   ========================================================================== */
.popular-services-section {
  background-color: #121212;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .popular-services-section {
    padding: 60px 0;
  }
}

.popular-service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.popular-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.popular-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: var(--accent, #f5811f);
  color: #ffffff;
  flex-shrink: 0;
}
.popular-service-icon svg {
  width: 26px;
  height: 26px;
}
.popular-service-card h6 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.popular-service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-service-card .popular-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent, #f5811f);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
}
.popular-service-card .popular-service-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}
.popular-service-card .popular-service-link:hover span {
  transform: translateX(4px);
}

/* ==========================================================================
   Bottom Services (Why Choose Us)
   ========================================================================== */
.bottom-services-section {
  background-color: #121212;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .bottom-services-section {
    padding: 60px 0;
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent, #f5811f);
  border-radius: 10px;
  padding: 32px 30px;
  margin-bottom: 28px;
}
.why-card:last-child {
  margin-bottom: 0;
}
.why-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
@media (max-width: 991.98px) {
  .why-card h3 {
    font-size: 1.2rem;
  }
}
.why-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
}
.why-card.why-card-intro h3 {
  color: var(--accent, #f5811f);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background-color: #121212;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 60px 0;
  }
}

.testimonials-swiper {
  padding: 4px 5% 60px;
}
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-swiper.in-view .swiper-slide {
  opacity: 1;
  transform: translateY(0);
}
.testimonials-swiper .swiper-slide:nth-child(1) {
  transition-delay: 0ms;
}
.testimonials-swiper .swiper-slide:nth-child(2) {
  transition-delay: 80ms;
}
.testimonials-swiper .swiper-slide:nth-child(3) {
  transition-delay: 160ms;
}
.testimonials-swiper .swiper-slide:nth-child(4) {
  transition-delay: 240ms;
}
.testimonials-swiper .swiper-slide:nth-child(5) {
  transition-delay: 320ms;
}
.testimonials-swiper .swiper-slide:nth-child(6) {
  transition-delay: 400ms;
}
.testimonials-swiper .swiper-slide:nth-child(7) {
  transition-delay: 480ms;
}
.testimonials-swiper .swiper-slide:nth-child(8) {
  transition-delay: 560ms;
}
.testimonials-swiper .swiper-slide:nth-child(9) {
  transition-delay: 640ms;
}
.testimonials-swiper .swiper-slide:nth-child(10) {
  transition-delay: 720ms;
}
.testimonials-swiper .swiper-slide:nth-child(11) {
  transition-delay: 800ms;
}
.testimonials-swiper .swiper-slide:nth-child(12) {
  transition-delay: 880ms;
}
.testimonials-swiper .swiper-slide:nth-child(13) {
  transition-delay: 960ms;
}
.testimonials-swiper .swiper-slide:nth-child(14) {
  transition-delay: 1040ms;
}
.testimonials-swiper .swiper-slide:nth-child(15) {
  transition-delay: 1120ms;
}
.testimonials-swiper .swiper-slide:nth-child(16) {
  transition-delay: 1200ms;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonial-card:hover {
  border-color: var(--accent, #f5811f);
  transform: translateY(-4px);
}
.testimonial-card .testimonial-quote-icon {
  color: var(--accent, #f5811f);
  opacity: 0.6;
  margin-bottom: 14px;
}
.testimonial-card h6 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.testimonial-card .testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testimonial-card .testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--accent, #f5811f);
}
.testimonial-card .testimonial-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial-card .testimonial-author .testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent, #f5811f);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-card .testimonial-author .testimonial-author-info h6 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px;
}
.testimonial-card .testimonial-author .testimonial-author-info span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.testimonials-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
}
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #ffffff;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 16px;
}
.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: #f5811f;
}
@media (max-width: 991.98px) {
  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    display: none;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  position: relative;
  z-index: 1;
  padding: 90px 0 50px;
}
@media (max-width: 991.98px) {
  .footer-top {
    padding: 60px 0 30px;
  }
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-socials a svg {
  width: 16px;
  height: 16px;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, #2BACE2, #3DB54A, #F99E1F);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-links a:hover {
  color: #f5811f;
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #f5811f;
}

.footer-cta {
  display: inline-flex;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Floating actions (WhatsApp + back to top)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  z-index: 1040;
  animation: whatsappPulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  color: #ffffff;
  transform: scale(1.08);
}
@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, #2BACE2, #3DB54A, #F99E1F);
}
@media (max-width: 575.98px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}
/* ==========================================================================
   Founder spotlight
   ========================================================================== */
.founder-section {
  position: relative;
  overflow: hidden;
  background-color: #121212;
  padding: 100px 0;
}
@media (max-width: 991.98px) {
  .founder-section {
    padding: 60px 0;
  }
}
.founder-section .nav-shell {
  position: relative;
  z-index: 1;
}

.founder-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2BACE2, #3DB54A, #F99E1F);
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .founder-avatar {
    width: 120px;
    height: 120px;
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}

.founder-role {
  color: #f5811f;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.founder-bio {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 24px;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.founder-link:hover {
  background: #f5811f;
  border-color: #f5811f;
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-step {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: #f5811f;
}
.process-step .process-step-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.process-step h6 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Audience pills
   ========================================================================== */
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.audience-pill:hover {
  border-color: #f5811f;
  color: #ffffff;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.faq-item:hover {
  border-color: var(--accent, #f5811f);
}
.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .faq-question {
    padding: 20px 22px;
    font-size: 0.98rem;
  }
}

.faq-question .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent, #f5811f);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-question .faq-icon svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-question[aria-expanded=true] .faq-icon {
  background: var(--accent, #f5811f);
  border-color: var(--accent, #f5811f);
  color: #ffffff;
}

.faq-question[aria-expanded=true] .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer-body {
  padding: 0 28px 26px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
@media (max-width: 991.98px) {
  .faq-answer-body {
    padding: 0 22px 22px;
  }
}

/* ==========================================================================
   Tutorial & Educational Content page
   ========================================================================== */
.tutorial-search-form {
  position: relative;
  margin-bottom: 34px;
}
.tutorial-search-icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  display: flex;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.tutorial-search-icon svg {
  width: 18px;
  height: 18px;
}
.tutorial-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 16px 22px 16px 54px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tutorial-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.tutorial-search-input:focus {
  outline: none;
  border-color: #f5811f;
  background: rgba(255, 255, 255, 0.06);
}

.tutorial-stats .who-stat {
  margin-bottom: 0;
}
.tutorial-stats .who-stat h3 {
  font-size: 2rem;
}

.tutorial-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.tutorial-filter-btn.is-active {
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
  border-color: transparent;
  color: #121212;
  font-weight: 600;
}

.tutorial-card-col.is-hidden {
  display: none;
}

.tutorial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tutorial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.tutorial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.tutorial-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent, #f5811f);
  color: #ffffff;
  flex-shrink: 0;
}
.tutorial-card-icon svg {
  width: 22px;
  height: 22px;
}
.tutorial-category-badge {
  color: var(--accent, #f5811f);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tutorial-card h6 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.tutorial-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.tutorial-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.tutorial-level-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 500;
}
.tutorial-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.tutorial-duration svg {
  width: 14px;
  height: 14px;
}
.tutorial-card .popular-service-link {
  margin-top: auto;
}

.tutorial-no-results {
  text-align: center;
  padding: 60px 20px 20px;
}
.tutorial-no-results.is-hidden {
  display: none;
}
.tutorial-no-results-headline {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.tutorial-no-results .startup-checklist {
  max-width: 360px;
  margin: 24px auto 0;
  text-align: left;
}

.instructor-card {
  text-align: left;
}
.instructor-avatar {
  width: 64px;
  height: 64px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.instructor-expertise {
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.newsletter-input {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 14px 24px;
  color: #ffffff;
  font-size: 0.9rem;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-input:focus {
  outline: none;
  border-color: #f5811f;
  background: rgba(255, 255, 255, 0.06);
}
.newsletter-form .btn-hero-cta {
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   Enquiry form (services pages, reusable)
   ========================================================================== */
.enquiry-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.enquiry-input,
.enquiry-select,
.enquiry-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 0.95rem;
}
.enquiry-input::placeholder,
.enquiry-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.enquiry-input:focus,
.enquiry-select:focus,
.enquiry-textarea:focus {
  outline: none;
  border-color: #f5811f;
  background: rgba(255, 255, 255, 0.06);
}
.enquiry-select option {
  color: #212529;
  background: #ffffff;
}
.enquiry-textarea {
  resize: vertical;
  min-height: 120px;
}
.enquiry-form .btn-hero-cta {
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   Quote callouts (Corporate & Executive Interviews page, reusable)
   ========================================================================== */
.quote-callout {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent, #f5811f);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 0;
}
.quote-callout .quote-icon {
  display: inline-flex;
  color: var(--accent, #f5811f);
  opacity: 0.7;
  margin-bottom: 10px;
}
.quote-callout .quote-icon svg {
  width: 24px;
  height: 24px;
}
.quote-callout p {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.quote-callout .quote-attribution {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
}

.tutorial-card .quote-callout {
  margin: 4px 0 18px;
  padding: 16px 18px;
}
.tutorial-card .quote-callout p {
  font-size: 0.85rem;
}

.tutorial-card-takeaway {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.tutorial-card-takeaway strong {
  color: #ffffff;
}

/* ==========================================================================
   Live Stream Production page
   ========================================================================== */
.workflow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent, #f5811f);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 30px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.pricing-card-featured {
  border-color: var(--accent, #f5811f);
  background: linear-gradient(180deg, rgba(249, 158, 31, 0.1), rgba(255, 255, 255, 0.03));
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
  color: #121212;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-name {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.pricing-card-price .amount {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2BACE2, #3DB54A, #F99E1F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pricing-card-price .period {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.pricing-card-duration {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-bottom: 22px;
}
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.pricing-card-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent, #f5811f);
}
.pricing-card-bestfor {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}
.pricing-card-bestfor strong {
  color: #ffffff;
}
.pricing-card .btn-hero-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.addon-list {
  display: flex;
  flex-direction: column;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
.addon-row:last-child {
  border-bottom: none;
}
.addon-row .addon-name {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.addon-row .addon-price {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.project-info-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project-info-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.project-card-header {
  background: var(--accent, #f5811f);
  padding: 22px 26px;
}
.project-card-header h3 {
  color: #121212;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.project-card-body {
  padding: 26px;
}
.project-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.project-stat .value {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.project-stat .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Portfolio page
   ========================================================================== */
.portfolio-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.portfolio-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.portfolio-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-card-media img {
  transform: scale(1.06);
}
.portfolio-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 22px 24px;
}
.portfolio-card-work {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--accent, rgba(255, 255, 255, 0.15));
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--accent, rgba(255, 255, 255, 0.75));
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.portfolio-card-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio-card-client {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin: 0;
}

.quote-card-author h6 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px;
}
.quote-card-author span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.client-logo-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.client-logo-item:hover {
  border-color: var(--accent, #f5811f);
  transform: translateY(-4px);
}
.client-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--accent, #f5811f);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.client-logo-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* ==========================================================================
   Events page
   ========================================================================== */
.event-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.event-card:hover {
  border-color: var(--accent, #f5811f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.event-card-media {
  position: relative;
  height: 200px;
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-card-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  background: var(--accent, #f5811f);
  color: #121212;
  border-radius: 10px;
  padding: 8px 14px;
}
.event-card-date-badge .event-day {
  font-size: 1.3rem;
  font-weight: 800;
}
.event-card-date-badge .event-month {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.event-card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
}
.event-card-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.event-card-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.event-card-meta svg {
  width: 16px;
  height: 16px;
  color: var(--accent, #f5811f);
  flex-shrink: 0;
}
.event-card-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.event-card-body .btn-hero-cta {
  align-self: flex-start;
}
@media (max-width: 991.98px) {
  .event-card-media {
    height: 220px;
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-value {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
a.contact-info-value:hover {
  color: var(--accent, #f5811f);
}
.contact-form-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px;
}
@media (max-width: 575.98px) {
  .contact-form-card {
    padding: 26px 22px;
  }
}
.form-success-message {
  text-align: center;
  padding: 30px 10px;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(61, 181, 74, 0.15);
  color: #3db54a;
  margin-bottom: 20px;
}
.form-success-icon svg {
  width: 30px;
  height: 30px;
}
.form-success-message h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.form-success-message p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.form-error-message {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.contact-map-wrap {
  height: 100%;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: invert(92%) hue-rotate(180deg) contrast(90%);
}
/*# sourceMappingURL=style.css.map */