
/* Add these styles to scripts.css */

/* Home link styling */
nav {
    text-align: left;  /* Align the navigation to the left */
    padding: 10px 0;
}

.home-link {
    font-size: 1.2rem;
    color: #4CAF50;  /* Green font color */
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: #388E3C;  /* Darker green on hover */
}

/* Background Styling */
.background {
    background-image: url('/static/images/pcs3.jpg'); /* Ensure the path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;  /* Ensure full viewport height */
    padding-top: 60px;  /* Offset for header if needed */
}


/* Hero Section */
.hero-section {
    background-image: url('static/images/Picture.jpg'); /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
    }
}

/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;  /* Light background color */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 2.5rem;
    color: #4CAF50;
}

.header p {
    font-size: 1.2rem;
    margin: 5px 0;
}

.category {
    font-weight: bold;
    color: #2196F3;
}

.recommendations {
    margin: 20px 0;
}

.recommendation-section {
    margin-bottom: 30px;
}

.recommendation-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #555;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.2s;
}

.card img {
    max-width: 100%;
    border-radius: 5px;
}

.card p {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

.card:hover {
    transform: translateY(-5px);
}

.calculate-again {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #2196F3;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calculate-again:hover {
    background-color: #1976D2;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size

footer p {
        font-size: 1rem;
        color: #666;
        text-align: center;
    }
    
footer p a:hover {
        color: #4CAF50; /* Change color on hover, optional */
    }
    
    /* Add these styles to scripts.css */

/* Form container styling */
.calculator-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.calculator-container h1 {
    margin-bottom: 30px;
    color: #4CAF50;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: calc(100% - 20px);
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.calculate-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: #2196F3;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.calculate-btn:hover {
    background-color: #1976D2;
}

@media (max-width: 600px) {
    .calculator-container {
        margin: 20px;
        padding: 20px;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .calculate-btn {
        font-size: 1rem;
    }
}

/* Add these styles to scripts.css */

/* Background Styling */
.background {
    background-image: url('/static/images/Picture.jpg'); /* Ensure the path is correct */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;  /* Ensure full viewport height */
    padding-top: 60px;  /* Offset for header if needed */
}

/* Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);  /* Semi-transparent white background for readability */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.85);  /* Match with container's background */
    border-radius: 0 0 10px 10px;
}

/* General body styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* feedback section */
/* Feedback Section Styling *//* Enhanced Feedback Section Styling */
/* Feedback Page Styling */
/* General Feedback Page Styling */
.feedback-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);  /* Slight transparency */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  /* Deeper shadow for emphasis */
    text-align: center;
    backdrop-filter: blur(10px);  /* Add a subtle blur effect */
}

.feedback-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4CAF50;
    text-align: center;
}

.feedback-page p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.feedback-page .form-group {
    margin-bottom: 20px;
    text-align: left;  /* Align labels and inputs to the left */
}

.feedback-page .form-group label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}

.feedback-page input[type="text"],
.feedback-page input[type="email"],
.feedback-page textarea {
    width: calc(100% - 20px);  /* Full width minus padding */
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback-page input[type="text"]:focus,
.feedback-page input[type="email"]:focus,
.feedback-page textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    outline: none;
}

.feedback-page .feedback-submit-button {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feedback-page .feedback-submit-button:hover {
    background-color: #388E3C;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-page {
        padding: 20px;
    }

    .feedback-page h1 {
        font-size: 2rem;
    }

    .feedback-page p {
        font-size: 1rem;
    }

    .feedback-page .feedback-submit-button {
        padding: 12px;
        font-size: 1rem;
    }
}
