* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.top-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s;
}

.top-header a:hover {
    color: #ffc107;
}

.phone-numbers {
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.navbar .container {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    flex-basis: auto;
    flex-grow: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    color: #1e3c72 !important;
    padding: 10px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar-brand:hover {
    color: #2a5298 !important;
    transform: translateY(-2px);
}

.navbar-brand i {
    margin-right: 8px;
    color: #ffc107;
    font-size: 26px;
    vertical-align: middle;
}

.navbar-nav {
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.navbar-nav .nav-item {
    margin: 0 4px;
    flex-shrink: 0;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 18px !important;
    margin: 0;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    display: inline-block;
    white-space: nowrap;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 18px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2a5298 0%, #ffc107 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: #2a5298 !important;
    background: rgba(42, 82, 152, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 82, 152, 0.15);
}

.navbar-nav .nav-link:hover::before {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link.active {
    color: #2a5298 !important;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.12) 0%, rgba(255, 193, 7, 0.08) 100%);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(42, 82, 152, 0.2);
}

.navbar-nav .nav-link.active::before {
    width: calc(100% - 36px);
}

.navbar-toggler {
    border: 2px solid #2a5298;
    padding: 10px 14px;
    box-shadow: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(42, 82, 152, 0.1);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(42, 82, 152, 0.3);
}

.navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2842, 82, 152, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Carousel Styles */
#heroCarousel {
    margin-bottom: 0;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    min-height: 600px;
}

.slider-image {
    position: relative;
    overflow: hidden;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.75) 0%, rgba(42, 82, 152, 0.75) 100%);
    z-index: 1;
}

.slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#heroCarousel .carousel-control-prev {
    left: 30px;
}

#heroCarousel .carousel-control-next {
    right: 30px;
}

#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    opacity: 0.8;
    transition: all 0.3s;
}

#heroCarousel .carousel-indicators button.active {
    background: white;
    opacity: 1;
    transform: scale(1.2);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2a5298;
}

.service-icon {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
    flex-shrink: 0;
    text-align: center;
}

.service-card .btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: #2a5298;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-card h5 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
}

/* Statistics */
.statistics {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1.1rem;
}

/* Emergency Section */
.emergency-section {
    background: #ffc107;
    padding: 60px 0;
    text-align: center;
}

.emergency-section h2 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 20px;
}

.emergency-section .phone-numbers {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3c72;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: #ffc107;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    padding: 8px 0;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: #ffc107;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Ratings Section */
.ratings {
    background: #f8f9fa;
    padding: 60px 0;
}

.rating-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.rating-box h3 {
    font-size: 2.5rem;
    color: #ffc107;
    font-weight: 700;
}

/* Page Header for Inner Pages */
.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: #2a5298;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.service-details {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-details h3 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-details ul li:last-child {
    border-bottom: none;
}

.service-details ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2a5298;
    font-size: 1.2rem;
}

.service-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-label {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.25);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-item {
    padding: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.contact-info-item i {
    font-size: 2rem;
    color: #2a5298;
    margin-bottom: 15px;
}

.contact-info-item h5 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #666;
    margin: 0;
}

/* About Section */
.about-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.about-content h3 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Area Wise Service Links Section */
.area-links-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.area-links-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.area-links-section .section-title h2 {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.area-links-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.area-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-links-list li {
    margin-bottom: 12px;
    padding: 0;
}

.area-links-list li a {
    color: #2a5298;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.area-links-list li a:hover {
    color: #1e3c72;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0.1) 100%);
    border-left-color: #2a5298;
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(42, 82, 152, 0.15);
}

.area-links-list li a i {
    margin-right: 10px;
    color: #ffc107;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.area-links-list li a:hover i {
    color: #2a5298;
    transform: scale(1.2);
}

/* Area Links Column Styling */
.area-links-column {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.area-links-column:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-section p,
    .page-header p {
        font-size: 1rem;
    }
    
    .stat-box h2 {
        font-size: 2rem;
    }
    
    .navbar {
        min-height: auto;
    }
    
    .navbar .container {
        padding: 15px;
    }
    
    .navbar-brand {
        font-size: 22px;
    }
    
    .navbar-brand i {
        font-size: 24px;
        margin-right: 8px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
        padding: 15px 0;
    }
    
    .navbar-nav .nav-item {
        margin: 8px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 16px 24px !important;
        display: block;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(42, 82, 152, 0.12);
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(42, 82, 152, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
    }
    
    .top-header {
        text-align: center;
    }
    
    .top-header .phone-numbers {
        display: block;
        margin-top: 10px;
    }
    
    .emergency-section .phone-numbers {
        font-size: 1.2rem;
    }
    
    .feature-box h4 {
        font-size: 0.9rem;
    }
    
    .service-details,
    .contact-form,
    .contact-info,
    .about-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .page-header {
        padding: 50px 0;
    }
    
    .hero-section h1,
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-box i {
        font-size: 2rem;
    }
    
    .feature-box h4 {
        font-size: 0.85rem;
    }
    
    .service-details,
    .contact-form,
    .contact-info,
    .about-content {
        padding: 20px;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: #1e3c72;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

