/* ===== 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;
}


/* Active Dropdown Item */
.custom-navbar .dropdown-item.active{
    background:#F97316;
    color:#fff;
    font-weight:600;
}

/* ===== Tablet View (1024px) ===== */

@media (max-width: 1024px) {

   

    .custom-navbar .nav-link {
        font-size: 13px;
        padding: 6px 8px;
    }

    .custom-navbar .navbar-nav {
        gap: 5px;
    }

    .btn-custom {
        font-size: 13px;
        padding: 5px 10px;
    }
}



/* ===== 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: 120px;
    object-fit: cover;
    margin-top: -15px;
    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 */
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ================= BODY ================= */
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ================= WRAPPER ================= */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #fff7f0, #ffd7b3);
}

/* ================= CONTAINER ================= */
.login-container {
  background-color: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* ================= HEADINGS ================= */
.login-container h2 {
  color: #f97316;
  font-size: 26px;
  margin-bottom: 10px;
}

.login-container p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}

/* ================= INPUT GROUP ================= */
.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #f97316;
  outline: none;
}

/* ================= OPTIONS ================= */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.options a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s;
}

.options a:hover {
  color: #e65c00;
}

/* ================= BUTTON ================= */
.login-container button,
.login-container .back-home-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background-color: #f97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none; /* for anchor */
  transition: all 0.3s ease;
  margin-top: 15px;
}

.login-container button:hover,
.login-container .back-home-btn:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

/* ================= REGISTER TEXT ================= */
.register-text {
  margin-top: 20px;
  font-size: 14px;
}

.register-text a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.register-text a:hover {
  color: #e65c00;
}

/* ================= LOGO ================= */
/* ================= LOGO ================= */
.logo {
  margin-bottom: 20px;
  text-align: center;
}

.logo img {
  width: 120px; /* adjust size */
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effect */
.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}


/* singup page */

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ================= WRAPPER ================= */
.signup-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #fff7f0, #ffd7b3);
}

/* ================= CONTAINER ================= */
.signup-container {
  background-color: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* ================= HEADINGS ================= */
.signup-container h2 {
  color: #f97316;
  font-size: 26px;
  margin-bottom: 10px;
}

.signup-container p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}

/* ================= INPUT GROUP ================= */
.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #f97316;
  outline: none;
}

/* ================= BUTTON ================= */
.signup-container button,
.signup-container .back-home-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background-color: #f97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.signup-container button:hover,
.signup-container .back-home-btn:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

/* ================= LOGIN TEXT ================= */
.login-text {
  margin-top: 20px;
  font-size: 14px;
}

.login-text a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.login-text a:hover {
  color: #e65c00;
}



/* =======================
   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 page */

/* =====================
   ROOT
===================== */
:root{
  --primary:#BF092F;
  --bg:#f1f5f9;
  --white:#ffffff;
  --gray:#6b7280;
  --dark:#111827;
  --radius:12px;
}

/* =====================
   RESET
===================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


body{
  
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
}

/* =====================
   MAIN LAYOUT FIX
===================== */
.dashboard-layout{
  display:flex;
  width:100%;
  min-height:100vh;
  align-items:flex-start;
}

/* =====================
   SIDEBAR
===================== */
.user-sidebar{
  width:220px;
  background:#fff;
  padding:16px 12px;
  border-right:1px solid #e5e7eb;
  flex-shrink:0;
  min-height:100vh;
}

.user-menu{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.user-menu li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  border-radius:10px;
  cursor:pointer;
}

.user-menu li.active,
.user-menu li:hover{
  background:var(--primary);
  color:#fff;
}

.user-menu .logout{
  margin-top:auto;
}

/* =====================
   MAIN CONTENT (KEY FIX)
===================== */
.main-content{
  flex:1;
  width:calc(100% - 220px);
  padding:24px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:24px;
}

/* FORCE ALL SECTIONS INTO FLOW */
.main-content > *{
  width:100%;
  position:relative;
  clear:both;
}

/* =====================
   TOPBAR
===================== */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* =====================
   STATS GRID (NO GAP)
===================== */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.user-card{
  background:#fff;
  padding:20px;
  border-radius:var(--radius);
  text-align:center;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

/* =====================
   DASHBOARD SECTIONS
===================== */
.dashboard-sections{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

/* =====================
   PANEL (CRITICAL)
===================== */
/* =====================
   PANEL (NO CHANGE – JUST SAFE)
===================== */
.panel{
  background:#fff;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  width:100%;
  max-width:100%;
}

/* =====================
   QUICK BOOK SERVICE (FIXED & DESIGNED)
===================== */
.booking-form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:16px;
}

/* INPUTS & SELECT */
.booking-form select,
.booking-form input{
  width:100%;
  padding:12px 14px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:14px;
  color:var(--dark);
  background:#f9fafb;
  outline:none;
  transition:0.3s ease;
}

/* PLACEHOLDER / DEFAULT */
.booking-form select{
  cursor:pointer;
}

/* FOCUS STATE */
.booking-form select:focus,
.booking-form input:focus{
  border-color:var(--primary);
  background:#ffffff;
  box-shadow:0 0 0 3px rgba(191,9,47,0.12);
}

.booking-form button{
  grid-column:1 / -1;
  padding:14px;
  border:2px solid #f97316;   /* ⭐ border add */
  border-radius:12px;
  background:#f97316;
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.3s ease;
}

/* HOVER */
.booking-form button:hover{
  background:#ffffff;
  color:#f97316;
  border-color:#f97316;  /* ippo work aagum */
}


/* =====================
   MOBILE FIX
===================== */
@media (max-width:768px){
  .booking-form{
    grid-template-columns:1fr;
  }
}

/* =====================
   PAYMENT
===================== */
.payment-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

/* =====================
   ABSOLUTE FORCE FIX
===================== */
section{
  float:none !important;
  width:100% !important;
  max-width:100% !important;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:1024px){
  .main-content{
    width:100%;
  }
  .dashboard-sections{
    grid-template-columns:1fr;
  }
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .stats-grid{
    grid-template-columns:1fr;
  }
  .booking-form{
    grid-template-columns:1fr;
  }
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {  background: var(--light-bg); overflow-x: hidden; }

/* Layout */
.dashboard-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.user-sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* prevent shrinking */
}

/* LOGO */
.user-sidebar .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.user-sidebar .navbar-brand img {
  width: 80px;

  display: block;
  object-fit: contain;
}

/* Menu */
.user-menu { list-style: none; padding: 0; margin-top: 0; }
.user-menu li { 
  padding: 10px 8px;
  cursor: pointer; 
  border-radius: var(--radius); 
  margin-bottom: 6px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 17px;
}
.user-menu li.active, .user-menu li:hover {  background: #BF092F;  /* your hover color */
  color: #ffffff;  }
.user-menu li.logout { margin-top: auto; }
.user-menu li.logout a { color: var(--text-white); text-decoration: none; display: flex; align-items: center; gap: 10px; }

/* Close button */
.user-sidebar .close-btn { 
  display: none; 
  background: none; border: none; color: var(--text-white); font-size: 24px; 
  cursor: pointer; position: absolute; top: 15px; right: 15px;
}

/* MAIN CONTENT */
.main-content { flex: 1; padding: 20px; transition: margin-left 0.3s ease; overflow-x: hidden; }

/* TOPBAR */
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.topbar h1 { color: var(--primary); font-size: 24px; }
.admin-profile { display: flex; align-items: center; gap: 10px; }
.admin-profile img { width: 50px; height: 50px; border-radius: 50%; }

/* QUICK ACTIONS */
.quick-actions { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.quick-actions .btn { padding: 10px 20px; border: none; border-radius: var(--radius); background: var(--primary); color: #fff; cursor: pointer; }

/* STATS GRID */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 15px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); padding: 20px; border-radius: var(--radius); text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.stat-card h2 { font-size: 22px; margin: 5px 0; }
.stat-card p { color: var(--gray); }



/* HAMBURGER */
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray); margin-right: 10px; }

/* RESPONSIVE TABLET / MOBILE */
@media (max-width: 1024px) {
  .user-sidebar { 
    width: 180px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    z-index: 1000;
  }
  .user-sidebar.open { transform: translateX(0); }
  .user-sidebar .close-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1100;  /* make sure it's on top */
}

  .hamburger { display: block; }
  .dashboard-sections { grid-template-columns: 1fr; }
  .user-sidebar .navbar-brand img { width: 60px; margin-bottom: 8px; }
  .main-content { margin-left: 0; }
}

/* SMALL SCREENS */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .quick-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .quick-actions .btn { width: 100%; }
}

/* TAB & MOBILE - HAMBURGER BUTTON COLOR */
@media(max-width:1024px){
  .hamburger{
    color:#000;   /* black color */
  }
}

@media(max-width:768px){
  .hamburger{
    color:#000;   /* black color */
  }
  
}
/* user dashboard page */

:root {
  --primary: #f97316; /* hover/active color */
  --sidebar-bg: #FFFFFF;
  --light-bg: #f1f5f9;
  --card-bg: #fff;
  --panel-bg: #fff;
  --gray: #FFFFFF;
  --radius: 12px;
  --text-white: #000000;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--light-bg); overflow-x:hidden; }

/* LAYOUT */
.user-layout { display:flex; min-height:100vh; }

/* SIDEBAR */
.user-sidebar {
  width:220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display:flex;
  flex-direction:column;
  padding:15px 10px;
  transition: transform 0.3s ease;
  flex-shrink:0;
  position:relative;
}
.user-sidebar .navbar-brand { display:flex; justify-content:center; margin-bottom:12px; }
.user-sidebar .user-menu { list-style:none; padding:0; margin-top:0; }
.user-sidebar .user-menu li { 
  padding:10px 8px; display:flex; align-items:center; gap:10px; cursor:pointer; border-radius: var(--radius); margin-bottom:6px; font-size:14px; transition:0.3s;
}
/* HOVER & ACTIVE */
.user-sidebar .user-menu li:hover,
.user-sidebar .user-menu li.active { background: var(--primary); color:#fff; }
/* LOGOUT */
.user-sidebar .user-menu li.logout { margin-top:auto; }
.user-sidebar .user-menu li.logout a { color:#fff; text-decoration:none; display:flex; align-items:center; gap:10px; }
.user-sidebar .user-menu li.logout a:hover { background: var(--primary); border-radius: var(--radius); padding:10px 8px; }

/* CLOSE BUTTON */
.user-sidebar .user-close-btn { 
  display:none; position:absolute; top:15px; right:15px; font-size:24px; color:#fff; background:none; border:none; cursor:pointer; z-index:1100;
}

/* LOGOUT BUTTON */
.user-sidebar .user-menu li.logout a { 
    /* background color */
  color: #000;           /* text color black */
 
 
}



/* MAIN CONTENT */
.user-main { flex:1; padding:20px; transition: margin-left 0.3s ease; overflow-x:hidden; }

/* TOPBAR */
.user-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.user-topbar h1 { font-size:24px; color: var(--primary); }
.user-topbar img { width:50px; height:50px; border-radius:50%; }
.user-hamburger { display:none; background:none; border:none; font-size:24px; cursor:pointer; color: var(--gray); margin-right:10px; }

/* CARDS */
.user-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:15px; margin-bottom:20px; }
.user-card { background: var(--card-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); text-align:center; }
.user-card h3 { margin-top:5px; }
.user-card .confirmed { color:green; font-weight:bold; }

/* PANELS */
.user-panel { background: var(--panel-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); margin-bottom:20px; }
.user-panel h2 { margin-bottom:15px; color: var(--primary); }

/* TABLES */
.user-table { width:100%; border-collapse:collapse; }
.user-table th, .user-table td { padding:10px; text-align:left; border-bottom:1px solid #ddd; }
.user-table th { background:#f4f6f8; }
.user-table td.confirmed { color:green; font-weight:bold; }
.user-table td.completed { color:gray; font-weight:bold; }

/* BOOKING FORM */
.user-booking-form { display:flex; gap:10px; flex-wrap:wrap; }
.user-booking-form select, .user-booking-form input { padding:10px; border-radius: var(--radius); border:1px solid #ccc; }
.user-booking-form button { padding:10px 20px; border:none; border-radius: var(--radius); background: var(--primary); color:#fff; cursor:pointer; }

/* RESPONSIVE */
@media(max-width:1024px){
  .user-sidebar{ width:180px; position:fixed; top:0; left:0; bottom:0; transform:translateX(-100%); z-index:1000; }
  .user-sidebar.open{ transform:translateX(0); }
  .user-sidebar .user-close-btn{ display:block; }
  .user-main{ margin-left:0; }
  .user-hamburger { display:block;  }
}
/* TAB & MOBILE - HAMBURGER BUTTON COLOR */
@media(max-width:1024px){
  .user-hamburger{
    color:#000;   /* black color */
  }
}

@media(max-width:768px){
  .user-hamburger{
    color:#000;   /* black color */
  }
  
}

@media(max-width:768px){
  .user-stats{ grid-template-columns:1fr; }
  .user-booking-form{ flex-direction:column; }
}
@media(max-width:480px){
  .user-booking-form button{ width:100%; }
}


/* 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);}


/* home 2 home */
/* Hero2 Section */
.hero-sectionn {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(3, 3, 3, 0.7)
    ),
    url('../images/pexels-jeremy-stowell-546634197-28220914.jpg') center/cover no-repeat;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-sectionn h1 {
    font-weight: 700;
    font-size: 60px;
}

.hero-sectionn p {
    opacity: 0.9;
    font-size: 16px;
}


/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-sectionn h1 {
        font-size: 3.5rem; /* smaller heading */
    }
    .hero-sectionn p {
        font-size: 1rem;
    }
    
}
/* Mobile */
@media (max-width: 768px) {
    .hero-sectionn h1 {
        font-size: 2.4rem; /* mobile friendly */
    }
    .hero-sectionn p {
        font-size: 0.95rem;
    }
   
}




/* ===== 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;
  }
}


/* Hero2 content normal styles */
.hero2-content {
  text-align: left;
  padding: 0 20px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
  .hero2-content {
    margin-top: 20px; /* adjust top spacing for mobile */
  }

  .hero2-content h1 {
    font-size: 24px; /* optional: smaller font for mobile */
  }

  .hero2-content p {
    font-size: 14px; /* optional: smaller paragraph text */
  }
}

/* ===== 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;
  }
}

/* booking page */


/* ===== BOOKING + IMAGE SECTION ===== */
.booking-main {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #FFFFFF;
  gap: 40px;
}

.booking-left {
  flex: 1;
  min-width: 300px;
}

.booking-left h1 {
  color: #f97316;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  text-transform:uppercase ;
}

.booking-left p {
  margin-bottom: 25px;
  color: #000000;
  font-size: 33px;
}

/* Booking form */
.booking-left .input-group {
  margin-bottom: 20px;
}

.booking-left .input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: #333;
}

.booking-left .input-group input,
.booking-left .input-group select {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 12px;
  transition: border 0.3s, box-shadow 0.3s;
}

.booking-left .input-group input:focus,
.booking-left .input-group select:focus {
  border-color: #F97316;
  box-shadow: 0 0 8px rgba(191,9,47,0.3);
  outline: none;
}

.booking-left button {
  width: 100%;
  padding: 12px;
  background: #F97316;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}



/* Booking image */
.booking-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-img {
  max-width: 100%;
  width: 80%;
  height: 95%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* Responsive */
@media(max-width: 900px){
  .booking-img {
    width: 70%;;
    height: 50%;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  width: 100%;
}

/* Responsive */
@media(max-width: 900px){
  .booking-main, .info-2col {
    flex-direction: column;
  }
}

/* service gallery */

/* ================= Image Gallery ================= */
.image-gallery {
  padding: 80px 0;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Hover Animation on Image */
.gallery-item:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(0.8);
}

/* Description Overlay */
.gallery-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.gallery-item:hover .gallery-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Description Text */
.gallery-desc h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #f97316;
}

.gallery-desc p {
  font-size: 14px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* blog page */


.blog-header .blog-tag {
  display: inline-block;
  font-size: 14px;
  color: #f97316;
  margin-top: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-header h1 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.blog-header p {
  font-size: 16px;
  color: #000000;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content .read-more {
  color: #f97316;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 15px;
  font-weight: 600;
}

.blog-content .read-more i {
  margin-left: 5px;
}

.blog-content .read-more:hover {
  color: #e65c00;
}

/* ================= Blog Newsletter ================= */
.blog-newsletter {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  
  margin-top: 60px;
}

.blog-newsletter h2 {
  font-size: 32px;
  color: #f97316;
  margin-bottom: 15px;
}

.blog-newsletter p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 20px;
  width: 300px;
  border-radius: 8px;
  border: 1px solid #000;
  font-size: 14px;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: #f97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
}
