/* =====================
   GLOBAL
===================== */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #636060;
    padding-top: 80px;
    padding-bottom: 85px;
}

a {
    text-decoration: none
}

/* =====================
   DESKTOP NAVBAR
===================== */
.premium-navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222 !important;
}

.navbar-brand span {
    color: #fa6b2e;
}

.nav-link {
    color: #555 !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #fa6b2e;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #fa6b2e !important;
}

/* =====================
   ICON BUTTON (SEARCH)
===================== */
.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
}

.icon-btn:hover {
    color: #fa6b2e;
}

/* =====================
   MOBILE TOP BAR
===================== */
.mobile-topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    z-index: 1100;
}


/* Logo */
.mobile-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
}

.mobile-logo strong {
    color: #fa6b2e;
}

.mobile-topbar strong {
    color: #fa6b2e;
    font-size: 1.8rem;
}

/* Actions */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-actions .icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    padding: 6px;
}

.mobile-actions .icon-btn:hover {
    color: #fa6b2e;
}

/* Body spacing fix */
@media(max-width:991px) {
    body {
        padding-top: 60px;
    }
}




/* =====================
   HERO SECTION
===================== */
.hero,
section.container {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* =====================
   MOBILE BOTTOM NAV
===================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    background: #ffffff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.mobile-bottom-nav a {
    color: #777;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-bottom-nav i {
    font-size: 20px;
    margin-bottom: 2px;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
    color: #fa6b2e;
}

/* =====================
   SEARCH OVERLAY
===================== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.search-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.search-content input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
}

.search-content input:focus {
    border-color: #fa6b2e;
}

/* =====================
   WHATSAPP BUTTON
===================== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =====================
   RESPONSIVE FIXES
===================== */
@media(max-width:991px) {
    body {
        padding-top: 60px;
    }
}

/* =====================
   APPOINTMENT MODAL
===================== */
.appointment-modal {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.appointment-modal .modal-title {
    font-weight: 600;
}

.appointment-modal input,
.appointment-modal textarea {
    border-radius: 12px;
    border: 1px solid #ddd;
}

.appointment-modal input:focus,
.appointment-modal textarea:focus {
    border-color: #fa6b2e;
    box-shadow: none;
}

/* =====================
   LOGIN ICON
===================== */
.icon-btn i {
    font-size: 22px;
}

/* Mobile spacing fix */
@media(max-width:991px) {
    .modal-dialog {
        margin: 1rem;
    }
}


/* =====================
   section titles and cards
===================== */

.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}



.service-card i {
    font-size: 40px;
    color: #fa6b2e;
    margin-bottom: 10px;
}

.testimonial-card,
.news-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.subscribe-section {
    background: #fa6b2e;
    color: #fff;
    padding: 50px 20px;
}

.subscribe-section input {
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    outline: none;
}

.subscribe-section button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 20px 20px 0;
    background: #222;
    color: #fff;
}

/* =====================
   PROJECTS SECTION
===================== */
.project-card-new {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.project-card-new img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.project-card-new:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: 0.3s;
}

.project-category {
    font-size: 12px;
    background: #fa6b2e;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    width: max-content;
}

.project-overlay h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

/* =====================
   SERVICES SECTION
===================== */
.service-card-new {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.35s ease;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: #fa6b2e;
}

/* Text */
.service-card-new h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card-new p {
    font-size: 14px;
    color: #666;
}

/* Link */
.service-link {
    display: inline-block;
    margin-top: 10px;
    color: #fa6b2e;
    font-weight: 500;
}

.service-link:hover {
    text-decoration: underline;
}

/* =====================
   NEWS / BLOG SECTION
===================== */
.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    font-size: 12px;
    color: #fa6b2e;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.blog-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}

.blog-link {
    color: #fa6b2e;
    font-weight: 500;
}

.blog-link:hover {
    text-decoration: underline;
}

/* =====================
   TESTIMONIALS SECTION
===================== */
.testimonial-card-new {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.35s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Stars */
.testimonial-stars {
    color: #fa6b2e;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Text */
.testimonial-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* User */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fa6b2e;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 12px;
    color: #888;
}

/* =====================
   SERVICES (IMAGE CARDS)
===================== */
.service-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

.service-card-img:hover img {
    transform: scale(1.08);
}

/* Overlay */
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.service-overlay i {
    font-size: 28px;
    color: #fa6b2e;
    margin-bottom: 8px;
}

.service-overlay h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.service-overlay p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* =====================
   ABOUT SECTION
===================== */
.about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
}

/* Badge */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fa6b2e;
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-badge strong {
    font-size: 24px;
    display: block;
}

/* Points */
.about-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.about-point i {
    color: #fa6b2e;
    font-size: 18px;
}



/* HERO */
.about-hero {
    background: linear-gradient(135deg, #f5a000, #ffcc33);
    padding: 80px 0;
    text-align: center;
    color: #111;
}

.about-hero h1 {
    font-weight: 900;
}

.about-hero p {
    font-size: 16px;
    margin-top: 8px;
}

/* ABOUT SECTION */
.about-section {
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media(max-width:992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-text h2 {
    font-weight: 900;
    margin-bottom: 12px;
}

.about-text p {
    color: #555;
    font-size: 15px;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.about-points li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* CARD */
.about-card {
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
}

.about-card h3 {
    font-weight: 900;
    margin-bottom: 18px;
}

.about-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.about-stat strong {
    font-size: 26px;
    color: #f5a000;
}

.about-stat span {
    font-size: 14px;
    color: #555;
}



/* LOCATIONS */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.location-tags span {
    padding: 8px 16px;
    border-radius: 999px;
    background: #f1f1f1;
    font-size: 13px;
}

.section-title {
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

/* CTA */
.about-cta {
    padding: 70px 0;
    text-align: center;
}

.about-cta h3 {
    font-weight: 900;
}

.about-cta p {
    color: #555;
    margin-bottom: 16px;
}

.about-cta .btn {
    border-radius: 999px;
    padding: 12px 32px;
}

/* =====================
   HERO SECTION V2
===================== */
.hero-v2 {
    background: linear-gradient(135deg, #ffffff, #fff7ec);
    padding: 90px 0 70px;
}

/* Image */
/* =====================
   HERO IMAGE – FULL FIT
===================== */
.hero-img-wrap {
    padding: 0;
}

/* Image itself */
.hero-img-full {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop fine-tuning */
@media (min-width: 992px) {
    .hero-img-wrap {
        padding-left: 30px;
    }

    .hero-img-full {
        max-height: 520px;
        object-fit: contain;
    }
}

/* Mobile full-width feel */
@media (max-width: 991px) {
    .hero-img-wrap {
        margin-bottom: 25px;
    }

    .hero-img-full {
        max-height: 60vh;
        object-fit: cover;
    }
}


/* Content */
.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: #fff3e0;
    color: #fa6b2e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #fa6b2e;
}

.hero-content p {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

.hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Mobile */
@media(max-width:991px) {
    .hero-v2 {
        padding: 60px 0 40px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* =====================
   FOOTER
===================== */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-brand span {
    color: #fa6b2e;
}

.footer-text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    max-width: 320px;
}

/* Titles */
.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #555;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fa6b2e;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #fa6b2e;
    margin-right: 8px;
}

/* Social */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3e0;
    color: #fa6b2e;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fa6b2e;
    color: #fff;
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

/* Mobile */
@media(max-width:767px) {
    .footer-text {
        max-width: 100%;
    }

    .footer-bottom p {
        margin: 4px 0;
        text-align: center;
    }
}

/* =====================
   FOOTER MOBILE SIDE-BY-SIDE
===================== */
@media (max-width: 767px) {

    .site-footer .row>div {
        margin-bottom: 20px;
    }

    /* Brand full width */
    .site-footer .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* 2-column layout */
    .site-footer .col-lg-2,
    .site-footer .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Center align social icons */
    .footer-social {
        text-align: left;
    }
}











/* =====================   CONTACT PAGE ===================== */
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.contact-card i {
    font-size: 28px;
    color: #fa6b2e;
    margin-bottom: 8px;
}

.contact-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 30px;
}







/* =====================   BLOG DETAILS PAGE  ===================== */
.blog-details-img {
    width: 100%;
    border-radius: 18px;
}

.blog-details h4 {
    margin-top: 25px;
    font-weight: 600;
}

.blog-tags span {
    display: inline-block;
    background: #fff3e0;
    color: #fa6b2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 6px;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #555;
}

.share-icon:hover {
    background: #fa6b2e;
    color: #fff;
}

/* Sidebar */
.blog-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px;
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-posts li {
    margin-bottom: 10px;
}

.recent-posts a {
    color: #555;
}

.recent-posts a:hover {
    color: #fa6b2e;
}










/* =====================   LOGIN PAGE===================== */
.login-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.login-card h3 {
    font-weight: 700;
}

.login-links {
    font-size: 14px;
}

.login-links a {
    color: #fa6b2e;
}

.login-links span {
    margin: 0 6px;
    color: #aaa;
}

.login-divider {
    position: relative;
    text-align: center;
}

.login-divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: -1;
}


/* =====================
   PAGE HERO – ALT METHOD
===================== */
.page-hero-alt {
    background:
        linear-gradient(135deg, #ffffff, #fff7ec);
    padding: 90px 0 70px;
}

.hero-pill {
    display: inline-block;
    background: #fff3e0;
    color: #fa6b2e;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}

.page-hero-alt h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero-alt h1 span {
    color: #fa6b2e;
}

.page-hero-alt p {
    margin: 16px auto 0;
    max-width: 620px;
    font-size: 16px;
    color: #555;
}

/* Breadcrumb */
.hero-breadcrumb {
    margin-top: 18px;
    font-size: 14px;
    color: #777;
}

.hero-breadcrumb a {
    color: #fa6b2e;
    font-weight: 500;
}

.hero-breadcrumb span {
    margin: 0 6px;
}

/* Mobile */
@media(max-width:991px) {
    .page-hero-alt {
        padding: 60px 0 40px;
    }

    .page-hero-alt h1 {
        font-size: 2.1rem;
    }
}









/* =====================
   SERVICE DETAILS PAGE
===================== */
.service-detail-img {
    width: 100%;
    border-radius: 18px;
}

.service-list {
    padding-left: 18px;
}

.service-list li {
    margin-bottom: 8px;
    color: #555;
}

/* Sidebar */
.service-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px;
}

.service-links {
    list-style: none;
    padding: 0;
}

.service-links li {
    margin-bottom: 10px;
}

.service-links a {
    color: #555;
    font-size: 14px;
}

.service-links a.active,
.service-links a:hover {
    color: #fa6b2e;
    font-weight: 500;
}

.service-cta {
    background: #fff3e0;
    padding: 18px;
    border-radius: 14px;
}


/* =====================
   SERVICE DETAILS – EXTRA
===================== */

/* Process boxes */
.process-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Brand tags */
.brand-tags span {
    display: inline-block;
    background: #fff3e0;
    color: #fa6b2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px 6px 4px 0;
}


/* =====================
   ASK A QUESTION
===================== */
.ask-question-box {
    background: #fff3e0;
    border-radius: 22px;
    padding: 40px;
}

.ask-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.ask-points li {
    margin-bottom: 10px;
    font-size: 14px;
}

.ask-points i {
    color: #fa6b2e;
    margin-right: 8px;
}

/* Form */
.ask-form .form-control {
    border-radius: 12px;
    border: 1px solid #ddd;
}

.ask-form .form-control:focus {
    border-color: #fa6b2e;
    box-shadow: none;
}

/* Mobile */
@media(max-width:767px) {
    .ask-question-box {
        padding: 25px;
    }
}

/* =====================
   SAY ABOUT SERVICE
===================== */
.say-about-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px;
    height: 100%;
    transition: 0.3s ease;
}

.say-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.say-about-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.say-user {
    margin-top: 15px;
}

.say-user strong {
    display: block;
    font-weight: 600;
}

.say-user span {
    font-size: 12px;
    color: #888;
}















/* =====================
   PROJECT FILTER
===================== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid #eee;
    background: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #fa6b2e;
    color: #fff;
}






/* =====================
   PRODUCTS
===================== */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.product-card h6 {
    font-size: 14px;
    font-weight: 600;
}

.product-card span {
    font-size: 12px;
    color: #777;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}




/* =====================
   PRODUCT DETAILS
===================== */
.product-detail-img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #eee;
}

.product-highlights {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.product-highlights li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.product-specs th {
    width: 35%;
    background: #f8f9fa;
    font-weight: 600;
}

.product-info-box {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.product-info-box i {
    font-size: 28px;
    color: #fa6b2e;
    margin-bottom: 10px;
}

.product-specs th {
    background: #f8f9fa;
    font-weight: 600;
}

.shade-box {
    width: 100%;
    height: 80px;
    border-radius: 14px;
    border: 1px solid #eee;
}

.shade-name {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 6px;
}

/* =====================
   APPOINTMENT MODAL
===================== */
.appointment-modal {
    border-radius: 22px;
    padding: 10px;
}

.appointment-modal .modal-title {
    font-weight: 700;
}

.appointment-modal .form-control {
    border-radius: 12px;
}
















/* ===============================
   AUTH / LOGIN PAGE (MOBILE FIRST)
================================ */
.auth-body {
    background: #ffffff;
    min-height: 100vh;
    font-family: system-ui, sans-serif;
}

/* Top brand */
.auth-header {
    padding: 20px;
}

.auth-header h4 {
    font-weight: 700;
}

.auth-header span {
    color: #f5a000;
}

/* Center wrapper */
.auth-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 16px 40px;
}

/* Card */
.auth-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 22px;
    padding: 28px 24px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.auth-card h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 22px;
}

/* Inputs */
.auth-card .form-control {
    height: 48px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

/* Login button */
.btn-login {
    background: #ffc107;
    border: none;
    height: 48px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 8px;
}



/* Links */
.auth-links {
    margin: 14px 0;
    font-size: 13px;
}

.auth-links a {
    color: #f5a000;
    text-decoration: none;
}

.auth-links span {
    margin: 0 6px;
    color: #aaa;
}

/* Divider */
.auth-divider {
    font-size: 12px;
    color: #999;
    margin: 14px 0;
}

/* OTP button */
.btn-outline-login {
    border: 1px solid #999;
    height: 46px;
    border-radius: 30px;
    background: #fff;
    font-size: 14px;
}

/* Mobile fine-tune */
@media(max-width:576px) {
    .auth-card {
        padding: 26px 20px;
    }
}


/* =====================
   LOGIN (SCREENSHOT MATCH)
===================== */
.login-body {
    min-height: 100vh;
    background: #f5f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, sans-serif;
}

.login-container {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Brand */
.login-brand {
    margin-bottom: 16px;
}

.login-brand h4 {
    font-weight: 700;
}

.login-brand span {
    color: #f5a000;
}

/* Title */
.login-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
}

/* Inputs */
.login-card .form-control {
    height: 46px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 14px;
}

/* Login button */
.btn-login {
    background: #ffc107;
    border: none;
    height: 46px;
    border-radius: 24px;
    font-weight: 600;
    margin-top: 6px;
}

/* Links */
.login-links {
    margin: 14px 0;
    font-size: 13px;
}

.login-links a {
    color: #f5a000;
    text-decoration: none;
}

.login-links span {
    margin: 0 6px;
    color: #aaa;
}

/* Divider */
.login-divider {
    font-size: 12px;
    color: #999;
    margin: 14px 0;
}

/* OTP */
.btn-outline-login {
    height: 44px;
    border-radius: 24px;
    border: 1px solid #777;
    background: #fff;
    font-size: 14px;
}

/* Mobile polish */
@media(max-width:576px) {
    .login-card {
        padding: 24px 18px;
    }
}



/* =====================
   OTP INPUT STYLE
===================== */
.otp-box {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
}

.otp-box input {
    width: 100%;
    max-width: 48px;
    height: 48px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #ddd;
    border-radius: 8px;
}






/* =====================
   USER DASHBOARD
===================== */
.user-body {
    background: #f5f6f8;
    min-height: 100vh;
}

.user-topbar {
    background: #ffffff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.user-topbar span {
    color: #f5a000;
}

.logout-link {
    font-size: 14px;
    color: #f5a000;
    text-decoration: none;
}

.user-container {
    padding: 16px;
}

.user-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.user-card i {
    font-size: 22px;
    color: #f5a000;
}

.user-card p {
    font-size: 13px;
    color: #666;
    margin: 6px 0 2px;
}

.user-card h4 {
    font-weight: 700;
}

.user-section {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.user-section h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.user-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.user-action:last-child {
    border-bottom: none;
}

.user-action i {
    color: #f5a000;
}

.appointment-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}




/* =====================
   USER PROFILE PAGE
===================== */
.back-link {
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.profile-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.profile-avatar {
    font-size: 60px;
    color: #f5a000;
    margin-bottom: 10px;
}

.profile-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}



/* =====================
   APPOINTMENT HISTORY
===================== */
.appointment-card {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.appointment-card:last-child {
    border-bottom: none;
}

.appointment-left {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff3d6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a000;
    font-size: 18px;
}

.appointment-right strong {
    display: block;
}

.appointment-right p {
    font-size: 12px;
    color: #666;
    margin: 2px 0 6px;
}




/* =====================
   USER BOTTOM NAV
===================== */
.user-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 6px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.user-bottom-nav a {
    flex: 1;
    text-align: center;
    color: #777;
    text-decoration: none;
    font-size: 11px;
}

.user-bottom-nav i {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

.user-bottom-nav a.active {
    color: #f5a000;
    font-weight: 600;
}

/* Space for bottom nav */
.user-body {
    padding-bottom: 70px;
}

/* =====================
   BOTTOM NAV BADGE
===================== */
.user-bottom-nav a {
    position: relative;
}

.nav-badge {
    position: absolute;
    top: 2px;
    right: 22px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    font-style: normal;
    font-weight: 600;
}

/* =====================
   USER NOTIFICATIONS
===================== */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item i {
    font-size: 20px;
    color: #f5a000;
    margin-top: 2px;
}

.notification-item div {
    flex: 1;
}

.notification-item strong {
    display: block;
    font-size: 14px;
}

.notification-item p {
    font-size: 13px;
    color: #555;
    margin: 2px 0 4px;
}

.notification-item span {
    font-size: 11px;
    color: #999;
}

/* Unread highlight */
.notification-item.unread {
    background: #fff8e6;
    padding-left: 8px;
    border-radius: 10px;
}




/* Swapnapurti – Brand logo */

.logo-svg {
    height: 60px;
    width: auto;
    display: block;
}

/* ===============================
   PREMIUM SEARCH CARD
================================ */
.search-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.search-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .15);
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.search-card h4 {
    font-weight: 900;
    margin-bottom: 30px;
}



/* ===============================
   ADMIN FILTER FORM
================================ */

.admin-filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

/* Inputs */
.admin-filter-form input {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    min-width: 180px;
    transition: 0.2s ease;
}

.admin-filter-form input:focus {
    border-color: #ff9800;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.1);
}

/* Search Button */
.admin-filter-form button {
    background: #ff9800;
    border: none;
    padding: 10px 18px;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.admin-filter-form button:hover {
    background: #e68900;
}

/* Reset Button */
.admin-filter-form .reset-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 14px;
    color: #555;
    background: #f8f9fa;
    transition: 0.2s ease;
}

.admin-filter-form .reset-btn:hover {
    background: #eee;
    color: #000;
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 768px) {

    .admin-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-filter-form input,
    .admin-filter-form button,
    .admin-filter-form .reset-btn {
        width: 100%;
    }

    .admin-filter-form .reset-btn {
        text-align: center;
    }
}