:root {
    --primary: #0F2C59;
    --primary-light: #1a3d7a;
    --secondary: #00D2E6;
    --accent: #FF6B35;
    --accent-light: #ff8c66;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}



.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 4px 15px rgba(15, 44, 89, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 44, 89, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: #006666;
    color: white;
    transform: translateY(-3px);
}

.btn-accent {
    background: #e39700;
    box-shadow: 0 4px 15px #006666;
    color: white;
}

.btn-accent:hover {
    background: #e39700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #006666;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section:after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 230, 0.1) 0%, rgba(15, 44, 89, 0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--gray);
    margin: 25px 0;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    /* border-radius: 20px;
            box-shadow: var(--shadow); */
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
    max-width: 100%;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    /* box-shadow: var(--shadow-hover); */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 210, 230, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
}

.hero-badge i {
    margin-right: 8px;
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    background: white;
    position: relative;
    z-index: 10;
    margin-top: -60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-weight: 500;
    color: var(--gray);
}

/* Solutions Section */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-header:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    border: none;
    border-radius: 16px;
    padding: 40px 30px;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 44, 89, 0.05);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
}

.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    background: var(--light);
    padding: 100px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #006666;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 230, 0.1);
    border-radius: 12px;
    margin-right: 20px;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-content h5 {
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 0 15px;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(0, 210, 230, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
    color: var(--primary);
}

.author-info h5 {
    margin-bottom: 5px;
    color: var(--primary);
}

.author-info p {
    color: var(--gray);
    margin: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    border: none;
    border-radius: 16px;
    padding: 40px 30px;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    margin-right: 10px;
}


/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.8rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-mockup {
        transform: none;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}