/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #222;
}

a {
    color: #ff9900;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #11190d, #b4be52); /* Attractive green gradient */
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: #f8f9fa;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #c3e6cb;
}

/* Hero Section */
.hero {
    text-align: center;
/*    color: white;*/
    padding: 80px 20px;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
/*    box-shadow: inset 0 0 0 1000px rgba(40, 167, 69, 0.6); /* Green overlay */*/
}

/*.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    background: #ff9900;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero .btn:hover {
    background: #cc7a00;
}*/

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #e8f5e9;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    color: #155724;
}

.feature-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: auto;
}

.card h3 {
    font-size: 1.5em;
    margin: 15px 0;
    color: #28a745;
}

.card p {
    padding: 0 15px 15px;
    color: #555;
}

/* About Section */
.about {
    padding: 50px 0;
    text-align: center;
}

.about img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background: url('../images/testimonials-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgba(40, 167, 69, 0.7);
}

.testimonials h2 {
    margin-bottom: 30px;
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    color: #ff9900;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    background: #155724;
    color: white;
    text-align: center;
}
.contact {
    background: linear-gradient(135deg, #11190d, #b4be52) !important;
}
.contact h2 {
    margin-bottom: 30px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background: #ff9900;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #cc7a00;
}

/* Footer */
footer {
        background: linear-gradient(135deg, #11190d, #b4be52); /* Attractive green gradient */
    color: white;
    text-align: center;
    padding: 20px 0;
}
.hero {
    padding: 20% 20% !important;
}
  .navbar.navbar-expand-lg.navbar-dark.bg-dark {
    background: linear-gradient(135deg, #11190d, #b4be52) !important;
}
@media (max-width: 768px) {
    header nav ul li {
        display: block;
        margin: 10px 0;
    }

     .hero {
        padding: 30% 20% !important;
    }

    .feature-cards .card {
        width: 90%;
        margin: 10px auto;
    }

    .about img {
        max-width: 90%;
    }
    .navbar.navbar-expand-lg.navbar-dark.bg-dark {
    background: linear-gradient(135deg, #11190d, #b4be52) !important;
}
}
 .terms {
        padding: 3rem 1rem;
        background: linear-gradient(to bottom, #ffffff, #f2f2f2);
        font-family: 'Roboto', sans-serif;
        color: #333;
    }
    .terms-heading {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 2rem;
        text-align: center;
        color: #0056b3;
    }
    .terms-intro {
        font-size: 1.5rem;
        margin-bottom: 3rem;
        text-align: center;
        color: #666;
    }
    .terms-content {
        max-width: 900px;
        margin: 0 auto;
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .terms-section-heading {
        font-size: 1.8rem;
        margin-top: 2rem;
        color: #0056b3;
        border-bottom: 2px solid #0056b3;
        padding-bottom: 0.5rem;
    }
    .terms-content p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 1.2rem;
    }
    .terms-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    .terms-list li {
        margin-bottom: 1rem;
        font-size: 1.2rem;
        position: relative;
        padding-left: 25px;
    }
    .terms-list li:before {
        content: '\2022';
        color: #0056b3;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: 0;
    }