/**
* Template Name: Gp - v2.2.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffc451;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ffc451;
  color: #151515;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #151515;
  color: #ffc451;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ffc451;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #151515;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #151515;
  background: #ffc451;
}

.nav-menu .drop-down > a:after {
  content: "\e9c5";
  font-family: boxicons;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\e9c6";
  font-family: boxicons;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\e9c4";
  }
}

/* Get Startet Button */
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 7px 20px 8px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #151515;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #151515;
  text-decoration: none;
  background: #ffc451;
}

.mobile-nav .drop-down > a:after {
  content: "\e9c5";
  font-family: boxicons;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\e9c7";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  position: relative;
  overflow: hidden;
}

#home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  from { transform: translateX(0); }
  to { transform: translateX(200px); }
}

#home:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at center, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 118, 117, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 204, 112, 0.2) 0%, transparent 50%);
  z-index: 1;
}

#home .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
  z-index: 2;
}

#home h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}



#home h1 span {
  color: #ffc451;
}

#home h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#home .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  z-index: 2;
  position: relative;
}

#home .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#home .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#home .icon-box h3 {
  color: #fff;
}

#home .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#home .icon-box h3 a:hover {
  color: #ffc451;
}

#home .icon-box:hover {
  border-color: #ffc451;
  background: rgba(255, 196, 81, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.3);
}

@media (min-width: 1024px) {
  #home {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #home {
    height: auto;
  }
  #home h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #home h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

/* Space theme for all pages */
body {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
  z-index: -1;
  pointer-events: none;
}

.inner-page {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 20px 0;
  padding: 40px 20px;
  color: #fff;
}

.breadcrumbs {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
}

.breadcrumbs h2 {
  color: #ffc451;
}

.breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li a {
  color: #ffc451;
}

.section-title {
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  color: antiquewhite;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

#about .container {
  padding-top: 10px;
}

#about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 25px 25px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 75px 75px, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 125px 25px, rgba(255,255,255,0.5), transparent);
  background-size: 150px 150px;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.architecture-visualization {
  padding: 5px;
  margin: 20px 0;
}

.viz-title {
  color: #ffc451;
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255,196,81,0.5);
}

.viz-subtitle {
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.multi-agent-visual-fullpage {
  height: 60vh;
  position: relative;
  background: linear-gradient(45deg, rgba(255,196,81,0.1) 0%, rgba(120,119,198,0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,196,81,0.3);
  overflow: hidden;
}

.layer-label {
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  z-index: 15;
}

.aviation-label {
  top: 20px;
  left: 20px;
  background: rgba(255,118,117,0.3);
  color: #ff7675;
  border: 1px solid rgba(255,118,117,0.5);
}

.fiveg-label {
  top: 60%;
  right: 20px;
  background: rgba(0,184,148,0.3);
  color: #00b894;
  border: 1px solid rgba(0,184,148,0.5);
}

.rail-label {
  bottom: 80px;
  left: 20px;
  background: rgba(253,203,110,0.3);
  color: #fdcb6e;
  border: 1px solid rgba(253,203,110,0.5);
}

.network-types-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
}

.network-type {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,196,81,0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.network-type:hover {
  background: rgba(255,196,81,0.2);
  border-color: rgba(255,196,81,0.6);
  transform: translateY(-2px);
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.case-study-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.case-study-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,196,81,0.6);
  box-shadow: 0 20px 40px rgba(255,196,81,0.3);
}

.case-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #151515;
  box-shadow: 0 10px 30px rgba(255,196,81,0.4);
}

.case-study-card h4 {
  color: #ffc451;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-card h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.case-study-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.case-stats {
  display: flex;
  justify-content: space-around;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,196,81,0.2);
  border-bottom: 1px solid rgba(255,196,81,0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #ffc451;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-btn {
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  color: #151515;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,196,81,0.4);
  background: linear-gradient(45deg, #ffcd6b, #ffc451);
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .case-study-card {
    padding: 20px;
  }
}

/* Case Study Pages */
.case-study-hero {
  text-align: center;
  padding: 60px 0;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  margin-bottom: 40px;
}

/* Architecture Section Styles */
.architecture-section {
  margin: 40px 0;
}

.layer-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
}

.layer-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.layer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
}

.layer-icon.edge {
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  color: #fff;
}

.layer-icon.cloud {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  text-align: center;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: #151515;
}

.feature-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.stat-highlight {
  background: rgba(255,196,81,0.2);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #ffc451;
}

/* Benefits Grid */
.benefits-section {
  margin: 40px 0;
  padding: 50px 0;
  background: linear-gradient(135deg, rgba(255,196,81,0.1) 0%, rgba(116,185,255,0.1) 100%);
  border-radius: 20px;
}

.benefits-section h2 {
  text-align: center;
  color: #ffc451;
  font-size: 32px;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(255,196,81,0.4);
}

.benefits-ladder, .congestion-ladder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.ladder-step {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ladder-step:nth-child(even) {
  flex-direction: row-reverse;
}

.ladder-step:nth-child(even) .step-connector {
  transform: scaleX(-1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #151515;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,196,81,0.5);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ffc451, transparent);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.benefit-card, .congestion-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,196,81,0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-card:hover, .congestion-card:hover {
  transform: translateY(-5px);
  background: rgba(255,196,81,0.2);
  box-shadow: 0 15px 35px rgba(255,196,81,0.3);
  border-color: #ffc451;
}

.benefit-card h4, .congestion-card h4 {
  color: #ffc451;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-card p, .congestion-card p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.congestion-card .step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

.benefits-bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.bubble-category {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bubble-category.operational {
  border-color: rgba(255,196,81,0.3);
}

.bubble-category.cost {
  border-color: rgba(0,184,148,0.3);
}

.bubble-category.performance {
  border-color: rgba(116,185,255,0.3);
}

.bubble-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,196,81,0.2);
}

.bubble-header {
  text-align: center;
  margin-bottom: 25px;
}

.bubble-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  color: #fff;
}

.bubble-category.operational .bubble-icon {
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
}

.bubble-category.cost .bubble-icon {
  background: linear-gradient(45deg, #00b894, #00cec9);
}

.bubble-category.performance .bubble-icon {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
}

.bubble-header h4 {
  color: #ffc451;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.bubble-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bubble-item {
  background: rgba(255,255,255,0.1);
  padding: 12px 15px;
  border-radius: 25px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,196,81,0.2);
  transition: all 0.3s ease;
}

.bubble-item:hover {
  background: rgba(255,196,81,0.2);
  border-color: rgba(255,196,81,0.5);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .benefits-bubbles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: #151515;
}

/* Comparison Table */
.comparison-table {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,196,81,0.2);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: rgba(255,196,81,0.2);
  font-weight: 600;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,196,81,0.1);
}

.comparison-item {
  padding: 15px 20px;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

.comparison-item.legacy {
  background: rgba(255,118,117,0.1);
  color: #ff7675;
}

.comparison-item.edgeiq {
  background: rgba(0,184,148,0.1);
  color: #00b894;
  font-weight: 600;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-item {
    text-align: left;
  }
  
  /* Mobile Swiper Styles */
  .mobile-swiper {
    padding-bottom: 40px;
  }
  
  .mobile-swiper .swiper-pagination {
    bottom: 0;
  }
  
  .mobile-swiper .swiper-pagination-bullet {
    background: #ffc451;
    opacity: 0.5;
  }
  
  .mobile-swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }
  
  /* Features Grid Mobile - 2x2 Layout */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .feature-card {
    padding: 15px 10px;
  }
  
  .feature-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .feature-card p {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 5px;
  }
  
  .stat-highlight {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  /* Benefits Section Mobile - Simple Stack Layout */
  .benefits-section {
    padding: 40px 20px;
  }
  
  .benefits-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  .benefits-ladder {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0;
  }
  
  .ladder-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .step-connector {
    display: none;
  }
  
  .step-content {
    flex: 1;
  }
  
  .benefit-card {
    padding: 20px 15px;
    text-align: left;
    border-radius: 10px;
  }
  
  .benefit-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .benefit-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }
  
  .benefit-icon i {
    font-size: 18px;
  }
}

.case-hero-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #151515;
  box-shadow: 0 20px 40px rgba(255,196,81,0.4);
}

.case-study-hero h1 {
  color: #ffc451;
  font-size: 36px;
  margin-bottom: 20px;
}

.case-study-hero .lead {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.case-study-content {
  color: rgba(255,255,255,0.9);
}

.case-study-content h2 {
  color: #ffc451;
  font-size: 28px;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,196,81,0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
}

.stat-card .stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ffc451;
  display: block;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.stat-card .stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.problem-item, .use-case-item {
  display: flex;
  margin: 30px 0;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
}

.problem-icon, .use-case-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: #151515;
  flex-shrink: 0;
}

.problem-content, .use-case-content {
  flex: 1;
}

.problem-content h3, .use-case-content h3 {
  color: #ffc451;
  font-size: 22px;
  margin-bottom: 15px;
}

.use-case-stats {
  display: flex;
  gap: 15px;
  margin: 10px 0 15px 0;
}

.use-case-stats .metric {
  background: rgba(255,196,81,0.2);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #ffc451;
  border: 1px solid rgba(255,196,81,0.3);
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.metric-item {
  background: rgba(0,184,148,0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0,184,148,0.3);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.metric-item strong {
  color: #00b894;
  font-size: 18px;
}

.impact-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.impact-card, .benefit-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
}

.impact-card.negative {
  border-color: rgba(255,118,117,0.3);
  background: rgba(255,118,117,0.1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #151515;
}

.cta-section {
  text-align: center;
  margin: 40px 0;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  color: #151515;
}

.btn-secondary {
  background: transparent;
  color: #ffc451;
  border: 2px solid #ffc451;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,196,81,0.4);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255,196,81,0.1);
  color: #ffc451;
}

@media (max-width: 768px) {
  .problem-item, .use-case-item {
    flex-direction: column;
    text-align: center;
  }
  
  .problem-icon, .use-case-icon {
    margin: 0 auto 20px auto;
  }
  
  .use-case-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* System Architecture Styles */
.system-architecture {
  margin: 40px 0;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,196,81,0.3);
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.flow-step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255,196,81,0.5);
  box-shadow: 0 10px 30px rgba(255,196,81,0.2);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #151515;
}

.flow-step h4 {
  color: #ffc451;
  font-size: 18px;
  margin-bottom: 15px;
}

.flow-step p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}

.congestion-scenarios {
  margin-top: 50px;
}

.congestion-scenarios h3 {
  color: #ffc451;
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.scenario-card {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,196,81,0.4);
  box-shadow: 0 8px 25px rgba(255,196,81,0.2);
}

.scenario-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00b894, #00cec9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

.scenario-card h4 {
  color: #ffc451;
  font-size: 16px;
  margin-bottom: 10px;
}

.scenario-card p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.scenario-result {
  background: rgba(0,184,148,0.2);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(0,184,148,0.3);
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.scenario-result strong {
  color: #00b894;
  font-size: 16px;
}

@media (max-width: 768px) {
  .architecture-flow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .system-architecture {
    padding: 20px;
  }
}

.terrestrial-label {
  bottom: 20px;
  right: 20px;
  background: rgba(162,155,254,0.3);
  color: #a29bfe;
  border: 1px solid rgba(162,155,254,0.5);
}

.cloud-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.cloudiq-node {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 0 50px rgba(116,185,255,0.9);
  animation: pulse-cloudiq 3s ease-in-out infinite;
  border: 3px solid rgba(255,196,81,0.6);
}

.cloudiq-node small {
  font-size: 10px;
  opacity: 0.9;
  margin-top: 2px;
}



@keyframes flight-left-right {
  0% { top: 15%; left: -10%; }
  100% { top: 15%; left: 110%; }
}

@keyframes flight-right-left {
  0% { top: 25%; left: 110%; }
  100% { top: 25%; left: -10%; }
}

@keyframes cellular-orbit-1 {
  0% { top: 65%; left: 25%; }
  50% { top: 70%; left: 75%; }
  100% { top: 65%; left: 25%; }
}

@keyframes cellular-orbit-2 {
  0% { top: 70%; left: 75%; }
  50% { top: 65%; left: 25%; }
  100% { top: 70%; left: 75%; }
}

@keyframes rail-left-right {
  0% { top: 85%; left: -5%; }
  100% { top: 85%; left: 105%; }
}

@keyframes rail-right-left {
  0% { top: 90%; left: 105%; }
  100% { top: 90%; left: -5%; }
}

@keyframes stationary-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}



@keyframes pulse-cloudiq {
  0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(116,185,255,0.9); }
  50% { transform: scale(1.05); box-shadow: 0 0 70px rgba(116,185,255,1), 0 0 30px rgba(255,196,81,0.5); }
}

.edge-agents {
  position: relative;
  width: 100%;
  height: 100%;
}

.edge-agent {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.agent-icon {
  font-size: 24px;
  text-align: center;
}

.edge-agent:hover {
  transform: scale(1.2);
}

.edge-agent:hover:after {
  content: attr(data-type);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
}

.aviation {
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  box-shadow: 0 0 20px rgba(255,118,117,0.6);
  animation: orbit-aviation 15s linear infinite;
}

.fiveg {
  background: linear-gradient(45deg, #00b894, #00cec9);
  box-shadow: 0 0 20px rgba(0,184,148,0.6);
  animation: orbit-5g 12s linear infinite;
}

.rail {
  background: linear-gradient(45deg, #fdcb6e, #e17055);
  box-shadow: 0 0 20px rgba(253,203,110,0.6);
  animation: orbit-rail 18s linear infinite;
}

.terrestrial {
  background: linear-gradient(45deg, #a29bfe, #6c5ce7);
  box-shadow: 0 0 20px rgba(162,155,254,0.6);
  animation: orbit-terrestrial 20s linear infinite;
}

/* Aviation agents - Top layer, horizontal flight paths */
.aviation:nth-of-type(1) { animation: flight-left-right 20s linear infinite; animation-delay: 0s; }
.aviation:nth-of-type(2) { animation: flight-right-left 25s linear infinite; animation-delay: 8s; }
.aviation:nth-of-type(3) { animation: flight-left-right 18s linear infinite; animation-delay: 15s; }

/* 5G agents - Below cloud AI */
.fiveg:nth-of-type(4) { animation: cellular-orbit-1 15s linear infinite; }
.fiveg:nth-of-type(5) { animation: cellular-orbit-2 12s linear infinite; }

/* Rail agents - Bottom horizontal movement */
.rail:nth-of-type(6) { animation: rail-left-right 22s linear infinite; }
.rail:nth-of-type(7) { animation: rail-right-left 18s linear infinite; animation-delay: 10s; }

/* Terrestrial agents - Fixed positions */
.terrestrial:nth-of-type(8) { top: 75%; left: 15%; animation: stationary-pulse 4s ease-in-out infinite; }
.terrestrial:nth-of-type(9) { top: 75%; left: 50%; animation: stationary-pulse 4s ease-in-out infinite 1s; }
.terrestrial:nth-of-type(10) { top: 75%; left: 85%; animation: stationary-pulse 4s ease-in-out infinite 2s; }





.data-streams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.data-streams:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98%;
  height: 98%;
  border: 1px solid rgba(255,196,81,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}

.data-streams:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border: 1px solid rgba(116,185,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}

.data-streams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.data-streams::before {
  z-index: 1;
}

.data-streams::after {
  z-index: 1;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}



.problem-section, .solution-section, .benefits-section, .use-cases-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
  backdrop-filter: blur(10px);
}

.problem-section h4, .solution-section h4, .benefits-section h4, .use-cases-section h4 {
  color: #ffc451;
  margin-bottom: 20px;
  font-size: 24px;
}

.architecture-details {
  margin: 25px 0;
}

.architecture-details h5 {
  color: #fff;
  font-size: 20px;
  margin: 20px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,196,81,0.3);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

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

.benefit-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,196,81,0.2);
}

.benefit-item h6 {
  color: #ffc451;
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-item p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
}

.architecture-overview {
  padding: 40px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.architecture-overview h3 {
  color: #ffc451;
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  text-shadow: 0 0 15px rgba(255,196,81,0.5);
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.flow-step {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  border: 1px solid rgba(255,196,81,0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff7675, #fd79a8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  color: white;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(255,118,117,0.5);
}

.flow-step h5 {
  color: #ffc451;
  margin-bottom: 10px;
  font-size: 18px;
}

.flow-step p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 24px;
  color: #ffc451;
  margin: 0 10px;
  animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.deployment-benefits {
  text-align: center;
}

.deployment-benefits h4 {
  color: #ffc451;
  margin-bottom: 30px;
  font-size: 24px;
}

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

.benefit-col {
  background: rgba(255,255,255,0.1);
  padding: 25px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,196,81,0.2);
  transition: all 0.3s ease;
}

.benefit-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,196,81,0.3);
  border-color: #ffc451;
}

.benefit-col i {
  font-size: 32px;
  color: #ffc451;
  margin-bottom: 15px;
  display: block;
}

.benefit-col span {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.benefit-col small {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

@media (max-width: 768px) {
  .architecture-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 15px 0;
    align-self: center;
  }
  
  .flow-step {
    width: 100%;
  }
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 15px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content .ri-close-circle-line {
  color: #ff7675;
}

.about .content .ri-check-double-line {
  color: #00b894;
}

.about .content .ri-lightbulb-line,
.about .content .ri-alert-line,
.about .content .ri-trophy-line,
.about .content .ri-rocket-line {
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  display: none;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 70%;
  opacity: 0.5;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.clients .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.clients .owl-nav, .clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #ffc451 !important;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
#features {
  width: 100%;
  color: antiquewhite;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

#features:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 118, 117, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 204, 112, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

#features:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 118, 117, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 204, 112, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  padding: 40px 0;
}

#services .section-title h2 {
  color: #ffc451;
}

#services .section-title p {
  color: rgba(255,255,255,0.9);
}

.services .icon-box {
  text-align: center;
  border: 1px solid rgba(255, 196, 81, 0.3);
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(255, 196, 81, 0.2);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #ffc451;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #ffcd6b;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.8);
}

.services .icon-box:hover {
  border-color: #ffc451;
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.4), 0 0 20px rgba(255, 196, 81, 0.3);
  transform: translateY(-15px) scale(1.02);
  background: rgba(255,196,81,0.15);
}

.cloudiq-feature {
  border: 2px solid rgba(116, 185, 255, 0.3) !important;
  background: rgba(116, 185, 255, 0.1) !important;
}

.cloudiq-feature:hover {
  border-color: #74b9ff !important;
  box-shadow: 0 15px 40px rgba(116, 185, 255, 0.4), 0 0 20px rgba(116, 185, 255, 0.3) !important;
  background: rgba(116, 185, 255, 0.2) !important;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #ffc451;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
#counts {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
}

.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #ffc451;
}

.counts .content p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.9);
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #ffc451;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #ffc451;
}

.counts .image {
  background: url("../img/counts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
  background-color: #ffc451 !important;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #ffc451;
}

.team .member .social a:hover {
  color: #fff;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#contact .section-title h2 {
  color: #ffc451;
}

#contact .section-title p {
  color: rgba(255,255,255,0.9);
}

#contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 30px 40px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 80px 20px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 120px 90px, rgba(255,255,255,0.5), transparent);
  background-size: 180px 120px;
  animation: twinkle 12s linear infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.contact .info {
  width: 100%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255,196,81,0.2);
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffc451;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255,196,81,0.2);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,196,81,0.3);
  color: #fff;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ffc451;
  background: rgba(0,0,0,0.4);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffcd6b;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  min-height: 40px;
  margin-top: 74px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  color: #ffc451;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.6);
  content: "/";
}

.breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li a {
  color: #ffc451;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #ffc451 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* Flow Diagram */
.flow-diagram {
  background: linear-gradient(180deg, rgba(15,15,35,0.95) 0%, rgba(26,26,46,0.95) 100%);
  border-radius: 20px;
  padding: 20px 15px;
  border: 2px solid rgba(255,196,81,0.4);
  position: relative;
}

.flow-row {
  margin: 8px 0;
}

.flow-section {
  padding: 8px;
  border-radius: 12px;
}

.section-title {
  color: #ffc451;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Users Section */
.users-section {
  background: rgba(255,118,117,0.1);
  border: 2px solid rgba(255,118,117,0.3);
}

.apps-display {
  overflow: hidden;
  width: 100%;
  margin-bottom: 4px;
}

.apps-marquee {
  display: flex;
  animation: marquee-rtl 20s linear infinite;
}

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

.app-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.app-flow-arrows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 0 12px;
  margin: 6px 0;
}

.app-flow-line {
  width: 2px;
  height: 25px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #ffc451 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-down 1s linear infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.2s; }
.app-icon:nth-child(3) { animation-delay: 0.4s; }
.app-icon:nth-child(4) { animation-delay: 0.6s; }
.app-icon:nth-child(5) { animation-delay: 0.8s; }



.items-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.item {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,196,81,0.3);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.item:hover {
  transform: translateY(-5px);
  border-color: #ffc451;
  box-shadow: 0 10px 25px rgba(255,196,81,0.4);
}

.item .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}

.item .streamiq {
  font-size: 8px;
  color: #00b894;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.9);
  color: #ffc451;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.item:hover::after {
  opacity: 1;
}

/* Arrows */
.flow-arrows {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 0 12px;
  margin: 5px 0;
}

.dotted-line {
  width: 2px;
  height: 30px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #ffc451 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-down 1s linear infinite;
}

@keyframes flow-down {
  0% { background-position: 0 0; }
  100% { background-position: 0 10px; }
}

.dotted-line:nth-child(1) { animation-delay: 0s; }
.dotted-line:nth-child(2) { animation-delay: 0.1s; }
.dotted-line:nth-child(3) { animation-delay: 0.2s; }
.dotted-line:nth-child(4) { animation-delay: 0.3s; }
.dotted-line:nth-child(5) { animation-delay: 0.4s; }
.dotted-line:nth-child(6) { animation-delay: 0.5s; }

/* Edge Section */
.edge-section {
  background: rgba(0,184,148,0.1);
  border: 2px solid rgba(0,184,148,0.3);
}

.edge-boxes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.edge-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(0,184,148,0.4);
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
}

.dpi-label {
  color: #00b894;
  font-size: 11px;
  font-weight: 700;
  display: block;
  line-height: 1.4;
}

/* Cloud Arrow */
.cloud-arrow, .insights-arrow {
  text-align: center;
  margin: 8px 0;
  position: relative;
}

.converging-lines {
  width: 100%;
  height: 60px;
  display: block;
}

.small-dotted-line {
  width: 2px;
  height: 35px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #ffc451 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-down 1s linear infinite;
}

.feedback-loop {
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.feedback-arrows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 0 12px;
  margin: 8px 0;
}

.feedback-line {
  width: 2px;
  height: 40px;
  margin: 0 auto;
  background-image: linear-gradient(to top, #00b894 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-up 1s linear infinite;
}

@keyframes flow-up {
  0% { background-position: 0 0; }
  100% { background-position: 0 -10px; }
}

.feedback-line:nth-child(1) { animation-delay: 0s; }
.feedback-line:nth-child(2) { animation-delay: 0.1s; }
.feedback-line:nth-child(3) { animation-delay: 0.2s; }
.feedback-line:nth-child(4) { animation-delay: 0.3s; }
.feedback-line:nth-child(5) { animation-delay: 0.4s; }
.feedback-line:nth-child(6) { animation-delay: 0.5s; }

.feedback-label {
  color: #00b894;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 3px;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; transform: scale(1.05); }
}

.stream-label {
  color: #74b9ff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* CloudIQ Section */
.cloudiq-section {
  background: rgba(116,185,255,0.1);
  border: 2px solid rgba(116,185,255,0.3);
}

.cloudiq-center {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(116,185,255,0.6);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 30px rgba(116,185,255,0.6); }
  50% { box-shadow: 0 0 50px rgba(116,185,255,0.9); }
}

.brain {
  font-size: 28px;
  display: block;
  margin-bottom: 5px;
  animation: think 2s ease-in-out infinite;
}

@keyframes think {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cloudiq-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

/* Insights Section */
.insights-section {
  background: rgba(255,196,81,0.1);
  border: 2px solid rgba(255,196,81,0.3);
}

.insights-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  justify-content: space-between;
}

.insight {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,196,81,0.3);
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  transition: all 0.3s ease;
  animation: appear 0.6s ease-out forwards;
  opacity: 0;
  flex: 1;
  min-width: 0;
}

.insight:nth-child(1) { animation-delay: 0.2s; }
.insight:nth-child(2) { animation-delay: 0.4s; }
.insight:nth-child(3) { animation-delay: 0.6s; }
.insight:nth-child(4) { animation-delay: 0.8s; }

@keyframes appear {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.insight:hover {
  transform: translateY(-5px);
  border-color: #ffc451;
  box-shadow: 0 10px 25px rgba(255,196,81,0.4);
  background: rgba(255,196,81,0.15);
}

.insight .emoji {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.insight .text {
  color: #ffc451;
  font-size: 11px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

/* iPad Mini & iPad Air Fix */
@media (max-width: 1180px) and (min-width: 769px) {
  #home .row.mt-5 > div:nth-child(n+7) {
    display: none;
  }
  
  .case-studies-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
  }
  
  .case-study-card {
    flex: 1 !important;
  }
  
  .benefit-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
  }
  
  .benefit-col {
    flex: 1 !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .flow-diagram {
    padding: 15px 8px;
  }

  .viz-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    word-break: break-word;
    hyphens: auto;
  }

  .viz-subtitle {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .section-title {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .apps-display {
    margin-bottom: 4px;
  }

  .app-icon {
    font-size: 18px;
  }

  .app-flow-arrows {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .app-flow-line {
    height: 20px;
  }

  .items-grid, .edge-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .item, .edge-box {
    padding: 8px 4px;
  }

  .item .icon {
    font-size: 22px;
  }

  .item .streamiq {
    font-size: 8px;
    line-height: 1.2;
  }

  .flow-arrows {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .dotted-line {
    height: 25px;
  }

  .converging-lines {
    height: 50px;
  }

  .small-dotted-line {
    height: 30px;
  }

  .feedback-arrows {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feedback-line {
    height: 30px;
  }

  .feedback-label {
    font-size: 9px;
  }

  .cloudiq-center {
    padding: 10px;
    max-width: 150px;
  }

  .brain {
    font-size: 24px;
  }

  .cloudiq-text {
    font-size: 12px;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .insight {
    padding: 4px;
  }

  .insight .emoji {
    font-size: 16px;
  }

  .insight .text {
    font-size: 8px;
    line-height: 1.1;
  }

  .item:nth-child(6) {
    display: none;
  }
}


/* FlowGuard Animation */
.flowguard-demo {
  background: linear-gradient(180deg, rgba(15,15,35,0.95) 0%, rgba(26,26,46,0.95) 100%);
  border-radius: 20px;
  padding: 20px 15px;
  border: 2px solid rgba(255,196,81,0.4);
  margin: 20px 0;
  overflow: hidden;
}

.network-capacity {
  text-align: center;
  padding: 10px;
  background: rgba(116,185,255,0.1);
  border: 2px solid rgba(116,185,255,0.3);
  border-radius: 12px;
  margin-bottom: 15px;
}

.capacity-label {
  font-size: 16px;
  font-weight: 700;
  color: #74b9ff;
  margin-bottom: 3px;
}

.users-count {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.state-container {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 15px;
  margin: 15px 0;
}

.before-state {
  border: 2px solid rgba(255,118,117,0.4);
}

.after-state {
  border: 2px solid rgba(0,184,148,0.4);
}

.state-title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #ffc451;
}

.bandwidth-meter {
  margin: 10px 0;
}

.meter-bar {
  height: 25px;
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.meter-fill {
  height: 100%;
  transition: width 1s ease;
  animation: pulse-meter 2s ease-in-out infinite;
}

.congested .meter-fill {
  background: linear-gradient(90deg, #ff7675, #d63031);
}

.balanced .meter-fill {
  background: linear-gradient(90deg, #00b894, #00cec9);
}

@keyframes pulse-meter {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.meter-label {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}

.app-flows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0;
}

.flow-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,196,81,0.2);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.3s ease;
  animation: flow-appear 0.6s ease-out forwards;
  opacity: 0;
}

.flow-item:nth-child(1) { animation-delay: 0.1s; }
.flow-item:nth-child(2) { animation-delay: 0.2s; }
.flow-item:nth-child(3) { animation-delay: 0.3s; }
.flow-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes flow-appear {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.flow-item:hover {
  transform: translateY(-2px);
  border-color: #ffc451;
}

.flow-icon {
  font-size: 20px;
  animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.flow-name {
  font-size: 10px;
  font-weight: 600;
  color: #ffc451;
  flex: 1;
}

.flow-speed {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
  display: inline-block;
  animation: speed-pulse 1.5s ease-in-out infinite;
}

@keyframes speed-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.flow-speed.unfair {
  background: rgba(255,118,117,0.3);
  color: #ff7675;
}

.flow-speed.fair {
  background: rgba(0,184,148,0.3);
  color: #00b894;
}

.flow-quality {
  font-size: 9px;
  color: rgba(255,255,255,0.7);
}

.problem-indicator, .success-indicator {
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
}

.problem-indicator {
  background: rgba(255,118,117,0.2);
  color: #ff7675;
}

.success-indicator {
  background: rgba(0,184,148,0.2);
  color: #00b894;
}

.detection-arrow {
  text-align: center;
  margin: 15px 0;
  position: relative;
}

.arrow-line {
  width: 2px;
  height: 30px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #ffc451 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-down 1s linear infinite;
}

.detection-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
}

.streamiq-badge {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  color: #fff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
}

.flowguard-badge {
  background: linear-gradient(45deg, #ffc451, #ffcd6b);
  color: #151515;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.detection-text {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
}

.flowguard-action {
  margin: 20px 0;
}

.action-box {
  background: rgba(255,196,81,0.1);
  border: 2px solid rgba(255,196,81,0.4);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.action-icon {
  font-size: 32px;
  margin-bottom: 10px;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.action-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffc451;
  margin-bottom: 15px;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rule {
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  border-left: 3px solid #00b894;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .flowguard-demo {
    padding: 15px 10px;
  }

  .capacity-label {
    font-size: 13px;
  }

  .users-count {
    font-size: 11px;
  }

  .state-title {
    font-size: 12px;
  }

  .app-flows {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .flow-item {
    padding: 6px;
    gap: 6px;
  }

  .flow-icon {
    font-size: 18px;
  }

  .flow-name {
    font-size: 9px;
  }

  .flow-speed {
    font-size: 10px;
    padding: 2px 5px;
  }

  .flow-quality {
    font-size: 8px;
  }

  .action-icon {
    font-size: 24px;
  }

  .action-title {
    font-size: 14px;
  }

  .rule {
    font-size: 11px;
    padding: 6px 10px;
  }

  .streamiq-badge, .flowguard-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .detection-text {
    font-size: 9px;
  }

  .problem-indicator, .success-indicator {
    font-size: 10px;
    padding: 6px;
  }
}


/* StreamIQ Animation */
.streamiq-demo {
  background: linear-gradient(180deg, rgba(15,15,35,0.95) 0%, rgba(26,26,46,0.95) 100%);
  border-radius: 20px;
  padding: 20px 15px;
  border: 2px solid rgba(116,185,255,0.4);
  margin: 20px 0;
}

.streamiq-step {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(116,185,255,0.3);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.step-badge {
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
}

.step-time {
  background: linear-gradient(45deg, #00b894, #00cec9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  animation: time-pulse 2s ease-in-out infinite;
}

@keyframes time-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.app-flows-detect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.flow-detect {
  background: rgba(116,185,255,0.1);
  border: 1px solid rgba(116,185,255,0.3);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: detect-pop 0.5s ease-out forwards;
  opacity: 0;
}

.flow-detect:nth-child(1) { animation-delay: 0.1s; }
.flow-detect:nth-child(2) { animation-delay: 0.2s; }
.flow-detect:nth-child(3) { animation-delay: 0.3s; }
.flow-detect:nth-child(4) { animation-delay: 0.4s; }

@keyframes detect-pop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.flow-icon {
  font-size: 24px;
}

.flow-app {
  font-size: 11px;
  font-weight: 600;
  color: #74b9ff;
}

.step-arrow {
  text-align: center;
  margin: 10px 0;
}

.step-arrow .arrow-line {
  width: 2px;
  height: 25px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #74b9ff 50%, transparent 50%);
  background-size: 2px 10px;
  animation: flow-down 1s linear infinite;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.analytics-item {
  background: rgba(255,196,81,0.1);
  border: 1px solid rgba(255,196,81,0.3);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  animation: analytics-slide 0.6s ease-out forwards;
  opacity: 0;
}

.analytics-item:nth-child(1) { animation-delay: 0.6s; }
.analytics-item:nth-child(2) { animation-delay: 0.7s; }
.analytics-item:nth-child(3) { animation-delay: 0.8s; }

@keyframes analytics-slide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.analytics-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.analytics-label {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 5px;
}

.analytics-value {
  font-size: 14px;
  font-weight: 700;
  color: #ffc451;
}

.metrics-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.metric-compact {
  background: rgba(0,184,148,0.1);
  border: 1px solid rgba(0,184,148,0.3);
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: metric-fade 0.5s ease-out forwards;
  opacity: 0;
}

.metric-compact:nth-child(1) { animation-delay: 1.0s; }
.metric-compact:nth-child(2) { animation-delay: 1.1s; }
.metric-compact:nth-child(3) { animation-delay: 1.2s; }
.metric-compact:nth-child(4) { animation-delay: 1.3s; }
.metric-compact:nth-child(5) { animation-delay: 1.4s; }
.metric-compact:nth-child(6) { animation-delay: 1.5s; }
.metric-compact:nth-child(7) { animation-delay: 1.6s; }
.metric-compact:nth-child(8) { animation-delay: 1.7s; }

@keyframes metric-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.metric-label {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.metric-val {
  font-size: 12px;
  font-weight: 700;
  color: #00b894;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .streamiq-demo {
    padding: 15px 10px;
  }

  .step-badge, .step-time {
    font-size: 10px;
    padding: 5px 10px;
  }

  .app-flows-detect {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .flow-icon {
    font-size: 20px;
  }

  .flow-app {
    font-size: 10px;
  }

  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analytics-icon {
    font-size: 20px;
  }

  .analytics-label {
    font-size: 9px;
  }

  .analytics-value {
    font-size: 12px;
  }

  .metrics-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .metric-compact {
    padding: 8px 6px;
  }

  .metric-label {
    font-size: 9px;
  }

  .metric-val {
    font-size: 10px;
  }
}

/* Before/After Comparison Layout */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.transformation-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
}

.arrow-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrow-line-horizontal {
  font-size: 24px;
  color: #ffc451;
  animation: pulse-arrow-horizontal 2s ease-in-out infinite;
}

@keyframes pulse-arrow-horizontal {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 768px) {
  .before-after-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .transformation-arrow {
    order: 2;
    padding: 15px 0;
  }
  
  .before-state {
    order: 1;
  }
  
  .after-state {
    order: 3;
  }
  
  .arrow-container {
    flex-direction: column;
    gap: 5px;
  }
  
  .arrow-line-horizontal {
    transform: rotate(90deg);
    font-size: 20px;
  }
  
  .app-flows {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
}