/* Oil Change & Car List (details7.php) */
.oil-change-cards .card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.oil-change-cards .card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-6px);
}
.oil-change-cards .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}
.my-car-list .single-blog-post {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    margin-bottom: 30px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: none;
}
.my-car-list .single-blog-post:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-8px);
}
.my-car-list .blog-img img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}
.my-car-list .news-content {
    padding: 18px;
}
.my-car-list .news-content img {
    border-radius: 50%;
    margin-bottom: 8px;
}
.my-car-list .news-content span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.my-car-list h6 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 6px;
}
.pagination-area {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 0 0;
}
.pagination-area .page-numbers {
    background: #fff;
    border-radius: 6px;
    color: var(--primary-color);
    padding: 6px 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: background 0.2s, color 0.2s;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover {
    background: var(--primary-color);
    color: #fff;
}
/* Our Services Section (details page) */
.services-area-style-three {
    background: var(--bg-light);
    padding: 60px 0;
}
.services-area-style-three .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.services-area-style-three h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.services-area-style-three span {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.services-area-style-three form {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.services-area-style-three .form-control {
    border-radius: 8px;
    border: 1.5px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    background: var(--bg-light);
    transition: border-color 0.2s;
    max-width: 220px;
}
.services-area-style-three .form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.custom-btn-width {
    min-width: 120px;
    border-radius: 50px;
    font-weight: 600;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    transition: background 0.2s;
}
.custom-btn-width:hover {
    background: var(--primary-dark);
}
.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: box-shadow 0.2s, transform 0.2s;
    text-align: center;
}
.service-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-8px);
}
.service-card img {
    width: 100%;
    max-width: 374px;
    height: 249px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(48,79,254,0.08);
}
.service-card .service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.service-card .service-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.service-card .service-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.service-card .service-user i {
    color: #0d6efd;
    margin-right: 6px;
}
.service-card .service-desc {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}
.service-card .service-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.service-card .service-link:hover {
    color: var(--primary-color);
}
@media (max-width: 991px) {
    .services-area-style-three form {
        flex-direction: column;
        gap: 10px;
    }
    .service-card img {
        max-width: 100%;
        height: 180px;
    }
}
/* Contact Page Styles */
/* .page-title-area {
    background: var(--gradient-primary);
    padding: 60px 0 40px 0;
    color: #fff;
    text-align: center;
}
.page-title-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-title-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.page-title-content ul li {
    color: #fff;
    font-size: 1rem;
}
.page-title-content ul li.active {
    font-weight: 600;
    color: var(--secondary-color);
}
.page-title-content ul a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.page-title-content ul a:hover {
    color: var(--secondary-color);
} */

.map-area {
    margin-bottom: 0;
}
.map-area iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.main-contact-area {
    background: var(--bg-light);
    padding: 60px 0;
}
.contact-wrap {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 40px 30px;
    margin-bottom: 30px;
}
.contact-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-control {
    border-radius: 8px;
    border: 1.5px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    background: var(--bg-light);
    transition: border-color 0.2s;
}
.contact-form .form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.contact-form .default-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(48, 79, 254, 0.2);
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-form .default-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(48, 79, 254, 0.3);
}
.cnt-msg {
    margin-top: 10px;
}

.contact-info {
    background: #fff;
    border-radius: var(--border-radius, 12px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #1a73e8);
    margin-bottom: 18px;
}

.contact-info p {
    color: var(--text-light, #6c757d);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info .address {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info .address li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-dark, #333);
}

.contact-info .address li i {
    background: var(--primary-color, #1a73e8);
    color: #fff;
    font-size: 1rem;
    padding: 10px;
    border-radius: 50%;
    min-width: 40px;
    text-align: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}
.contact-info .address li:hover i {
    background: var(--secondary-color, #ff6f61);
}

.contact-info .address li span {
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark, #222);
}

.contact-info .address li a {
    display: inline-block;
    color: var(--primary-color, #1a73e8);
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-info .address li a:hover {
    color: var(--secondary-color, #ff6f61);
}

/* Follow Us Section */
.sidebar-follow-us h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark, #333);
}

.social-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.social-wrap li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f1f3f5;
    color: var(--primary-color, #1a73e8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.social-wrap li a:hover {
    background: var(--primary-color, #1a73e8);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Follow Us Section */
.sidebar-follow-us h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark, #333);
}

.social-wrap {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.social-wrap li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f3f5;
    color: var(--primary-color, #1a73e8);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-wrap li a:hover {
    background: var(--primary-color, #1a73e8);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.sidebar-follow-us {
    margin-top: 25px;
}
.sidebar-follow-us h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.social-wrap {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
}
.social-wrap a:hover {
    background: var(--secondary-color);
    color: #fff;
}

@media (max-width: 992px) {
    .contact-info {
        padding: 30px 20px;
    }
    .contact-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 25px 18px;
    }
    .contact-info .address li {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-info .address li i {
        margin-bottom: 6px;
    }
    .contact-info h3 {
        font-size: 1.2rem;
    }
}

        :root {
            --primary-color: #304ffe;
            --primary-dark: #1a237e;
            --secondary-color: #ff4757;
            --accent-color: #2ed573;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, #ff6b9d, #ff4757);
            --border-radius: 15px;
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
            color: white;
        }

        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Enhanced Banner Area */
        .banner-area-two {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(48, 79, 254, 0.9), rgba(26, 35, 126, 0.8));
        }

        .banner-area-two::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
            background-size: cover;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

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

        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: slideInLeft 1s ease 0.3s both;
        }

        .banner-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
            animation: slideInLeft 1s ease 0.6s both;
        }

        .banner-btn {
            animation: slideInUp 1s ease 0.9s both;
        }

        .banner-btn .default-btn {
            background: var(--gradient-secondary);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
        }

        .banner-btn .default-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
        }

        .banner-btn .default-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .banner-btn .default-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 71, 87, 0.4);
        }

        /* Enhanced Services Area */
        .services-area-style-two {
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .single-services-box {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
            border: 1px solid rgba(48, 79, 254, 0.1);
        }

        .single-services-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: all 0.6s ease;
            z-index: -1;
        }

        .single-services-box:hover::before {
            left: 0;
        }

        .single-services-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            color: white;
        }

        .single-services-box .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: var(--transition-smooth);
            position: relative;
        }

        .single-services-box:hover .icon {
            color: white;
            animation: bounce 0.6s ease;
        }

        .single-services-box h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            transition: var(--transition-smooth);
        }

        .single-services-box:hover h3 {
            color: white;
        }

        .single-services-box p {
            color: var(--text-light);
            line-height: 1.6;
            transition: var(--transition-smooth);
        }

        .single-services-box:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .read-more {
            display: inline-block;
            margin-top: 20px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            position: relative;
            transition: var(--transition-smooth);
        }

        .read-more::after {
            content: '→';
            margin-left: 10px;
            transition: var(--transition-smooth);
        }

        .single-services-box:hover .read-more {
            color: white;
            transform: translateX(10px);
        }

        /* Enhanced About Area */
        .about-area {
            padding: 100px 0;
            position: relative;
        }

        .about-img-two {
            position: relative;
            animation: fadeInLeft 1s ease;
        }

        .about-img-two img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            transition: var(--transition-smooth);
        }

        .about-img-two:hover img {
            transform: scale(1.05);
            box-shadow: var(--shadow-heavy);
        }

        .experience-shape {
            position: absolute;
            bottom: -50px;
            right: -50px;
            animation: pulse 2s infinite;
        }

        .experience-two {
            background: white;
            border-radius: 50%;
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-heavy);
            /* animation: rotate 10s linear infinite; */
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .about-img-content {
            text-align: center;
        }

        .about-img-content h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .about-img-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .about-content {
            padding-left: 30px;
            animation: fadeInRight 1s ease;
        }

        .about-content span {
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content > p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .about-content ul {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .about-content ul li {
            padding: 10px 0;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            padding-left: 40px;
            transition: var(--transition-smooth);
        }

        .about-content ul li i {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .about-content ul li:hover {
            color: var(--primary-color);
            transform: translateX(10px);
        }

        .about-btn .default-btn {
            background: var(--gradient-primary);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 30px rgba(48, 79, 254, 0.3);
        }

        .about-btn .default-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(48, 79, 254, 0.4);
        }

        /* Enhanced Counter Area */
        .counter-area {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .counter-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="50" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="200" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="300" cy="800" r="60" fill="rgba(255,255,255,0.04)"/></svg>') no-repeat center center;
            background-size: cover;
        }

        .single-counter {
            text-align: center;
            padding: 60px 30px;
            position: relative;
            z-index: 2;
        }

        .single-counter i {
            font-size: 4rem;
            color: white;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s infinite;
        }

        .single-counter h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
        }

        .single-counter h3 {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .odometer {
            display: inline-block;
            animation: countUp 2s ease;
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Enhanced Appointment Area */
        .appointment-area {
            background: var(--bg-light);
            position: relative;
        }

        .appointment-content {
            text-align: center;
            margin-bottom: 50px;
        }

        .appointment-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .appointment-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .appointment-form {
            background: white;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .appointment-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: var(--transition-smooth);
            background: var(--bg-light);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(48, 79, 254, 0.25);
            background: white;
        }

        .submit-btn {
            background: var(--gradient-primary);
            border: none;
            padding: 15px 50px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 10px 30px rgba(48, 79, 254, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(48, 79, 254, 0.4);
        }

        /* Enhanced Skills Area */
        .our-skills-area {
            position: relative;
        }

        .skills-content span {
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }

        .skills-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .skill-bar {
            margin-bottom: 30px;
        }

        .progress-title-holder {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .progress-title {
            font-weight: 600;
            color: var(--text-dark);
        }

        .progress-content-outter {
            background: #e9ecef;
            border-radius: 10px;
            height: 8px;
            overflow: hidden;
        }

        .progress-content {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: width 2s ease;
            position: relative;
        }

        .progress-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: linear-gradient(
                -45deg,
                rgba(255, 255, 255, .2) 25%,
                transparent 25%,
                transparent 50%,
                rgba(255, 255, 255, .2) 50%,
                rgba(255, 255, 255, .2) 75%,
                transparent 75%,
                transparent
            );
            background-size: 10px 10px;
            animation: move 1s linear infinite;
        }

        @keyframes move {
            0% { background-position: 0 0; }
            100% { background-position: 10px 10px; }
        }

        .skill-img-two {
            position: relative;
        }

        .skill-img-two img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
        }

        .video-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .video-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            animation: ripple 2s infinite;
        }

        @keyframes ripple {
            0% {
                box-shadow: 0 0 0 0 rgba(48, 79, 254, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(48, 79, 254, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(48, 79, 254, 0);
            }
        }

        /* Enhanced Blog Area */
        .blog-area {
            background: var(--bg-light);
        }

        .single-blog-post {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition-smooth);
            margin-bottom: 30px;
        }

        .single-blog-post:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .blog-img {
            position: relative;
            overflow: hidden;
        }

        .blog-img img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .single-blog-post:hover .blog-img img {
            transform: scale(1.1);
        }

        .date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .news-content {
            padding: 30px;
        }

        .admin {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .admin img {
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }

        .news-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            transition: var(--transition-smooth);
        }

        .news-content h3:hover {
            color: var(--primary-color);
        }

        .news-content p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .news-content .read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
        }

        .news-content .read-more:hover {
            transform: translateX(10px);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title span {
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-content h1 {
                font-size: 2.5rem;
            }

            .about-content {
                padding-left: 0;
                margin-top: 40px;
            }

            .appointment-form {
                padding: 30px 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Utility Classes */
        .bg-gradient-primary {
            background: var(--gradient-primary);
        }

        .bg-gradient-secondary {
            background: var(--gradient-secondary);
        }

        .text-primary {
            color: var(--primary-color);
        }

        .text-secondary {
            color: var(--secondary-color);
        }

        .shadow-light {
            box-shadow: var(--shadow-light);
        }

        .shadow-heavy {
            box-shadow: var(--shadow-heavy);
        }

        .border-radius {
            border-radius: var(--border-radius);
        }

        /* Success Message Styling */
        .cnt-msg .alert {
            border-radius: 10px;
            padding: 15px 20px;
            border: none;
            animation: slideInUp 0.5s ease;
        }

        .alert-success {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 5px 15px rgba(48, 79, 254, 0.3);
        }

        /* .page-title-area {
        position: relative;
        overflow: hidden;
        padding-top: 278px;
        padding-bottom: 150px;
        text-align: center;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
        }
        .page-title-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1a1a1a;
        opacity: 0.7;
        z-index: -1;
        } */
        
        .page-title-area {
            position: relative;
            overflow: hidden;
            padding: 160px 0 100px 0;
            text-align: center;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            color: #fff;
            z-index: 1;

            /* transition effect */
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;

            /* new: shadow + rounded bottom */
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }

        .page-title-area.show {
            opacity: 1;
            transform: translateY(0);
        }

        .page-title-area::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1a1a1a;
            opacity: 0.6;
            z-index: -1;
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
        }

        .page-title-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            animation: fadeInDown 1s ease forwards;
        }
        .page-title-content ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 0;
            margin: 0;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.4s;
        }
.page-title-content ul li {
    color: #fff;
    font-size: 1rem;
}
.page-title-content ul li.active {
    font-weight: 600;
    color: var(--secondary-color);
}
.page-title-content ul a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}
.page-title-content ul a:hover {
    color: var(--secondary-color);
}

/* Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.no-results-lottie {
    text-align: center;
    margin: 40px auto;
    padding: 10px;
    animation: fadeIn 0.8s ease-in-out;
}

.no-results-lottie h4 {
    font-weight: 600;
    margin-top: 15px;
    color: #304ffe;
}

.no-results-lottie p {
    color: #555;
    margin-top: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}