:root {
    --primary: #046A38;
    --secondary: #1abc9c;
    --dark: #034C2C;
    --light: #ecf0f1;
    --light-green: #E9F5EF;
    --bgcolor: #E9E8E8;
    --white: #ffffff;
    --pak-light: #ecf0f1; /* Loader k liye */
    --primary-lighter: #1abc9c; /* Progress bar k liye */
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.bg-bgcolor {
    background-color: var(--bgcolor) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

.table-dark{
    color: var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--light);
    position: relative;
}

.announcement-content {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-section {
    position: relative;
    min-height: 80dvh; /* Uses dynamic viewport units */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/car-detailing-bg-cover.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}


.city-image-card {
    background-color: var(--light-green);
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.city-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.city-image-card img {
    border-bottom: 1px solid #ddd;
    height: 250px;
    object-fit: cover;
}

.city-image-card .city-card-body {
    background-color: var(--light-green);
}

.city-image-card .city-card-title {
    color: var(--dark);
    font-weight: 600;
    text-align: center;
}

.city-section-title {
    text-align: center;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.card-title-h3{
    margin: 0;
    padding: 10px;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.6rem !important;
}
.card-title-h3::before{
    position: absolute;
    background: linear-gradient(90deg,#046A38 50%,#034C2C 50%);
    height: 2px;
    content: '';
    bottom: 0;
    right: 0;
    left: 0;
}

.right-content-ias{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.card-img-top1{
    margin: auto;
    width: 140px !important;
    margin-top: 2rem;
    transition: transform 1.2s; /* Animation */
}
.card-img-top1:hover {
    transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */

}

h3{
    font-size: 1.2rem !important;
    margin-top: 0.5rem !important;
    font-weight: 400 !important;
}


.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card-img-top {
    border-radius: 15px 15px 0 0 !important;
}
.service-features li {
    padding: 5px 0;
}




.govt-review-section {
    border-top: 4px solid #046a38;
    border-bottom: 4px solid #046a38;
    padding: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.govt-review-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.govt-review-card h5 {
    color: #046a38;
    border-bottom: 2px solid #046a38;
    padding-bottom: 8px;
    font-weight: 600;
}

.govt-review-card .position {
    color: #01411c;
    font-style: italic;
    font-size: 0.9rem;
}

.govt-review-card .text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-title {
    color: #01411c;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #046a38;
    margin: 10px auto;
}




footer {
    background-color: var(--primary);
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
}

.social-icon:hover {
    background: var(--secondary);
    color: white;
}
.quick-link-content{
    font-size: 12px;
    border-bottom: 1px solid gray;
    background-color: #0e530ea2;
    color: white;
}


.contact-card {
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(1, 65, 28, 0.25);
}

.btn-govt {
    background-color: var(--primary);
    color: white;
}

.btn-govt:hover {
    background-color: #013216;
    color: white;
}

.emergency-banner {
    background-color: #046A38;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Car Detailing Page */
.cdpage-title {
    color: #046a38;
    border-bottom: 2px solid #046a38;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.cdservice-table {
    border: 2px solid #046a38;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.cdtable-header {
    background-color: #046a38;
    color: white;
    text-align: center;
}
.cdservice-column {
    border-right: 1px solid #dee2e6;
    padding: 15px;
}
.cdservice-item {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}
.cdservice-item:last-child {
    border-bottom: none;
}

