.video-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-card:hover .video-thumbnail::after {
    background: rgba(0, 0, 0, 0.4);
}

.youtube-play-button {
    width: 80px;
    height: 80px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.youtube-play-button i {
    font-size: 50px;
    color: white;
}

.video-card:hover .youtube-play-button {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.bg-gradient-primary-to-secondary {
    background: #2962FF;
}

.bg-gradient {
    background: #f5f9ff;
}

.bg-pattern-overlay {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-10 {
    opacity: 0.1;
}

.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: #03dac6;
    border-radius: 2px;
}

.min-vh-75 {
    min-height: 75vh;
}

.avatar-stack {
    display: flex;
    margin-right: -15px;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #e0e0e0;
    margin-right: -15px;
    object-fit: cover;
}

.count {
    counter-reset: count;
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-info-section {
    margin-top: 40px;
}

.contact-method {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #f8f9ff;
    transform: translateY(-3px);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(1, 135, 134, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #018786;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon-circle {
    background: #018786;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-method h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0D47A1;
}

.contact-method p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.contact-method a {
    color: #696969;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #018786;
}

.social-links {
    display: flex;
    gap: 12px;
}

.contact-form-section {
    margin-bottom: 40px;
}

.contact-form .form-label {
    font-weight: 500;
    color: #0D47A1;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #E6E6E6;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    background-color: #ffffff;
}

.contact-form .form-select {
    cursor: pointer;
    padding-right: 40px;
    background-position: right 12px center;
    background-size: 16px 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #018786;
    box-shadow: 0 0 0 3px rgba(1, 135, 134, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input:focus {
    border-color: #018786;
    box-shadow: 0 0 0 3px rgba(1, 135, 134, 0.1);
}

.form-check-input:checked {
    background-color: #018786;
    border-color: #018786;
}

.form-check-label {
    font-size: 14px;
    color: #696969;
    cursor: pointer;
    line-height: 1.5;
    flex: 1;
}

.btn-reset {
    background: transparent;
    border: 2px solid #E6E6E6;
    color: #696969;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-reset:hover {
    background: #f8f9fa;
    border-color: #696969;
    color: #0D47A1;
    transform: translateY(-2px);
}

#form-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

#form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 991px) {
    .contact-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px;
    }

    .contact-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 25px;
    }

    .contact-method {
        margin-bottom: 20px;
    }
}

.tag-link {
    color: #0D47A1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-right: 10px;
}

.tag-link:hover {
    color: #1976D2;
}

.blog-meta {
    font-size: 0.875rem;
}

.empty-state {
    padding: 60px 20px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0D47A1;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-content blockquote {
    border-left: 4px solid #0D47A1;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.blog-content ul, .blog-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.blog-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.featured-image-container {
    margin: 2rem 0;
}

.category-link {
    color: #333;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #0D47A1;
}

.recent-post-item h6 a {
    color: #333;
    transition: color 0.3s ease;
}

.recent-post-item h6 a:hover {
    color: #0D47A1;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud-item {
    background-color: #e3f2fd;
    color: #0D47A1;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background-color: #0D47A1;
    color: white;
}

.comment-item {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .blog-content {
        font-size: 1rem;
    }
}
