
body{
    font-family: 'Arial', sans-serif;
    background-size: cover;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-image: url('https://img.freepik.com/free-photo/optical-fiber-background_23-2149301527.jpg?size=626&ext=jpg&ga=GA1.1.1527547757.1721555699&semt=ais_user');

}
.text-shadow {
    text-shadow: 0px 0px 10px rgb(235, 15, 123);
}

.hover-effect {
    transition: all ease-in-out 0.5s;
}

.hover-effect:hover {
    color: rgb(235 15 123);
    text-shadow: 0px 0px 10px #4ccbd9;

}



/* FOoter */
.end {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

footer {
    background-color: #1a1a1a;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.footer-section h3 {
    font-size: 30px;
    color:white;

    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: rgb(235 15 123);
}

.social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons li {
    display: inline-block;
}

.social-icons a {
    text-decoration: none;
    /* color:rgb(235 15 123); */
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff00cc;
}

.footer-bottom {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    margin-right: 10px;
    background: #121212;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background:white;
    color: #121212;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #ff00cc;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-section {
        width: 30%;
        text-align: left;
    }

    .newsletter-form {
        flex-direction: row;
        align-items: center;
    }

    .footer-bottom {
        text-align: right;
        margin-top: 0;
    }
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}
.service-card {
    background-color: transparent;
    border: 1px solid white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgb(235 15 123);
    box-shadow: 0px 0px 10px #6f01f8;
}
.service-card img {
    width: 50px;
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.service-card p {
    font-size: 14px;
    color: #bbb;
}

/* Media Queries */
@media (max-width: 1024px) {
    .service-card h3 {
        font-size: 18px;
    }
    .service-card p {
        font-size: 13px;
    }
    .service-card img {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .service-card {
        padding: 15px;
    }
    .service-card h3 {
        font-size: 17px;
    }
    .service-card p {
        font-size: 12px;
    }
    .service-card img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 15px;
    }
    .service-card h3 {
        font-size: 16px;
    }
    .service-card p {
        font-size: 11px;
    }
    .service-card img {
        width: 35px;
    }
}