/* Emtyaz-Al-Oroba Website - Additional Styles */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Utility Classes */
.text-primary-dark {
    color: #1a3a52;
}

.bg-primary-dark {
    background-color: #1a3a52;
}

.text-accent {
    color: #ffc107;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary-custom {
    transition: all 0.3s ease;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: #1a3a52;
    background-image: url('/images/workImg3.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.hero-section.hero-home {
    background-image: url('/images/workImg3.jpg');
}

.hero-section.hero-about {
    background-image: url('/images/workImg.jpg');
}

.hero-section.hero-services {
    background-image: url('/images/workImg1.jpg');
}

.hero-section.hero-projects {
    background-image: url('/images/HomePage.jpg');
}

.hero-section.hero-team {
    background-image: url('/images/workimg6.jpg');
}

    .hero-section.hero-contact {
        background-image: url('/images/services.jpg');
    }

.hero-section.hero-service-details {
    background-image: url('/images/workImg1.jpg');
}

.hero-section.hero-project-details {
    background-image: url('/images/workImg3.jpg');
}

.hero-section.hero-error {
    background-image: url('/images/workImg1.jpg');
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1,
.hero-section p,
.hero-section .btn-primary-custom {
    color: #fff;
}

.hero-section .btn-primary-custom {
    background-color: rgba(255, 193, 7, 0.95);
    border-color: rgba(255, 193, 7, 0.95);
}

/* Form Styles */
.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section p {
        font-size: 1.1rem !important;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }
}
