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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo img {
    height: 130px;
    width: auto;
}

.logo h1 {
    color: #17a2b8;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #17a2b8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9dc244 0%, #17a2b8 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about h2 {
    text-align: center;
    color: #17a2b8;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-content strong {
    color: #17a2b8;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 60px 0;
    background-color: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #9dc244;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mv-card h2 {
    color: #17a2b8;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mv-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
}

/* Services Section */
.services-preview {
    padding: 60px 0;
}

.services-preview h2 {
    text-align: center;
    color: #17a2b8;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #9dc244;
    margin-bottom: 1rem;
}

.cta {
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #9dc244 0%, #17a2b8 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-info h2 {
    text-align: center;
    color: #17a2b8;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-item h3 {
    color: #9dc244;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #9dc244 0%, #17a2b8 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #9dc244;
}

.service-detail-card h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card p {
    color: #666;
    line-height: 1.8;
}

/* Contact CTA */
.contact-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    color: #17a2b8;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-info-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #9dc244;
}

.contact-box h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-box p {
    color: #666;
    line-height: 1.8;
}

.contact-box a {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-info-detailed {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 30px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}