/* Main Style.css */

:root {
    --primary-color: #4F46E5;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

a {
    transition: color 0.3s ease;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hover-opacity:hover {
    opacity: 0.8;
}

.hover-white:hover {
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(120deg, #4F46E5 0%, #818cf8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section h1,
.hero-section p {
    color: white;
}

.hero-section .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Marquee */
.marquee-container {
    background-color: var(--dark-color);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

/* Pricing Cards */
.pricing-card {
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-recommended {
    position: absolute;
    top: 20px;
    right: -32px;
    transform: rotate(45deg);
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Stats Section */
.stats-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Forms */
.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: 10px;
    border-color: #E5E7EB;
    background-color: #F9FAFB;
    transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Footer Styling Fix */
footer.bg-dark {
    background-color: #111827 !important;
}

footer .text-muted {
    color: #9CA3AF !important;
    /* Light gray for better contrast */
}

footer a.text-muted:hover {
    color: #ffffff !important;
}

footer .hover-white:hover {
    color: #ffffff !important;
    padding-left: 5px;
    transition: all 0.2s ease;
}

footer .hover-opacity:hover {
    opacity: 0.8;
}

footer hr {
    opacity: 0.2;
    background-color: #fff;
}

/* Mobile Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1.display-4 {
        font-size: 2.0rem;
        margin-bottom: 1rem !important;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem !important;
    }

    .hero-section .d-flex {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

    .hero-section .btn-lg {
        width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .hero-section img {
        margin-top: 30px;
    }
}

/* Navbar Title Responsiveness */
@media (max-width: 480px) {
    .navbar-brand .site-title {
        display: inline-block;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
        font-size: 1rem;
    }
}

/* Stats Section Mobile */
@media (max-width: 768px) {
    .stats-number {
        font-size: 1.8rem;
        /* Reduced from 2.5rem */
    }
}