html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: #121212; /* Dark background */
    color: #eee; /* Light text color */
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.circle {
    position: absolute;
    border-radius: 40%;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.7), rgba(80, 200, 120, 0.1));
    animation: morph 10s infinite;
    width: 30vw;
    height: 30vw;
    top: -15vw;
    left: -15vw;
    animation-delay: 0s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 50% 70%;
        transform: scale(1);
    }
    25% {
        border-radius: 50% 70% 60% 50%;
        transform: scale(1.2) translate(3vw, 2vw);
    }
    50% {
        border-radius: 60% 50% 70% 40%;
        transform: scale(1.4) translate(-2vw, 4vw);
    }
    75% {
        border-radius: 50% 70% 60% 50%;
        transform: scale(1.2) translate(2vw, -3vw);
    }
}

.circle1 {
    position: absolute;
    border-radius: 40%;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.7), rgba(80, 200, 120, 0.1));
    animation: morph1 12s infinite;
    width: 30vw;
    height: 30vw;
    top: -15vw;
    left: 35vw;
    animation-delay: 1s;
}

@keyframes morph1 {
    0%, 100% {
        border-radius: 60% 40% 70% 50%;
        transform: scale(1);
    }
    25% {
        border-radius: 70% 50% 60% 40%;
        transform: scale(1.3) translate(-3vw, 3vw);
    }
    50% {
        border-radius: 50% 70% 40% 60%;
        transform: scale(1.5) translate(2vw, -2vw);
    }
    75% {
        border-radius: 60% 50% 70% 40%;
        transform: scale(1.2) translate(-2vw, 4vw);
    }
}

.circle2 {
    position: absolute;
    border-radius: 40%;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.7), rgba(80, 200, 120, 0.1));
    animation: morph2 14s infinite;
    width: 30vw;
    height: 30vw;
    top: 47vw;
    left: 15vw;
    animation-delay: 2s;
}

@keyframes morph2 {
    0%, 100% {
        border-radius: 50% 70% 60% 40%;
        transform: scale(1);
    }
    25% {
        border-radius: 60% 50% 70% 40%;
        transform: scale(1.2) translate(2vw, -3vw);
    }
    50% {
        border-radius: 70% 40% 50% 60%;
        transform: scale(1.4) translate(-3vw, 3vw);
    }
    75% {
        border-radius: 60% 70% 40% 50%;
        transform: scale(1.2) translate(4vw, -2vw);
    }
}

.circle3 {
    position: absolute;
    border-radius: 40%;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.7), rgba(80, 200, 120, 0.1));
    animation: morph3 16s infinite;
    width: 30vw;
    height: 30vw;
    top: 30vw;
    left: 80vw;
    animation-delay: 3s;
}

@keyframes morph3 {
    0%, 100% {
        border-radius: 60% 50% 70% 40%;
        transform: scale(1);
    }
    25% {
        border-radius: 70% 40% 60% 50%;
        transform: scale(1.3) translate(-4vw, 2vw);
    }
    50% {
        border-radius: 50% 60% 40% 70%;
        transform: scale(1.5) translate(3vw, -3vw);
    }
    75% {
        border-radius: 60% 50% 70% 40%;
        transform: scale(1.2) translate(-2vw, 4vw);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .circle, .circle1, .circle2, .circle3 {
        width: 50vw;
        height: 50vw;
    }

    .circle {
        top: -25vw;
        left: -25vw;
    }

    .circle1 {
        top: -25vw;
        left: 50vw;
    }

    .circle2 {
        top: 50vw;
        left: -25vw;
    }

    .circle3 {
        top: 50vw;
        left: 50vw;
    }
}

@media (max-width: 480px) {
    .circle, .circle1, .circle2, .circle3 {
        width: 60vw;
        height: 60vw;
    }

    .circle {
        top: -35vw;
        left: -40vw;
    }

    .circle1 {
        top: -30vw;
        left: 70vw;
    }

    .circle2 {
        top: 110vw;
        left: -35vw;
    }

    .circle3 {
        top: 95vw;
        left: 55vw;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 5%;
    padding: 50px 20px;
    text-align: left;
    position: relative;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 700;
}
.navbar-nav .nav-link:hover {
    background-color: #50C878;
    color: #111;
}
.navbar-nav .nav-item {
    margin-right: 20px;
}
h1 {
    font-size: 6em;
    color: transparent;
    text-shadow: 0 0 0px #fff, 0 0 0px #fff, 0 0 2px #fff, 0 0 100px #9be1b2;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    animation: animateText 5s infinite;
    -webkit-background-clip: text;
    background-clip: text;
}
@keyframes animateText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
h2 {
    font-size: 5em;
    color: #50C878;
    text-shadow: 2px 2px 5px rgba(80, 200, 120, 0.5);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1;
    animation: glowText 2s alternate infinite;
}
p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 50px;
}
.btn-custom {
    padding: 15px 30px;
    background-color: #50C878;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}
.btn-custom:hover {
    background-color: #3EA55B;
}
.gear-animation {
    position: absolute;
    top: 20%;
    margin-left: 70%;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #50C878;
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, right 0.3s;
}
@keyframes glowText {
    0% {
        text-shadow: 2px 2px 5px rgba(80, 200, 120, 0.5);
    }
    100% {
        text-shadow: 2px 2px 20px rgba(80, 200, 120, 0.8);
    }
}
@keyframes glow {
    0% {
        box-shadow: 0 0 10px #50C878;
    }
    100% {
        box-shadow: 0 0 20px #50C878, 0 0 40px #50C878;
    }
}
@keyframes particles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}
/* Responsive Styles */
@media (min-width: 1201px) {
    #list{
        font-size: 1.5rem;
    }
    #list li{
        padding-top: 2%;
    }
    #list2{
        font-size: 1.25rem;
    }
    #list2 li{
        padding-top: 0.5%;
    }
    #ab{
        font-size: 1.2rem;
    }
}
@media (max-width: 1200px) {
    h1 {
        font-size: 5em;
    }
    h2 {
        font-size: 4em;
    }
    #list{
        font-size: 1.3rem;
    }
    #list li{
        padding-top: 2%;
    }
    #list2{
        font-size: 1.1rem;
    }
    #list2 li{
        padding-top: 1%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 4em;
    }
    h2 {
        font-size: 3em;
    }
    .container {
        padding: 40px 15px;
    }
    .gear-animation {
        right: -120px;
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2.5em;
    }
    .gear-animation {
        right: -100px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
    .btn-custom {
        padding: 10px 20px;
        font-size: 1em;
    }
    .gear-animation {
        position: relative;
        margin: 20px auto;
        top: 0;
        right: 0;
        width: 75px;
        height: 75px;
    }
    .services {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .service {
        flex: 1 1 calc(50% - 20px); /* Adjusted to take 50% of the container minus margin */
        margin: 10px;
    }
    #list{
        font-size: 1.1rem;
    }
    #list li{
        padding-top: 2%;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .btn-custom {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    p {
        font-size: 0.9em;
    }
    .gear-animation {
        width: 65px;
        height: 65px;
    }
    #services .container{
        padding: 0% ;
        margin-left: 0%;
    }
    #services .container h2{
        padding-left: 5%;
    }
    
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service {
    flex: 1 1 350px;
    width: 350px;
    margin: 10px;
    padding: 20px;
    background-color: #010101a2;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.sit{
    padding-bottom: 0px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 250;
}

.ss{
    
}
.service:hover {
    transform: translateY(-10px);
    background-color: #333333bf;
}

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

.service h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #50C878;
}

.contact-icons {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.contact-icons img {
    width: 60px;
    margin: 10px;
}
footer {
    padding: 20px 0;
    background-color: #181818;
}
.footer-contact p, .footer-links p, .footer-social a {
    margin: 5px 0;
}
.footer-contact i, .footer-social i {
    text-align: left;
    margin-right: 10px;
}
.footer-social a {
    font-size: 1.2em;
}
.footer-social a:hover {
    color: #50C878;
}
@media (max-width: 768px) {
    .footer-links{
        text-align: left;
        margin-bottom: 20px;
        margin-left: -4%;
    }
    .footer-contact{
        text-align: left;
        margin-bottom: 20px;
        margin-left: 8%;
    }
    .footer-social{
        margin-left: -20%;
        margin-bottom: 15px;
    }
    #fs{
        margin-left: 27%;
    }
    #fs2{
        margin-left: -3%;
    }
    #fs3{
        text-align: left;
    }
    h5{
        text-align: left;
        align-items: left;
        margin-left: 10%;
    }
    .footchng{
        text-align: left;
        padding-left: 13%;
    }
}