/* Contact section styles */
.contact-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.contact-section h2 {
    padding-top: 50px;
    color: #070707;
}

.form-block {
    margin-top: 90px; 
}

.contact-section .form-control {
    margin-bottom: 20px;
}

.contact-section .btn-main {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 50px;
}

.btn-main:hover {
    background: #0d0f27;
    color: #fff; 
    
}

@media (max-width: 768px) {
    .contact-section .form-control {
        width: 100%;
    }
}



.image-wrapper {
    text-align: center;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.spinning-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 5px solid #0d0f27;
    box-sizing: border-box;
    animation: spin-scale 6s linear infinite;
    pointer-events: none;
}

@keyframes spin-scale {
    0% {
        transform: rotate(0deg) scale(0.79);
    }
    25% {
        transform: rotate(90deg) scale(0.3);
    }
    50% {
        transform: rotate(180deg) scale(0.79);
    }
    75% {
        transform: rotate(270deg) scale(0.3);
    }
    100% {
        transform: rotate(360deg) scale(0.79);
    }
}




