/* General Styles */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%; /* Ensures full viewport height */
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Ensures main content stretches to fill remaining space */
    padding: 20px;
}
.wrapper {
    flex: 1; /* Pushes footer to the bottom */
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: #232323;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-bottom: 4px solid #232323;
}

.logo {
    position: absolute;
    top: -10px;
    left: -20px;
    width: 250px;   
    height: auto;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1rem;
    margin-top: 10px;
}

/* Navigation Styles */
nav {
    background: #232323;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #17ff02;
}

/* Responsive Navbar */
nav .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

nav .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px;
}

nav ul.responsive {
    flex-direction: column;
    background: #232323;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    display: none;
    padding: 10px 0;
    border-top: 2px solid #232323;
}

nav ul.responsive li {
    margin: 10px 0;
    text-align: center;
}

/* Section Styles */
section {
    margin: 20px auto;
    max-width: 1200px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #232323;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #17ff02;
    display: inline-block;
    padding-bottom: 5px;
}

section p, section ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

section ul {
    list-style-type: disc;
    padding-left: 20px;
}

/* Footer Styles */
footer {
    text-align: center;
    background: #232323;
    color: white;
    padding: 15px 10px;
    font-size: 0.9rem;
    margin-top: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-top: auto;
}


/* Buttons for Actions */
button {
    background: #0078D4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #005a9e;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.9rem;
    }

    nav ul {
        display: none;
    }

    nav .hamburger {
        display: flex;
    }

    nav ul.responsive {
        display: flex;
    }

    section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    nav ul.responsive li {
        margin: 5px 0;
    }

    footer {
        font-size: 0.8rem;
    }
}

/* Form Section */
form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between fields */
    max-width: 500px; /* Center alignment */
    margin: 0 auto; /* Horizontally center the form */
}

form label {
    font-weight: bold;
    color: #333;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form textarea:focus {
    border-color: #0078D4; /* Highlight on focus */
    outline: none;
}

form button {
    background: #0078D4;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;

}

form button:hover {
    background: #17ff02;
}

/* Service Tiles Styles */
.service-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    list-style: none;
}

.shine-container {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffd700, #ffcc00); /* Golden metallic gradient */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #232323;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    position: relative; /* For positioning the shine */
}

.shine-container::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), transparent);
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    pointer-events: none;
}

/* Hover state to trigger the shine animation */
.shine-container:hover::before {
    animation: shine 0.8s ease-in-out 0.02s forwards;
}

/* Shine animation keyframes */
@keyframes shine {
    0% {
        transform: translate(150%, -35%);
        opacity: 0.3;
    }
    100% {
        transform: translate(-150%, 35%);
        opacity: 0.8;
    }
}

/* Optional: Adjustments to make sure text is centered */
.shine-container .tile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}





/*============================


