* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    padding: 20px;
    min-height: 100vh;
}
        
.header-banner {
    background-color: #008080;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,128L48,112C96,96,192,64,288,80C384,96,480,160,576,181.3C672,203,768,181,864,170.7C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #008080;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #f0f8ff;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 10px auto;
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    list-style: none;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    text-transform: capitalize;
}

.service-description {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Different colors for each card */
.service-card:nth-child(1) .service-icon { background: #3498db; }
.service-card:nth-child(2) .service-icon { background: #2ecc71; }
.service-card:nth-child(3) .service-icon { background: #e74c3c; }
.service-card:nth-child(4) .service-icon { background: #9b59b6; }
.service-card:nth-child(5) .service-icon { background: #f39c12; }
.service-card:nth-child(6) .service-icon { background: #1abc9c; }
.service-card:nth-child(7) .service-icon { background: #d35400; }
.service-card:nth-child(8) .service-icon { background: #34495e; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .features {
        gap: 15px;
    }
    
    .feature {
        width: 150px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem;
    }

    .header-banner {
        padding: 40px 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 250px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    self-align: center;
}

.footer-bottom {
    margin-top: auto;
    padding-top: 20px;
    color: #95a5a6;
}


.logo {
    height: 50px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .logo {
        height: 40px;
    }
}
