/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-brand span {
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    color: #2c3e50;
    font-weight: 700;
}

.hero-section .lead {
    color: #6c757d;
}

/* Tool Cards */
.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tool-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.tool-card .btn {
    margin-top: auto;
    padding: 0.5rem 2rem;
    border-radius: 25px;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card i {
    font-size: 2.5rem;
}

.feature-card h4 {
    color: #2c3e50;
    margin: 1rem 0;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
}

.footer h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer p {
    color: #fff !important;
    margin-bottom: 0;
}

/* Tool Header */
.tool-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.tool-header h1 {
    color: #2c3e50;
    font-weight: 700;
}

/* Upload Area */
.upload-area {
    background: #f8f9fa;
    border: 2px dashed #dee2e6 !important;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #ff0000 !important;
    background: #fff;
}

/* Step Cards */
.step-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Tool List */
.tool-card ul {
    margin-top: 1rem;
}

.tool-card ul li {
    margin-bottom: 0.5rem;
}

.tool-card ul li a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.tool-card ul li a:hover {
    color: #ff0000;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.feature-list i {
    font-size: 1.5rem;
}

.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 3rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
}

.stat-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Login and Signup Styles */
.login-card, .signup-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.login-card h2, .signup-card h2 {
    color: #2c3e50;
    font-weight: 600;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.form-control:focus + .input-group-text {
    border-color: #dee2e6;
}

.btn-outline-primary {
    color: #ff0000;
    border-color: #ff0000;
}

.btn-outline-primary:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-login, .social-signup {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .tool-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }

    .step-card {
        margin-bottom: 1.5rem;
    }

    .stat-card {
        margin-bottom: 1.5rem;
    }

    .login-card, .signup-card {
        margin: 0 1rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: #ff0000;
    border-color: #ff0000;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tool-card, .feature-card, .step-card, .stat-card {
    animation: fadeIn 0.5s ease-out;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border-color: #dc3545;
}

.service-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-card {
        padding: 1rem !important;
    }
    
    .service-icon {
        height: 50px;
    }
    
    .service-card h5 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content .card {
    border: none;
    transition: all 0.3s ease;
}

.contact-content .card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office-card {
    padding: 1rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.office-card:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-method {
    padding: 1rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 1.2rem;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* FAQ Section Styles */
.faq-section .accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc3545'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Form Styles */
.form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.btn-danger {
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        margin-top: 2rem;
    }
    
    .office-card, .contact-method {
        padding: 0.75rem;
    }
} 