/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Section Container */
.container {
    text-align: center;
    padding: 50px 10%;
    opacity: 1; /* Hide initially */
    transform: translateY(50px); /* Move down initially */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000000;
}

/* Section Description */
.section-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #00000088;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px; /* Added more top margin */
}

/* Service Cards */
.service-card {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background 0.3s;
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Service Card Title */
.service-card h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Service Card Text */
.service-card p {
    font-size: 1rem;
    color: #000000;
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05);
    background: rgba(184, 183, 183, 0.959);
}

/* Active Animations */
.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 🌍 Footer Section */
/* General Footer Styling */
footer {
    background: #0d0d0d;
    color: #fff; /* Changed from #ccc to #fff */
    padding: 60px 20px 20px; /* Increased top padding from 40px to 60px */
    margin-top: 60px; /* Added top margin for more space */
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
    height: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Footer Logo & Glow Effect */
.footer-logo img {
    width: 120px;
    height: auto;
    animation: glowUp 3s infinite alternate;
    filter: drop-shadow(0 0 8px #00f7ff);
}

@keyframes glowUp {
    0% {
        filter: drop-shadow(0 0 5px #00f7ff);
    }
    100% {
        filter: drop-shadow(0 0 20px #00f7ff);
    }
}

.footer-logo p {
    margin-top: 10px;
    font-size: 14px;
    color: #fff; /* Changed from #aaa to #fff */
}

/* Section Headings */
.footer-links h3,
.footer-contact h3,
.footer-visit h3,
.footer-social h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

/* Links - Updated to white and no underline */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: #00f7ff;
    padding-left: 5px;
    text-decoration: none;
}

/* Contact Info - Updated to white */
.footer-contact p,
.footer-visit p {
    font-size: 14px;
    margin: 8px 0;
    color: #ffffff;
}
.footer-contact a {
    color: white;
}

.footer-contact i {
    margin-right: 8px;
    color: #00f7ff;
}

/* Social Media - Updated to white */
.footer-social a {
    display: block;
    color:  #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-social i {
    color: #00f7ff;
}
.footer-social a:hover {
    color: #00f7ff;
    text-decoration: none;
}

/* Visit Location - Updated to white */
.footer-visit a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-visit a:hover {
    color: #00f7ff;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    margin-top: 30px;
    font-size: 8px;
    color: #fff; /* Added to ensure white color */
}

.footer-bottom a {
    color: #00f7ff;
    text-decoration: none;
}

.footer-bottom p {
    font-size: small;
    color: #fff; /* Added to ensure white color */
}

.footer-bottom a:hover {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .footer-links,
    .footer-contact,
    .footer-visit,
    .footer-social {
        margin-top: 20px;
    }
}