/* Logo and Navbar Professional Styling */
.logo-icon {
    width: 45px;
    height: 45px;
    background: #0066cc; /* Blue color */
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    position: relative;
    vertical-align: middle;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
}

.logo-text {
    color: #0066cc !important; /* Blue color */
    font-weight: 700;
    font-size: 1.8rem;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* Professional Navbar Styling */
.nav-bar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand h1 {
    margin: 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    line-height: 1.2;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
}

/* Company Title Styling */
.company-title {
    color: #0066cc !important;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    border-radius: 2px;
}

/* Company Description Styling */
.company-description {
    color: #000000 !important;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 2rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .company-title {
        font-size: 1.8rem !important;
        line-height: 1.4;
    }
    
    .company-title::after {
        width: 60px;
        height: 2px;
    }
    
    .company-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }
}

/* Hover effects for better interactivity */
.navbar-brand:hover .logo-text {
    color: #0052a3 !important;
    transition: color 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.company-title:hover {
    color: #0052a3 !important;
    transition: color 0.3s ease;
}

.company-title:hover::after {
    background: linear-gradient(90deg, #0052a3, #0066cc);
    transition: background 0.3s ease;
}

/* Videos Section Styling */
.videos-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.video-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.video-wrapper video {
    transition: transform 0.3s ease;
}

.video-item:hover .video-wrapper video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 204, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 102, 204, 1);
    transform: scale(1.1);
}

.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.video-controls .btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.9);
    border: none;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.video-item:hover .video-controls .btn {
    opacity: 1;
    transform: scale(1);
}

.video-controls .btn:hover {
    background: rgba(0, 102, 204, 1);
    transform: scale(1.1);
}

.video-content {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.video-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.video-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

/* Responsive adjustments for videos */
@media (max-width: 768px) {
    .video-item {
        margin-bottom: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem !important;
    }
    
    .video-content h5 {
        font-size: 1rem;
    }
    
    .video-content p {
        font-size: 0.8rem;
    }
    
    .video-controls .btn {
        width: 30px;
        height: 30px;
    }
    
    .video-controls .btn i {
        font-size: 0.8rem;
    }
}
