/* Custom Professional Styles for BW Tech Global */
:root {
    --primary-blue: #003366;
    --secondary-blue: #00509E;
    --accent-orange: #FF6B35;
    --light-blue: #E6F2FF;
    --dark-blue: #002244;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}
*{
    margin: 0;
    padding: 0;
}

/* Professional Header Improvements */
.vl-header-top {
    background: var(--primary-blue);
    padding: 8px 0;
}

.vl-header-top-content p {
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.top-contact {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    margin-left: 15px;
}

.header-area {
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Enhanced Navigation */
.main-menu ul li a {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
}

.main-menu ul li a:hover {
    color: var(--accent-orange) !important;
}

/* Professional Hero Section */
.vl-hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,51,102,0.8) 0%, rgba(0,34,68,0.9) 100%);
}

.vl-hero-section-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.vl-hero-section-title p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Service Cards Enhancement */
.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

/* Professional Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-blue);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

/* Professional Footer */
.vl-footer-bg-1 {
    background: var(--dark-blue) !important;
}

.vl-footer-logo img {
    filter: brightness(0) invert(1);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .vl-hero-section-title h1 {
        font-size: 2.5rem;
    }
    
    .vl-hero-section-title p {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .main-menu ul li .dropdown-padding {
        min-width: 300px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Loading Animation */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-blue);
    border-top: 5px solid var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Professional Buttons */
.btn-professional {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-professional:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}