 /* Base Styles */
body {
    margin: 0;
    padding: 0;
    
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: flex-start; 
    flex-wrap: wrap;
    padding: 120px 5%;
    min-height: 100vh;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Content Section */
.hero-content {
/*    flex: 1;
    max-width: 50%;*/
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
}

.hero-content h2 span {
    color: #217aff; /* Blue accent */
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
}


/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 60px;

    
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services-header {
    text-align: center;
    margin: 50px 20px;
    font-size: 2.5rem;
    color: #1e90ff;
}

.services {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin-top: 20px;
}

.service-item {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(30, 144, 255, 0.5);
}

.service-item img {
    width: 100px;
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #1e90ff;
}

.service-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    text-align: center;
    margin-top: 10px;
    padding: 0 10px;
}

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .social-icons {
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        width: 80%;
        max-width: 300px;
    }

    .services {
        padding: 10px;
    }

    .service-container {
        grid-template-columns: 1fr;
    }
}