

.svg-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 900px; /* Limit the width of the SVG container */
    margin: 0 auto;
    padding-bottom: 0;
    overflow: auto;
    height: 100%;
}

.svg-container svg {
    width: 100%; /* Make SVG responsive, but limited to the container's max-width */
    height: auto;
    display: block;
    margin: auto;
}


.svg-container .extract, .svg-container .transform, .svg-container .load {
    fill: #145392 !important; /* Ensure the fill color is applied */
    stroke: #000 !important; /* Ensure the stroke color is applied */
    stroke-width: 2 !important; /* Ensure the stroke width is applied */
}

.svg-container a {
    text-decoration: none; /* Disable underline */
}

.svg-container a:hover {
    text-decoration: none; /* Ensure no underline on hover */
}

.responsive-svg {
    width: 100%; /* Scale the SVG to fit the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing */
}

/* Hero Section Container */
.hero-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

/* Decorative Background Circles */
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #145392, #1a6bb8);
    top: -100px;
    right: -50px;
    animation: float-slow 8s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1a6bb8, #145392);
    bottom: -50px;
    left: -30px;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #145392, #1a6bb8);
    top: 50%;
    left: 50%;
    animation: float-slow 12s ease-in-out infinite;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
}

/* Main Heading with Gradient */
.main-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: rgb(0, 0, 0);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #145392 0%, #1a6bb8 50%, #145392 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.3s both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #145392;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #145392 !important;
    box-shadow: 0 4px 15px rgba(20, 83, 146, 0.25);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 83, 146, 0.4);
    background: #145392;
    color: white !important;
}

.badge-item:hover svg path,
.badge-item:hover svg {
    fill: white !important;
    stroke: white !important;
}

.badge-item svg {
    flex-shrink: 0;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade {
    0% { opacity: 0.3; }
    33% { opacity: 1; }
    66% { opacity: 0.3; }
    100% { opacity: 0.3; }
}

.extract {
    animation: fade 9s infinite;
}
.transform {
    animation: fade 9s infinite;
    animation-delay: 3s;
}
.load {
    animation: fade 9s infinite;
    animation-delay: 6s;
}




/* Value Proposition Styling */
.hero-subtitle {
    margin: 40px 0 40px 0;
    position: relative;
    z-index: 1;
}

.value-proposition {
    font-size: 1.35rem;
    line-height: 1.9;
    color: #2c3e50;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 20px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.6s both;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.hero-cta-button:hover::before {
    opacity: 1;
}

.hero-cta-button.primary {
    background: linear-gradient(135deg, #145392 0%, #1a6bb8 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(20, 83, 146, 0.4);
}

.hero-cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(20, 83, 146, 0.5);
    color: white;
    text-decoration: none;
}

.hero-cta-button.secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #145392;
    border: 2px solid #145392;
    box-shadow: 0 4px 15px rgba(20, 83, 146, 0.2);
}

.hero-cta-button.secondary:hover {
    background: #145392;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(20, 83, 146, 0.35);
    text-decoration: none;
}

.hero-cta-button svg {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
    transform: translateX(5px);
}

/* Adjust the paragraph's spacing */
.top-paragraph {
    align-self: flex-start;
    margin-top: 0;
    padding: 35px 40px;
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.cta-section {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid rgba(20, 83, 146, 0.2);
    text-align: center;
}

.cta-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #145392;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #145392 0%, #1a6bb8 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 83, 146, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a6bb8 0%, #145392 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 83, 146, 0.4);
    color: white !important;
    text-decoration: none;
}


.paragraph-below {
    margin-top: 15px; /* Add spacing between the sections */
}

/* Remove old strong styling as we're using new structure */

@media (max-width: 767px) {
    .svg-container {
        display: flex;
        flex-direction: column-reverse; /* Reverse the order: SVG on top */
        align-items: center; /* Center items horizontally */
        width: 100%; /* Adjust width for mobile */
        height: auto; /* Allow height to adjust */

    }

    .svg-container svg {
        width: 100%; /* Make the SVG responsive */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .top-paragraph {
        text-align: center;
        margin-top: -100px;
        width: 100%;
        padding: 25px 20px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 20px 0;
    }
    
    .main-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-badges {
        gap: 15px;
        margin-top: 20px;
    }
    
    .badge-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .badge-item svg {
        width: 20px;
        height: 20px;
    }
    
    .value-proposition {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }
    
    .hero-cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Hide decorative circles on mobile for performance */
    .hero-bg-circle {
        display: none;
    }
}

.background-box {

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}


.animated-underline {
    display: inline-block;
    position: relative;
}
.animated-underline::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #64646465, #14539293);  
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 3px;
    animation: underline-grow 2s ease;
}
@keyframes underline-grow {
    from { width: 0; }
    to { width: 100%; }
}

.highlight-bg {
    background: linear-gradient(90deg, #e6f0fa 10%, #14539293 100%);
    display: inline-block;
    padding: 0.2em 1em;
    border-radius: 10px;
}


.content-wrapper {
    background: linear-gradient(135deg, #e6f0fa 0%, #14539293 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(20, 83, 146, 0.08);
    padding: 48px 32px;
    margin-top: 32px;
}

/* Feature Sections - Scroll Reveal Styles */
.features-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.feature-section {
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(20, 83, 146, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(20, 83, 146, 0.15);
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #145392;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.feature-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #145392 0%, #1a6bb8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 83, 146, 0.3);
}

.feature-cta-btn:hover {
    background: linear-gradient(135deg, #1a6bb8 0%, #145392 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 83, 146, 0.4);
    color: white;
    text-decoration: none;
}

.feature-icon {
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

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

/* Dashboard Showcase Styling */
.feature-dashboard-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(20, 83, 146, 0.2);
    transition: all 0.3s ease;
    background: white;
}

.dashboard-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 83, 146, 0.4);
}

.dashboard-showcase .feature-content {
    align-items: center;
    gap: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-container {
        margin: 60px auto;
        padding: 0 15px;
    }

    .feature-section {
        margin-bottom: 60px;
    }

    .feature-content {
        flex-direction: column !important;
        padding: 40px 25px;
        gap: 30px;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

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

    .feature-dashboard-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .dashboard-screenshot {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
}

