
.hero {
    min-height: 55vh;
    background:
    
        url("../img/Web\ Baner-0007\ \(1\).png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
}

.hero h1 {
 font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff;
    max-width: 700px;
}

.hero p {
    margin-top: 18px;
    max-width: 600px;
    color: #e5e7eb!important;
    font-size: 1.1rem!important;
}

.hero .line {
    width: 90px;
    height: 4px;
    background: var(--accent);
    margin: 30px 0;
}



/* SECTION */
.enterprise-intro-layout{
  /* background:#ffffff; */
  padding:30px 20px;
  overflow:hidden;
}

/* WRAPPER */
.enterprise-intro-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  align-items:center;
  gap:60px;
}

/* TEXT */
.enterprise-text{
  animation:slideLeft 1s ease forwards;
}

.enterprise-title{
  font-size:1.9rem;
  margin-bottom:20px;
  color:#0f172a !important;
  font-weight:600;
}

.enterprise-text p{
  font-size:0.96rem;
  line-height:1.75;
  color:#475569;
  text-align:justify;
  margin-bottom:16px;
}

/* ORB AREA */
.enterprise-orb-area{
  display:flex;
  justify-content:center;
  align-items:center;
  animation:slideRight 1s ease forwards;
}

/* ORB */
.title-orb{
  position:relative;
  width:220px;
  height:220px;
}

.orb-spin{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px dashed rgba(225,29,72,0.3);
  animation:spin 14s linear infinite;
}

.orb-core{
  position:absolute;
  inset:30px;
  border-radius:50%;
  background:rgba(15,23,42,0.04);
  display:flex;
  align-items:center;
  justify-content:center;
}

.orb-core svg{
  width:120px;
  height:120px;
}

/* ANIMATIONS */
@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes slideLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .enterprise-intro-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }

  .enterprise-orb-area{
    order:-1;
  }

  .title-orb{
    width:180px;
    height:180px;
  }
}

@media(max-width:480px){
  .enterprise-title{
    font-size:1.5rem;
  }

  .enterprise-text p{
    font-size:0.92rem;
  }
}








































/* ENTERPRISE CONTENT SECTION */
.enterprise-content{
  background:#ffffff;
  padding:80px 20px 40px;
}

.enterprise-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* BLOCK STYLE (MATCHES CARD LOOK) */
.enterprise-block{
  background:#ffffff;
  border-radius:16px;
  padding:36px 34px;
  /* border:1px solid rgba(0,0,0,0.08); */
  /* box-shadow:0 10px 25px rgba(0,0,0,0.04); */
}

/* HIGHLIGHT BLOCK */
.enterprise-block.highlight{
  border-left:4px solid #e11d48; /* same accent as your cards */
}

/* TITLES */
.enterprise-title{
  font-size:1.6rem;
  margin-bottom:18px;
  color:#0f172a;
  font-weight:600;
}



/* ANIMATED ENTERPRISE GRID */
.enterprise-animated-grid {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

/* ANIMATED TITLE */
.animated-title-section {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.title-orb {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 2rem;
}

.orb-spin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 10s linear infinite;
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
}

.orb-core svg {
  width: 100%;
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

.title-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s forwards;
}

.title-space {
  width: 0.5rem;
}

.subtitle-flow {
  font-size: 1.1rem;
  color: var(--gray);
  opacity: 0;
  animation: flowIn 1s 2s forwards;
  position: relative;
  display: inline-block;
}

.subtitle-flow::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  animation: underlineFlow 1s 2.5s forwards;
}

/* ANIMATED CARDS GRID */
.animated-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
  position: relative;
  margin-top: 20px !important;
}

.animated-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.8s forwards;
}

.animated-card:nth-child(1) { animation-delay: 0.3s; }
.animated-card:nth-child(2) { animation-delay: 0.5s; }
.animated-card:nth-child(3) { animation-delay: 0.7s; }
.animated-card:nth-child(4) { animation-delay: 0.9s; }

.card-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent,
    var(--primary),
    transparent);
  transform: translateX(-100%);
  animation: waveFlow 3s ease-in-out infinite;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-badge {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.3rem 0.6rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 4px;
}

.badge-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: var(--accent);
  border-radius: 6px;
  opacity: 0;
  filter: blur(5px);
  animation: badgePulse 2s ease-in-out infinite;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.shield-rotate {
  animation: rotateShield 10s linear infinite;
}

.globe-pulse {
  animation: float 3s ease-in-out infinite;
}

.pulse-core {
  animation: pulse 2s ease-in-out infinite;
}

.arrows-connect {
  animation: connectArrows 3s ease-in-out infinite;
}

.dash-move {
  animation: dashMove 3s linear infinite;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.stat-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.stat-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-fill {
  stroke-dashoffset: 283;
  animation: circleFill 2s 1s ease forwards;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
}

.stat-features {
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-dot {
  animation-delay: 0.3s;
}

.feature-item:nth-child(3) .feature-dot {
  animation-delay: 0.6s;
}

.feature-item span {
  font-size: 0.9rem;
  color: var(--dark);
}

.tech-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-bubble {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: var(--neutral-light);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0);
  animation: bubblePop 0.5s forwards;
  animation-delay: var(--delay);
}

.card-connection {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.connection-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent,
    var(--primary),
    transparent);
  animation: lineFlow 2s ease-in-out infinite;
}

.connection-dots {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-around;
}

.connection-dot {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: dotFlow 2s ease-in-out infinite;
}

.connection-dot:nth-child(1) { animation-delay: 0s; }
.connection-dot:nth-child(2) { animation-delay: 0.5s; }
.connection-dot:nth-child(3) { animation-delay: 1s; }

/* GRID CONNECTIONS */
.grid-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.connections-svg {
  width: 100%;
  height: 100%;
}

.connection-path {
  stroke: rgba(79, 70, 229, 0.1);
  stroke-width: 1;
  stroke-dasharray: 10, 5;
  animation: pathFlow 20s linear infinite;
}

.path-1 { animation-delay: 0s; }
.path-2 { animation-delay: 5s; }
.path-3 { animation-delay: 10s; }
.path-4 { animation-delay: 15s; }

/* FLOATING PARTICLES */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  top: var(--y);
  left: var(--x);
  opacity: 0;
  animation: particleFloat 8s linear infinite;
  animation-delay: var(--delay);
}

/* ANIMATED METRICS */
.animated-metrics {
  margin-top: 4rem;
}

.metrics-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s forwards;
}

.metric-item:nth-child(1) { animation-delay: 0.3s; }
.metric-item:nth-child(2) { animation-delay: 0.5s; }
.metric-item:nth-child(3) { animation-delay: 0.7s; }

.metric-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  flex-shrink: 0;
}

.metric-icon svg {
  width: 100%;
  height: 100%;
}

.metric-content {
  flex: 1;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.metric-bar {
  height: 4px;
  background: var(--neutral-light);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
  animation: fillWidth 1.5s 1s ease forwards;
}

/* ANIMATIONS */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowIn {
  to {
    opacity: 1;
  }
}

@keyframes underlineFlow {
  to {
    width: 100%;
  }
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waveFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

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

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

@keyframes connectArrows {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -5px); }
}

@keyframes dashMove {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 10; }
}

@keyframes bar-animate {
  0%, 100% { height: 4px; }
  50% { height: 8px; }
}

@keyframes circleFill {
  to {
    stroke-dashoffset: calc(283 - (283 * var(--percent, 0.95)));
  }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes bubblePop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineFlow {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes dotFlow {
  0% { opacity: 0; transform: translateY(-50%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-50%); }
}

@keyframes pathFlow {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillWidth {
  to {
    width: var(--width);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .animated-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 4rem;
  }
  
  .metrics-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .enterprise-animated-grid {
    margin: 4rem auto;
    padding: 0 1.5rem;
  }
  
  .title-text {
    font-size: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .title-char {
    margin: 0 0.1rem;
  }
  
  .animated-card {
    padding: 1.5rem;
  }
  
  .card-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .enterprise-animated-grid {
    padding: 0 1rem;
  }
  
  .title-text {
    font-size: 1.5rem;
  }
  
  .title-orb {
    width: 70px;
    height: 70px;
  }
  
  .orb-core {
    width: 50px;
    height: 50px;
  }
  
  .metric-item {
    padding: 1rem;
  }
}
















/* Section */
.enterprise-future{
  position:relative;
  padding:10px 20%;
  /* background:linear-gradient(180deg,#f8fafc,#e2e8f0); */
  overflow:hidden;
}

/* Animated Grid Background */
.enterprise-bg{
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      to right,
      rgba(15,23,42,0.06) 0,
      rgba(15,23,42,0.06) 1px,
      transparent 1px,
      transparent 90px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(15,23,42,0.06) 0,
      rgba(15,23,42,0.06) 1px,
      transparent 1px,
      transparent 90px
    );
  animation: moveGrid 40s linear infinite;
  opacity:.25;
}

@keyframes moveGrid{
  from{background-position:0 0;}
  to{background-position:700px 700px;}
}

.enterprise-container{
  position:relative;
  max-width:1300px;
  margin:auto;
  z-index:2;
}

/* Header */
.enterprise-header{
  max-width:720px;
  margin-bottom:40px;
}

.enterprise-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:rgba(239,68,68,.12);
  color:var(--accent);
  font-size:.85rem;
  letter-spacing:.08em;
  margin-bottom:20px;
}

.enterprise-header h2{
 font-size: 1.9rem; 
  line-height:1.15;
  color:#020617;
  /* margin-bottom:20px; */
}

.enterprise-header h2 span{
  color:#ef4444 !important;
}

.enterprise-header p{
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
}

/* Grid */
.enterprise-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:35px;
}

/* Cards */
.enterprise-card{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(12px);
  border:1px solid rgba(15,23,42,.12);
  border-radius:20px;
  padding:34px;
  transition:.4s ease;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
}

.enterprise-card:hover{
  transform:translateY(-10px);
  box-shadow:0 35px 80px rgba(15,23,42,.15);
}

.enterprise-card h3{
  font-size:1.25rem;
  margin-bottom:14px;
  color:#020617;
}

.enterprise-card p{
  font-size:.95rem;
  color:var(--muted);
  line-height:1.65;
}

/* Responsive */
@media(max-width:768px){
  .enterprise-future{
    padding:90px 5%;
  }
  .enterprise-header{
    margin-bottom:60px;
  }
}
