/* Logo Container */
.logo-container {
    margin-bottom: 20px; /* Space between logo and text */
}

.logo {
    max-width: 150px; /* Default size for desktop */
    height: auto;
    width: 100%; /* Ensures responsiveness */
}

/* Hero Text */
.hero-text {
    max-width: 100%;
    text-align: center;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.app-btn {
    background: #008000;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-btn:hover {
    background: #006400;
}

/* Hero Image */
.hero-image img {
    width: 300px;
    height: auto;
    margin-top: 20px;
}

/* Responsive Styles for Small Devices */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 50px 0;
    }

    .logo {
        max-width: 120px; /* Smaller logo for small devices */
    }

    .hero-text h2 {
        font-size: 28px; /* Smaller font size for small devices */
    }

    .hero-text p {
        font-size: 16px; /* Smaller font size for small devices */
    }

    .buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }

    .app-btn {
        width: 100%; /* Full-width buttons */
        justify-content: center;
    }

    .hero-image img {
        width: 200px; /* Smaller image for small devices */
    }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.7);
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(90deg, #008000, #0000ff);
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

.logo {
    font-size: 30px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: url('assests/header/home-bg.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 36px;
}

.hero .buttons {
    margin-top: 20px;
}

.app-btn {
    background: #008000;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.app-btn:hover {
    background: #006400;
}

/* Sections */
.content-section {
    padding: 50px 20px;
    background: white;
    text-align: center;
}

.content-section h2 {
    color: #008000;
    font-size: 28px;
    margin-bottom: 20px;
}
.section-img {
    width: 150px; /* Set a fixed width for a smaller logo size */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 20px auto;
}

/* .section-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto;
} */

ul {
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: auto;
}

ul li {
    margin: 10px 0;
    font-size: 18px;
    padding-left: 20px;
    background: url('check-icon.png') no-repeat left center;
    background-size: 16px;
}


/* Customize the icons inside the buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Makes the white icon visible on green */
}

/* Ensure images fit properly */
.carousel img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Adjust as needed */
    object-fit: contain; /* Ensures the full image is visible */
    border-radius: 10px;
    display: block;
    margin: auto;
}

/* Footer */
footer {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 24px;
    }
}
/**/

    /* Styling the section */
    #summary {
        padding: 50px 0;
        background-color: #f8f9fa;
    }

    /* Flexbox for layout */
    .summary-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /* Text content */
    .summary-text {
        flex: 1;
        max-width: 45%;
    }

    .summary-text h2 {
        font-size: 2rem;
        color: #333;
    }

    .summary-text p {
        font-size: 1.1rem;
        color: #555;
    }

    .summary-text ul {
        list-style-type: none;
        padding: 0;
    }

    .summary-text ul li {
        padding: 5px 0;
        font-size: 1rem;
        color: #333;
    }

    /* Carousel container */
    .carousel-container {
        flex: 1;
        max-width: 50%;
    }

    .carousel img {
        border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .summary-container {
            flex-direction: column;
            text-align: center;
        }
        .summary-text,
        .carousel-container {
            max-width: 100%;
        }
    }
    /**/
    /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.7);
    color: #333;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: url('assests/header/home-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 10px;
}

.app-btn img {
    width: 150px;
    height: auto;
}

.hero-image img {
    width: 300px;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        background: rgba(0, 0, 0, 0.186); /* Semi-transparent black */
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7); /* Dark shadow */
        color: #fff;
    }

    .buttons {
        justify-content: center;
    }

    .hero-image img {
        width: 200px;
        margin-top: 20px;
    }

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.7);
    color: #333;
}

.container- {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: url('assests/header/home-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px; /* Space between logo and text */
}

.logo {
    max-width: 150px; /* Adjust logo size */
    height: auto;
}

.hero-text {
    max-width: 100%;
    text-align: center;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.app-btn {
    background: #008000;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-btn:hover {
    background: #006400;
}

.hero-image img {
    width: 300px;
    height: auto;
    margin-top: 20px;
}

/* Responsive Styles for Small Devices */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 50px 0;
    }

    .logo {
        max-width: 120px; /* Smaller logo for small devices */
    }

    .hero-text h2 {
        font-size: 28px; /* Smaller font size for small devices */
    }

    .hero-text p {
        font-size: 16px; /* Smaller font size for small devices */
    }

    .buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }

    .app-btn {
        width: 100%; /* Full-width buttons */
        justify-content: center;
    }

    .hero-image img {
        width: 200px; /* Smaller image for small devices */
    }
}
.logo-container {
    margin-bottom: 20px; /* Space between logo and text */
}
    
}

/**/

