/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
}


a {
    text-decoration: none;
    color: inherit;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 60px 0;
}

.about_bg {
    background-color: #f5f5f5;
    padding: 40px 0;
}

h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    color: #34495e;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about_content {
    padding:20px;
}

.about_content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}



.btn.know_btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2ecc71;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn.know_btn:hover {
    background-color: #27ae60;
}

.about_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about_banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Layout */
@media (max-width: 768px) {
    #about .row {
        flex-direction: column;
    }

    .col-lg-7, .col-lg-5 {
        width: 100%;
    }

    .about_banner img {
        max-width: 100%;
        height: auto;
    }
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
	color:white;
}
/* Core Values Section */
.core-values {
    margin-top: 20px;
    padding-left: 20px;
}

.value-item {
    margin-bottom: 20px;
}

.value-item h5 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 5px;
}

h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}
/* Services Section */
.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-item h5 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }
}
