/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 0;
    background-color: #0066cc;
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    margin-bottom: 15px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Service Card Colors */
#puc {
    border-top: 5px solid #4CAF50;
}

#fastag {
    border-top: 5px solid #FF9800;
}

#insurance {
    border-top: 5px solid #E91E63;
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

#puc .icon {
    color: #4CAF50;
}

#fastag .icon {
    color: #FF9800;
}

#insurance .icon {
    color: #E91E63;
}

.service-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card > p {
    margin-bottom: 25px;
    color: #666;
}

/* Pricing Styles */
.pricing {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #0066cc;
}

.pricing p {
    margin: 5px 0;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing i {
    color: #0066cc;
}

.btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0055aa;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    border-radius: 10px;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    header h1 {
        font-size: 2rem;
    }
}