/* --- Variables & Reset --- */
:root {
    --primary-color: white; /* Indigo 500 */
    --primary-dark: white;  /* Indigo 700 */
    --accent-color: green;  /* Amber 500 */
    --text-dark: #333333;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow-1: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-2: 0 4px 10px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography & Buttons --- */
h1, h2, h3 {
    margin-bottom: 15px;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: rgb(243, 243, 230);
    color: green;
    box-shadow: var(--shadow-1);
    border: 2px solid green;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-2);
    transform: translateY(-2px);
    color: red;
    border: 2px solid red;
}

.btn-text {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 0;
}

.btn-text:hover {
    background: rgba(63, 81, 181, 0.05);
}

/* --- Navbar --- */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-1);
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.nav-content img{
    vertical-align: middle;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: green;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: red;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(215, 221, 238, 0.88), rgba(102, 135, 236, 0.8)), url(Banner.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* --- General Section Styles --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: green;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list .material-icons {
    color: var(--primary-color);
    margin-right: 10px;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #757575;
}

/* --- Cards (Stalls) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-5px);
}

.card-header {
    height: 200px;
    background-color: #ccc;
}
.color-1 { background-color: #FF5722; }
.color-2 { background-color: #009688; }
.color-3 { background-color: #9C27B0; }

.color-1{
    background-image: url(Image1.png);
    background-position: center;
    background-size: cover;
}

.color-2{
    background-image: url(Image2.png);
    background-position: center;
    background-size: cover;
}

.color-3{
    background-image: url(Image3.png);
    background-position: center;
    background-size: cover;
}

.AboutImage{
    background-image: url(About.png);
    background-position: center;
    background-size: cover;
}

.card-body {
    padding: 20px;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-item .material-icons {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(63, 81, 181, 0.2);
}

.full-width {
    width: 100%;
}

/* --- Footer --- */
footer {
    background-color: #212121;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* --- Mobile Responsive --- */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: white;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
}

/* --- Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-box {
    padding: 30px 20px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-2);
    border-color: #eee;
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(63, 81, 181, 0.1); /* Light Indigo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-box:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.feature-box .material-icons {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-box:hover .material-icons {
    color: var(--white);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}