/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Section Container */
.container {
    text-align: center;
    padding: 50px 10%;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

/* Section Description */
.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dddddd;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.service-card h3 {
    color: #ffcc00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #ddd;
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #0e0e0e;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Section Container */
.container {
    text-align: center;
    padding: 50px 10%;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00ffcc;
}

/* Section Description */
.section-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dddddd;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 255, 204, 0.3);
    transition: transform 0.3s, background 0.3s;
}

.service-card h3 {
    color: #00ffcc;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #ddd;
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #0e0e0e;
    color: #ffffff;
    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: #00ffcc;
}

/* Section Description */
.section-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #dddddd;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 255, 204, 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: #00ffcc;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Service Card Text */
.service-card p {
    font-size: 1rem;
    color: #ddd;
}

/* Hover Effect */
.service-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

/* 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;
    }
}
.back-to-home {
    text-align: center;
    margin: 50px 0;
}

.btn-home {
    display: inline-block;
    background: #044150;
    color: #d7d7da;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 8px;
    margin-top: 40px;
   
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #00fff2;
    transform: scale(1.05);
}  