body {
    font-family: "minion-pro", Georgia, serif;
    /* Adobe may expose the font name; confirm exact family name in your kit */
    font-weight: 700;
    /* ensure bold */
    font-size: 16px;
    line-height: 1.6;
}

#hero {
    height: 100vh;
}

.video-bg iframe {
    object-fit: cover;
    pointer-events: none;
    z-index: -1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3d89;
}

h3 {
    color: #1e3d89 !important;
}

.corner-btn {
    position: absolute;
    bottom: 0%;
    right: 13px;
    font-size: 1.2rem;
    padding: 10px 20px 10px 50px;
    z-index: 2;
    transition: background-color 0.3s ease;
    background-color: #091636;
    color: #fff;
    /* box-shadow: 0px 1px 10px 5px #959393; */
    border-radius: 100px 0px 0px 10px;
}

.corner-btn:hover {
    background-color: #012842;
    /* Darker blue on hover */
    color: #fff;
}

.blink-animation {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.social-icon {
    display: inline-block;
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 8px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Custom background colors */
.bg-linkedin {
    background-color: #3b5998;
}

.bg-whatsapp {
    background-color: #25d366;
}

.bg-instagram {
    background: radial-gradient(circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%);
}

.bg-youtube {
    background-color: #ff0000;
}

@media (max-width: 1024px) {
    .corner-btn {
        position: absolute;
        bottom: 0%;
        right: 11px;
        font-size: 1.2rem;
        padding: 10px 10px 10px 20px;
        z-index: 2;
        transition: background-color 0.3s ease;
        background-color: #091636;
        color: #fff;
        /* box-shadow: 0px 1px 10px 5px #959393; */
        border-radius: 30px 0px 0px 30px;
    }
}


.animate-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
}

.modal.show .animate-image {
    opacity: 1;
    transform: scale(1);
}

.img-hover-zoom {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover {
    transform: scale(1.05);
}