/* styles.css */

body {
    font-family: 'Arial', sans-serif;
}

.hero-section {
    background: url('/Assets/Banner-3.png') no-repeat center center/cover;
    color: white;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* Audit Section */
.audit {
    background: #fde8e8;
    padding: 60px 20px;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.data-content{
    display: flex !important;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }
    .data-content{
        display: none !important;
    }

    .audit {
        text-align: center;
    }
}

.main-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.main-heading span {
    color: #ff3b30;
}

.sub-heading {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 30px;
    color: #ff3b30;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
}

.btn-primary {
    background-color: #ff3b30;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #e02b20;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 15px;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .sub-heading {
        font-size: 0.9rem;
    }
}

.custom-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    background-color: #fdecec;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.card-body {
    background-color: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
}

.card-title{
    font-weight: bold;
}

.heading {
    font-weight: bold;
    color: #232323;
}

.subheading {
    color: #666;
    font-size: 1.2rem;
}

.feature {
    padding: 20px;
}

.icon {
    font-size: 50px;
    color: #e63946;
    margin-bottom: 10px;
}

button {
    background-color: #e63946;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #d62839;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature {
        margin-bottom: 20px;
    }
}

/* Section Headings */
.section-title {
    color: #333;
    font-size: 1.8rem;
}

.section-subtitle {
    color: #555;
    font-style: italic;
    font-size: 1rem;
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 2rem;
    color: #e63946;
    margin-bottom: 10px;
}

.info-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.info-text {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.increase {
    color: green;
}

.decrease {
    color: red;
}

/* Testimonial Section */
.testimonial-box {
    background: #fff;
    border-radius: 10px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: 10px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.author-name {
    font-size: 1rem;
    font-weight: bold;
}

.author-designation {
    font-size: 0.9rem;
    color: #777;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #e63946;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d62839;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-card {
        padding: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-box {
        padding: 15px;
    }

    .cta-button {
        width: 100%;
    }
}

.form-container {
    max-width: 600px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 50px;
}

h2 {
    font-weight: bold;
}

.btn-danger {
    border-radius: 5px;
    font-size: 18px;
    padding: 10px;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .form-container {
        max-width: 90%;
        margin-top: 20px;
    }

    .btn-danger {
        font-size: 16px;
        padding: 8px;
    }
}