
:root{
    --dark:#0f172a;
    --light:#f8fafc;
    --muted:#64748b;
    --accent:#ef4444;
    --glass:rgba(255,255,255,0.12);
}



body{
    background:#f1f5f9;
    color:#0f172a;
    line-height:1.7;
}

  
.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;
    font-size:1.1rem;
}

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

    
/* ROOT COLORS (match enterprise cards) */
:root {
  --primary: #ef4444;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
}

/* SECTION */
.enterprise-intro {
  /* background: var(--bg); */
  padding: 50px 20px;
}

.enterprise-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* TEXT */
.enterprise-heading {
  font-size:1.9rem;;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

.enterprise-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 18px;
}

.enterprise-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* VISUAL CONTAINER */
.enterprise-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SPIRAL SYSTEM */
.spiral-system {
  position: relative;
  width: 260px;
  height: 260px;
}

/* ORBITS */
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.15);
  animation: rotate linear infinite;
}

.orbit-1 {
  animation-duration: 22s;
}

.orbit-2 {
  inset: 20px;
  animation-duration: 16s;
  animation-direction: reverse;
}

.orbit-3 {
  inset: 40px;
  animation-duration: 12s;
}

/* CORE */
.core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}

.core span {
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}

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

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

/* RESPONSIVE */
@media (max-width: 991px) {
  .enterprise-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enterprise-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .enterprise-heading {
    font-size: 2.2rem;
  }
}

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

  .spiral-system {
    width: 220px;
    height: 220px;
  }
}


/* ================= LIGHT THEME SECTIONS ================= */
.light-theme {
    /* background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%); */
    position: relative;
    overflow: hidden;
}

.light-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    /* background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%); */
    z-index: 0;
}

/* ================= VISUALIZATION HEADER ================= */
.visualization-header {
  margin-left: 18%;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: #ef4444;
    font-size:  1.9rem; 
   
  padding-bottom:6px;
  display:inline-block;           /* REQUIRED */

  padding-bottom:6px;
  border-bottom:3px solid #64748b;

}


/* ================= REASONS GRID ================= */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
     margin-left: 18%;
     width: 70%;
    position: relative;
    z-index: 2;
}

.reason-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 
        0 10px 25px rgba(15, 23, 42, 0.04),
        0 5px 10px rgba(15, 23, 42, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 50%;
    transition: all 0.5s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 10px 20px rgba(15, 23, 42, 0.04);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.reason-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
    position: relative;
    z-index: 2;
}

.reason-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* ================= PLATFORM FEATURES ================= */
.platform-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 10px 25px rgba(15, 23, 42, 0.04),
        0 5px 10px rgba(15, 23, 42, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 10px 20px rgba(15, 23, 42, 0.04);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit {
    display: flex;
    align-items: center;
    color: #475569;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 25px;
}

.benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.benefit:last-child {
    border-bottom: none;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardStagger {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Stagger animations for cards */
.reason-card:nth-child(1) { animation: cardStagger 0.6s ease 0.1s forwards; }
.reason-card:nth-child(2) { animation: cardStagger 0.6s ease 0.2s forwards; }
.reason-card:nth-child(3) { animation: cardStagger 0.6s ease 0.3s forwards; }
.reason-card:nth-child(4) { animation: cardStagger 0.6s ease 0.4s forwards; }

.feature-card:nth-child(1) { animation: cardStagger 0.6s ease 0.1s forwards; }
.feature-card:nth-child(2) { animation: cardStagger 0.6s ease 0.2s forwards; }
.feature-card:nth-child(3) { animation: cardStagger 0.6s ease 0.3s forwards; }
.feature-card:nth-child(4) { animation: cardStagger 0.6s ease 0.4s forwards; }
.feature-card:nth-child(5) { animation: cardStagger 0.6s ease 0.5s forwards; }
.feature-card:nth-child(6) { animation: cardStagger 0.6s ease 0.6s forwards; }

/* ================= FLOATING SHAPES ================= */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    animation: floatShape 20s infinite linear;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .platform-features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .reason-card, .feature-card {
        padding: 25px 20px;
    }
}

/* ================= FUTURE SECTION ================= */
.future-section {
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
    color: white;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.future-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.future-header {
    text-align: center;
    margin-bottom: 80px;
}



.future-title {
  font-size: 1.9rem; 
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.future-title span {
    background: linear-gradient(90deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.future-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineExpand 1.5s ease-out 0.8s forwards;
}


/* Future Content Layout */
.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

@media (max-width: 992px) {
    .future-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Orbital Visualization */


/* Future Features */
.future-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.future-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(30px);
}

.future-feature:nth-child(1) { animation: featureSlide 0.6s ease 0.1s forwards; }
.future-feature:nth-child(2) { animation: featureSlide 0.6s ease 0.2s forwards; }
.future-feature:nth-child(3) { animation: featureSlide 0.6s ease 0.3s forwards; }
.future-feature:nth-child(4) { animation: featureSlide 0.6s ease 0.4s forwards; }

@keyframes featureSlide {
    to { opacity: 1; transform: translateX(0); }
}

.future-feature:hover {
    transform: translateX(10px);
    background: rgba(155, 67, 67, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ef4444;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.future-feature:hover .feature-icon {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
     color: black;
}

.feature-content p {
    color: black;
    line-height: 1.6;
    font-size: 1rem;
}

/* Future Stats */
.future-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .future-title {
        font-size: 2.5rem;
    }
    
    .future-orbital {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .node-1, .node-2, .node-3, .node-4 {
        transform-origin: center;
    }
    
    .future-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .future-title {
        font-size: 2rem;
    }
    
    .future-content {
        gap: 40px;
    }
    
    .future-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .future-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Floating particles */
.orbital-particle {
    pointer-events: none;
}