﻿.content-wrapper {
    padding-top: 110px; /* default for desktop */
}

/* For smaller screens */
@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 70px; /* adjust based on your mobile header height */
    }
}

.page-header {
    background: #0A2B5C;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding-top: 3rem !important;
    padding-bottom: 1rem !important;
}
.page-header h3{
    color: tomato;
}
    select, input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, .form-control {
        height: 46px;
    }
.hover-shadow:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}


#cookieConsent {
    border-radius: 0;
}

    #cookieConsent p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    #cookieConsent button {
        font-size: 0.85rem;
        white-space: nowrap;
    }

@media (max-width: 576px) {
    #cookieConsent .col-auto {
        flex: 0 0 auto;
    }
}

.text-primary {
    color: rgb(10 43 92) !important;
}
.bg-primary {
    background-color: #0a2b5c !important;
}

/* Prevent height fluctuation */
#testimonialCarousel .carousel-inner {
    min-height: 230px;
}

/* Navigation wrapper */
.carousel-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

/* Professional navigation buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #0A2B5C;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

    .nav-btn:hover {
        background: #081f40;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    }

/* Smooth fade effect */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}


.result-img {
    height: 200px; /* Adjust height here */
    /*object-fit: cover;*/ /* Prevent image distortion */
    width: 100%;
}

iframe {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    iframe:hover {
        transform: scale(1.03);
    }

.video-card {
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-6px);
    }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        background-color: #1ebe5d;
        transform: scale(1.1);
        color: #fff;
    }


.floating-job-btn {
    position: fixed;
    right: 25px;
    bottom: 100px; /* keep above WhatsApp button if any */
    background: #0A2B5C;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

    .floating-job-btn:hover {
        background: #081f40;
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    }

/* Mobile adjustment */
@media (max-width: 768px) {
    .floating-job-btn {
        padding: 10px 14px;
        font-size: 14px;
        bottom: 90px;
    }
}


.offcanvas {
    width: 350px;
}

.list-group-item {
    border: none;
    padding: 14px 10px;
    font-weight: 500;
    transition: 0.3s ease;
}

    .list-group-item:hover {
        background-color: #f1f5ff;
        color: #0A2B5C;
        transform: translateX(6px);
    }