/* Color Variables */
:root {
    --primary-light-blue: #4FC3F7; /* Main light blue color */
    --primary-dark-blue: #0288D1;  /* Darker blue for contrast */
    --accent-color: #FFA726;       /* Orange accent color */
    --light-gray: #f5f7f9;         /* Light background */
    --text-dark: #333333;          /* Dark text */
    --text-light: #ffffff;         /* Light text */
    --footer-bg: #0277BD;          /* Darker blue for footer */
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    font-size: 14px;
}

.top-bar .left span {
    margin-right: 20px;
}

.top-bar .left i {
    margin-right: 5px;
}

.top-bar .left a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .left a:hover {
    color: var(--accent-color);
}

.social-media a {
    color: var(--text-light);
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--accent-color);
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
}


.nav-links {
    display: flex;
    list-style: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-dark-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-dark-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact {
    display: flex;
    align-items: center;
    list-style: none;
}

.contact-btn {
    background-color: var(--primary-light-blue);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-dark-blue);
}


/* About Container Section */
.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 5%;
    background-color: var(--light-gray);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-light-blue);
}

.about-text p {
    line-height: 1.8;
    font-size: 16px;
}

.why-choose {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-light-blue);
}

.why-choose h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.why-choose ul {
    list-style: none;
}

.why-choose li {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Mission and Vision Section */
.mission-vision {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    background-color: white;
    gap: 30px;
}

.mission-vision .column {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-vision .column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-light-blue);
}

.mission-vision .column:hover {
    transform: translateY(-5px);
}

.mission-vision h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-vision p {
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 50px 5% 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer .social-media {
    margin-top: 20px;
}

.footer .social-media a {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer .social-media a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-container, 
    .mission-vision, 
    .footer-container {
        flex-direction: column;
    }
    
    .why-choose {
        margin-top: 20px;
    }
    
    .mission-vision .column {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .nav-links li {
        margin: 5px 10px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}