/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 60px;
    height: auto;
    border-radius: 50%;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.nav-links li a i {
    margin-right: 8px;
}

.nav-links li a:hover {
    color: #ffcc00;
}

.cta {
    display: flex;
    align-items: center;
}

.cta .phone {
    color: #fff;
    margin-right: 15px;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.cta .phone i {
    margin-right: 8px;
}

.cta .phone:hover {
    color: #ffcc00;
}

.cta .cta-btn {
    padding: 10px 20px;
    color: #fff;
    background-color: #ffcc00;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.cta .cta-btn i {
    margin-right: 8px;
}

.cta .cta-btn:hover {
    background-color: #ffa500;
    transform: translateY(-5px);
}

.about {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 2s ease-in-out;
}

.about h2 {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 20px;
    position: relative;
}

.about h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.about .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
}

.about p {
    font-size: 1.2em;
    width: 90%;
    margin-bottom: 20px;
    text-align: justify;
}

.about img {
    width: 90%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
}

.mission-vision h2 {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 20px;
    position: relative;
}

.mission-vision h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.mission-vision-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}

.mission-vision-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    flex: 1;
    margin: 10px;
}

.mission-vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.values {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
    animation: fadeInUp 2s ease-in-out;
}

.values h2 {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 20px;
    position: relative;
}

.values h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.values .value {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    width: 45%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.values .value h3 {
    color: #007BFF;
}

.values .value:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team {
    padding: 60px 0;
    text-align: center;
    background-color: #f4f4f4;
    animation: fadeInUp 2s ease-in-out;
}

.team h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #007BFF;
    position: relative;
}

.team h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    flex: 1;
    margin: 10px;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    color: #007BFF;
    margin-bottom: 10px;
}

.team-member p {
    color: #555;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonials {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 2s ease-in-out;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #007BFF;
    position: relative;
}

.testimonials h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #007BFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.testimonial {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial p {
    font-style: italic;
    text-align: justify;
}

.testimonial h4 {
    margin-top: 10px;
    color: #007BFF;
    text-align: right;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .about .about-content {
        flex-direction: row;
    }
    .about p {
        width: 45%;
    }
    .about img {
        width: 45%;
    }
    .mission-vision-item, .values .value, .team-member, .testimonial {
        width: 45%;
    }
}

footer {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    padding: 40px 0;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: fadeInUp 2s ease-in-out;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-column {
    width: 45%;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #ffcc00;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 8px;
}

.footer-column ul li a:hover {
    color: #ffcc00;
}

.footer-column .social {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-column .social li {
    display: inline;
    margin: 0 10px;
}

.footer-column .social li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.footer-column .social li a i {
    margin-right: 8px;
}

.footer-column .social li a:hover {
    color: #ffcc00;
}

footer hr {
    border-top: 1px solid #777;
    margin: 20px 0;
}

footer p {
    margin: 0;
    font-size: 1em;
    text-align: center;
}

footer p a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer p a:hover {
    color: #ffcc00;
}

@media (min-width: 768px) {
    .footer-column {
        width: 22%;
    }
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .header-content, .cta {
        flex-direction: column;
    }
    
    .nav-links {
        flex-direction: column;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .about .about-content {
        flex-direction: column;
    }

    .mission-vision .mission, .mission-vision .vision {
        width: 90%;
    }

    .values .value {
        width: 90%;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .testimonials .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }
}
