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

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #1f1f1f, #2c2c54);
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(
        135deg,
        #1e1e2f,
        #2c2c54,
        #622AB0,
        #909A9B,
        #6B7778,
		#D3D3AB,
		#FFC300
    );
    background-size: 400% 400%; /* Increased size for smoother transitions */
    animation: gradientMove 6s ease-in-out infinite; /* Faster and smoother */
    color: #ffffff;
    position: relative;
}
/* Text Shadow for Visibility */
.hero .title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #000;
}
.hero .subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d1d1d1;
    text-shadow: 3px 3px 4px #000;
}


/* Call-to-action Button */
.cta-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background: #ff4500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}


.cta-button:hover {
    background: #ff6347;
}

/* Services Section */
.services {
    padding: 50px 20px;
	padding-bottom: 80px;
    background-color: #292929;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px #000;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-card {
    background-color: #353535;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff4500;
}

.service-card p {
    font-size: 1rem;
    color: #d1d1d1;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #1f1f1f;
}

footer p {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}
