/* General Styles */



body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.4;
}
h1, h2, h3 {
    font-weight: bold;
}
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007BFF;
    color: white;
    padding: 10px 20px;
}


header .logo img {
    max-height: 50px;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}
/* Header Section */

header nav a {
    font-size: 1.2rem; /* Adjust the size as needed */
    font-weight: bold; /* Optional for better emphasis */
    text-transform: uppercase; /* Optional to make the text appear more prominent */
}

header .logo {
    font-size: 1.2rem; /* Increase the size of any text fallback */
    font-weight: bold; /* Optional for better emphasis */
    text-transform: togglecase; /* Optional to make the text appear more prominent */
}
/* Hero Section */
#hero {
    text-align: center;
    background:#2e8b57;
    padding: 1px;
    color: white;

}
#hero h1 {
    line-height: 3; /* Reduce line spacing for the heading */
}

#hero p {
    font-size: 1.2rem; /* Increase size of the paragraph */
}
#hero img {
    max-width: 100%;
    height: auto;
    display: block;
    
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
}


#hero .btn {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

#hero .btn:hover {
    background: #0056b3;
}

/* About Section */
#about {
    text-align: center;
    padding: 20px;
    background: #e9ecef;
}

.feature-image {
    max-width: 100%;
    height: auto;
    display: block;
}

#feature .btn {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

#Feature .btn:hover {
    background: #0056b3;
}

}

/* Features Section */
#features {
    padding: 20px;
}

.feature-grid {
    display: flex;
    gap: 20px;
}

.feature-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    flex: 1;
}

.feature-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #007BFF;
}

/* Training Section */
#training {
    padding: 20px;
    background: #f4f4f4;
    text-align: center;
}

.training-video video {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
}

footer a {
    color: #007BFF;
    margin: 0 5px;
    text-decoration: none;
}
