﻿ 
/* --- General Reset & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;
}

/* --- Header & Hero Section --- */
header {
    padding: 40px 0;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    max-width: 280px; /* Adjust based on your logo size */
    height: auto;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Services Grid --- */
.services-section {
    margin-top: 30px;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #2980b9; /* A nice blue to match professional themes */
        margin: 10px auto 0;
        border-radius: 2px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    border-left: 5px solid transparent;
}

    /* Hover Effect */
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-left: 5px solid #2980b9;
    }

.icon-box {
    font-size: 24px;
    color: #2980b9;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: #eef7fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #34495e;
}

/* --- Footer --- */
footer {
    margin-top: auto;
    padding: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* --- Animation --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    /* Stack cards on mobile */
}
 
