/* Animation using animate.css */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0; /* Initially hidden */
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

/* Web Hosting Packages Section */
#web-hosting {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

#web-hosting h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333;
}

.hosting-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.package .price {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #93c843;
}

.package ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.package ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #666;
}

.package .cta {
    padding: 10px 20px;
    background: #93c843;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.package .cta:hover {
    background: #f2bc1c;
}

/* Contact Us Section */
#contact {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

#contact-form textarea {
    resize: vertical;
    height: 150px;
}

#contact-form button {
    padding: 15px 30px;
    background-color: #93c843;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #f2bc1c;
}

.contact-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 1em;
    margin: 10px 0;
    color: #666;
}

.contact-info h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: #333;
    font-size: 2em;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f2bc1c;
}

/* Ensure buttons have consistent styling */
button,
button a {
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    background-color: #93c843;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    outline: none;
}

button:hover,
button a:hover {
    background-color: #f2bc1c;
}

/* Adjust button inside package */
.package button {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package {
        text-align: center;
    }
    .package button {
        margin-top: 15px;
    }
}


