body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #202124;
}
.intro {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(103, 119, 187, 0.8), rgba(101, 128, 193, 0.8)), 
                        url('img/service-img.jpg') center/cover no-repeat;
            
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Text Styling */
.intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color:#4267b2; 
}
.intro h1:hover {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color:#ffc600; 
}

.intro p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color:#ffffff; 
}

/* Overlay Effect for Better Readability */
.intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1;
}

/* Text Styling */
.intro h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
} 

/* Services Section */
.services {
    padding: 80px 20px;
    background: #fff;
}

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a73e8;
    font-weight: 500;
    text-align: center;
    
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 300px;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.service-icon {
    font-size: 3rem; 
    color: #4267B2;
    margin-bottom: 10px;
}

.service-category h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a73e8;
    font-weight: 500;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icon-container i {
    transition: transform 0.3s ease-in-out;
}

.icon-container i:hover {
    transform: scale(1.2);
}
/* banner */
