/* Bajrangi Graphics - Custom Stylesheet */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #212529;
    --accent-color: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar Customization */
.navbar {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Cards Animation */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
}

/* Footer */
footer {
    border-top: 5px solid var(--primary-color);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
}
.card { border-radius: 15px !important; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: none; }
    .btn { border-radius: 50px; padding: 10px 25px; }
    [data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
.card {
    transition: all 0.4s ease;
}
/* STREAMING_CHUNK:Modernizing Styles */
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* Hero Section */
.hero-section {
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}

/* Service Cards */
.service-card {
transition: all 0.4s ease;
border-radius: 20px !important;
border: none !important;
box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.service-card:hover {
transform: translateY(-20px);
box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

/* Buttons */
.btn-primary {
border-radius: 50px !important;
padding: 12px 30px !important;
transition: 0.3s;
}

.btn-primary:hover {
transform: scale(1.1);
background-color: #0d6efd;
}

/* Animations */
[data-aos] { transition-duration: 1000ms; }