/* Main Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding: 0;
    margin: 0;
}

/* Navbar Styles */
.navbar { /* Target the navbar directly */
    padding: 1rem 0; /* Add some vertical padding */
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem; /* Slightly larger brand font */
}

.navbar-nav .nav-link {
    font-size: 1.1rem; /* Slightly larger nav links */
    padding: 0.5rem 1.25rem; /* Adjust horizontal padding */
    transition: color 0.3s ease; /* Add transition for hover effect */
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Example hover color */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); /* Improved toggler icon for contrast */
}


/* Card Styles */
.card {
    border: none; /* Remove default card border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* Softer shadow */
    border-radius: 12px;
}

.card-header {
    font-size: 1.3rem;
    font-weight: 600;
    background-color: #fff; /* Use white or a lighter color */
    border-bottom: 1px solid #eee; /* Add a subtle separator */
    padding: 1rem 1.5rem; /* consistent padding */
}

.card-title { /* Style the card title specifically */
    color: #333; /* Darker text for better contrast */
}

.card-body {
    padding: 2rem; /* Increase card body padding */
}

.card-body p {
    font-size: 1.1rem; /* Slightly larger paragraph text */
    line-height: 1.6; /* Improve line height for readability */
    color: #555; /* Slightly lighter text color */
}

/* Image Styles */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents image from affecting layout */
    margin: 0 auto; /* Centers the image */
}

/* Section Title and Text */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

p.text-center {
    font-size: 1.1rem;
    color: #777;
}

/* Feature Container Styles (Improved) */
.feature-container {
    text-align: center;
    padding: 2rem; /* Increased padding */
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 1.5rem; /* Add spacing between feature containers */
}

.feature-container:hover {
    transform: translateY(-8px); /* More pronounced hover effect */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0; /* Slightly darker background on hover */
}

.feature-container i {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    color: #f8ac07;
    transition: color 0.3s ease;
}

.feature-container:hover i {
    color: #f0108b;
}

.feature-container h5 {
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    transition: color 0.3s ease;
}

.feature-container:hover h5 {
    color: #1ff30c; /* Darker blue on hover */
}

.feature-container p {
    font-size: 1.0rem;
    color: #6c757d;
}

/* Responsive Adjustments (Improved) */
@media (max-width: 768px) {
    .feature-container {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }

    .feature-container i {
        font-size: 2rem;
    }

    .feature-container h5 {
        font-size: 1.3rem;
    }

    .feature-container p {
        font-size: 1rem;
    }
}

.attachment__caption {
    display: none !important; /* Hide the filename and size */
}
