a{
  text-decoration: none;
  color: inherit;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}





.nav_header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.nav_container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.nav_logo img {
    width: 50px;
    height: auto;
}

/* Menu */
.nav_menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav_link {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: 0.3s;
}

.nav_link:hover,
.nav_link.active {
    color: #2563eb;
}

/* Button */
.nav_btn {
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.nav_btn:hover {
    background: #1e4fd8;
}

/* Toggle */
.nav_toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav_toggle span {
    width: 26px;
    height: 3px;
    background: #111;
    margin: 4px 0;
    border-radius: 3px;
}

/* ================= Responsive ================= */

@media (max-width: 900px) {
    .nav_menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 18px;
        display: none;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .nav_menu.active {
        display: flex;
    }

    .nav_toggle {
        display: flex;
    }

    .nav_btn {
        width: 100%;
        text-align: center;
    }
}


/* ====================================================== */





/* ================= HERO SECTION ================= */

.home_hero_section {
    width: 100%;
    padding: 80px 5%;
}

.home_hero_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.home_hero_left {
    flex: 1;
}

.home_hero_badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 30px;
    background: #f1f6ff;
    color: #1e63ff;
    font-size: 13px;
    margin-bottom: 18px;
}

.home_hero_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.home_hero_desc {
    font-size: 15px;
    color: #555;
    max-width: 450px;
    margin-bottom: 25px;
}

.home_hero_buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home_btn_primary {
    padding: 12px 22px;
    background: #1e63ff;
    color: #fff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.home_btn_secondary {
    padding: 12px 22px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
}

/* RIGHT SLIDER */
.home_hero_right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.home_hero_slider {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* SLIDES */
.home_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s ease;
}

.home_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_slide.active {
    opacity: 1;
}

/* BUTTONS */
.home_prev, .home_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
}

.home_prev { left: 10px; }
.home_next { right: 10px; }

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .home_hero_container {
        flex-direction: column;
        text-align: center;
    }

    .home_hero_desc {
        margin: auto;
    }

    .home_hero_buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .home_hero_title {
        font-size: 32px;
    }

    .home_hero_slider {
        height: 220px;
    }
}


/* ========================================= */



.service_section {
    padding: 80px 5%;
    background: #fff;
}

.service_container {
    max-width: 1200px;
    margin: auto;
}

.service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service_card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* 🔥 IMAGE FIX */
.service_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service_content {
    padding: 16px;
}

.service_content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service_content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.service_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_price {
    font-weight: 600;
    color: #2563eb;
}

.service_btn {
    border: 1px solid #2563eb;
    padding: 6px 12px;
    border-radius: 6px;
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s;
}

.service_btn:hover {
    background: #2563eb;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .service_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .service_grid {
        grid-template-columns: 1fr;
    }
}






        /* ================= ABOUT SECTION ================= */

.home_about_section {
    width: 100%;
    padding: 80px 5%;
    background: #fafafa;
}

.home_about_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT IMAGE */
.home_about_left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.home_about_card {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.home_about_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT */
.home_about_right {
    flex: 1;
}

.home_about_title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
}

.home_about_text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .home_about_container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .home_about_right {
        max-width: 600px;
    }

    .home_about_title {
        font-size: 26px;
    }

}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .home_about_section {
        padding: 60px 20px;
    }

    .home_about_card {
        max-width: 100%;
    }

    .home_about_card img {
        height: auto;
    }

    .home_about_title {
        font-size: 22px;
    }

    .home_about_text {
        font-size: 14px;
    }

}

/* ===== OUR SERVICES =====
.home_serv_section {
    padding: 80px 5%;
    background: #ffffff;
}

.home_serv_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: auto;
}

.home_serv_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    transition: 0.3s;
}

.home_serv_card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.home_serv_img {
    height: 200px;
    background: #f3f4f6;
    border-radius: 10px;
    margin-bottom: 16px;
}

.home_serv_card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.home_serv_price {
    display: block;
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.home_serv_btn {
    display: block;
    text-align: center;
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.home_serv_btn:hover {
    background: #2563eb;
    color: #fff;
}

.home_serv_viewall {
    text-align: center;
    margin-top: 30px;
}

.home_serv_viewall a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
} */






/* ===== OUR SERVICES ===== */
.home_serv_section {
    padding: 80px 5%;
    background: #ffffff;
}

.home_serv_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: auto;
}

.home_serv_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    transition: 0.3s;
    overflow: hidden;
}

.home_serv_card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* 🔥 FIXED IMAGE */
.home_serv_img {
    width: 100%;
    height: 200px;
    object-fit: cover;   /* IMPORTANT */
    border-radius: 10px;
}

/* TEXT */
.home_serv_card h3 {
    font-size: 16px;
    margin: 12px 0 6px;
}

.home_serv_price {
    display: block;
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

/* BUTTON */
.home_serv_btn {
    display: block;
    text-align: center;
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.home_serv_btn:hover {
    background: #2563eb;
    color: #fff;
}

/* VIEW ALL */
.home_serv_viewall {
    text-align: center;
    margin-top: 30px;
}

/* RESPONSIVE */
@media(max-width: 992px){
    .home_serv_cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .home_serv_cards {
        grid-template-columns: 1fr;
    }
}




/* ===== WHY CHOOSE ===== */
.home_serv_why {
    padding: 80px 5%;
    background: #ffffff;
}

.home_serv_features {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home_serv_feature {
    text-align: center;
}

.home_serv_icon {
    width: 50px;
    height: 50px;
    margin: auto;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 14px;
}

.home_serv_feature h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.home_serv_feature p {
    font-size: 13px;
    color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .home_serv_cards,
    .home_serv_features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home_serv_cards,
    .home_serv_features {
        grid-template-columns: 1fr;
    }

    .home_serv_heading h2 {
        font-size: 24px;
    }
}




/* ===============================
   HOW IT WORKS SECTION
================================ */
.home_how_section {
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
}

.home_how_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.home_how_subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.home_how_steps {
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Line */
.home_how_steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #d6dff5;
    z-index: 0;
}

.home_how_step {
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.home_how_icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
}

.home_how_icon img {
    width: 32px;
}

.home_how_number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_how_step h4 {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 600;
}

.home_how_step p {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
}

/* ===============================
   TESTIMONIAL SECTION
================================ */
.home_how_testimonial_section {
    width: 100%;
    padding: 80px 5%;
    background: #ffffff;
}

.home_how_testimonial_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.home_how_testimonial_subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.home_how_testimonial_grid {
    max-width: 1100px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home_how_testimonial_card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.home_how_stars {
    color: #fbbf24;
    font-size: 14px;
}

.home_how_testimonial_card p {
    font-size: 14px;
    color: #555;
    margin: 15px 0 20px;
    line-height: 1.6;
}

.home_how_client {
    font-weight: 600;
    font-size: 14px;
}

.home_how_location {
    font-size: 12px;
    color: #888;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .home_how_steps {
        flex-direction: column;
        gap: 40px;
    }

    .home_how_steps::before {
        display: none;
    }

    .home_how_step {
        width: 100%;
    }

    .home_how_testimonial_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .home_how_title,
    .home_how_testimonial_title {
        font-size: 26px;
    }

    .home_how_testimonial_grid {
        grid-template-columns: 1fr;
    }
}





/* ===============================
   FAQ SECTION
================================ */




.home_faq_section {
    padding: 80px 5%;
    background: #ffffff;
}

.home_faq_heading {
    text-align: center;
    margin-bottom: 40px;
}

.home_faq_heading h2 {
    font-size: 28px;
    font-weight: 600;
}

.home_faq_heading p {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
}

/* FAQ Container */
.home_faq_container {
    max-width: 720px;
    margin: auto;
}

/* FAQ Item */
.home_faq_item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: 0.3s;
}

/* Question */
.home_faq_question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Icon */
.home_faq_icon {
    font-size: 16px;
    transition: transform 0.3s;
}

/* Answer */
.home_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 18px;
}

.home_faq_answer p {
    font-size: 14px;
    color: #666;
    padding: 0px;
}

/* Active State */
.home_faq_item.active .home_faq_answer {
    max-height: 200px;
}

.home_faq_item.active .home_faq_icon {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 576px) {
    .home_faq_heading h2 {
        font-size: 24px;
    }

    .home_faq_question {
        font-size: 13px;
    }
}




/* ================= FOOTER ================= */

.footer_section {
    width: 100%;
    background: linear-gradient(180deg, #0f0f0f, #090909);
    padding-top: 60px;
}

/* ===== Newsletter ===== */

.footer_newsletter {
    max-width: 1200px;
    margin: auto;
    padding: 0 6% 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer_news_text h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #ffffff;
}

.footer_news_text p {
    font-size: 13px;
    color: #bcbcbc;
}

.footer_news_form {
    display: flex;
    gap: 10px;
}

.footer_news_input {
    width: 260px;
    padding: 11px 14px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #1b1b1b;
    color: #fff;
    font-size: 13px;
}

.footer_news_btn {
    padding: 11px 18px;
    background: #1e63ff;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.footer_news_btn:hover {
    background: #0f4fe0;
}

/* ===== Main Footer ===== */

.footer_main {
    max-width: 1200px;
    margin: auto;
    padding: 50px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ===== Brand ===== */

.footer_brand h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3b82f6;
}

.footer_brand p {
    font-size: 13px;
    color: #bcbcbc;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer_socials {
    display: flex;
    gap: 10px;
}

.footer_social_icon {
    width: 32px;
    height: 32px;
    background: #3e3c3cfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    color:white;
}

.footer_social_icon:hover {
    background: #1e63ff;
}

/* ===== Columns ===== */

.footer_col h5 {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer_col ul {
    list-style: none;
}

.footer_col ul li {
    margin-bottom: 10px;
}

.footer_col ul li a {
    font-size: 13px;
    color: #bcbcbc;
    text-decoration: none;
    transition: 0.3s;
}

.footer_col ul li a:hover {
    color: #ffffff;
}

/* ===== Contact ===== */

.footer_contact p {
    font-size: 13px;
    color: #bcbcbc;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===== Bottom Bar ===== */

.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9a9a9a;
}

.footer_bottom_links {
    display: flex;
    gap: 18px;
}

.footer_bottom_links a {
    color: #9a9a9a;
    text-decoration: none;
}

.footer_bottom_links a:hover {
    color: #fff;
}



/* =============== */


.footer_bottom {
    background: #111;
    padding: 15px 0;
    color: #ccc;
    font-size: 14px;
}

.footer_bottom_links a {
    margin: 0 8px;
    color: #ccc;
    text-decoration: none;
}

.footer_bottom_links a:hover {
    color: #ffea00;
}

.footer_bottom_right a.rp_link {
    color: #ffea00;
    font-weight: 600;
    text-decoration: none;
}

.footer_bottom_right a.rp_link:hover {
    text-decoration: underline;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer_newsletter {
        flex-direction: column;
        text-align: center;
    }

    .footer_news_form {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer_main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer_socials {
        justify-content: center;
    }

    .footer_bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}




/* =========================================SERVICE PAGE================= */



/* Section */
.service_section {
    width: 100%;
    padding: 70px 6%;
    background: #ffffff;
}

.service_container {
    max-width: 1200px;
    margin: auto;
}

/* Heading */
.service_heading {
    margin-bottom: 35px;
}

.service_heading h2 {
    font-size: 32px;
    font-weight: 700;
}

.service_heading p {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* Grid */
.service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.service_card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s ease;
}

.service_card:hover {
    transform: translateY(-6px);
}

/* Image */
.service_img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Content */
.service_content {
    padding: 18px;
}

.service_content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.service_content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

/* Bottom */
.service_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_price {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

.service_price small {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

.service_btn {
    padding: 8px 16px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.service_btn:hover {
    background: #1e4fd8;
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .service_grid {
        grid-template-columns: 1fr;
    }

    .service_card {
        display: flex;
        align-items: center;
        padding: 12px;
    }

    .service_img img {
        width: 90px;
        height: 90px;
        border-radius: 10px;
    }

    .service_content {
        padding: 0 0 0 14px;
        width: 100%;
    }

    .service_content h3 {
        font-size: 16px;
    }

    .service_content p {
        font-size: 12px;
    }

    .service_bottom {
        margin-top: 8px;
    }

    .service_btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}





/* ==================================================== */

/* ================= profile PAGE ================= */


/* ================= CONTAINER ================= */
.profile_container{
  max-width:700px;
  margin:auto;
}

/* ================= HEADER ================= */
.profile_header{
  margin-bottom:20px;
}

.profile_header h2{
  font-size:26px;
  font-weight:600;
}

.profile_header p{
  font-size:14px;
  color:#777;
}

/* ================= CARD COMMON ================= */
.profile_card{
  background:#fff;
  border-radius:10px;
  padding:20px;
  margin-bottom:18px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.profile_card_title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:600;
  margin-bottom:15px;
}

/* ================= FORM ================= */
.profile_form_group{
  margin-bottom:12px;
}

.profile_form_group label{
  display:block;
  font-size:13px;
  margin-bottom:5px;
  color:#555;
}

.profile_form_group input{
  width:100%;
  padding:10px;
  border-radius:6px;
  border:1px solid #ddd;
  font-size:14px;
}

.profile_save_btn{
  background:#2563eb;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
  font-size:14px;
  cursor:pointer;
}

/* ================= ADDRESS ================= */
.profile_address_item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

.profile_address_item:last-child{
  border-bottom:none;
}

.profile_address_text{
  font-size:14px;
}

.profile_address_text span{
  display:block;
  font-size:12px;
  color:#777;
}

.profile_edit_btn{
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
}

.profile_add_address{
  display:inline-block;
  margin-top:10px;
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
}

/* ================= PAYMENT ================= */
.profile_payment_item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

.profile_payment_item:last-child{
  border-bottom:none;
}

.profile_payment_text{
  font-size:14px;
}

.profile_payment_text span{
  display:block;
  font-size:12px;
  color:#777;
}

.profile_payment_amount{
  font-size:14px;
  font-weight:600;
}

.profile_view_orders{
  display:inline-block;
  margin-top:10px;
  font-size:13px;
  color:#2563eb;
  text-decoration:none;
}

/* ================= LOGOUT ================= */
.profile_logout_btn{
  width:100%;
  background:#fff;
  border:1px solid #eee;
  padding:12px;
  border-radius:8px;
  color:#e11d48;
  font-size:14px;
  cursor:pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:600px){
  .profile_card{
    padding:15px;
  }

  .profile_header h2{
    font-size:22px;
  }
}



/* ================================================= */
/* ========================================= */


/* ================= CONTAINER ================= */
.order_container{
  max-width:750px;
  margin:auto;
}

/* ================= HEADER ================= */
.order_header{
  margin-bottom:20px;
}

.order_header h2{
  font-size:26px;
  font-weight:600;
}

.order_header p{
  font-size:14px;
  color:#777;
  margin-top:4px;
}

/* ================= CARD ================= */
.order_card{
  background:#fff;
  border-radius:10px;
  padding:18px;
  margin-bottom:15px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* ================= CARD TOP ================= */
.order_card_top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:12px;
}

.order_id{
  font-size:12px;
  color:#888;
}

.order_title{
  font-size:16px;
  font-weight:600;
  margin-top:4px;
}

/* ================= STATUS ================= */
.order_status{
  font-size:12px;
  padding:4px 10px;
  border-radius:20px;
  font-weight:500;
}

.order_completed{
  background:#dcfce7;
  color:#15803d;
}

.order_scheduled{
  background:#e0e7ff;
  color:#3730a3;
}

/* ================= DETAILS ================= */
.order_details{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:15px;
}

.order_detail_item{
  font-size:13px;
}

.order_detail_label{
  color:#777;
  margin-bottom:4px;
}

.order_detail_value{
  font-weight:500;
}

.order_amount{
  color:#2563eb;
  font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:700px){
  .order_details{
    grid-template-columns:1fr;
    gap:10px;
  }

  .order_card_top{
    flex-direction:column;
    gap:10px;
  }

  .order_header h2{
    font-size:22px;
  }
}









/* ========================================= */
/* ========== BOOKING MODAL ========== */


/* ===== PAGE ===== */
.bk_page{
  min-height:100vh;
  background:#f6f8fc;
  padding:40px 6%;
}

/* ===== TITLE ===== */
.bk_title{
  font-size:28px;
  font-weight:700;
  margin-bottom:20px;
}

/* ===== STEPS ===== */
.bk_steps{
  display:flex;
  gap:12px;
  margin-bottom:30px;
}
.bk_step_dot{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#e5e7eb;
  color:#555;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}
.bk_step_dot.active{
  background:#2563eb;
  color:#fff;
}

/* ===== CARD ===== */
.bk_card{
  background:#fff;
  max-width:520px;
  border-radius:16px;
  padding:26px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* ===== FORM ===== */
.bk_form_step{
  display:none;
}
.bk_form_step.active{
  display:block;
}

.bk_form label{
  display:block;
  margin:14px 0 6px;
  font-size:14px;
  font-weight:600;
}
.bk_form input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
}

/* ===== QUANTITY ===== */
.bk_qty{
  display:flex;
  align-items:center;
  gap:12px;
}
.bk_qty button{
  width:36px;
  height:36px;
  border:none;
  background:#2563eb;
  color:#fff;
  font-size:18px;
  border-radius:8px;
  cursor:pointer;
}

/* ===== TIME ===== */
.bk_slots{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:10px;
}
.bk_slots button{
  padding:10px;
  border:1px solid #ddd;
  background:#f9fafb;
  border-radius:8px;
  cursor:pointer;
}
.bk_slots button.active{
  background:#2563eb;
  color:#fff;
}

/* ===== ACTIONS ===== */
.bk_actions{
  display:flex;
  justify-content:space-between;
  margin-top:24px;
}
.bk_btn{
  padding:12px 22px;
  border:none;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}
.bk_back{
  background:#e5e7eb;
}
.bk_next{
  background:#2563eb;
  color:#fff;
}

/* ===== SUMMARY ===== */
.bk_summary p{
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}
.bk_total{
  font-size:18px;
  font-weight:700;
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
  .bk_page{padding:25px 5%}
  .bk_slots{grid-template-columns:repeat(2,1fr)}
  .bk_card{padding:20px}
}






/* ============================================== */


/* ========== ADMIN DASHBOARD ========== */




/* ===== CONTAINER ===== */
.bs_container{
  max-width:520px;
  margin:auto;
  padding:25px;
}

/* ===== BACK ===== */
.bs_back{
  font-size:14px;
  color:#6b7280;
  text-decoration:none;
}

/* ===== TITLE ===== */
.bs_title{
  font-size:26px;
  font-weight:700;
  margin:12px 0 18px;
}

/* ===== STEPS ===== */
.bs_steps{
  display:flex;
  align-items:center;
  margin-bottom:25px;
}
.bs_circle{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#e5e7eb;
  color:#6b7280;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}
.bs_circle.active{
  background:#2563eb;
  color:#fff;
}
.bs_line{
  flex:1;
  height:3px;
  background:#e5e7eb;
}
.bs_line.active{
  background:#2563eb;
}

/* ===== STEP ===== */
.bs_step{
  display:none;
}
.bs_step.active{
  display:block;
}

/* ===== CARD ===== */
.bs_card{
  background:#fff;
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:16px;
  margin-bottom:15px;
}

/* ===== LABEL ===== */
.bs_label{
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
}

/* ===== INPUT ===== */
.bs_input, .bs_select, .bs_textarea{
  width:100%;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:14px;
}

/* ===== QTY ===== */
.bs_qty{
  display:flex;
  align-items:center;
  gap:12px;
}
.bs_qty button{
  width:30px;
  height:30px;
  border-radius:8px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  cursor:pointer;
}

/* ===== ADDONS ===== */
.bs_addon{
  display:flex;
  justify-content:space-between;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  margin-bottom:8px;
  cursor:pointer;
}
.bs_addon.active{
  border-color:#2563eb;
  background:#eff6ff;
}

/* ===== TIME ===== */
.bs_slots{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.bs_slot{
  padding:10px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  font-size:13px;
  text-align:center;
  cursor:pointer;
}
.bs_slot.active{
  background:#2563eb;
  color:#fff;
  border-color:#2563eb;
}

/* ===== ADDRESS ===== */
.bs_address{
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:12px;
  margin-bottom:10px;
  cursor:pointer;
}
.bs_address.active{
  border-color:#2563eb;
  background:#eff6ff;
}

/* ===== ACTIONS ===== */
.bs_actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.bs_btn{
  flex:1;
  padding:13px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:600;
}
.bs_btn.back{
  background:#f3f4f6;
}
.bs_btn.next{
  background:#2563eb;
  color:#fff;
}

/* ===== MOBILE ===== */
@media(max-width:520px){
  .bs_slots{
    grid-template-columns:repeat(2,1fr);
  }
}
/* ===== CONTAINER ===== */
.bs_container{
  max-width:520px;
  margin:auto;
  padding:25px;
}

/* ===== BACK ===== */
.bs_back{
  font-size:14px;
  color:#6b7280;
  text-decoration:none;
}

/* ===== TITLE ===== */
.bs_title{
  font-size:26px;
  font-weight:700;
  margin:12px 0 18px;
}

/* ===== STEPS ===== */
.bs_steps{
  display:flex;
  align-items:center;
  margin-bottom:25px;
}
.bs_circle{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#e5e7eb;
  color:#6b7280;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
}
.bs_circle.active{
  background:#2563eb;
  color:#fff;
}
.bs_line{
  flex:1;
  height:3px;
  background:#e5e7eb;
}
.bs_line.active{
  background:#2563eb;
}

/* ===== STEP ===== */
.bs_step{
  display:none;
}
.bs_step.active{
  display:block;
}

/* ===== CARD ===== */
.bs_card{
  background:#fff;
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:16px;
  margin-bottom:15px;
}

/* ===== LABEL ===== */
.bs_label{
  font-size:13px;
  font-weight:600;
  margin-bottom:8px;
}

/* ===== INPUT ===== */
.bs_input, .bs_select, .bs_textarea{
  width:100%;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:14px;
}

/* ===== QTY ===== */
.bs_qty{
  display:flex;
  align-items:center;
  gap:12px;
}
.bs_qty button{
  width:30px;
  height:30px;
  border-radius:8px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  cursor:pointer;
}

/* ===== ADDONS ===== */
.bs_addon{
  display:flex;
  justify-content:space-between;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  margin-bottom:8px;
  cursor:pointer;
}
.bs_addon.active{
  border-color:#2563eb;
  background:#eff6ff;
}

/* ===== TIME ===== */
.bs_slots{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.bs_slot{
  padding:10px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#f9fafb;
  font-size:13px;
  text-align:center;
  cursor:pointer;
}
.bs_slot.active{
  background:#2563eb;
  color:#fff;
  border-color:#2563eb;
}

/* ===== ADDRESS ===== */
.bs_address{
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:12px;
  margin-bottom:10px;
  cursor:pointer;
}
.bs_address.active{
  border-color:#2563eb;
  background:#eff6ff;
}

/* ===== ACTIONS ===== */
.bs_actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}
.bs_btn{
  flex:1;
  padding:13px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-weight:600;
}
.bs_btn.back{
  background:#f3f4f6;
}
.bs_btn.next{
  background:#2563eb;
  color:#fff;
}

/* ===== MOBILE ===== */
@media(max-width:520px){
  .bs_slots{
    grid-template-columns:repeat(2,1fr);
  }
}









/* ========================================= */

/* ========== BOOKING CONFIRM ========== */




        /* ===== Booking Container ===== */
        .booking_conf_container {
            background-color: #fff;
            max-width: 500px;
            width: 100%;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
        }

        .booking_conf_icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px auto;
            background-color: #e0f2ff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            color: #0d6efd;
        }

        .booking_conf_title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .booking_conf_subtitle {
            font-size: 16px;
            color: #6c757d;
            margin-bottom: 25px;
        }

        /* ===== Booking Details ===== */
        .booking_conf_details {
            text-align: left;
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .booking_conf_row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .booking_conf_row span:first-child {
            font-weight: 600;
            color: #495057;
        }

        .booking_conf_row span:last-child {
            color: #0d6efd;
        }

        /* ===== Buttons ===== */
        .booking_conf_buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .booking_conf_btn {
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            min-width: 140px;
        }

        .booking_conf_btn_home {
            background-color: #0d6efd;
            color: #fff;
        }

        .booking_conf_btn_home:hover {
            background-color: #0b5ed7;
        }

        .booking_conf_btn_track {
            background-color: transparent;
            color: #0d6efd;
            border: 2px solid #0d6efd;
        }

        .booking_conf_btn_track:hover {
            background-color: #0d6efd;
            color: #fff;
        }

        /* ===== Responsive ===== */
        @media (max-width: 480px) {
            .booking_conf_container {
                padding: 20px 15px;
            }

            .booking_conf_title {
                font-size: 20px;
            }

            .booking_conf_subtitle {
                font-size: 14px;
            }

            .booking_conf_btn {
                font-size: 14px;
                padding: 8px 20px;
            }
        }




        /* ====================================== */

/* ===============================
    LOADING SPINNER 
================================ */






    /* ===== Order Summary ===== */
    .summary-item {display: flex; justify-content: space-between; margin-bottom: 10px;}
    .summary-total {display:flex; justify-content: space-between; font-weight:bold; font-size: 18px; margin-top: 10px;}
    .blue-text {color:#1a73e8;}

    /* ===== Payment Methods ===== */
    .payment-option {
        border: 1px solid #ccc; border-radius: 8px; padding: 15px; cursor: pointer; margin-bottom: 10px;
        transition: all 0.2s ease;
    }
    .payment-option.selected {border-color: #1a73e8; background: #f0f4ff;}

    /* ===== Button ===== */
    .btn {display:inline-block; background: #1a73e8; color:#fff; border:none; padding: 12px 25px; border-radius: 8px; cursor:pointer; font-size: 16px;}
    .btn:hover {background: #155ab6;}

    /* ===== Responsive ===== */
    @media(max-width:768px){
        .flex {flex-direction: column;}
    }



    /* ======================================= */



    /* ===== Payment Page Styles (Unique) ===== */
.pay-wrapper{
    max-width:1000px;
    margin:40px auto;
    padding:0 15px;
    font-family:'Segoe UI', sans-serif;
}
.pay-title{
    font-size:28px;
    margin-bottom:20px;
}
.pay-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
    margin-bottom:20px;
    border: 1px solid #E5E5E5
}
.pay-flex{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.pay-flex h3{
  font-size: 20px;
}

.pay-flex-item{flex:1;}

.pay-summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}
.pay-total{
    font-weight:bold;
    font-size:18px;
    margin-top:10px;
}
.pay-highlight{color:#1a73e8;}

.pay-option{
    border:1px solid #ccc;
    border-radius:8px;
    padding:15px;
    cursor:pointer;
    margin-bottom:10px;
    transition:.2s;
}
.pay-option.active{
    border-color:#1a73e8;
    background:#f0f4ff;
}

.pay-btn{
    background:#1a73e8;
    color:#fff;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}
.pay-btn:hover{background:#155ab6;}

@media(max-width:768px){
    .pay-flex{flex-direction:column;}
}




/* ==================================== */



.booking_conf_container {
    max-width: 520px;
    margin: 80px auto;
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* Check icon */
.booking_conf_container::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #eaf2ff;
    color: #2f6fff;
    font-size: 28px;
    font-weight: 700;
}

/* Title */
.booking_conf_title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

/* Subtitle */
.booking_conf_container p:first-of-type {
    color: #6b7280;
    font-size: 14px;
}

/* Info card */
.booking_conf_container p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin: 0;
    font-size: 15px;
    border-bottom: 1px solid #f1f1f1;
}

/* Remove last border */
.booking_conf_container p:last-of-type {
    border-bottom: none;
}

/* Labels */
.booking_conf_container p b {
    color: #374151;
    font-weight: 600;
}

/* Values */
.booking_conf_container p span {
    color: #111827;
    font-weight: 500;
}

/* Amount highlight */
.booking_conf_container p:nth-last-child(3) {
    font-size: 18px;
    font-weight: 700;
    color: #2f6fff;
}

/* Payment status */
.booking_conf_container p[style*="green"] {
    justify-content: center;
    color: #16a34a !important;
    font-weight: 600;
}

.booking_conf_container p[style*="#ff9800"] {
    justify-content: center;
    color: #f59e0b !important;
    font-weight: 600;
}

/* Buttons */
.booking_conf_container a {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* View Orders (outline) */
.booking_conf_container a:first-of-type {
    border: 1.5px solid #2f6fff;
    color: #2f6fff;
    margin-right: 10px;
}

.booking_conf_container a:first-of-type:hover {
    background: #eaf2ff;
}

/* Back to Home (primary) */
.booking_conf_container a:last-of-type {
    background: #2f6fff;
    color: #ffffff;
}

.booking_conf_container a:last-of-type:hover {
    background: #1f56e0;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .booking_conf_container {
        margin: 40px 15px;
        padding: 25px 20px;
    }

    .booking_conf_container p {
        font-size: 14px;
    }
}



/* ================= ORDER  SECTION START ================= */


.order_container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 15px;
}

.order_header h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.order_header p {
    color: #6b7280;
    margin-bottom: 30px;
}

.order_card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.order_card_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.order_id {
    font-size: 13px;
    color: #6b7280;
}

.order_title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
}

.order_status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order_completed {
    background: #e6f9ee;
    color: #16a34a;
}

.order_scheduled {
    background: #eaf2ff;
    color: #2563eb;
}

.order_details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.order_detail_label {
    font-size: 12px;
    color: #6b7280;
}

.order_detail_value {
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.order_amount {
    color: #2563eb;
    font-weight: 700;
}

@media (max-width: 768px) {
    .order_details {
        grid-template-columns: 1fr;
    }
}



/* ========================================= */


/* ==========  profile Styles ========== */


/* Container */
.profile_container,
.auth_container {
    width: 100%;
    margin: 40px auto;
  padding: 20px;
}

/* Header */
.profile_header {
  margin-bottom: 20px;
}

.profile_header h2 {
  font-size: 24px;
}

.profile_header p {
  color: #777;
}

/* Cards */
.profile_card,
.auth_card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.profile_card_title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Form */
.profile_form_group {
  margin-bottom: 15px;
}

.profile_form_group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.profile_form_group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.profile_save_btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.profile_save_btn:hover {
  background: #1e4fd8;
}

/* Address */
.profile_address_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.profile_address_text span {
  display: block;
  font-size: 13px;
  color: #666;
}

.profile_edit_btn {
  color: #2563eb;
  font-size: 14px;
  text-decoration: none;
}

.profile_add_address {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  text-decoration: none;
}

/* Payments */
.profile_payment_item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.profile_payment_text span {
  font-size: 13px;
  color: #777;
}

.profile_payment_amount {
  font-weight: 600;
}

/* Auth pages */
.auth_card h2 {
  margin-bottom: 15px;
}

.auth_card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.auth_card button {
  width: 100%;
  padding: 10px;
  border: none;
  color: #fff;
  border-radius: 6px;
  background-color: rgb(77, 77, 237);
}

/* Logout */
.profile_logout_btn {
  display: block;
  text-align: center;
  color: #dc2626;
  text-decoration: none;
  margin-top: 10px;
}




/* ============================ */




/* Responsive */






.profile_address_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: #fafafa;
  margin-bottom: 12px;
}

.profile_address_text span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

.profile_edit_btn {
  font-size: 13px;
  color: #0a7cff;
  text-decoration: none;
}

.profile_add_address {
  display: inline-block;
  margin-top: 10px;
  color: #0a7cff;
  font-size: 14px;
  text-decoration: none;
}










.profile_card_add
{
  background: #fafafa;
  padding: 30px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  width: 80%;
  margin:60px auto  ;
}




/* ======================================== */


.nav_dropdown {
  position: relative;
}

.nav_user_btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav_dropdown_menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  display: none;
  flex-direction: column;
  z-index: 999;
}

.nav_dropdown_menu a {
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav_dropdown_menu a:hover {
  background: #f2f6ff;
}

.nav_dropdown:hover .nav_dropdown_menu {
  display: flex;
}

.logout {
  color: #e63946;
}





/* ================================ CONTACT SECTION ========================== */
/* ======================================================================== */







/* WRAPPER */
.contact_container{
    max-width:1100px;
    margin:auto;
    padding:40px 15px;
}

/* CARD */
.contact_card{
    background:#fff;
    display:flex;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

/* LEFT INFO */
.contact_info{
    width:40%;
    background:#0f172a;
    color:#fff;
    padding:40px;
}

.contact_info h2{
    margin-bottom:15px;
}

.contact_info p{
    margin-bottom:12px;
    opacity:0.9;
}

/* FORM */
.contact_form{
    width:60%;
    padding:40px;
}

.contact_form h2{
    margin-bottom:20px;
}

.contact_group{
    margin-bottom:15px;
}

.contact_group input,
.contact_group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    outline:none;
}

.contact_group textarea{
    height:120px;
    resize:none;
}

.contact_btn{
    background:#2563eb;
    color:#fff;
    padding:12px 35px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.contact_btn:hover{
    background:#1d4ed8;
}

/* ALERT */
.contact_success{
    background:#dcfce7;
    color:#166534;
    padding:10px;
    margin-bottom:15px;
    border-radius:6px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact_card{
        flex-direction:column;
    }
    .contact_info,
    .contact_form{
        width:100%;
    }
}




/* ===================================== */

/* ============================================================ */



/* ===========================
   REVIEWS UI
=========================== */
.reviews_container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.reviews_card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.reviews_title h2 {
    margin-bottom: 5px;
}
.reviews_title p {
    color: #666;
}

.reviews_form label {
    margin-top: 15px;
    display: block;
    font-weight: 600;
}

.reviews_form select,
.reviews_form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.reviews_stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    font-size: 28px;
}

.reviews_stars input {
    display: none;
}

.reviews_stars label {
    cursor: pointer;
    color: #ccc;
}

.reviews_stars input:checked ~ label,
.reviews_stars label:hover,
.reviews_stars label:hover ~ label {
    color: #ffc107;
}

.reviews_btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.reviews_list {
    margin-top: 40px;
}

.reviews_item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.reviews_name {
    font-weight: 700;
    font-size: 18px;
}

.reviews_service {
    font-size: 14px;
    color: #555;
}

.reviews_rating {
    color: #ffc107;
    margin: 8px 0;
}

.reviews_date {
    font-size: 13px;
    color: #888;
}

@media(max-width:768px){
    .reviews_container {
        padding: 10px;
    }
}








/* ===================================== */




/* ========================= */


/* =====================================
   CLEAN MAADI TERMS & CONDITIONS STYLE
===================================== */



/* ===== HERO HEADER ===== */

.cm_terms_hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.cm_terms_hero h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}

.cm_terms_hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.85;
}

/* ===== MAIN WRAPPER ===== */

.cm_terms_wrapper {
    padding: 60px 0;
}

.cm_terms_container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.cm_terms_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ===== SECTIONS ===== */

.cm_terms_intro {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.cm_terms_section {
    margin-bottom: 40px;
}

.cm_terms_section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
    border-left: 4px solid #2563eb;
    padding-left: 10px;
}

.cm_terms_section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.cm_terms_section ul {
    padding-left: 20px;
}

.cm_terms_section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .cm_terms_card {
        padding: 30px;
    }

    .cm_terms_hero h1 {
        font-size: 28px;
    }
}





/* ===== HERO SECTION ===== */

.cm_privacy_hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.cm_privacy_hero h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}

.cm_privacy_hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.85;
}

/* ===== MAIN WRAPPER ===== */

.cm_privacy_wrapper {
    padding: 60px 0;
}

.cm_privacy_container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.cm_privacy_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ===== TEXT STYLING ===== */

.cm_privacy_intro {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.cm_privacy_section {
    margin-bottom: 40px;
}

.cm_privacy_section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
    border-left: 4px solid #16a34a;
    padding-left: 10px;
}

.cm_privacy_section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.cm_privacy_section ul {
    padding-left: 20px;
}

.cm_privacy_section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

.cm_privacy_subheading {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #1e293b;
}

/* ===== CONTACT BOX ===== */

.cm_privacy_contact_box {
    margin-top: 15px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 10px;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .cm_privacy_card {
        padding: 30px;
    }

    .cm_privacy_hero h1 {
        font-size: 28px;
    }
}





/* HERO SECTION */

.cm_refund_hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.cm_refund_hero h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}

.cm_refund_hero p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.85;
}

/* WRAPPER */

.cm_refund_wrapper {
    padding: 60px 0;
}

.cm_refund_container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.cm_refund_card {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* TEXT */

.cm_refund_intro {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.cm_refund_section {
    margin-bottom: 40px;
}

.cm_refund_section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
    border-left: 4px solid #dc2626;
    padding-left: 10px;
}

.cm_refund_section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.cm_refund_section ul {
    padding-left: 20px;
}

.cm_refund_section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

/* CONTACT BOX */

.cm_refund_contact_box {
    margin-top: 15px;
    padding: 20px;
    background: #fef2f2;
    border-radius: 10px;
    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .cm_refund_card {
        padding: 30px;
    }

    .cm_refund_hero h1 {
        font-size: 28px;
    }
}



/* ======================================= */








/* =========================================
   CLEAN MAADI - DISCLAIMER PAGE
   Unique Class Prefix: cmd_
========================================= */



/* HERO SECTION */

.cmd_hero_section {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.cmd_hero_title {
    font-size: 44px;
    font-weight: 700;
    margin: 0;
}

.cmd_hero_subtitle {
    margin-top: 12px;
    font-size: 15px;
    opacity: 0.85;
}

/* MAIN WRAPPER */

.cmd_wrapper {
    padding: 80px 20px;
}

.cmd_container {
    max-width: 1100px;
    margin: auto;
}

/* CARD DESIGN */

.cmd_card {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* INTRO */

.cmd_intro_text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #444;
}

/* SECTION BLOCK */

.cmd_section_block {
    margin-bottom: 50px;
}

.cmd_section_title {
    font-size: 22px;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 5px solid #2563eb;
    color: #1e293b;
    font-weight: 600;
}

.cmd_section_block p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.cmd_list {
    padding-left: 20px;
    margin-top: 10px;
}

.cmd_list li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

/* CONTACT BOX */

.cmd_contact_box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 30px;
    border-radius: 14px;
    margin-top: 15px;
    line-height: 1.9;
}

.cmd_contact_box strong {
    font-size: 16px;
    color: #111;
}

.cmd_contact_box a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.cmd_contact_box a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .cmd_card {
        padding: 35px;
    }

    .cmd_hero_title {
        font-size: 30px;
    }
}



/* ======================================================= */
/* ==================================================================== */


.order_edit
{
    display: inline-block;
    background: #009688 !important;
    color: #fff;
    border: none;
    padding: 5px 20px !important;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;

}




/* ============================================*/



.auth_container{display:flex;justify-content:center;align-items:center;}
.auth_card{width:50%;background:#fff;padding:25px;border-radius:8px;box-shadow:0 5px 15px rgba(0,0,0,0.1);}
.auth_card h2{text-align:center;margin-bottom:20px;}
.auth_card input{width:100%;padding:10px;margin-bottom:15px;border:1px solid #ccc;border-radius:5px;}
.auth_card button{width:100%;padding:10px;background:#007bff;color:#fff;border:none;border-radius:5px;}
.password_field{position:relative;}
.toggle_password{position:absolute;right:10px;top:50%;transform:translateY(-50%);cursor:pointer;}
.error{color:red;text-align:center;}
.forgot{display:block;text-align:right;font-size:13px;margin-top:-10px;margin-bottom:10px;}


/* ===== SECONDARY BUTTON ===== */
.auth_btn_secondary{
    display:block;
    text-align:center;
    margin-top:10px;
    padding:10px;
    border:1px solid #007bff;
    border-radius:6px;
    color:#007bff;
    text-decoration:none;
}



/* =================== */




/* =============== */


/* ===== RESET LINK BOX DESIGN ===== */

.reset_link_box{
    margin-top:15px;
    padding:15px;
    border-radius:10px;
    background:rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.3);
    text-align:center;
    word-break:break-word;
}

.reset_link_text{
    font-size:13px;
    margin-bottom:10px;
    color:#fff;
}

/* BUTTON */
.reset_link_btn{
    display:inline-block;
    padding:10px 18px;
    background:linear-gradient(45deg,#00c6ff,#0072ff);
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.reset_link_btn:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* COPY BUTTON */
.copy_btn{
    margin-top:10px;
    display:block;
    font-size:12px;
    color:#fff;
    cursor:pointer;
    text-decoration:underline;
}

/* MOBILE RESPONSIVE */
@media(max-width:480px){
    .reset_link_box{
        padding:12px;
    }
    .reset_link_btn{
        width:100%;
    }
}