:root {
    --primary-color: #2A5C82;
    --secondary-color: #FF6B35;
    --dark-color: #2B2D42;
    --light-color: #EDF2F4;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-right: 1.5rem;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

nav.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 1rem;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero {
    background: linear-gradient(rgba(42,92,130,0.9), rgba(42,92,130,0.9)),
                url('https://images.unsplash.com/photo-1518770660439-4636190af475');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px 0;
    color: white;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services {
    padding: 5rem 0;
}

.service-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-section {
    background: var(--light-color);
    padding: 5rem 0;
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem 0;
}

footer a {
    color: var(--light-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Enhanced Services Section Styles */
.services .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.services ul li {
    padding-left: 1.5rem;
    position: relative;
}

.services ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.additional-services .card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.additional-services .card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.additional-services .card:hover h4,
.additional-services .card:hover i {
    color: white !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info a {
        margin: 0.5rem 0;
    }
    
    .services .card {
        margin-bottom: 1.5rem;
    }
}
/* About Page Styles */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(rgba(42,92,130,0.9), rgba(42,92,130,0.9)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa');
    background-size: cover;
    background-position: center;
}

.est-badge {
    width: 200px;
    height: 200px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); }
    50% { transform: scale(1); }
    100% { transform: scale(0.95); }
}

.milestones .card {
    transition: transform 0.3s;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.milestones .card:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .milestones .card {
        min-height: 140px;
    }
    
    .milestones .display-4 {
        font-size: 2.5rem;
    }
}
/* Services Page Specific Styles */
.services-hero {
    padding: 100px 0;
    background: linear-gradient(rgba(42,92,130,0.9), rgba(42,92,130,0.9)),
                url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6');
    background-size: cover;
    background-position: center;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.additional-services .card {
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.additional-services .card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.additional-services .card:hover h3,
.additional-services .card:hover i {
    color: white !important;
}

.cta-section {
    background: var(--dark-color);
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero .display-4 {
        font-size: 2.5rem;
    }
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(42,92,130,0.9), rgba(42,92,130,0.9)),
                url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d');
    background-size: cover;
    background-position: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form label {
    font-weight: 500;
    color: var(--dark-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.emergency-banner {
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

@media (max-width: 768px) {
    .contact-hero .display-5 {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: start;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

/* Highlight Animation */
@keyframes highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: highlight 2s infinite; /* Add this line */
}

/* Pulsing Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite; /* Add this line */
}

.whatsapp-float {
    animation: highlight 2s infinite, pulse 2s infinite;
}

