/* write your own css here */

/* Enhanced Logo Styling */
.header-logo {
    height: 43px;
    width: auto;
    max-height: 43px;
}

.logo-panel img {
    height: 43px !important;
    width: auto;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .header-logo,
    .logo-panel img {
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .header-logo,
    .logo-panel img {
        height: 30px !important;
    }
}

body.page-contact footer {
    position: fixed !important;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

body.page-contact .main-container {
    margin-bottom: 200px !important; /* Adjust this value based on your footer's height */
}

/* Video thumbnail with play button overlay */
.blog-one-img a {
    position: relative;
    display: block;
}

.blog-one-img video {
    background: #000;
}

/* Webinar Video Styling */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-container {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Webinar Action Box - Clean professional design */
.webinar-action-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.webinar-action-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.webinar-action-box h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}

.webinar-action-box .btn-webinar {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}

.webinar-action-box .btn-webinar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
    text-decoration: none;
}

.webinar-action-box .text-muted {
    color: rgba(255,255,255,0.8) !important;
    font-size: 13px;
}

/* Legacy webinar link box for backward compatibility */
.webinar-link-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none !important;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.webinar-link-box h4 {
    color: white;
    margin-bottom: 15px;
}

.webinar-link-box .btn-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.webinar-link-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .webinar-action-box h4 {
        font-size: 16px;
    }
    
    .webinar-action-box .btn-webinar {
        padding: 8px 20px;
        font-size: 14px;
    }
}
