/* Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
}

.section-padding {
    padding: 80px 0;
}

/* Header/Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: whitesmoke;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand i {
    color: var(--primary-color);
    margin-right: 5px;
    
}
.r{
    font-weight: 800;
}

.emergency-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url(./common.jpg);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 10px;
}

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

.hero-btns .btn {
    margin-right: 15px;
    padding: 12px 30px;
}

/* About Section */
.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    margin-bottom: 15px;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.contact-info {
    padding-left: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 30px; */
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
}
.name{
    text-decoration: none;
    color: white;
}