/* ====================================
   Power Towing Services - Modern CSS
   ==================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #dc2626;
    /* Red from logo */
    --primary-dark: #b91c1c;
    --secondary-color: #1f2937;
    /* Dark gray/black */
    --accent-color: #fbbf24;
    /* Gold/yellow */
    --white: #ffffff;
    --light-gray: #f9fafb;
    --medium-gray: #6b7280;
    --dark-gray: #111827;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* ===== Loading Screen ===== */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.truck-loader {
    font-size: 48px;
    color: var(--primary-color);
    animation: truck-move 1.5s ease-in-out infinite;
}

.loader-text {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

@keyframes truck-move {

    0%,
    100% {
        transform: translateX(-20px);
    }

    50% {
        transform: translateX(20px);
    }
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

/* .navbar.scrolled .nav-logo {
    height: 50px;
} */

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-call-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 16px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: var(--transition);
}

.btn-call-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.btn-call-nav i {
    font-size: 18px;
}

.call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-text small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
}

.call-text strong {
    font-size: 15px;
}





/* service section css */





/* ===== Hero Banner - Single Static ===== */
.hero-banner-section {
    position: relative;
    /* margin-top: 76px; */
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.85) 100%),
        url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1920&h=900&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.badge-24-7 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.banner-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.banner-title .highlight {
    color: var(--primary-color);
    display: block;
    font-size: 64px;
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

.banner-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.banner-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn-primary-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
}

.btn-secondary-cta:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 24px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.badges-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.badge-item i {
    font-size: 24px;
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Quick Contact Bar ===== */
.quick-contact-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

.contact-bar-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-bar-title i {
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.btn-contact-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-contact-bar:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ===== Section Styles ===== */
.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary-color);
    color: var(--white);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.about-badge h4 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-badge p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    margin-top: 4px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--light-gray);
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--secondary-color);
}

.service-features i {
    color: var(--accent-color);
    font-size: 16px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
    background: var(--white);
}

.why-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--light-gray);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.author-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--light-gray);
}

.contact-info-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-8px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.form-control {
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}


/* contcat us section css */





/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin: 16px 0 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-contact i {
    color: #fff;
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5);
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 991px) {
    .banner-title {
        font-size: 42px;
    }

    .banner-title .highlight {
        font-size: 48px;
    }

    .banner-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-banner {
        min-height: 600px;
    }

    .trust-badges {
        position: relative;
    }

    .btn-call-nav {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .nav-logo {
        height: 50px;
    }

    .hero-banner {
        min-height: 550px;
        background-attachment: scroll;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-title .highlight {
        font-size: 38px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-cta {
        flex-direction: column;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .badge-24-7 {
        font-size: 12px;
        padding: 6px 16px;
    }

    .banner-features {
        gap: 16px;
    }

    .feature-item {
        font-size: 14px;
    }

    .badges-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description {
        font-size: 16px;
    }

    .contact-bar-title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .about-badge {
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }

    .about-badge h4 {
        font-size: 36px;
    }

    .gallery-image {
        height: 240px;
    }

    .footer-logo {
        max-width: 160px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-title .highlight {
        font-size: 34px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .service-card,
    .contact-info-card,
    .why-card {
        margin-bottom: 24px;
    }
}


/* ===== Blogs Section ===== */
.blogs-section {
    background: var(--light-gray);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--medium-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
    font-size: 13px;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    width: fit-content;
    margin-top: auto;
}

.blog-read-more i {
    margin-left: 4px;
}

.blog-card:hover .blog-read-more {
    background: var(--primary-dark);
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-view-all-blogs:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Blogs Page Styles */
.blogs-page-hero {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.85)),
        url('../images/banners/b1.jpg') center/cover no-repeat;
    padding: 140px 0 60px;
    text-align: center;
    color: var(--white);
}

.blogs-page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.blogs-page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blogs-page-hero .breadcrumb-nav {
    margin-top: 20px;
    font-size: 15px;
}

.blogs-page-hero .breadcrumb-nav a {
    color: var(--accent-color);
    font-weight: 600;
}

.blogs-page-hero .breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.7);
}

.blogs-grid-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* ===== Blog Detail Page ===== */
.blog-detail-section {
    padding: 60px 0 80px;
    background: var(--light-gray);
}

.blog-detail-article {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-detail-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 36px 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--primary-color);
    font-size: 14px;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.3;
    padding: 16px 36px 0;
    margin-bottom: 0;
}

.blog-detail-body {
    padding: 24px 36px 36px;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.blog-detail-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-detail-body p {
    margin-bottom: 16px;
}

.blog-detail-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.blog-detail-body ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ===== Blog Sidebar ===== */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:first-child {
    padding-top: 0;
}

.recent-post-item:hover {
    opacity: 0.85;
}

.recent-post-image {
    width: 80px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info span {
    font-size: 12px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-info i {
    color: var(--primary-color);
    font-size: 11px;
}

/* CTA Sidebar Widget */
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.sidebar-cta .cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.sidebar-cta h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-cta .cta-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Services Sidebar */
.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-services li:last-child {
    border-bottom: none;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-services a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.sidebar-services i {
    color: var(--primary-color);
    font-size: 11px;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-image {
        height: 200px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-content {
        padding: 20px;
    }

    .blogs-page-hero {
        padding: 120px 0 40px;
    }

    .blogs-page-hero h1 {
        font-size: 32px;
    }

    .blogs-page-hero p {
        font-size: 16px;
    }

    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-title {
        font-size: 24px;
        padding: 16px 20px 0;
    }

    .blog-detail-meta {
        padding: 20px 20px 0;
        gap: 16px;
        font-size: 13px;
    }

    .blog-detail-body {
        padding: 20px;
        font-size: 15px;
    }

    .blog-detail-body h3 {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .blog-image {
        height: 180px;
    }

    .blogs-page-hero h1 {
        font-size: 28px;
    }

    .blog-detail-image {
        height: 200px;
    }

    .blog-detail-title {
        font-size: 21px;
    }
}

/* home page new section css */

.contact-right select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 17px;
    background: #fff;
}

.contact-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT CARD */
.contact-left {
    position: relative;
    background: url('images/banners/b1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 40px;
}

.contact-left .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.contact-left-content {
    position: relative;
    z-index: 2;
}

.contact-left h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #ffb703;
}

.contact-item span {
    font-size: 16px;
    opacity: 0.8;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-top: 3px;
}

/* RIGHT FORM */
.contact-right {
    background: #fff;
    padding: 50px;
}

.contact-right h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-right input.full {
    grid-column: 1 / -1;
}

.contact-right textarea {
    resize: none;
}

.contact-right button {
    align-self: flex-start;
    background: #3b261d;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-right button:hover {
    background: #2a1913;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-right {
        padding: 30px;
    }
}


/* privacy-policy css */

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.privacy-modal-content {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.privacy-modal-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.privacy-modal-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.privacy-modal-content button {
    margin-top: 15px;
    background: #3b261d;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
}

.privacy-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* Mobile Fix */
@media (max-width: 576px) {
    .privacy-modal-content {
        padding: 20px;
    }
}

/* Offer Popup Overlay */
.offer-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Card */
.offer-card {
    background: #fff;
    width: 90%;
    max-width: 320px;
    padding: 25px 20px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.offer-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #777;
}

/* Heading */
.offer-card h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #e53935;
    line-height: 1.4;
}

.offer-card h3 span {
    color: #e53935;
    font-weight: 500;
}

.offer-card h3 strong {
    font-size: 24px;
}

/* Text */
.offer-card p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

/* Call Button */
.call-btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

.call-btn:hover {
    background: #218838;
}


/* whats app for mobile responsive css */
/* Hide by default */
.mobile-action-bar {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        font-family: Arial, sans-serif;
    }

    .mobile-action-bar a {
        flex: 1;
        text-align: center;
        padding: 14px 0;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
    }

    .whatsapp-btn {
        background: #fe2f30;
    }

    .call-btn {
        background: green;
    }

    .mobile-action-bar i {
        margin-right: 6px;
        font-size: 16px;
    }
}