/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0d6efd;
}

.btn {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Header Styles */
.top-bar {
    font-size: 14px;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Project Cards */
.project-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-media {
    position: relative;
    overflow: hidden;
}

.project-media img, .project-media video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    height: 200px;
    background-color: #000;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    opacity: 0.8;
}

/* Project Details */
.project-details .project-gallery img {
    width: 100%;
    border-radius: 8px;
}

.project-details .project-highlights {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-card .card-header {
    border-radius: 8px 8px 0 0 !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    z-index: 99;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section .lead {
        font-size: 18px;
    }
    
    .project-media img, .project-media video, .video-thumbnail {
        height: 150px;
    }
}