/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styling */
.navbar {
    background-color: #343a40 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    margin: 0 10px;
}

.nav-link.active {
    font-weight: bold;
    color: #fff !important;
}

/* Hero Section (Homepage Banner) */
.hero-section {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Section Styling */
section {
    padding: 60px 0;
}

h2.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

/* Skills Section Styling */
.skill-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Education Section Styling */
.education-entry {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid #007bff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.education-entry h3 {
    color: #0056b3;
    font-weight: bold;
}

/* Contact Section Styling */
.contact-links a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #007bff;
    transition: color 0.3s;
}

.contact-links a:hover {
    color: #0056b3;
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}
/* --- YEH NAYA CODE ADD KAREIN --- */

/* Project Card Styles */
.project-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures cards in the same row have the same height */
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-card .card-title {
    color: #0056b3;
    font-weight: bold;
}

.project-card .badge {
    font-size: 0.9rem;
    margin-right: 5px;
}
/* --- YEH NAYA CODE ADD KAREIN --- */

/* Accordion Styling for Skills Page */
.skill-accordion .accordion-item {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.skill-accordion .accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    background-color: #f8f9fa;
    border-radius: 8px !important;
}

.skill-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #007bff;
    box-shadow: none;
}

.skill-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.skill-accordion .accordion-body {
    font-size: 1.1rem;
    line-height: 1.7;
}

.skill-accordion .badge {
    font-size: 0.9rem;
    font-weight: 600;
}
/* --- YEH NAYA CODE ADD KAREIN --- */

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    padding: 12px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}