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;

}
.contact{
    background-color: transparent;
    backdrop-filter: blur(30px);
    padding: 40px;
    border: 1px solid white;
    border-radius: 10px;
}
.contact:hover{
    border: 1px solid rgb(235 15 123);
    box-shadow: 0px 0px 10px #6f01f8;
}
.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.form-group input{
    padding: 25px;
    border: 2px solid white;
    border-radius: 5px;
    background: transparent;
    color: #fff;
}
.form-group input:hover{
    border: 2px solid  rgb(0 90 152);
    box-shadow: 0px 0px 10px #2563eb;
}

.form-group label {
    display: none; 
}

.form-group select, 
.form-group textarea {
    width: 48%;
    padding: 25px;
    border: 2px solid white;
    border-radius: 10px;
    background: transparent;
    color: #fff;
}
.form-group select:hover , 
.form-group textarea:hover{
    border: 2px solid  rgb(0 90 152);
    box-shadow: 0px 0px 10px #2563eb;
}
.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: white;
}
.form-group.full-width {
    width: 100%;
}
.form-group.full-width input,
.form-group.full-width select,
.form-group.full-width textarea {
    width: 100%;
}
.form-group textarea {
    resize: none;
    height: 100px;
}
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        margin-bottom: 10px;
    }
}
.btn2 {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fefefe;
    text-transform: uppercase;
    color: #fefefe;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: 0.3s;
  }
  
  .btn2::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - -2px);
    background-color:purple;
    transition: 0.3s ease-out;
    transform: scaleY(1);
  }
  
  .btn2::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% - 50px);
    background-color:purple;
    transition: 0.3s ease-out;
    transform: scaleY(1);
  }
  
  .btn2:hover::before {
    transform: translateY(-25px);
    height: 0;
  }
  
  .btn2:hover::after {
    transform: scaleX(0);
    transition-delay: 0.15s;
  }
  
  .btn2:hover {
    border: 2px solid  rgb(0 90 152);
    box-shadow: 0px 0px 10px #2563eb;
  }
  
  .btn2 span {
    position: relative;
    z-index: 3;
  }
  
  button {
    text-decoration: none;
    border: none;
    background-color: transparent;
  }
  
  
.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;
    }
}
iframe{
    border-radius: 20px;
}
.map{
    font-family: Arial, sans-serif;
    background-color: transparent;
}
.contact-section {
    background: transparent;
    color: white;
    padding: 50px 0;
}
.contact-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}
.contact-section p {
    color: #bfbfbf;
    margin-bottom: 30px;
}
.contact-section .contact-info {
    margin-bottom: 20px;
}
.contact-section .contact-info i {
    font-size: 20px;
    color: #ff00cc;
    margin-right: 10px;
}
.contact-section .contact-info a {
    color: #bfbfbf;
    text-decoration: none;
}
.contact-section .map {
    height: 400px;
    border: 0;
}
.map2{
    background-color: transparent;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid white;
    /* transition: all ease-in-out 0.1s; */
}
.map2:hover{
    border: 1px solid rgb(235 15 123);
    box-shadow: 0px 0px 10px #6f01f8;
}


