body {
    background-color: #f8f9fa;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 100px 20px;
    text-align: center;
}
.hero img {
    width: 250px; /* Set a fixed width for the emblem */
    height: 250px; /* Set the same height to make it a perfect circle */
    object-fit: cover; /* Ensures the image scales properly within the circle */
    border-radius: 50%; /* Crops the image into a circle */
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)); /* Optional: Adds a shadow effect */
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
}
.hero .btn {
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 60px 20px;
}
.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
}
.features .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.features .feature-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    height: 100%;
}
.features .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.features .feature-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.features .feature-box p {
    color: #666;
    font-size: 1rem;
    flex-grow: 1;
}
.features .feature-box i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

/* Call-to-Action Section */
.cta {
    background-color: #007bff;
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.cta h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta a {
    background-color: #0056b3;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta a:hover {
    background-color: #003f7f;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .features .feature-box {
        margin-bottom: 20px;
    }
}
