/* General Styles */
body {
    padding-top: 76px; /* Account for fixed navbar */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Banner */
.hero-banner {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Working and Feedback Boxes */
.working-box, .feedback-box {
    height: 100%;
    border-left: 4px solid #0d6efd;
    background-color: #f8f9fa;
}

.feedback-box {
    border-left-color: #198754;
}

/* Service Cards */
.service-icon {
    color: #0d6efd;
    margin-bottom: 1rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Cards */
.project-card {
    overflow: hidden;
}

.project-card img {
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Testimonial Carousel */
.testimonial-content {
    padding: 1rem;
    font-style: italic;
}

.client-info {
    margin-top: 1rem;
    font-style: normal;
}

.rating {
    margin-top: 0.5rem;
}

/* Contact Form */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer {
    margin-top: auto;
}

/* Admin Styles */
.sidebar {
    min-height: 100vh;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .working-box, .feedback-box {
        margin-bottom: 1.5rem;
    }
}

/* Service Detail Pages */
.service-detail-card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.service-icon {
    color: #0d6efd;
}

.feature-box {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-step {
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Admin Dashboard Styles */
.stat-card {
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Contact Page Styles */
.social-links a {
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0d6efd !important;
}

.map-container iframe {
    border-radius: 8px;
}

/* Project Cards */
.project-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.project-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

/* Section Headers */
.border-bottom {
    border-color: #3498db !important;
}

/* Project Cards */
.project-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.project-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.project-card .card-body {
    padding: 1.5rem;
}

/* Section Headers */
.border-bottom {
    border-color: #3498db !important;
}

/* Badges */
.badge {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

/* Admin Tables */
.table th {
    border-top: none;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}
/* Enhanced Styles for Contact and Admin Pages */
.contact-form .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.contact-form .input-group-text {
    border-radius: 8px 0 0 8px;
    border: 2px solid #e9ecef;
    border-right: none;
}

.contact-form .input-group .form-control {
    border-left: none;
}

.divider {
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem 0;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
}

.btn {
    border-radius: 8px;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.alert {
    border-radius: 10px;
    border: none;
}

/* Admin Dashboard Styles */
.sidebar {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.sidebar .nav-link {
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.stat-card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.message-row {
    transition: background-color 0.3s;
}

.message-row:hover {
    background-color: #f8f9fa;
}

/* Map Styles */
.map-container iframe {
    border-radius: 0 0 15px 15px;
}

/* Social Media Icons */
.social-links a {
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #0d6efd !important;
}

/* Form Enhancements */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input-group {
    margin-bottom: 1rem;
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
}

/* Table Styles */
.table th {
    border-top: none;
    font-weight: 600;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .dashboard-header {
        text-align: center;
    }
}

/*About Us Page Details */
/* About Us Page Styles */

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

main h1 {
  font-size: 2.8rem;
  color: #0056b3;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

main p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

main section {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

main section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #004080;
  border-bottom: 2px solid #0056b3;
  padding-bottom: 8px;
}

main section ul {
  list-style-type: disc;
  padding-left: 20px;
}

main section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  main {
    padding: 0 15px;
    margin: 20px auto;
  }
  
  main h1 {
    font-size: 2rem;
  }

  main section h2 {
    font-size: 1.4rem;
  }
}


