:root {
    --primary-color: #0062ff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.btn {
    margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background-color: #f9f9f9;
}

.hero-buttons .btn {
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    min-width: 20px;
}

/* Product Cards */
.product-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    background-color: #fff;
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    background-color: #f8f9fa;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    min-width: 20px;
}

/* Testimonial Cards */
.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.rating i {
    color: #ffc107;
}

/* Mobile Testimonial Carousel */
@media (max-width: 767px) {
    .testimonials-wrapper {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonials-wrapper .col-md-4 {
        min-width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* Contact Form */
.contact-form-wrapper {
    border-radius: 10px;
}

.contact-info .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 98, 255, 0.1);
    color: var(--primary-color);
}

/* FAQ Section */
.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a8eff 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern.png');
    opacity: 0.1;
}

/* Footer */
.footer-section {
    background-color: #f8f9fa;
    color: #666;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form .input-group {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card, .service-card, .product-card, .pricing-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .about-stats h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 1rem !important;
    }
    
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .service-card img {
        height: 150px;
    }
}

/* Helper classes */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0056e0;
    border-color: #0056e0;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.section-heading {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

.captcha-section {
    background: #fff;
    border-radius: 16px;
    padding: 0 0 10px 0;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: none;
}
.captcha-section .form-check {
    margin-bottom: 12px;
}
.captcha-section .form-label {
    margin-bottom: 6px;
    font-size: 1rem;
    color: #0062ff; /* Site primary color */
    font-weight: 600;
    letter-spacing: 0.2px;
}
.captcha-section input.form-control {
    border-radius: 16px;
    border: 2px solid #e9ecef;
    background: #f8f9fa;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.captcha-section input.form-control:focus {
    border-color: #0062ff;
    box-shadow: 0 0 0 2px rgba(0,98,255,0.08);
    background: #fff;
}
.captcha-section .form-check-input:checked {
    background-color: #0062ff;
    border-color: #0062ff;
}
.captcha-section .form-check-label i {
    color: #0062ff !important;
}

.captcha-box {
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,98,255,0.04);
    padding: 12px 16px 8px 16px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}
.captcha-label {
    color: #0062ff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.captcha-input {
    border: none;
    background: transparent;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none;
    outline: none;
}
.captcha-input:focus {
    background: transparent;
    box-shadow: none;
    outline: none;
}

