.btn{
    background: linear-gradient(to right, #C53F7A 0%, #C53F7A 20%, #00AFF0 40%, #00AFF0 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn .icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.btn:hover {
    background: linear-gradient(to right, #b1366b 0%, #b1366b 20%, #009cd6 40%, #009cd6 70%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
    .profile-image{
        height: 270px;
        object-position: top;
    }

}
/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #C53F7A;
}

.popup-content {
    color: #444;
}

.popup-text {
    margin: 15px 0;
    line-height: 1.5;
    font-size: 1rem;
}

.popup-button .btn {
    width: 100%;
}

.embla {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 400px;
}

@media (min-width: 768px) {
    .embla {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .embla {
        height: 100%;
    }
}

.embla__container {
    display: flex;
    height: 100%;
}

.embla__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.embla__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-container {
    height: 350px;
}

@media (min-width: 768px) {
    .video-container {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .video-container {
        height: 450px;
    }
}


.embla, .video-container {
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive styles */
@media (max-width: 768px) {
    .embla, .video-container {
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
    }

    .footer .grid > div {
        width: 100%;
    }
}
.hero-mobile{
    display: none;
}
@media (max-width: 768px) {
    .header{
        padding-top: 0;
    }
    .buttons{
        padding: 0;
    }
}