/* Global Styles */
:root {
    --primary-color: #801a1a;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
    background-image: url('/images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
}

/* Hero Section */
.hero {
    background-image: url('/images/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    min-height: calc(100vh - 76px);
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Services Section */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* About Section */
#about img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 0.8rem;
    margin-bottom: 1rem;
}

/* Social Links */
.social-links a {
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Features Section */
.features .card {
    transition: transform 0.3s ease;
}

.features .card:hover {
    transform: translateY(-10px);
}

.features .card-body {
    position: relative;
    z-index: 1;
}

.features .card i {
    transition: transform 0.3s ease;
}

.features .card:hover i {
    transform: scale(1.1);
}

/* Footer */
footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

footer .contact-info a:hover {
    text-decoration: underline !important;
}

footer h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Content Sections */
.section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem 0;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Cards */
.card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.card-body {
    color: var(--light-color);
}

.card h3, 
.card h4, 
.card h5, 
.card .h4 {
    color: var(--light-color);
}

.card p {
    color: #e0e0e0;
}

/* Pricing Section */
.pricing-info {
    background-color: transparent !important;
}

.pricing-info h2,
.pricing-info h5 {
    color: var(--light-color);
}

.pricing-info .card {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-info .text-muted {
    color: #d1d1d1 !important;
}

/* Features Section */
.features .card i {
    color: #ff3333 !important;
}

/* Text Colors */
.text-muted {
    color: #d1d1d1 !important;
}

/* About Page Styles */
.about-content {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: var(--light-color);
}

.about-content .lead,
.about-content p {
    color: #e0e0e0;
}

.about-content .why-choose-us {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.about-content .feature-list li {
    color: #e0e0e0;
}

.about-content .quote {
    color: #ff3333;
    border-left-color: #ff3333;
}

.about-content .quote-author {
    color: #d1d1d1;
}

/* Services Page */
.service-section {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: var(--light-color);
}

.service-section .card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-section .card-title,
.service-section .card-text {
    color: var(--light-color);
}

/* Contact Page */
.contact-section {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: var(--light-color);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.contact-form label {
    color: var(--light-color);
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
}

.contact-form .form-control::placeholder {
    color: #a0a0a0;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-color);
}

.contact-info {
    color: var(--light-color);
} 