﻿/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}*/
:root {
    --primary-color: #0057b7;
    --secondary-color: #ff0000;
    --light-blue: #3498db;
    --dark-blue: #003399;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: -2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    animation: float 6s ease-in-out infinite;
}

    .shape:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 60%;
        left: 80%;
        animation-delay: 2s;
    }

    .shape:nth-child(3) {
        width: 100px;
        height: 100px;
        top: 80%;
        left: 20%;
        animation-delay: 4s;
    }

    .shape:nth-child(4) {
        width: 120px;
        height: 120px;
        top: 10%;
        right: 15%;
        animation-delay: 1s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

.containerHero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.1) drop-shadow(0 0 20px rgba(255,255,255,0.1));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.4s both;
}

.dashboard-container {
    position: relative;
    perspective: 1000px;
}

.financial-visual {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 500px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: sliderFloat 4s ease-in-out infinite;
}

@keyframes sliderFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-10px) rotateY(2deg);
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.slide.active .slide-overlay {
    transform: translateY(0);
}

.slide-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    animation: slideInUp 0.6s ease 0.3s both;
}

.slide-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInUp 0.6s ease 0.5s both;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .dot.active {
        background: #3b82f6;
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        animation: dotPulse 2s ease-in-out infinite;
    }

    .dot:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design for Images */
@media (max-width: 768px) {
    .image-slider {
        width: 90%;
        max-width: 400px;
        height: 250px;
    }

    .slide-overlay h3 {
        font-size: 1.2rem;
    }

    .slide-overlay p {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: relative;
}

    .scroll-arrow::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: 6px;
        height: 6px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.6);
        border-right: 2px solid rgba(255, 255, 255, 0.6);
    }




.features-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #003973, #f443367d);
    color: white;
    text-align: center;
}

    .features-section h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .features-section p {
        font-size: 1.2rem;
        margin-bottom: 50px;
        color: #f0f0f0;
    }

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    color: #333;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

.feature-icon {
    font-size: 40px;
    color: #003973;
    margin-bottom: 15px;
}

.feature-box h4 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .features-section h2 {
        font-size: 2rem;
    }

    .features-section p {
        font-size: 1rem;
    }
}


.solutions-section {
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
}

.solutions-header {
    text-align: center;
    margin-bottom: 40px;
}

    .solutions-header h2 {
        font-size: 2.8rem;
        margin-bottom: 10px;
        color: #222;
    }

    .solutions-header p {
        font-size: 1.1rem;
        color: #666;
    }

.solution-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.solution-image {
    flex: 1;
    min-width: 300px;
}

    .solution-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.solution-text {
    flex: 1;
    min-width: 300px;
}

    .solution-text h3 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #222;
    }

    .solution-text p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }

.solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .solution-list li {
        margin-bottom: 12px;
        font-size: 1rem;
        color: #333;
    }

    .solution-list i {
        color: #e53935;
        margin-right: 10px;
    }

.btn-primary {
    background-color: #0d6efd;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary:hover {
        background-color: #084dbf;
    }

@media (max-width: 768px) {
    .solution-content {
        flex-direction: column;
        text-align: center;
    }

    .solution-text {
        padding: 0 10px;
    }
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color), #cc0000);
    padding: 5rem 5%;
    text-align: center;
    color: var(--white);
}

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }

.cta-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

    .cta-btn:hover {
        background-color: var(--dark-blue);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background-color: var(--light-gray);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}
.section-titless {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-titless h2 {
        font-size: 2.5rem;
        color: var(--dark-gray);
        margin-bottom: 1rem;
    }
.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
}

    .testimonial-card::before {
        content: '\201C';
        font-size: 5rem;
        color: rgba(0, 87, 183, 0.1);
        position: absolute;
        top: 10px;
        left: 20px;
        font-family: Georgia, serif;
    }

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

    .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.client-details h4 {
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.client-details p {
    color: #777;
}

/*.social-links a:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}*/


