/*
© 2025 RR Group. All Rights Reserved.
This website, including its design, content, and code, is developed and maintained by
VIHAN IT PROFESSIONALS (https://vihanitprofessionals.com).

Unauthorized copying, reproduction, redistribution, or use of any part of this website
without express written permission is strictly prohibited and may result in legal action 
under applicable intellectual property laws.

If you believe this work has been copied or misused in any way, please contact us immediately.
*/

/* About Us Section */
.about-us {
    background: linear-gradient(135deg, #f3f3f3, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.about-container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-top: 20px;
}

.about-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* About Us Cards */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.about-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 350px;
    text-align: left;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-info {
    padding: 20px;
}

.about-info h3 {
    font-size: 22px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.about-info p,
.about-info ul {
    font-size: 16px;
    color: #666;
}

.about-info ul {
    padding-left: 20px;
    list-style: none;
}

.about-info ul li {
    margin-bottom: 8px;
}

/* Highlights */


        /* General Styles */
       

        p {
            font-size: 1.2rem;
            color: #333;
            line-height: 1.8;
        }

        /* Why Choose Us Section */
        #why-choose-us {    
            margin-top: 30px;
            background-color: #fff;
            padding: 80px 20px;
        }

        #why-choose-us ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        #why-choose-us li {
            font-size: 1.3rem;
            color: #555;
            background: #f9f9f9;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
            position: relative;
            padding-left: 40px;
        }

        #why-choose-us li::before {
            content: "✔";
            color: #00977a;
            position: absolute;
            left: 15px;
            font-weight: bold;
            font-size: 1.5rem;
        }

        #why-choose-us li:hover {
            transform: scale(1.05);
        }
/* Stats Section */
.stats-section {
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.stats-card {
    background: linear-gradient(135deg, #032b44, #b1b1b1, #8bc34a);
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    width: 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    background: linear-gradient(135deg,  #8bc34a, #b1b1b1, #032b44);
    transform: translateY(-10px);
}

.stats-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.stat-number {
    font-size: 50px;
    font-weight: bold;
    margin: 0;
    transition: color 0.3s ease;
}

.stats-card:hover .stat-number {
    color: #ffcc00;
}

.stats-card p {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 991px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        margin-top: 50px;
    }
}

/*
© 2025 RR Group. All Rights Reserved.
This website, including its design, content, and code, is developed and maintained by
VIHAN IT PROFESSIONALS (https://vihanitprofessionals.com).

Unauthorized copying, reproduction, redistribution, or use of any part of this website
without express written permission is strictly prohibited and may result in legal action 
under applicable intellectual property laws.

If you believe this work has been copied or misused in any way, please contact us immediately.
*/