@charset "UTF-8";
/* src/scss/style.scss */
/* 1. Config */
:root {
  /* -- Color Palette -- */
  --bg-dark: #1b1b21;
  --bg-white: #ffffff;
  --bg-card-box: #F5F7FA;
  --bg-card: rgba(94, 35, 9, 0.25);
  --primary-glow: #FF6B00;
  --text-main: #ffffff;
  --text-muted: #53535c;
  --text-dark: #1b1b21;
  --text-white: #ffffff;
  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  /* -- Spacing & Radius -- */
  --glass-border: 1px solid rgba(255, 176, 136, 0.15);
  --radius-xl: 16px;
}

/* 2. Global Resets */
html {
  scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5 {
  font-weight: 400;
}

a {
  text-decoration: none;
}

.an-mb-15 {
  margin-bottom: 15px;
}

/* 3. Layout */
/* =========================================
   BUTTONS
   ========================================= */
.button {
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.3s ease;
  border: none;
}

.btn-primary {
  background: #FF6B00;
  color: #ffffff;
  padding: 12px 25px !important;
  font-size: 0.875rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #FF6B00;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4588235294);
}

.btn-glass {
  background: var(--bg-dark);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  transform: translateY(-2px);
  background: #000000;
  border-color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   NAVBAR & MENU
   ========================================= */
.logo-premium {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.logo-premium:hover {
  opacity: 0.9;
}
.logo-premium svg {
  filter: drop-shadow(0 0 10px rgba(255, 176, 136, 0.4));
}
.logo-premium img.logo-image {
  height: 36px;
  width: 36px;
}
.logo-premium .brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}
.logo-premium .text-white {
  color: var(--text-white) !important;
}
.logo-premium .font-bold {
  font-weight: 600;
}
.logo-premium .brand-highlight {
  font-weight: 400;
  color: #FF6B00;
}

.navbar {
  position: fixed;
  top: 10px;
  width: 100%;
  height: auto;
  padding: 10px 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgb(18, 18, 18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 990px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}
.navbar .logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  z-index: 102;
}
.navbar .logo a {
  color: #fff;
  text-decoration: none;
}
.navbar .logo a img {
  position: relative;
  height: auto;
  width: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar .logo .highlight {
  background: linear-gradient(90deg, #FF6B00, #002366);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.navbar ul.nav-menu {
  margin: 0;
  padding: 0;
}
.navbar ul.nav-menu .mobile-buttons {
  display: none;
}
.navbar ul.nav-menu li {
  list-style: none;
  position: relative;
}
.navbar ul.nav-menu li > a {
  text-decoration: none;
  color: #cccccc;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar ul.nav-menu li > a.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar ul.nav-menu li > a .chevron {
  transition: transform 0.3s ease;
  display: flex;
  position: relative;
  margin-top: 4px;
}
.navbar ul.nav-menu li > a .chevron img {
  position: relative;
  width: 16px;
  height: auto;
}
.navbar .nav-buttons {
  display: flex;
  gap: 15px;
  z-index: 2;
}
.navbar .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 102;
}
.navbar .hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* --- DESKTOP MENU LOGIC (min 1025px) --- */
@media (min-width: 1025px) {
  .navbar ul.nav-menu .mobile-buttons {
    display: none !important;
  }
  .navbar ul.nav-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .navbar ul.nav-menu li > a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .navbar .mega-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-20%, 15px);
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1490196078), #20140e);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(50px);
    background-color: #030100;
  }
  .navbar .mega-menu .menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .navbar .mega-menu .menu-item:hover .title {
    color: #fff;
  }
}
/* --- MOBILE MENU LOGIC (max 1024px) --- */
@media (max-width: 1024px) {
  .navbar {
    border-radius: 0px;
    padding: 10px 20px;
    top: 0px;
  }
  .navbar .nav-buttons, .navbar .desktop-buttons {
    display: none !important;
  }
  .navbar .hamburger {
    display: flex;
  }
  .navbar.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .navbar.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .navbar ul.nav-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 100;
  }
  .navbar ul.nav-menu.active {
    right: 0;
  }
  .navbar ul.nav-menu .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .navbar ul.nav-menu .mobile-buttons button, .navbar ul.nav-menu .mobile-buttons > a {
    width: 100%;
    padding: 15px;
    justify-content: center;
  }
  .navbar ul.nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar ul.nav-menu li > a {
    font-size: 0.875rem;
    padding: 20px 15px;
    justify-content: space-between;
    width: 100%;
  }
  .navbar ul.nav-menu li > a:hover {
    background: transparent;
  }
  .navbar ul.nav-menu li.dropdown-open > a {
    color: #fff;
  }
  .navbar ul.nav-menu li.dropdown-open > a .chevron {
    transform: rotate(180deg);
  }
  .navbar ul.nav-menu li.dropdown-open .mega-menu {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
  }
  .navbar ul.nav-menu .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 10px 10px;
    display: none;
    grid-template-columns: 1fr;
  }
  .navbar ul.nav-menu .mega-menu::before {
    display: none;
  }
  .navbar ul.nav-menu .mega-menu .menu-item {
    padding: 10px 0;
  }
  .navbar ul.nav-menu .mega-menu .menu-item .icon-box {
    background: transparent;
    border: none;
    font-size: 1.3rem;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--bg-white);
  overflow: hidden;
  perspective: 1000px;
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    height: auto;
  }
}
.hero:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 60vh;
  background: linear-gradient(to bottom, #ffffff, #fff0e9);
}
.hero .hero-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  opacity: 0.15;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.hero .hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#fbdbcc 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 100%, black 0%, transparent 70%);
  opacity: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .hero .hero-content {
    margin-bottom: 0px;
  }
}
.hero .hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 1.75rem;
    padding: 0px 20px;
    line-height: 1.3;
  }
}
.hero .hero-content h1 .highlight {
  background: linear-gradient(to right, var(--primary-glow), var(--secondary-glow));
  color: transparent;
}
.hero .hero-content h1 .typing-text {
  color: var(--primary-glow);
  font-weight: 400;
}
.hero .hero-content .subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding: 0px 20px;
}
.hero .hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255, 176, 136, 0.1);
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.1);
}
.hero .hero-content .cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}
.hero .hero-content .trust-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  animation: fadeIn 1s ease-out 0.5s backwards;
}
.hero .hero-content .trust-signal .avatars {
  display: flex;
}
.hero .hero-content .trust-signal .avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  margin-left: -10px;
}
.hero .hero-content .trust-signal .avatars img:first-child {
  margin-left: 0;
}
.hero .hero-content .trust-signal span {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* =========================================
   HERO VISUAL: BIG 3D DASHBOARD
   ========================================= */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  z-index: 5;
  perspective: 1200px; /* Deep 3D perspective */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Mobile: Flatten */
}
@media (max-width: 900px) {
  .hero-visual {
    height: 450px;
    transform: scale(0.8);
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .hero-visual {
    height: auto;
    transform: none;
    perspective: none;
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
  }
}

.dashboard-3d-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* The Main Tilt - Adjust angles here */
  transform: rotateX(10deg) rotateY(-12deg) rotateZ(2deg);
  transition: transform 0.3s ease-out;
  animation: floatDashboard 8s ease-in-out infinite;
}
@media (max-width: 600px) {
  .dashboard-3d-wrapper {
    transform: none; /* No tilt on mobile */
    animation: none;
  }
}

/* --- MAIN DASHBOARD INTERFACE --- */
.dashboard-interface {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 85%;
  background: #121212;
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset; /* Inner Light */
  display: flex;
  overflow: hidden;
}
@media (max-width: 600px) {
  .dashboard-interface {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    border: 0px;
  }
}

/* SIDEBAR */
.dash-sidebar {
  width: 80px;
  background: #121212;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0;
}
.dash-sidebar .logo-mark {
  margin-bottom: 40px;
  transform: scale(1.2);
}
.dash-sidebar .nav-icons {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  align-items: center;
}
.dash-sidebar .nav-icons .icon {
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.dash-sidebar .nav-icons .icon:hover {
  color: #FF6B00;
}
.dash-sidebar .nav-icons .icon.active {
  color: #FF6B00;
  background: rgba(255, 107, 0, 0.05);
  border-right: 3px solid #FF6B00;
}
.dash-sidebar .user-avatar-small {
  margin-top: auto;
  width: 36px;
  height: 36px;
  background: #eee;
  border-radius: 50%;
}

/* MAIN CONTENT */
.dash-main {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .dash-main {
    padding: 20px;
  }
}
.dash-main .dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-main .dash-header .header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 0.9rem;
  background: #f5f5f7;
  padding: 10px 20px;
  border-radius: 30px;
  width: 300px;
}
.dash-main .dash-header .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.dash-main .dash-header .header-actions .bell-icon {
  position: relative;
  color: #fff;
  cursor: pointer;
}
.dash-main .dash-header .header-actions .bell-icon .dot {
  position: absolute;
  top: -2px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #FF6B00;
  border-radius: 50%;
}
.dash-main .dash-header .header-actions .btn-upgrade {
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}
@media (max-width: 600px) {
  .dash-main .dash-header {
    display: none;
  }
}
.dash-main {
  /* STATS GRID */
}
.dash-main .dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .dash-main .dash-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.dash-main .dash-stats-grid .stat-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.dash-main .dash-stats-grid .stat-box .label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-main .dash-stats-grid .stat-box small {
  font-size: 1.6rem;
  margin: 5px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: #111;
}
.dash-main .dash-stats-grid .stat-box .trend {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dash-main .dash-stats-grid .stat-box .trend.up {
  color: #22c55e;
}
.dash-main .dash-stats-grid .stat-box .trend.down {
  color: #FF6B00;
}
.dash-main {
  /* CHART AREA */
}
.dash-main .dash-chart-section {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
@media (max-width: 600px) {
  .dash-main .dash-chart-section {
    display: none;
  }
}
.dash-main .dash-chart-section .chart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.dash-main .dash-chart-section .chart-header h4 {
  font-size: 1rem;
  color: #333;
}
.dash-main .dash-chart-section .chart-header .chart-tabs {
  background: #f5f5f7;
  padding: 4px;
  border-radius: 8px;
  display: flex;
  gap: 5px;
}
.dash-main .dash-chart-section .chart-header .chart-tabs span {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.dash-main .dash-chart-section .chart-header .chart-tabs span.active {
  background: #fff;
  shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #000;
}
.dash-main .dash-chart-section .css-bar-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.dash-main .dash-chart-section .css-bar-chart .bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}
.dash-main .dash-chart-section .css-bar-chart .bar-col .fill {
  width: 100%;
  background: linear-gradient(to top, #FF6B00, #ff9e40);
  border-radius: 6px;
  opacity: 0.8;
  transition: height 1s ease;
}
.dash-main .dash-chart-section .css-bar-chart .bar-col .fill:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
}

/* --- FLOATING WIDGETS (PARALLAX EFFECT) --- */
.float-widget {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  /* Pop-out Effect */
  transform: translateZ(60px);
  animation: floatWidget 6s ease-in-out infinite;
}
@media (max-width: 600px) {
  .float-widget {
    display: none;
  }
}
.float-widget {
  /* Specific Widgets */
}
.float-widget.widget-growth {
  top: 20%;
  left: -20px;
}
.float-widget.widget-growth .icon-circle {
  width: 40px;
  height: 40px;
  background: #e6fffa;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
.float-widget.widget-growth .text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}
.float-widget.widget-growth .text .caption {
  font-size: 0.7rem;
  color: #888;
}
.float-widget.widget-growth .text strong {
  color: #22c55e;
}
.float-widget.widget-users {
  bottom: 25%;
  right: -30px;
  animation-delay: 2s;
}
.float-widget.widget-users .user-stack {
  display: flex;
}
.float-widget.widget-users .user-stack img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.float-widget.widget-users .user-stack img:first-child {
  margin: 0;
}
.float-widget.widget-users .text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}
.float-widget.widget-users .text .caption {
  font-size: 0.7rem;
  color: #888;
}

/* --- ANIMATIONS --- */
@keyframes floatDashboard {
  0%, 100% {
    transform: rotateX(10deg) rotateY(-12deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: rotateX(10deg) rotateY(-12deg) rotateZ(2deg) translateY(-20px);
  }
}
@keyframes floatWidget {
  0%, 100% {
    transform: translateZ(60px) translateY(0);
  }
  50% {
    transform: translateZ(60px) translateY(-10px);
  }
}
.devices-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* --- SHARED GLASS DEVICE STYLES --- */
.glass-device {
  position: absolute;
  background: rgba(255, 255, 255, 0.65); /* More opaque for visibility */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgb(231, 231, 231);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.4) inset; /* Inner rim */
  border-radius: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* --- 1. MOBILE STYLE (Left) --- */
.glass-device.mobile {
  width: 200px;
  height: 400px;
  left: 5%;
  top: 10%;
  bottom: 0;
  z-index: 10; /* In front */
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  /* 3D Position */
  transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
  animation: floatMobile 6s ease-in-out infinite;
}
@media (max-width: 600px) {
  .glass-device.mobile {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none; /* Flatten on mobile */
    width: 240px;
  }
}
.glass-device.mobile .device-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 20;
}
.glass-device.mobile .screen-content {
  padding: 30px 15px 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.glass-device.mobile .app-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 20px;
}
.glass-device.mobile .app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.glass-device.mobile .app-brand .font-bold {
  font-weight: 700;
  font-family: var(--font-heading, sans-serif);
  color: #000;
}
.glass-device.mobile .app-card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
.glass-device.mobile .app-card span {
  font-size: 0.7rem;
  color: #888;
}
.glass-device.mobile .app-card h4 {
  margin: 5px 0 10px;
  font-size: 0.95rem;
}
.glass-device.mobile .app-card .status-pill {
  background: #e6fffa;
  color: #22c55e;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
}
.glass-device.mobile .app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.glass-device.mobile .app-grid .mini-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.glass-device.mobile .app-nav-bar {
  margin-top: auto;
  background: #000;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  color: #555;
}
.glass-device.mobile .app-nav-bar .nav-item {
  color: #555;
}
.glass-device.mobile .app-nav-bar .nav-item.active {
  color: #fff;
}

/* --- 2. TABLET STYLE (Right) --- */
.glass-device.tablet {
  width: 600px;
  height: 320px;
  right: 0%;
  top: 10%;
  z-index: 5; /* Behind mobile */
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  /* 3D Position */
  transform: rotateY(0deg) rotateX(0deg) translateZ(0px);
  animation: floatTablet 7s ease-in-out infinite 1s; /* Delay for async float */
}
@media (max-width: 600px) {
  .glass-device.tablet {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%; /* Full width on mobile */
    height: auto;
  }
}
.glass-device.tablet .tablet-sidebar {
  width: 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: rgba(245, 245, 245, 0.5);
}
.glass-device.tablet .tablet-sidebar .dots-control {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.glass-device.tablet .tablet-sidebar .dots-control span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
}
.glass-device.tablet .tablet-sidebar .dots-control span:first-child {
  background: #ff5f56;
}
.glass-device.tablet .tablet-sidebar .sidebar-icon {
  color: #999;
  cursor: pointer;
}
.glass-device.tablet .tablet-sidebar .sidebar-icon.active {
  color: #FF6B00;
}
.glass-device.tablet .tablet-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.glass-device.tablet .tablet-content .tablet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.glass-device.tablet .tablet-content .tablet-header .text-group {
  display: flex;
  flex-direction: column;
}
.glass-device.tablet .tablet-content .tablet-header .greeting {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.glass-device.tablet .tablet-content .tablet-header .brand-title {
  font-size: 1.2rem;
  font-family: var(--font-heading, sans-serif);
  margin: 0;
}
.glass-device.tablet .tablet-content .tablet-header .avatar-circle {
  width: 32px;
  height: 32px;
  background: #ddd;
  border-radius: 50%;
}
.glass-device.tablet .tablet-content .tablet-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.glass-device.tablet .tablet-content .tablet-card.main-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.glass-device.tablet .tablet-content .tablet-card.main-stat .card-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.glass-device.tablet .tablet-content .tablet-card.main-stat .badge-success {
  color: #22c55e;
  background: #e6fffa;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
}
.glass-device.tablet .tablet-content .tablet-row {
  display: flex;
  gap: 15px;
}
.glass-device.tablet .tablet-content .tablet-row .tablet-card.small {
  flex: 1;
  padding: 10px 15px;
}
.glass-device.tablet .tablet-content .tablet-row .tablet-card.small .label {
  font-size: 0.7rem;
  color: #888;
  display: block;
  margin-bottom: 5px;
}
.glass-device.tablet .tablet-content .tablet-row .tablet-card.small .progress-line {
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}
.glass-device.tablet .tablet-content .tablet-row .tablet-card.small .progress-line .fill {
  height: 100%;
  background: #000;
}
.glass-device.tablet {
  /* CSS CHART BARS */
}
.glass-device.tablet .css-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  gap: 8px;
}
.glass-device.tablet .css-chart .chart-bar {
  flex: 1;
  background: #f0f0f0;
  border-radius: 4px;
  transition: height 0.5s;
}
.glass-device.tablet .css-chart .chart-bar.active {
  background: linear-gradient(to top, #FF6B00, #ff9e40);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}
.glass-device.tablet .float-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: bounceBadge 3s infinite;
}
.glass-device.tablet .float-badge i {
  color: #FF6B00;
}
@media (max-width: 600px) {
  .glass-device.tablet .float-badge {
    display: none;
  }
}

/* --- ANIMATIONS --- */
@keyframes floatMobile {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px) translateY(0);
  }
  50% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px) translateY(-15px);
  }
}
@keyframes floatTablet {
  0%, 100% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px) translateY(0);
  }
  50% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0px) translateY(-15px);
  }
}
@keyframes bounceBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0px);
  }
}
@keyframes floatInterface {
  0%, 100% {
    transform: rotateX(0deg) translateY(0);
  }
  50% {
    transform: rotateX(0deg) translateY(0px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0px);
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-visual {
    transform: none !important;
    animation: none !important;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .hero-visual .glass-interface {
    border-radius: 12px;
    height: 300px;
  }
  .hero-visual .float-card {
    display: none;
  }
}
/* =========================================
   FLUENCE & FEATURES
   ========================================= */
.fluence-section {
  padding: 80px 20px 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fluence-section {
    padding: 60px 20px;
  }
}

.fluence-header {
  text-align: center;
  max-width: 500px;
  margin: 0px auto 50px auto;
}
.fluence-header .badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  background: rgba(255, 107, 0, 0.1);
}
.fluence-header .hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--text-dark);
}
@media screen and (max-width: 1024px) {
  .fluence-header .hero-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .fluence-header .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.fluence-header .hero-desc {
  font-size: 0.875rem;
  color: #53535c;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 auto;
}

.feature-card {
  background-color: #fff0e9;
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
@media screen and (max-width: 1024px) {
  .feature-card {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }
}
.feature-card .card-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .feature-card .card-content {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .feature-card .card-content {
    padding: 30px 20px;
  }
}
.feature-card .card-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .feature-card .card-content h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-card .card-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.feature-card .card-content .card-desc {
  font-size: 0.875rem;
  color: #53535c;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .feature-card .card-content .card-desc {
    margin-bottom: 20px;
  }
}
.feature-card .card-content .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-card .card-content .feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}
.feature-card .card-content .feature-list .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
  flex-shrink: 0;
  border: 1px solid #ffe6d4;
  border-radius: 8px;
}
.feature-card .card-content .feature-list .icon-box svg {
  width: 22px;
  height: 22px;
}
.feature-card .card-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .feature-card .card-visual {
    min-height: 400px;
    height: auto;
    padding: 50px 0px;
  }
}
.feature-card .card-visual .glow-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #FF6B00;
  filter: blur(80px);
  opacity: 0.3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-card .card-visual .glass-mockup {
  width: 70%;
  height: 60%;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  transition: transform 0.5s ease;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .feature-card .card-visual .glass-mockup {
    width: 85%;
    transform: perspective(1000px) rotateY(0) rotateX(0);
  }
}
.feature-card .card-visual:hover .glass-mockup {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
  font-family: var(--font-heading);
}
.mockup-header span {
  font-size: 0.875rem;
  color: #a1a1a1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 100px;
  margin: 20px 0;
}
.mockup-chart .bar {
  flex: 1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), #FF6B00);
  border-radius: 4px;
  opacity: 0.8;
  transition: height 0.3s ease;
}
.mockup-chart .bar:hover {
  opacity: 1;
}

.mockup-footer span {
  font-size: 0.875rem;
  color: #a1a1a1;
}

/* =========================================
   PARTNERS MARQUEE SECTION
   ========================================= */
.partners-section {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  overflow: hidden; /* Prevent horizontal scrollbar on page */
}
.partners-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.partners-section {
  /* The Window (Visible Area) */
}
.partners-section .logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-section {
  /* The Moving Track */
}
.partners-section .marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content; /* Force single line */
  gap: 60px; /* Space between logos */
  animation: scrollPartners 35s linear infinite;
  /* Pause on hover for interaction */
}
.partners-section .marquee-track:hover {
  animation-play-state: paused;
}
.partners-section {
  /* Individual Logo Items */
}
.partners-section .partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #b0b0b0; /* Start Gray */
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent wrapping */
}
.partners-section .partner-item img {
  height: 40px;
  /* 图片灰度 */
  filter: grayscale(100%);
  opacity: 0.6;
}
.partners-section .partner-item span {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
}
.partners-section .partner-item {
  /* Hover Effect: Color & Scale */
}
.partners-section .partner-item:hover {
  color: #000; /* Or use brand color like $primary-glow */
  transform: scale(1);
  /* Optional: Brand specific colors if you want strict branding */
}
.partners-section .partner-item:hover .fa-aws {
  color: #FF9900;
}
.partners-section .partner-item:hover .fa-google {
  color: #4285F4;
}
.partners-section .partner-item:hover .fa-stripe {
  color: #635BFF;
}
.partners-section .partner-item:hover .fa-spotify {
  color: #1DB954;
}
.partners-section .partner-item:hover .fa-slack {
  color: #4A154B;
}
.partners-section .partner-item:hover .fa-airbnb {
  color: #FF5A5F;
}
.partners-section .partner-item:hover .fa-microsoft {
  color: #00A4EF;
}
.partners-section .partner-item:hover .fa-figma {
  color: #F24E1E;
}
.partners-section .partner-item:hover img {
  filter: none;
  opacity: 1;
}

/* Animation Keyframes */
@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Move exactly half way (one set length) */
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .partners-section {
    padding: 25px 0;
  }
  .partners-section .marquee-track {
    gap: 50px; /* Smaller gap on mobile */
    animation-duration: 25s; /* Faster scroll on mobile */
  }
  .partners-section .partner-item {
    font-size: 1.5rem;
  }
  .partners-section .partner-item span {
    font-size: 1rem;
  }
}
/* =========================================
   TESTIMONIALS MARQUEE SECTION
   ========================================= */
.testimonials-section {
  padding: 100px 0;
  background: #f9fafb;
  overflow: hidden; /* Hide horizontal scrollbars */
}
@media screen and (max-width: 1024px) {
  .testimonials-section {
    padding: 60px 0px;
    box-sizing: border-box;
  }
}
.testimonials-section .testi-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}
@media screen and (max-width: 1024px) {
  .testimonials-section .testi-header {
    margin: 0 auto 40px auto;
    padding: 0px 20px;
    box-sizing: border-box;
  }
}
.testimonials-section .testi-header .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}
.testimonials-section .testi-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .testimonials-section .testi-header h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .testimonials-section .testi-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}
.testimonials-section .testi-header .subtext {
  font-size: 0.875rem;
  color: #53535c;
  line-height: 1.6;
}
.testimonials-section .marquee-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1400px;
  overflow: hidden;
  margin: 0 auto;
  /* FADE EFFECT ON SIDES */
}
.testimonials-section .marquee-container::before, .testimonials-section .marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testimonials-section .marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #f9fafb, transparent);
}
.testimonials-section .marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #f9fafb, transparent);
}
.testimonials-section .marquee-row {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content; /* Allows row to be wider than screen */
  /* Pause animation on hover for readability */
}
.testimonials-section .marquee-row:hover {
  animation-play-state: paused;
}
.testimonials-section .marquee-row.scroll-left {
  animation: scrollLeft 40s linear infinite;
}
.testimonials-section .marquee-row.scroll-right {
  animation: scrollRight 40s linear infinite;
}
.testimonials-section {
  /* THE CARD DESIGN */
}
.testimonials-section .testi-card {
  width: 350px;
  background: #ffffff; /* Light gray background like video */
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 25px;
  flex-shrink: 0; /* Prevents squishing */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials-section .testi-card:hover {
  background: #fffaf6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.3);
}
.testimonials-section .testi-card .card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.testimonials-section .testi-card .card-top img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
}
.testimonials-section .testi-card .card-top .user-info {
  display: flex;
  flex-direction: column;
}
.testimonials-section .testi-card .card-top .user-info strong {
  font-size: 0.95rem;
  color: #000;
  font-family: var(--font-heading);
}
.testimonials-section .testi-card .card-top .user-info span {
  font-size: 0.75rem;
  color: #666;
}
.testimonials-section .testi-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

/* ANIMATIONS */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Moves halfway, then loops perfectly */
}
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  } /* Starts halfway left */
  100% {
    transform: translateX(0);
  } /* Moves to start */
}
/* Responsive speed adjustment */
@media (max-width: 768px) {
  .testimonials-section .testi-card {
    width: 280px;
    padding: 20px;
  }
  .testimonials-section .marquee-row {
    gap: 15px;
  }
  .testimonials-section .marquee-row.scroll-left {
    animation-duration: 30s;
  }
  .testimonials-section .marquee-row.scroll-right {
    animation-duration: 30s;
  }
}
/* =========================================
   DEVELOPERS / SERVICES
   ========================================= */
.developers-section {
  padding: 80px 0 0px 0;
  background-color: var(--bg-white);
  color: var(--text-dark);
}
.developers-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.developers-section .dev-header {
  max-width: 600px;
  position: relative;
  display: block;
  margin: 0 auto 50px auto;
  text-align: center;
}
.developers-section .dev-header .label {
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.1);
  letter-spacing: 1px;
  display: inline-block;
}
.developers-section .dev-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  display: block;
  width: 100%;
  max-width: 800px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .developers-section .dev-header h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding-right: 5%;
  }
}
.developers-section .dev-header .desc {
  font-size: 0.875rem;
  color: #53535c;
  max-width: 600px;
  line-height: 1.5;
  margin: 0;
}
.developers-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background-color: var(--bg-card-box);
  padding: 10px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .developers-section .bento-grid {
    grid-template-columns: 1fr;
  }
}
.developers-section .dev-card {
  background: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.developers-section .dev-card .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B00;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #fff2ed, #ffffff);
  flex-shrink: 0;
  border: 1px solid #ffe6d4;
  border-radius: 8px;
  margin-bottom: 15px;
}
.developers-section .dev-card .icon-wrapper i {
  font-size: 20px;
}
.developers-section .dev-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}
.developers-section .dev-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 400;
}
.developers-section .dev-card .desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
.developers-section .dev-card .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.developers-section .model-list {
  display: block;
  gap: 8px;
  margin-top: auto;
  position: relative;
}
.developers-section .model-list .model-item {
  display: inline-block;
  border: 1px solid #eaedf1;
  position: relative;
  padding: 10px 15px;
  border-radius: 8px;
}
.developers-section .model-list .model-item h4 {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0px;
}
.developers-section .model-list .model-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.developers-section .card-agents {
  flex-direction: row;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .developers-section .card-agents {
    flex-direction: column-reverse;
  }
}
.developers-section .card-agents .content-side {
  flex: 1;
  z-index: 2;
}
.developers-section .card-scale .btn-white {
  margin-top: 15px;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 0px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  align-self: flex-end;
  transition: transform 0.2s;
}
.developers-section .card-scale .btn-white:hover {
  transform: translateY(-2px);
}

/* =========================================
   STATS SECTION (Cleaned & Unified)
   ========================================= */
.stats-section {
  padding: 100px 24px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .stats-section {
    padding: 50px 20px;
  }
}
.stats-section .container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.stats-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 80px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .stats-header {
    margin: 0 auto 40px auto;
  }
}
.stats-header .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.1);
}
.stats-header .pill-badge i {
  color: #FF6B00;
}
.stats-header .stats-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .stats-header .stats-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .stats-header .stats-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.stats-header .stats-desc {
  font-size: 0.875rem;
  color: #53535c;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 48px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
.stat-card .md-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: #FF6B00;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .stat-card .md-number {
    font-size: 4rem;
    margin-bottom: 24px;
  }
}
.stat-card .big-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 400;
  color: #FF6B00;
  line-height: 1;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .stat-card .big-number {
    font-size: 4rem;
    margin-bottom: 24px;
  }
}
.stat-card .stat-label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
}
.stat-card .stat-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #53535c;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 60px 20px;
    box-sizing: border-box;
  }
}
.cta-section .cta-container {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(135deg, #ffe3cf 0%, rgba(255, 255, 255, 0.831372549) 45%, rgba(254, 106, 3, 0.5607843137) 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cta-section .cta-container {
    padding: 50px 40px;
  }
}
.cta-section .cta-container {
  /* Subtle glow effect */
}
.cta-section .cta-container::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 20%;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 144, 64, 0.26) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.cta-section .cta-container h2 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta-section .cta-container h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.cta-section .cta-container p {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #53535c;
  line-height: 1.6;
}
.cta-section .cta-container .cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 600px) {
  .cta-section .cta-container .cta-buttons {
    flex-direction: column;
  }
}

/* =========================================
   BENTO GRID (Additional)
   ========================================= */
.anu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  padding: 100px 10%;
  position: relative;
  z-index: 2;
  background-color: #000;
}
@media (max-width: 900px) {
  .anu-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 50px 5%;
  }
}
.anu-grid .anu-card {
  /* 1. The Transparency: Very low opacity white/grey */
  background: rgba(255, 255, 255, 0.05);
  /* 2. The Blur: This is the magic property */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */
  /* 3. The Gradient Overlay: Gives it that "shine" from top-left */
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.anu-grid .anu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 400;
}
.anu-grid .anu-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.anu-grid .anu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px -10px rgba(198, 93, 59, 0.25);
}
.anu-grid .anu-card.large {
  grid-column: span 2;
}
.anu-grid .anu-card.tall {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .anu-grid .anu-card.large, .anu-grid .anu-card.tall {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
  }
}

/* =========================================
   PRICING
   ========================================= */
.pricing-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pricing-hero {
    padding-bottom: 30px;
  }
}
.pricing-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .pricing-hero h1 {
    font-size: 1.75rem;
  }
}
.pricing-hero h1 .highlight {
  background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-hero .subtext {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.pricing-hero .glow-top {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: var(--primary-glow);
  filter: blur(150px);
  opacity: 0.2;
  z-index: -1;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.pricing-toggle .toggle-label {
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle .save-badge {
  font-size: 0.7rem;
  background: rgb(248, 168, 128);
  color: #000;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.pricing-toggle .switch input:checked + .slider {
  background-color: var(--primary-glow);
  border-color: var(--primary-glow);
}
.pricing-toggle .switch input:checked + .slider:before {
  transform: translateX(22px);
}

.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}
@media (max-width: 900px) {
  .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pricing-card {
  background: rgba(41, 39, 38, 0.3);
  backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 25px 0;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: 15px;
}
.pricing-card .price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.pricing-card .price-box .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 4px;
}
.pricing-card .price-box .amount {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: #fff;
}
.pricing-card .price-box .period {
  color: var(--text-muted);
  font-size: 1rem;
  margin-left: 5px;
}
.pricing-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  min-height: 40px;
}
.pricing-card .features-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 0.95rem;
}
.pricing-card .features-list li .check {
  color: var(--secondary-glow);
  font-weight: bold;
}
.pricing-card .features-list li strong {
  color: #fff;
}
.pricing-card.popular {
  border: 1px solid var(--primary-glow);
  background: rgba(20, 15, 10, 0.8);
  transform: scale(1.05);
  z-index: 2;
}
@media (max-width: 900px) {
  .pricing-card.popular {
    transform: none;
  }
}
.pricing-card.popular .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: var(--primary-glow);
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
}
.pricing-card.popular .popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.works-section {
  padding: 100px 0;
}
.works-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   FAQ
   ========================================= */
.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-section .faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  /* Reusing your pill-badge style */
}
.faq-section .faq-header .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}
.faq-section .faq-header .faq-title {
  font-family: "Poppins", sans-serif; /* Your heading font */
  font-size: 2.5rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .faq-section .faq-header .faq-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-section .faq-header .faq-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.faq-section .faq-header .faq-desc {
  font-size: 0.95rem;
  color: #53535c;
  line-height: 1.6;
}
.faq-section .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-section .faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-section .faq-item .faq-answer .answer-content {
  padding: 0 24px 24px 24px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-section .faq-item.active {
  border-color: #444;
}
.faq-section .faq-item.active .icon {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-section .faq-item:hover {
  border-color: #555;
}

/* =========================================
   TEAM SECTION (Premium Style)
   ========================================= */
.team-section {
  padding: 90px 0 0px 0;
  background-color: #ffffff; /* Light Gray to separate from white sections */
}
@media screen and (max-width: 1024px) {
  .team-section {
    padding: 60px 0 0px 0;
    box-sizing: border-box;
  }
}
.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  /* Reusing your pill-badge style */
}
.team-header .pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}
.team-header .team-title {
  font-family: "Poppins", sans-serif; /* Your heading font */
  font-size: 2.5rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .team-header .team-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .team-header .team-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.team-header .team-desc {
  font-size: 0.95rem;
  color: #53535c;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* --- THE CARD --- */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  /* Hover State: Lift and Shadow */
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.3); /* Brand Orange Border */
  /* Trigger Image Zoom */
}
.team-card:hover .member-img {
  transform: scale(1.1);
}
.team-card:hover {
  /* Trigger Social Icons */
}
.team-card:hover .social-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-card .image-wrapper {
  position: relative;
  width: 100%;
  height: 320px; /* Fixed height for uniformity */
  overflow: hidden;
  background-color: #eee; /* Placeholder color */
}
.team-card .image-wrapper .member-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  /* Optional: Black & White to Color on hover effect */
  /* filter: grayscale(100%); */
}
.team-card .image-wrapper {
  /* Hover: Color restore */
  /* &:hover .member-img { filter: grayscale(0%); } */
}
.team-card {
  /* Floating Social Icons (Glassmorphism) */
}
.team-card .social-overlay {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: all 0.4s ease;
  width: -moz-max-content;
  width: max-content;
}
.team-card .social-overlay a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: 0.2s;
  font-size: 0.9rem;
}
.team-card .social-overlay a:hover {
  background: #FF6B00; /* Brand Color */
  color: #fff;
  transform: scale(1.1);
}
.team-card .content-wrapper {
  padding: 24px;
}
.team-card .content-wrapper .name-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 5px;
}
.team-card .content-wrapper .name-row h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #111;
}
.team-card .content-wrapper .role-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #6b7280;
  letter-spacing: 0.5px;
  /* Special styling for Leader/CEO */
}
.team-card .content-wrapper .role-badge.leader {
  background: rgba(255, 107, 0, 0.1);
  color: #FF6B00;
}
.team-card .content-wrapper .role-desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  padding: 0 20px 40px;
  background-color: #121212;
}
footer .footer-card {
  border-radius: 32px;
  padding: 60px 60px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer .footer-card {
    padding: 40px 0px;
  }
}
footer .footer-links {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-links {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
footer .footer-links .footer-links-a {
  display: flex;
  gap: 90px;
  margin-bottom: 0px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-links .footer-links-a {
    gap: 90px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  footer .footer-links .footer-links-a .col {
    flex: 1;
  }
}
@media (max-width: 1024px) {
  footer .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  footer .footer-links {
    grid-template-columns: repeat(3, 2fr);
    gap: 30px;
  }
}
@media (max-width: 600px) {
  footer .footer-links {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
footer .footer-links .col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1rem;
}
footer .footer-links .col p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: 350px;
}
footer .footer-links .col ul {
  list-style: none;
}
footer .footer-links .col ul li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
footer .footer-links .col ul li a {
  color: #9ca3af;
  font-size: 0.75rem;
  transition: color 0.2s;
  line-height: 1.4;
  text-decoration: none;
}
footer .footer-links .col ul li a:hover {
  color: #fff;
}
footer .footer-links .col ul li .badge-gray {
  background: #FF6B00;
  color: #000000;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
}
footer .lang-right .btn-lang {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: 0.2s;
}
footer .lang-right .btn-lang:hover {
  background: #222;
  border-color: #555;
}
footer .footer-divider {
  height: 1px;
  background-color: #2a2a2a;
  width: 100%;
  margin-bottom: 30px;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
}
footer .footer-bottom .copyright {
  color: #6b7280;
  font-size: 0.85rem;
}
footer .footer-bottom .social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
footer .footer-bottom .social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.2s, color 0.2s;
}
footer .footer-bottom .social-icons a:hover {
  color: var(--primary-glow);
  transform: translateY(-2px);
}

/* =========================================
   BLOG
   ========================================= */
.blog-section {
  padding: 80px 0 100px 0;
  background-color: #f8f9fa;
  position: relative;
}
@media screen and (max-width: 768px) {
  .blog-section {
    padding: 40px 0 40px;
  }
}
.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-section .blog-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .blog-section .blog-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.navigation .page-num {
  border-radius: 50%;
  cursor: pointer;
  background-color: var(--bg-white);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: 0.2s;
  color: var(--text-muted);
  font-size: 1.2rem;
  box-sizing: border-box;
}
.navigation .page-num:hover {
  color: var(--primary-glow);
}
.navigation .page-num-current {
  color: var(--primary-glow);
  border: 1px solid var(--primary-glow);
}
.navigation .next {
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.6rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-grid .image-box {
  height: 180px !important;
}

.blog-card {
  background: #0f0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.blog-card .card-image {
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card .card-image img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}
.blog-card .card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .card-content .tag {
  color: var(--primary-glow);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.blog-card .card-content h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card .card-content p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}
.blog-card .card-content .read-more {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.blog-card .card-content .read-more:hover {
  text-decoration: underline;
  color: var(--primary-glow);
}

.blog-sidebar .widget {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 30px;
}
.blog-sidebar .widget .heading h4.heading-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #999999;
}
.blog-sidebar .widget .post-category-wrap .category-post-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 1rem;
  color: #666;
}
.blog-sidebar .widget .post-category-wrap .category-post-item .post-count {
  font-size: 0.88rem;
  width: 50px;
  color: #999;
}
.blog-sidebar .widget .post-category-wrap .category-post-item a {
  color: var(--text-dark);
}
.blog-sidebar .widget .post-category-wrap .category-post-item a:hover {
  color: var(--primary-glow);
}
.blog-sidebar .widget .post-category-wrap .category-post-item.active {
  position: relative;
}
.blog-sidebar .widget .post-category-wrap .category-post-item.active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 4px;
  height: 16px;
  background-color: var(--primary-glow);
  transform: translateY(-50%);
}
.blog-sidebar .widget .post-category-wrap .category-post-item.active a {
  color: var(--primary-glow);
}
.blog-sidebar .widget .post-category-wrap .category-post-item.active .post-count {
  color: var(--text-dark);
  font-weight: 600;
}
.blog-sidebar .widget .w-request-content {
  padding: 20px;
  text-align: center;
}
.blog-sidebar .widget .w-request-content-title {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 1.25rem;
  margin-top: 10px;
}
.blog-sidebar .widget .w-request-content-text {
  color: #fff;
  margin-top: 15px;
}
.blog-sidebar .widget .more-btn {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 600;
}
.blog-sidebar .widget .more-btn:hover {
  color: var(--primary-glow);
}
.blog-sidebar .widget .latest-news-wrap .latest-news-item {
  padding: 12px 0;
  border-bottom: 2px solid #f7f9f9;
}
.blog-sidebar .widget .latest-news-wrap .latest-news-item .post-additional-info {
  font-size: 0.88rem;
  color: #999;
}
.blog-sidebar .widget .latest-news-wrap .latest-news-item .post__title {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-top: 10px;
}
.blog-sidebar .widget .latest-news-wrap .latest-news-item .post__title a {
  color: var(--text-dark);
}
.blog-sidebar .widget .latest-news-wrap .latest-news-item .post__title a:hover {
  color: var(--primary-glow);
}
.blog-sidebar .widget .tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-sidebar .widget .tags-wrap .w-tags-item {
  font-size: 0.88rem;
  color: #999;
  padding: 4px 12px;
  border-radius: 50px;
  background-color: #f7f9f9;
}
.blog-sidebar .widget .tags-wrap .w-tags-item:hover {
  background-color: #e6eef0;
}
.blog-sidebar .bg-boxed-red {
  background: url(../images/bg-boxed-red.jpg) no-repeat center center;
  background-size: cover;
}

.blog-detail {
  flex: 1;
}
.blog-detail article {
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.blog-detail .post-thumb img {
  width: 100%;
  height: auto;
}
.blog-detail .post__content {
  padding: 20px;
  line-height: 1.5;
}
.blog-detail .post__content a {
  color: var(--text-dark);
}
.blog-detail .post__content a:hover {
  color: var(--primary-glow);
}
.blog-detail .post__content a {
  text-decoration: underline;
}
.blog-detail .post__content .post__title, .blog-detail .post__content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
  border-bottom: #e8e8e8 1px solid;
  padding-bottom: 8px;
  padding-top: 10px;
}
.blog-detail .post__content h3 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.blog-detail .post__content .post-additional-info {
  font-size: 0.88rem;
  color: #999;
}
.blog-detail .post__content .post-additional-info span {
  margin-right: 10px;
}
.blog-detail .post__content .post__content-info {
  margin-top: 20px;
}
.blog-detail .post__content .post__content-info p, .blog-detail .post__content .post__content-info ul, .blog-detail .post__content .post__content-info ol, .blog-detail .post__content .post__content-info img, .blog-detail .post__content .post__content-info table, .blog-detail .post__content .post__content-info pre {
  margin-bottom: 10px;
}
.blog-detail .post__content .post__content-info img {
  max-width: 100%;
  height: auto;
}
.blog-detail .post__content .post-excerpt {
  margin-top: 20px;
  background: #eff6ff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #FF6B00;
  margin: 1.5rem 0;
  font-weight: 400;
  border-radius: 0 1rem 1rem 0;
}
.blog-detail .post__likes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.blog-detail .post__likes a {
  display: block;
  color: var(--text-dark);
}
.blog-detail .post__likes a:hover {
  color: var(--primary-glow);
}
.blog-detail .post__likes a {
  border: 1px solid #f0f0f0;
  padding: 8px 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.88rem;
}
.blog-detail .post__likes i {
  font-style: normal;
  font-size: 2rem;
  display: block;
}
.blog-detail .relevant-content {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.blog-detail .relevant-content .heading-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #999999;
}
.blog-detail .relevant-content .relevant-news-wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.blog-detail .relevant-content .relevant-news-wrap .relevant-news-item {
  padding: 5px 0;
  border-bottom: 2px solid #f7f9f9;
}
.blog-detail .relevant-content .relevant-news-wrap .relevant-news-item .post-additional-info {
  font-size: 0.88rem;
  color: #999;
}
.blog-detail .relevant-content .relevant-news-wrap .relevant-news-item .post__title {
  font-size: 1.05rem;
  color: var(--text-dark);
}
.blog-detail .relevant-content .relevant-news-wrap .relevant-news-item .post__title a {
  color: var(--text-dark);
}
.blog-detail .relevant-content .relevant-news-wrap .relevant-news-item .post__title a:hover {
  color: var(--primary-glow);
}

.page-hero {
  padding: 150px 20px 60px;
  text-align: center;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-hero {
    padding: 90px 20px 40px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#fbdbcc 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero .badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 107, 0, 0.05);
  margin-bottom: 20px;
}
.page-hero h2, .page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--text-dark);
}
@media screen and (max-width: 768px) {
  .page-hero h2, .page-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
}
.page-hero .subtext {
  font-size: 0.875rem;
  color: #53535c;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 auto;
}
.page-hero a {
  color: var(--text-dark);
}
.page-hero a:hover {
  color: var(--primary-glow);
}
.page-hero a {
  text-decoration: underline;
}

.inner-page-gap {
  padding: 40px 0px;
  box-sizing: border-box;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .inner-page-gap {
    padding: 30px 0px;
  }
}

.contact-section {
  padding: 100px 0;
  background-color: #f9fafb;
}
.contact-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  margin: 20px 0;
  color: #1b1b21;
  line-height: 1.2;
}
.contact-info p {
  color: #a1a1a1;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
.contact-info .info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-info .info-items .item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1rem;
  color: #1b1b21;
  font-weight: 500;
}
.contact-info .info-items .item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: #FF6B00;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.contact-info .info-items .item:hover i {
  transform: translateY(-3px);
  background: #FF6B00;
  color: #fff;
  border-color: #FF6B00;
}

.contact-form-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .contact-form-card {
    padding: 30px;
  }
}
.contact-form-card .form-group {
  margin-bottom: 25px;
}
.contact-form-card .form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1b1b21;
}
.contact-form-card .form-group input, .contact-form-card .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fcfcfc;
}
.contact-form-card .form-group input:focus, .contact-form-card .form-group textarea:focus {
  border-color: #FF6B00;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.follow-us {
  padding: 100px 0;
  text-align: center;
}
.follow-us .subtext {
  color: #a1a1a1;
}
.follow-us .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.follow-us .follow-card {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.follow-card img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-section {
  padding: 100px 0 150px;
  background-color: #f8f9fa;
  position: relative;
}
@media screen and (max-width: 768px) {
  .portfolio-section {
    padding: 40px 0 40px;
  }
}
.portfolio-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.portfolio-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- THE UNIQUE CARD --- */
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  top: 0;
}
.portfolio-card .image-box {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.portfolio-card .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
}
.portfolio-card .image-box .overlay-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1b1b21;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.portfolio-card .image-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.portfolio-card .content-box {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  position: relative;
  z-index: 5;
}
.portfolio-card .content-box .text-group {
  flex: 1;
  padding-right: 20px;
}
.portfolio-card .content-box .tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.portfolio-card .content-box .tags span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #FF6B00;
  background: rgba(255, 107, 0, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.portfolio-card .content-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: #1b1b21;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.portfolio-card .content-box p {
  font-size: 0.95rem;
  color: #a1a1a1;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-card .portfolio-link-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1b21;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.portfolio-card .portfolio-link-btn i {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}
.portfolio-card {
  /* --- HOVER EFFECTS --- */
}
.portfolio-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px -10px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.2);
}
.portfolio-card:hover .image-box img {
  transform: scale(1.1);
}
.portfolio-card:hover .portfolio-link-btn {
  background-color: #FF6B00;
  border-color: #FF6B00;
  color: #fff;
  transform: rotate(-45deg);
}
.portfolio-card:hover .portfolio-link-btn i {
  transform: rotate(0deg);
}
.portfolio-card:hover .content-box h3 {
  color: #FF6B00;
}

.padding-top-0 {
  padding-top: 0px;
}

.padding-bottom-0 {
  padding-bottom: 0px;
}/*# sourceMappingURL=style.css.map */