
body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background: rgba(0,0,0,0.9);
}

.nav-tabs-custom .nav-link {
    transition: 0.3s;
}

.nav-tabs-custom .nav-link:hover {
    color: #ffc107;
    transform: scale(1.1);
}

.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1517832606299-7ae9b720a186') no-repeat center center/cover;
}

.animate-slide {
    animation: slideUp 1.5s ease-in-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

.service-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-img {
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.news-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: #333;
    padding: 60px;
    border-radius: 10px;
    font-size: 20px;
    border: 2px dashed #ffc107;
}

footer {
    background: #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 30px;
    padding: 15px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }
  
