/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #343a40;
}

.content-wrapper {
    padding-top: 76px;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: #ff4d4d !important;
}

.nav-link {
    font-weight: 500;
    color: #343a40 !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ff4d4d !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #fff1f1;
    color: #ff4d4d;
}

/* Button Styles */
.btn-primary {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff3333;
    border-color: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 77, 0.3);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Service Section Styles */
.service-section {
    padding: 40px 0;
}

.service-features li {
    margin-bottom: 15px;
    list-style: none;
    padding-left: 0;
}

.service-image {
    padding: 20px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Portfolio Styles */
.portfolio-filters {
    margin-bottom: 30px;
}

.filter-btn {
    border: none;
    background: none;
    color: #343a40;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #ff4d4d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.2);
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Tools & Downloads Styles */
.tools-section {
    padding: 40px 0;
}

.tool-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card .card-footer {
    margin-top: auto;
    background-color: #ffffff;
    border-top: 1px solid #f8f9fa;
}

/* Login Form Styles */
.login-wrapper {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-form .card-body {
    padding: 40px;
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer h5 {
    color: #ff4d4d;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d4d;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #ff4d4d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff4d4d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Technology Section Styles */
.technologies img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Page Title Background - Change from blue to red */
.bg-primary {
    background-color: #ff4d4d !important;
}

.page-header {
    background-color: #ff4d4d !important;
    color: white;
}

.hero-section {
    background-color: #ff4d4d !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        background-color: #ffffff !important;
    }

    .service-section {
        text-align: center;
    }

    .service-image {
        margin-top: 30px;
    }

    .portfolio-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 15px;
    }

    .filter-btn {
        margin-bottom: 10px;
    }
}