/* ===== BASE ===== */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    color: #374151;
    background-color: #F9FAFB;
}

/* ===== Navbar ===== */
.custom-navbar {
    background-color: #FFFFFF;
    transition: all 0.3s ease;
   
}

.custom-navbar .nav-link {
    color: #1F2933;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #F97316;
}

/* Dropdown */
.custom-navbar .dropdown-menu {
    border-radius: 10px;
    padding: 0.6rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.custom-navbar .dropdown-item {
    color: #1F2933;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
    background-color: #F97316;
    color: #FFFFFF;
}

/* Buttons */
.btn-custom {
    background-color: #F97316;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #EA580C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== Active Nav Link ===== */
.custom-navbar .nav-link.active{
    color:#F97316 !important;
    font-weight:700;
    position:relative;
}

/* underline effect for active link */
.custom-navbar .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:#F97316;
    border-radius:3px;
}

/* Active Dropdown Item */
.custom-navbar .dropdown-item.active{
    background:#F97316;
    color:#fff;
    font-weight:600;
}


/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(3, 3, 3, 0.7)
    ),
    url('../images/pexels-splitshire-1599.jpg') center/cover no-repeat;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 60px;
}

.hero-section p {
    opacity: 0.9;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

/* Small heading */
.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #F97316;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Main heading */
.about-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 20px;
}

/* Paragraph */
.about-section p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== IMAGE FIX (RESPONSIVE) ===== */
.about-img {
    width: 100%;
    max-width: 500px;      /* desktop limit */
    margin: auto;
}

.about-img img {
    width: 100%;           /* responsive */
    height: auto;          /* auto height */
    aspect-ratio: 5 / 6;   /* maintains shape */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== LIST ===== */
.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #1F2933;
    display: flex;
    align-items: center;
}

.about-list i {
    color: #F97316;
    margin-right: 10px;
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
     .about-img {
        max-width: 90%; 
        width: 90%;  /* tablet-ku correct size */
    }
    .about-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Subtitle */
.services-subtitle {
    max-width: 650px;
    margin: 10px auto 0;
    color: #4B5563;
    font-size: 1rem;
}

/* Service Card */
.service-card {
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.service-card i {
    font-size: 40px;
    color: #F97316;
    margin-bottom: 20px;
}

/* Title */
.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 12px;
}

/* Text */
.service-card p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

/* Subtitle */
.why-subtitle {
    max-width: 650px;
    margin: 10px auto 0;
    color: #4B5563;
    font-size: 1rem;
}

/* Card */
.why-card {
    background-color: #F9FAFB;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    background-color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}

/* Icon */
.why-card i {
    font-size: 36px;
    color: #F97316;
    margin-bottom: 18px;
}

/* Title */
.why-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 10px;
}

/* Text */
.why-card p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
}

/* ===== PRICING ALT DESIGN ===== */
.pricing-section-alt {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.pricing-box {
    background: #F9FAFB;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Highlight middle */
.pricing-box.active {
    background: #1F2933;
    color: #FFFFFF;
}

.pricing-box.active h4,
.pricing-box.active h3,
.pricing-box.active li {
    color: #FFFFFF;
}

/* Icon */
.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #F97316;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
}

/* Title */
.pricing-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1F2933;
}

/* Price */
.pricing-box h3 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #F97316;
    margin: 15px 0;
}

.pricing-box h3 span {
    font-size: 1.2rem;
}

/* List */
.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-box ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4B5563;
}

/* Button fix for dark card */
.pricing-box.active .btn-custom {
    background-color: #F97316;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section-alt {
        padding: 60px 0;
    }
}
/* ===== TABLET VIEW 3 COLUMNS FIX ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .pricing-section-alt .col-md-6 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Subtitle */
.testi-subtitle {
    max-width: 600px;
    margin: 10px auto 0;
    color: #4B5563;
}

/* Card */
.testi-card {
    background-color: #FFFFFF;
    padding: 35px 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testi-card:hover {
    transform: translateY(-8px);
}

/* Highlight middle */
.testi-card.active {
    border: 2px solid #F97316;
}

/* Quote Icon */
.testi-card i {
    font-size: 28px;
    color: #F97316;
    margin-bottom: 15px;
}

/* Text */
.testi-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4B5563;
    margin-bottom: 20px;
}

/* Name */
.testi-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 5px;
}

/* Bike */
.testi-card span {
    font-size: 0.85rem;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(
        135deg,
        #000000,
        #000000
    );
    color: #FFFFFF;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Button fix on dark bg */
.cta-section .btn-custom {
    background-color: #F97316;
    color: #FFFFFF;
}

.cta-section .btn-custom:hover {
    background-color: #EA580C;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
        text-align: center;
    }

    .cta-section .text-md-end {
        text-align: center !important;
    }
}

/* ===== TEAM SECTION ALT DESIGN ===== */
.team-section-alt {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.team-subtitle {
    max-width: 650px;
    margin: 10px auto 40px;
    color: #4B5563;
    font-size: 1rem;
}

/* Team Card Alt */
.team-card-alt {
    text-align: center;
    position: relative;
}

/* Image container */
.team-card-alt .team-img {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-alt .team-img img {
    width: 100%;
    border-radius: 50%;
    height: 250px;
    object-fit: cover;
}

/* Overlay */
.team-card-alt .team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 51, 0.85);
    color: #fff;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-radius: 0 0 50% 50%;
}

.team-card-alt .team-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-card-alt .team-img:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay text */
.team-card-alt h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card-alt span {
    font-size: 0.9rem;
    color: #F97316;
}

/* Responsive */
@media (max-width: 768px) {
    .team-section-alt {
        padding: 60px 15px;
    }
}

/* ===== REPAIR HERO SECTION ===== */
.repair-hero-section {
    padding: 100px 0;
    background: url('images/garage-bg.jpg') center/cover no-repeat;
    position: relative;
    color: #fff;
}

.repair-card {
    background-color: rgba(0,0,0,0.75);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.repair-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.repair-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ddd;
}

.repair-card input,
.repair-card select {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
}

.repair-card input::placeholder {
    color: #bbb;
}

.btn-custom {
    background-color: #F97316;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #fff;
    color: #F97316;
    border: 2px solid #F97316;
}

/* Hero Image */
.repair-hero-img img {
    border-radius: 20px;
    height: 350px;
    width: 800px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .repair-hero-section {
        padding: 60px 15px;
    }
    
    .repair-card {
        margin-bottom: 30px;
    }
}

/* ===== REPAIR SHOP CATEGORY CARDS ===== */
.repair-categories-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2933;
}

.repair-categories-section p {
    color: #4B5563;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Category Card */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.category-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 51, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.category-overlay .btn-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .category-card img {
        height: 200px;
    }
}

/* ===== bike servives ===== */
.image-left-content-right-section {
    background: #F9FAFB;
    padding: 80px 0;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.image-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Content Box */
.content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2933;
    margin-bottom: 20px;
}

.content-box p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-box .btn-custom {
    border-radius: 50px;
    background-color: #F97316;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.content-box .btn-custom:hover {
    background-color: #fff;
    color: #F97316;
    border: 2px solid #F97316;
}

/* Responsive */
@media (max-width: 991px) {
    .image-grid img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .image-left-content-right-section .row {
        flex-direction: column;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 20px;
    }
}

/* ===== CONTAINER BACKGROUND SECTION ===== */
.container-bg-section {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(85, 78, 78, 0.7)
    ),
    url('../images/anton-savinov-Q-j4syZXqGg-unsplash.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

/* Optional overlay for better text readability */
.container-bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.container-bg-section .container {
    position: relative;
    z-index: 1;
}

/* Content Box */
.bg-content-box {
    max-width: 700px;
    margin: auto;
    background: rgba(0,0,0,0.6);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.bg-content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bg-content-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f0f0f0;
}

/* Button */
.bg-content-box .btn-custom {
    background-color: #F97316;
    color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.bg-content-box .btn-custom:hover {
    background-color: #fff;
    color: #F97316;
    border: 2px solid #F97316;
}

/* Responsive */
@media (max-width: 768px) {
    .container-bg-section {
        padding: 60px 15px;
    }

    .bg-content-box {
        padding: 30px 20px;
    }
}

/* ===== BIKE REPAIR SHOP FOOTER ===== */
.bike-footer {
    background-color: #000000;
    color: #fff;
    padding: 60px 20px 30px 20px;
}



.bf-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.bf-col {
    flex: 1 1 220px;
}

.bf-logo {
    width: 80px;
    margin-bottom: 15px;
}

.bf-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #F97316;
}

.bf-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #d1d5db;
}

.bf-col ul {
    list-style: none;
    padding: 0;
}

.bf-col ul li {
    margin-bottom: 10px;
}

.bf-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.bf-col ul li a:hover {
    color: #F97316;
}

/* Subscribe Form */
.bf-form {
    display: flex;
    margin-bottom: 15px;
}

.bf-form input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 50px 0 0 50px;
    border: none;
    outline: none;
}

.bf-form button {
    padding: 8px 15px;
    border-radius: 0 50px 50px 0;
    border: none;
    background-color: #F97316;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.bf-form button:hover {
    background-color: #fff;
    color: #F97316;
}

/* Social Icons */
.bf-social a {
    display: inline-block;
    margin-right: 10px;
    color: #d1d5db;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.bf-social a:hover {
    color: #F97316;
}

/* Footer Bottom */
.bf-bottom {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 991px) {
    .bf-container {
        flex-direction: column;
    }
    .bf-col {
        flex: 1 1 100%;
    }
}


/* ===== ABOUT PAGE BANNER ===== */
.about-banner {
    position: relative;
     background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ),
    url('../images/pexels-matreding-31452616.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.about-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    
}

.about-banner p {
    font-size: 16px;
    line-height: 1.6;
    
}

/* Responsive */
@media (max-width: 991px) {
    .about-banner h1 {
        font-size: 2.2rem;
    }

    .about-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-banner {
        height: 90vh;
        padding: 0 15px;
    }

    .about-banner h1 {
        font-size: 1.8rem;
    }

    .about-banner p {
        font-size: 0.95rem;
    }
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: #F9FAFB;
}

.section-head {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #F97316;
    letter-spacing: 2px;
}

.section-head h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1F2933;
    margin: 10px 0;
}

.section-head p {
    color: #6B7280;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.process-box:hover {
    transform: translateY(-8px);
}

.process-box span {
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
}

.process-box h4 {
    margin: 15px 0 10px;
    font-weight: 700;
}

.process-box p {
    font-size: 0.95rem;
    color: #6B7280;
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    padding: 100px 15px;
    background: #ffffff;
}

.philosophy-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.philosophy-left h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1F2933;
    margin: 10px 0 15px;
}

.philosophy-left .intro {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Timeline */
.philosophy-content {
    border-left: 3px solid #F97316;
    padding-left: 30px;
}

.philosophy-line {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.philosophy-line span {
    font-size: 22px;
    font-weight: 700;
    color: #F97316;
    min-width: 40px;
}

.philosophy-line h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.philosophy-line p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* RIGHT IMAGE */
.philosophy-right img {
    width: 100%;
    height: 550px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .philosophy-wrap {
        grid-template-columns: 1fr;
    }

    .philosophy-right {
        order: -1;
    }
}

@media (max-width: 576px) {
    .philosophy-left h2 {
        font-size: 1.9rem;
    }

    .philosophy-content {
        padding-left: 20px;
    }
}


/* ===== FEATURED SERVICES ALT ===== */
.featured-services-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.featured-subtitle {
    max-width: 650px;
    margin: 10px auto 40px;
    color: #4B5563;
    font-size: 1rem;
}

/* Card */
.service-card-alt {
    background-color: #F9FAFB;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Icon */
.service-card-alt i {
    font-size: 36px;
    color: #F97316;
    margin-bottom: 15px;
}

/* Title */
.service-card-alt h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1F2933;
}

/* Text */
.service-card-alt p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-services-section {
        padding: 60px 15px;
    }
}

/* ===== SERVICE OVERVIEW ===== */
.service-overview {
    padding: 80px 0;
    background: #fff;
}

.service-overview-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-overview-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Content */
.small-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #d97706;
    font-weight: 600;
}

.service-overview-content h2 {
    font-size: 2.3rem;
    margin: 15px 0;
    font-weight: 700;
}

.service-overview-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}
/* ===== TAB VIEW (Image Top, Content Bottom) ===== */
@media (max-width: 1024px){

  .service-overview-wrap{
    grid-template-columns: 1fr;   /* 🔥 one column */
    gap:40px;
  }

  .service-overview-img{
    order:1;   /* image first */
  }

  .service-overview-content{
    order:2;   /* content next */
  }

  .service-overview-content h2{
    font-size:2rem;
  }
}


/* ===== MOBILE VIEW ===== */
@media (max-width: 768px){

  .service-overview-wrap{
    grid-template-columns:1fr;       /* mobile-la single column */
    gap:35px;
  }

  .service-overview-content h2{
    font-size:1.8rem;
  }

  .service-overview-img img{
    border-radius:10px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px){

  .service-overview{
    padding:50px 15px;
  }

  .small-title{
    font-size:0.75rem;
  }

  .service-overview-content p{
    font-size:0.95rem;
  }
}

/* ===== SERVICE PROCESS ===== */
.service-process {
    padding: 90px 0;
    background: #f9fafb;
}

.sp-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.sp-heading {
    text-align: center;
    margin-bottom: 60px;
}

.sp-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.sp-heading p {
    color: #555;
    max-width: 600px;
    margin: auto;
}

/* Steps */
.sp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.sp-step {
    position: relative;
    padding-left: 10px;
}

.sp-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d97706;
    display: block;
    margin-bottom: 10px;
}

.sp-step h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.sp-step p {
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .sp-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sp-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICE STRIP SECTION ===== */
.service-strip-section {
    padding: 100px 0;
    background: #000000;
    color: #fff;
}

.strip-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Content */
.strip-tag {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.strip-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.strip-content p {
    max-width: 650px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Services text */
.strip-services {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.strip-services span {
    border-bottom: 2px solid #f97316;
    padding-bottom: 5px;
    font-weight: 600;
}

/* Images */
.strip-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.strip-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s;
}

.strip-images img:hover {
    transform: scale(1.05);
}

/* Responsive */
/* ===== TABLET VIEW (3 COLUMNS) ===== */
@media (max-width: 992px) {
  .strip-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 600px) {

  .strip-content h2 {
    font-size: 2rem;
  }

  .strip-images {
    grid-template-columns: 1fr;
  }
}

/* ===== TRUST 2 COLUMN SECTION ===== */
.trust-2col-section {
    padding: 100px 0;
    background: #ffffff;
}

.trust-2col-container {
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Content */
.trust-tag {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.trust-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List */
.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 500;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
}

/* Image */
.trust-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-2col-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-image img {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .trust-content h2 {
        font-size: 2rem;
    }

    .trust-image img {
        height: 300px;
    }
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-container {
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.contact-tag {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-left p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 500;
}

.contact-info i {
    color: #f97316;
    margin-right: 10px;
}

/* Right Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
    width: 100%;
    resize: none;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button {
    padding: 14px 34px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #f97316;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .contact-left h2 {
        font-size: 2rem;
    }
}

/* ===== CONTACT MAP SECTION ===== */
.contact-map-section {
    position: relative;
}

/* Map iframe */
.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Overlay */
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85); /* dark transparent */
    color: #fff;
    padding: 40px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
}

.map-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.map-overlay p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.overlay-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f97316;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.overlay-btn:hover {
    background: #f97316;
}

/* Responsive */
@media (max-width: 992px) {
    .map-overlay {
        padding: 30px 25px;
        max-width: 320px;
    }

    .map-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .map-overlay {
        padding: 20px 20px;
    }

    .map-overlay h3 {
        font-size: 1.3rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-container {
    width: calc(100% - 30px);
    max-width: 900px;
    margin: auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    color: #f97316;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.faq-header p {
    color: #475569;
    line-height: 1.8;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
}

.faq-question span {
    font-size: 1.6rem;
    color: #f97316;
    transition: transform 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 576px) {
    .faq-header h2 {
        font-size: 2rem;
    }
}


/* maintainance SECTION ===== */


.maintenance{
  text-align:center;
  background-color: #000000;
  height: 100vh;
    padding: 80px 80px;}
/* Circle content */
.circle{
  width:320px;
  height:320px;
  border-radius:50%;
  background:linear-gradient(145deg,#1c1c1c,#0a0a0a);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 40px rgba(255,193,7,0.25);
  margin:0 auto 60px;
  animation:pulse 2.5s infinite;
}

.circle h1{
  font-size:26px;
  margin-bottom:10px;
  color: #fff;
}

.circle p{
  color:#bbb;
  font-size:14px;
}

/* Plug Section */
.plug-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Wire */
.wire{
  width:120px;
  height:6px;
  background:#555;
  position:relative;
  overflow:hidden;
}

.wire::after{
  content:'';
  position:absolute;
  width:40px;
  height:6px;
  background:#ffc107;
  animation:flow 1.5s linear infinite;
}

/* Plug base */
.plug{
  width:60px;
  height:40px;
  background:#222;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  box-shadow:0 0 10px rgba(0,0,0,0.8);
}

.plug span{
  width:6px;
  height:20px;
  background:#ffc107;
  border-radius:3px;
}

/* Animations */
@keyframes pulse{
  0%{ box-shadow:0 0 20px rgba(255,193,7,0.2);}
  50%{ box-shadow:0 0 50px rgba(255,193,7,0.4);}
  100%{ box-shadow:0 0 20px rgba(255,193,7,0.2);}
}

@keyframes flow{
  0%{ left:-40px;}
  100%{ left:120px;}
}

/* Responsive */
@media(max-width:480px){
  .circle{
    width:260px;
    height:260px;
    
  }
  
  .circle h1{
    font-size:22px;
  }

  .wire{
    width:80px;
  }
}


/* LOGIN PAGE ONLY */
.login-page{
  min-height:100vh;
  background:linear-gradient(120deg,#0f0f0f,#1a1a1a);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

/* Main container */
.login-container{
  width:100%;
  max-width:1000px;
  min-height:520px;
  display:flex;
  background:#111;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* LEFT SIDE */
.login-left{
  flex:1;
  background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url("../images/login-bg.jpg");
  background-size:cover;
  background-position:center;
  padding:60px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.login-left h1{
  font-size:38px;
  margin-bottom:15px;
}

.login-left h1 span{
  color:#f97316;
}

.login-left p{
  font-size:16px;
  color:#ddd;
  max-width:360px;
  line-height:1.6;
}

/* RIGHT SIDE */
.login-right{
  flex:1;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}

.login-form{
  width:100%;
  max-width:360px;
}

.login-form h2{
  font-size:28px;
  margin-bottom:25px;
  color:#111;
  text-align:center;
}

/* INPUT GROUP */
.input-group{
  position:relative;
  margin-bottom:18px;
}

.input-group i{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  color:#999;
  font-size:14px;
}

.input-group input{
  width:100%;
  padding:14px 14px 14px 42px;
  border-radius:8px;
  border:1px solid #ddd;
  outline:none;
  font-size:14px;
  transition:0.3s;
}

.input-group input:focus{
  border-color:#f97316;
}

/* OPTIONS */
.form-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  font-size:13px;
}

.form-options a{
  color:#f97316;
  text-decoration:none;
}

/* BUTTON */
.btn-login{
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#111;
  color:#fff;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.btn-login:hover{
  background:#f97316;
  color:#111;
}

/* REGISTER */
.register-text{
  margin-top:18px;
  font-size:14px;
  text-align:center;
  color:#555;
}

.register-text a{
  color:#f97316;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .login-container{
    flex-direction:column;
    max-width:420px;
  }

  .login-left{
    padding:40px 30px;
    text-align:center;
  }
}

/* SIGNUP ONLY (optional) */
.login-page .login-form h2{
  letter-spacing:0.5px;
}

.login-page .btn-login{
  background:#111;
}

.login-page .btn-login:hover{
  background:#f97316;
  color:#111;
}



/* =======================
   404 ERROR PAGE ONLY
======================= */

.error-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url("../images/404-bg.jpg");
  background-size:cover;
  background-position:center;
  padding:0px;
}

.error-wrapper{
  text-align:center;
  color:#fff;
  max-width:520px;
}

.error-wrapper h1{
  font-size:140px;
  font-weight:800;
  line-height:1;
  margin-bottom:10px;
  color:#F97316;
}

.error-wrapper h2{
  font-size:32px;
  margin-bottom:15px;
}

.error-wrapper p{
  font-size:16px;
  color:#ddd;
  line-height:1.7;
  margin-bottom:30px;
}

/* BUTTON */
.btn-back{
  display:inline-block;
  padding:14px 34px;
  background:#F97316;
  color:#111;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-back:hover{
  background:#F97316;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .error-wrapper h1{
    font-size:100px;
  }

  .error-wrapper h2{
    font-size:24px;
  }
}

/* admin DASHBOARD ONLY */


/* admin-dashboard page */
:root{
  --primary:#f97316;
  --dark:#000000;
  --light:#f4f6f8;
  --white:#ffffff;
  --gray:#6b7280;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  
}

body{
  background:var(--light);
}

/* LAYOUT */
.dashboard-layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR */
.sidebar{
  width:240px;
  background:var(--dark);
  color:var(--white);
  padding:25px 20px;
  
}

.logo{
  text-align:center;
  margin-bottom:40px;
}

.menu{
  list-style:none;
}

.menu li{
  padding:14px;
  margin-bottom:10px;
  border-radius:8px;
  cursor:pointer;
  display:flex;
  gap:12px;
  align-items:center;
}

.menu li:hover,
.menu li.active{
  background:var(--primary);
}

/* MAIN */
.main-content{
  flex:1;
  padding:30px;
}

/* TOP BAR */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;

  margin-top: 0px;
}

.topbar h1{
  color:var(--primary);
}

.admin-profile{
  display:flex;
  gap:10px;
  align-items:center;
}

.admin-profile img{
  border-radius:50%;
}

/* QUICK ACTIONS */
.quick-actions{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.btn{
  background:var(--primary);
  color:var(--white);
  border:none;
  padding:10px 18px;
  border-radius:8px;
  cursor:pointer;
}

.btn:hover{
  opacity:0.9;
}

/* STATS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:30px;
}

.stat-card{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  position:relative;
}

.stat-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:var(--primary);
  border-radius:14px 0 0 14px;
}

.stat-card p{
  color:var(--gray);
  margin-bottom:10px;
}

.stat-card h2{
  font-size:28px;
}

/* PANELS */
.dashboard-sections{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  margin-bottom:0px;
}

.panel{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.panel h3{
  margin-bottom:15px;
}

.list{
  list-style:none;
}

.list li{
  padding:8px 0;
  border-bottom:1px solid #eee;
}

/* PROGRESS BAR */
.amount{
  margin-bottom:10px;
}

.progress-bar{
  width:100%;
  height:10px;
  background:#e5e7eb;
  border-radius:10px;
}

.progress-bar span{
  display:block;
  height:100%;
  width:72%;
  background:var(--primary);
  border-radius:10px;
}

/* TABLE */
.booking-table{
  width:100%;
  border-collapse:collapse;
}

.booking-table th,
.booking-table td{
  padding:12px;
  border-bottom:1px solid #eee;
  text-align:left;
}

.success{
  color:green;
  font-weight:600;
}

.pending{
  color:var(--primary);
  font-weight:600;
}

/* =====================
   RESPONSIVE LAYOUT
===================== */

/* Laptop / Medium screens ≤1024px */
@media (max-width:1024px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .dashboard-sections{
    grid-template-columns:repeat(2,1fr);
  }
  .main-content{
    padding:20px;
  }
  .stat-card h2{
    font-size:24px;
  }
  .panel h3{
    font-size:18px;
  }
}

/* Tablet / Small screens ≤768px */
@media (max-width:768px){

  /* Layout stacked */
  .dashboard-layout{
    flex-direction:column;
  }

  /* Sidebar becomes topbar menu */
  .sidebar{
    width:100%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:10px 15px;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:var(--dark);
    color:var(--white);
  }

  /* Logo / Dashboard name on left */
  .logo{
    flex-shrink:0;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
  }

  /* Menu scrollable on right */
  .menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
    flex:1;
    margin-left:20px; /* space between logo and menu */
  }

  .menu li{
    flex-shrink:0;
    padding:8px 12px;
    font-size:14px;
    white-space:nowrap;
    border-radius:8px;
    cursor:pointer;
  }

  .menu li:hover,
  .menu li.active{
    background:var(--primary);
  }

  /* Main content padding to avoid overlap with fixed sidebar */
  .main-content{
    padding:90px 15px 20px 15px;
  }

  /* Stats cards stacked */
  .stats-grid{
    grid-template-columns:1fr;
    gap:15px;
    margin-bottom:20px;
  }

  /* Panels stacked */
  .dashboard-sections{
    grid-template-columns:1fr;
    gap:15px;
    margin-bottom:20px;
  }

  /* Tables scroll horizontally */
  .booking-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
    width:100%;
  }

  .booking-table th,
  .booking-table td{
    padding:10px 8px;
    font-size:13px;
  }
  

  /* Buttons full width */
  .btn{
    width:100%;
    padding:10px;
    font-size:14px;
  }
}

/* Mobile / Extra small screens ≤480px */
@media (max-width:480px){

  /* Topbar stacked */
  .topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  /* Sidebar margin for top fixed */
  .sidebar{
    margin-top:60px;
  }

  /* Stats cards full width */
  .stats-grid{
    grid-template-columns:1fr;
    gap:10px;
  }

  /* Panels padding reduce */
  .panel{
    padding:15px;
  }

  /* Booking / quick action forms stacked */
  .quick-actions{
    flex-direction:column;
    gap:10px;
  }

  /* Sidebar menu smaller */
  .menu li{
    padding:8px 10px;
    font-size:13px;
  }

  /* Tables scroll horizontally */
  .booking-table{
    font-size:12px;
  }
}

/* user dashboard page  */
:root{
  --primary:#f97316;
  --dark:#000000;
  --light:#f4f6f8;
  --white:#ffffff;
  --gray:#6b7280;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  
}

body{
  background:var(--light);
}

.logout a{
  color:#f97316;
  text-decoration:none;
  display:flex;
  align-items:center;
  color:#fff;
  
  gap:8px;
}

.logout a:hover{
  color:#fff;
}

/* LAYOUT */
.user-layout{
  display:flex;
  min-height:100vh;
}

/* SIDEBAR */
.user-sidebar{
  width:240px;
  background:var(--dark);
  color:var(--white);
  padding:25px 20px;
  margin-top:0px ;
}

.user-logo{
  text-align:center;
  margin-bottom:35px;
}

.user-menu{
  list-style:none;
}

.user-menu li{
  padding:10px;
  margin-bottom:10px;
  border-radius:8px;
  display:flex;
 
  gap:12px;
  align-items:center;
  cursor:pointer;
}

.user-menu li:hover,
.user-menu li.active{
  background:var(--primary);
}

.logout{
  margin-top:30px;
  background:#f97316;
}

/* MAIN */
.user-main{
  flex:1;
  padding:30px;
}

/* TOP BAR */
.user-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
  margin-top: 60px;
}

.user-topbar img{
  border-radius:50%;
  width:80px;
}

/* STATS */
.user-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:30px;
 
}

.user-card{
  background:var(--white);
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.user-card p{
  color:var(--gray);
  margin-bottom:8px;
}

/* PANELS */
.panel{
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  margin-bottom:30px;
}

.panel h2{
  margin-bottom:20px;
}

/* TABLE */
.user-table{
  width:100%;
  border-collapse:collapse;
}

.user-table th,
.user-table td{
  padding:12px;
  border-bottom:1px solid #eee;
  text-align:left;
}

/* STATUS */
.confirmed{
  color:green;
  font-weight:600;
}

.completed{
  color:var(--primary);
  font-weight:600;
}

/* BOOKING FORM */
.booking-form{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
  width: 90%;
}

.booking-form select,
.booking-form input{
  padding:10px;
  border-radius:8px;
  border:1px solid #ddd;
}

.booking-form button{
  background:var(--primary);
  color:var(--white);
  border:none;
  border-radius:8px;
  cursor:pointer;
}
@media (max-width:1024px){
  .user-sidebar{
    width:200px;
  }

  .user-main{
    padding:20px;
  }

  .user-topbar h1{
    font-size:20px;
  }
}
@media (max-width:768px){

  /* Layout change */
  .user-layout{
    flex-direction:column;
    
  }

  /* Sidebar becomes top menu */
  .user-sidebar{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
   
  }

  
  .user-menu{
    display:flex;
    overflow-x:auto;
    gap:10px;
  }

  .user-menu li{
    white-space:nowrap;
    margin-bottom:0;
    
  }

  .logout{
    display:none;
  }

  .user-main{
    padding:20px;
  }
  .user-stats{
    margin-top: 209px;
    
  }


  /* Tables scroll */
  .user-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}@media (max-width:480px){

  /* ===== TOPBAR MENU VERTICAL ===== */
  .user-topbar{
    flex-direction:column;      /* 🔥 vertical */
    align-items:stretch;
    gap:10px;
    padding:10px;
  }
  .booking-form{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:15px;
  width: 90%;
}

  /* Menu list vertical */
  .user-menu{
    display:flex;
    flex-direction:column;      /* 🔥 vertical menu */
    width:80%;
    gap:8px;
  }

  .user-menu li{
    width:100%;
    padding:12px 15px;
    font-size:14px;
    text-align:left;
    border-radius:6px;
  }

  /* Active item full width */
  .user-menu li.active{
    width:100%;
  }
  

  /* ===== SIDEBAR FIX ===== */
  .user-sidebar{
    margin-top:0px;
  }

  /* ===== STATS CARDS FULL WIDTH ===== */
  .user-stats{
    margin-top:0px;
    grid-template-columns:1fr;
  }

  /* Panels padding reduce */
  .panel{
    padding:18px;
  }

  /* Booking form stacked */
  .booking-form{
    grid-template-columns:1fr;
  }
}

/* ===== SERVICE SUMMARY ===== */
.service-summary{
  display:flex;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

/* PIE CHART */
.pie-chart{
  width:160px;
  height:160px;
  border-radius:50%;
  background:
    conic-gradient(
      #43aa8b 0% 60%,     /* Completed */
      #f97316 60% 85%,   /* Pending */
      #577590 85% 100%   /* In Progress */
    );
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

/* Inner circle */
.pie-chart::before{
  content:"";
  width:90px;
  height:90px;
  background:#fff;
  border-radius:50%;
  position:absolute;
}

.pie-chart span{
  position:relative;
  font-size:14px;
  font-weight:500;
}

/* DETAILS */
.chart-details p{
  font-size:14px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* DOTS */
.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  display:inline-block;
}

.dot.completed{ background:#43aa8b; }
.dot.pending{ background:#f97316; }
.dot.progress{ background:#577590; }

/* RESPONSIVE */
@media(max-width:768px){
  .service-summary{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* ===== SERVICE PROGRESS ===== */
.progress-item{
  margin-bottom:18px;
}

.progress-item p{
  font-size:14px;
  margin-bottom:6px;
}

.progress-bar{
  width:100%;
  height:10px;
  background:#e0e0e0;
  border-radius:20px;
  overflow:hidden;
}

.progress-bar span{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#43aa8b,#90dbb4);
  border-radius:20px;
}
/* ===== PAYMENT SUMMARY ===== */
.payment-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.pay-card{
  background:#f9fafb;
  padding:20px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 3px 10px rgba(0,0,0,0.06);
}

.pay-card p{
  font-size:14px;
  color:#777;
}

.pay-card h3{
  margin-top:8px;
  font-size:22px;
}
/* ===== PAYMENT SUMMARY RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px){
  .payment-cards{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px){
  .payment-cards{
    grid-template-columns: 1fr;
  }

  .pay-card{
    padding:16px;
  }

  .pay-card h3{
    font-size:20px;
  }

  .pay-card p{
    font-size:13px;
  }
}
:root{
  --completed:#f97316;
  --pending:#facc15;
  --in-progress:#3b82f6;
}

.charts-panel{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

/* PANEL */
.panel{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* BAR CHART */
.chart-bar .bar-wrapper{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:5px;
  height:150px;
  
  padding-top:10px;
}

.chart-bar .bar{
    
  width:20px;
  background:#3b82f6;
  height:var(--height);
  border-radius:4px 4px 0 0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  color:#000000;
  font-size:8px;
}

/* FLOW CHART */
.chart-flow .flow-chart{
  display:flex;
  gap:5px;
  align-items:flex-end;
  height:120px;
}

.chart-flow .flow{
  flex:1;
  background:linear-gradient(to top, #f97316, #fcd34d);
  height:var(--height);
  border-radius:6px;
  transition:height 1s ease;
}

/* PIE CHART */
.chart-pie .pie{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}

.chart-pie .circle{
  width:100px;
  height:100px;
  border-radius:50%;
  background:conic-gradient(var(--completed) 0% 45%, var(--pending) 45% 75%, var(--in-progress) 75% 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
}

/* PIE LEGEND */
.pie-legend{
  list-style:none;
  padding:0;
}
.pie-legend li{
  display:flex;
  align-items:center;
  margin-bottom:5px;
  font-size:14px;
}
.pie-legend span{
  width:12px;
  height:12px;
  border-radius:50%;
  display:inline-block;
  margin-right:8px;
}
.pie-legend .completed{background:var(--completed);}
.pie-legend .pending{background:var(--pending);}
.pie-legend .in-progress{background:var(--in-progress);}


/* ===== HERO HOME 2 ===== */
.hero2{
  min-height:100vh;
  display:flex;
  align-items:center;
  background: #000000;
  color:#fff;
  padding:60px 20px;
}

.hero2-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero2-tag{
  display:inline-block;
  background:#f97316;
  color:#000;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:15px;
}

.hero2-content h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero2-content p{
  font-size:18px;
  opacity:0.9;
  margin-bottom:30px;
}

.hero2-buttons{
  display:flex;
  gap:15px;
}
/* PRIMARY BUTTON */
.btn-primary{
  background:#f97316;
  color:#000;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  border:2px solid #f97316;
  transition:0.3s ease;
}

.btn-primary:hover{
  background:#ffffff;
  color:#f97316;
  border-color:#f97316;
}

/* OUTLINE BUTTON */
.btn-outline{
  background:transparent;
  color:#ffffff;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  border:2px solid #ffffff;
  transition:0.3s ease;
}

.btn-outline:hover{
  background:#f97316;
  color:#fff;   /* hero bg color match */
  border-color:#f97316;
}
/* ===== HERO HOME 2 RESPONSIVE ===== */

/* Tablet view */
@media (max-width: 992px){
  .hero2{
    min-height:auto;
    padding:80px 20px;
  }

  .hero2-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero2-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero2-content h1{
    font-size:38px;
  }

  .hero2-content p{
    font-size:16px;
  }
}

/* Mobile view */
@media (max-width: 576px){
  .hero2{
    padding:70px 15px;
  }

  .hero2-tag{
    font-size:13px;
    padding:5px 12px;
  }

  .hero2-content h1{
    font-size:28px;
    line-height:1.3;
  }

  .hero2-content p{
    font-size:15px;
  }

  .hero2-buttons{
    flex-direction:column;
    gap:12px;
  }
.btn-primary,
  .btn-outline{
    width:50%;
    padding:12px 20px;
    margin:0 auto;      /* button center */
    text-align:center;
  }}

/* IMAGE */
.hero2-image img{
  width:100%;
  max-width:500px;
  display:block;
  margin:auto;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .hero2-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero2-content h1{
    font-size:36px;
  }

  .hero2-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* ===== HOME 2 PROCESS ===== */
.home2-process{
  
  color:#fff;
  padding:80px 20px;
}

.process-container{
  max-width:1200px;
  margin:auto;
}

.process-head{
  text-align:center;
  margin-bottom:60px;
}

.process-head span{
  color:#f97316;
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
}

.process-head h2{
  font-size:36px;
  margin:10px 0;
  color: #000000;
}

.process-head p{
  color:#000000;
}

.process-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.process-step{
  background:#111;
  padding:35px 25px;
  border-radius:18px;
  text-align:center;
  border:1px solid #222;
  transition:0.3s ease;
}

.process-step:hover{
  transform:translateY(-8px);
  border-color:#f97316;
}

.step-no{
  width:55px;
  height:55px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#f97316;
  color:#000;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.process-step h3{
  font-size:20px;
  margin-bottom:10px;
}

.process-step p{
  font-size:14px;
  color:#bbb;
}
/* ===== TABLET VIEW ===== */
@media (max-width: 992px){

  .process-flow{
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
  }

  .process-head h2{
    font-size:30px;
  }

  .process-step{
    padding:30px 20px;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 576px){

  .home2-process{
    padding:60px 15px;
  }

  .process-flow{
    grid-template-columns:1fr;
    gap:18px;
  }

  .process-head h2{
    font-size:26px;
  }

  .process-head p{
    font-size:14px;
  }

  .process-step{
    padding:25px 18px;
  }

  .step-no{
    width:48px;
    height:48px;
    font-size:16px;
  }
}
/* ===== HOME 2 BIKE HEALTH ===== */
.home2-health{
  background:#000000;
  color:#fff;
  padding:80px 20px;
}

.health-container{
  max-width:1200px;
  margin:auto;
}

.health-head{
  text-align:center;
  margin-bottom:60px;
}

.health-head span{
  color:#f97316;
  font-size:14px;
  letter-spacing:2px;
  font-weight:600;
}

.health-head h2{
  font-size:36px;
  margin:10px 0;
}

.health-head p{
  color:#bbb;
}

.health-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.health-card{
  background:#111;
  padding:40px 25px;
  border-radius:20px;
  text-align:center;
  border:1px solid #222;
  transition:0.3s ease;
}

.health-card:hover{
  transform:translateY(-10px);
  border-color:#f97316;
}

.health-circle{
  width:120px;
  height:120px;
  margin:0 auto 25px;
  border-radius:50%;
  background:conic-gradient(#f97316 0% 75%, #222 75%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.health-circle span{
  font-size:22px;
  font-weight:700;
  color:#fff;
}

.health-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.health-card p{
  font-size:14px;
  color:#bbb;
}
/* ===================== RESPONSIVE ===================== */

/* ===== TABLET (iPad) ===== */
@media (max-width: 992px){

  .health-head h2{
    font-size:30px;
  }

  .health-grid{
    grid-template-columns:repeat(3,1fr);
    gap:25px;
  }

  .health-card{
    padding:35px 22px;
  }

  .health-circle{
    width:110px;
    height:110px;
  }
}

/* ===== MOBILE (Large) ===== */
@media (max-width: 768px){

  .home2-health{
    padding:70px 18px;
  }

  .health-head p{
    font-size:15px;
  }

  .health-grid{
    grid-template-columns:1fr;
  }

  .health-card{
    padding:30px 20px;
  }

  .health-circle{
    width:95px;
    height:95px;
  }

  .health-circle span{
    font-size:20px;
  }
}

/* ===== MOBILE (Small) ===== */
@media (max-width: 480px){

  .health-head h2{
    font-size:24px;
  }

  .health-head span{
    font-size:12px;
  }

  .health-card h3{
    font-size:18px;
  }

  .health-card p{
    font-size:13px;
  }

  .health-circle{
    width:85px;
    height:85px;
  }
}
