:root {
            --primary-color: #caebea;
            --secondary-color: #caebea;
            --accent-color: #23BABF;
            --light-bg: #f8f9fa;
            --text-dark: #49515B;
            --text-light: #6c757d;
            --bs-dark: #072c46;
            
        }

body { font-family: 'Poppins', sans-serif;  }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
        no-repeat bottom;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 45px;
    line-height: 60px;
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: 'Axiforma Medium';
    margin-bottom: 30px;
    opacity: 0.9;
}

.heading_focus_text
        {
            color: var(--text-dark);
        }

/* For white text sections */
.text-white .hero-subtitle {
    opacity: 0.8;
    color: var(--bs-white);
}

/* For center aligned sections */
.text-center .hero-subtitle {
    margin: auto;
    max-width: 610px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 600;
    display: block;
    color: var(--accent-color);
}

.stat-label {
   font-size: 0.9rem;
            opacity: 0.8;
            color: var(--text-dark);
}

/* Mobile responsive stats */
@media (max-width: 991px) {
    .hero-stats {
        justify-content: space-between;
        gap: 15px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

.hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
            
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

/* Section Title */
.section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: var(--bs-dark); 
          }
        
 .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 60px;
            font-size: 1.1rem;
        }

.benifits
{
   background-color: var(--primary-color);
}

.use-case
{
   background-color: fff;
}

/* CTA Buttons */
.btn-primary-custom {
  background: var(--accent-color);
  padding: 13px 32px;
  color:#fff;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  transition: .3s;
}
.btn-primary-custom:hover { transform: translateY(-4px); opacity:.93; }

.btn-outline-custom {
  border: 2px solid #fff;
  padding: 13px 32px;
  border-radius: 50px;
  background: transparent;
  color:#fff;
  font-size:17px;
  transition: .3s;
}
.btn-outline-custom:hover {
  background:#fff;
  color:#003f95;
}

/* Cards */
.feature-card, .benefit-card, .usecase-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0px 0 30px rgba(0,0,0,0.08);
  transition: .3s;
  border: 1px solid #d3d3d3;
}
.feature-card:hover,
.benefit-card:hover,
.usecase-card:hover { transform: translateY(-8px); }

/* Pricing */
.pricing-box {
  background:#fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow:0px 0 20px rgba(0,0,0,0.12);
  transition:.3s;
}
.pricing-box:hover { transform: translateY(-8px); }
.price-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
}

/* CTA Section Gradient */
.cta-box {
  background: linear-gradient(90deg,#023e7c,#0474d9);
  border-radius: 20px; padding:55px;
  text-align:center; color:#fff;
}

.cta-box h2 {
    color: #ffffff !important;
}

/* Fade Animation */
.fade-in { opacity:0; transform: translateY(30px); transition: 0.7s; }
.fade-in.visible { opacity:1; transform: translateY(0); }



