body{
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container{
    flex: 1;
}

/* NAV-BAR */
.navbar{
    height: 80px;
    background-color: white;
    padding: 10px;
}

/* .fa-house-chimney{
    color: ;
} */

#house{
    height: 60px;
    transition: transform 0.4s ease-in-out;
}
#balloon{
    height: 60px;
    transition: transform 0.4s ease-in-out;
}
#consierge{
    height: 60px;
    transition: transform 0.4s ease-in-out;
}

#house:hover{
    transform: scale(1.1);
}
#balloon:hover{
    transform: scale(1.1);
}
#consierge:hover{
    transform: scale(1.1);
}
.nav-link{
    color: black;
    font-weight: 600;
    font-size: 18x;
    text-decoration: none; /* Remove default underline */
    display: inline-block;
    position: relative; 
    transition: transform 0.3s ease; /* Smoothly scale the whole link */
}

.nav-link span {
    position: relative;
    padding-bottom: 5px;
}

/* 1. Create the initial hidden line */
.nav-link span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: black;
    
    /* This is the secret: start at 0 size in the center */
    transform: scaleX(0); 
    transition: transform 0.3s ease-in-out;
    transform-origin: center; 
}

/* 2. Expand on hover */
.nav-link:hover {
    transform: scale(1.1);
}

.nav-link:hover span::after {
    transform: scaleX(1); /* Grow to full width */
}

/* FOOTER */
.f-info-social{
    font-size: 24px;
    margin-top: 10px;
}
.f-info-social i{
    margin-right: 1rem;
    opacity: .7;
}
.f-info-social i:hover{
    opacity: 1;
    font-size: 2rem;
}
.f-info-link a{
    /* display: flex; */
    /* justify-content: center; */
    /* flex-direction:row-reverse; */
    text-decoration: none;
    color: black;
    margin-right: 3rem;
}
.f-info-link{
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}
.f-name{
    margin-top: 10px;
    color: maroon;
    text-decoration: underline;
    text-decoration-thickness:2px ;
    font-weight: 800;
}
.f-info-link a:hover{
    text-decoration: underline;
    text-decoration-thickness:1px solid black ;
    color: rgb(142, 62, 171);
    font-size: 1.2rem;
    font-weight: 700;
}
.f-info{
    size: 8rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color:#f7f7f7;
}
.fa-square-facebook{
    color: #1877f2;
}
.fa-square-linkedin{
    color: #0a66c2;
}
.fa-square-instagram{
    color: rgb(240, 58, 89);
}
/* card css */
.listing-card{
    border: none !important;
    margin-bottom: 2rem;
}
/* .card img{
    border-radius: 1rem;
    width: 100% ;
} */
.demo_user{
    border-radius: 1rem;
    width: 30px;
}

.card-body{
    padding: 0 !important;
}
.card-text{
    font-weight: 500;
}

.listing-link{
    text-decoration: none !important;
}
/* card effect */
.card-img-overlay{
    opacity: 1;
}

.main_img{
    border-radius: 1rem;
}

.card-img-overlay:hover{
    opacity: .3;
    background-color: white;
}

/* new route form */
.form-label{
    font-weight: 500;
}
.new-btn{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
.new-btn .btn{
    width: 50%;
    background-color: #e85c65;
    border: none;
    color: white;
}
.new-btn .btn:hover{
    background-color: #fe424d;
    font-size: 1.09rem;
}

/* edit-route */
.edit-btn{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
.edit-btn .btn{
    width: 50%;
    background-color: #e85c65;
    border: none;
    color: white;
}
.edit-btn .btn:hover{
    background-color: #fe424d;
    font-size: 1.09rem;
}

/* show-img */
.show-img{
    border-radius: 1rem;
    height: 16rem;
    width: 65% !important;
}
.show-btn{
    width: 30%;
    background-color: #e85c65;
    border: none;
    color: white;
}
.show-btn:hover{
    background-color: #fe424d;
    font-size: 1.09rem;
    color: white;
}
.heading{
    margin-top: 15px;
    font-weight: 500;
    font-family: "Newsreader", serif;
    /* text-decoration: underline; */
}

/* for construction page */
.mainBox {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: #18181b;
            margin: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        /* Caution Tape Pattern */
        .caution-tape {
            background: repeating-linear-gradient(
                -45deg,
                #facc15,
                #facc15 30px,
                #18181b 30px,
                #18181b 60px
            );
            height: 15px;
            width: 100%;
            position: fixed;
            z-index: 50;
        }
        .tape-top { top: 0; left: 0; }
        .tape-bottom { bottom: 0; left: 0; }

        /* Simple Floating Animation */
        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

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

        .fade-in {
            animation: fadeIn 1s ease-out forwards;
        }

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

/* badge for rating section */

.highlighted-output {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    background-color: #0d6efd; /* Bootstrap primary blue */
    color: white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* badge for feedback heading */

.highlighted-feedback {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    background-color: #bf70e1; /* Bootstrap primary blue */
    color: white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.7rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
 
/* google login auth */
/* body {
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */

.login-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    width: 350px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    padding: 2px 10px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.google-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}

.google-icon-wrapper {
    padding: 8px;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.btn-text {
    color: #3c4043;
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
}

.divider {
    margin: 20px 0;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    font-size: 12px;
}

/* Loader animation */
.loader {
  width: 40px;
  aspect-ratio: 1;
  background:
    radial-gradient(farthest-side,#000 90%,#0000) 50%/8px 8px no-repeat,
    conic-gradient(from -90deg at 15px 15px,#0000 90deg,#fff 0) 0 0/25px 25px;
  animation: l7 1s infinite;
}

@keyframes l7 {
  0%   {background-position:50%,0 0}
  50%  {background-position:50%,25px 0}
  100% {background-position:50%,25px 25px}
}

/* Overlay */
.loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loader-overlay.active {
  display: flex;
}

/* Container to stack loader and text */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Text styling */
.loader-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* map-styling */

#map {
    height: 400px;
    width: 100vh;    
}

/* for the rotating text */

@keyframes slideBackAndForth {
  25% { transform: translateX(200%); }      /* Reach right side */
  75% { transform: translateX(-200%); }     /* Reach left side */
}

.rotating-text{
    animation: slideBackAndForth 15s linear infinite;
    display: inline-block;
    color: #0d6efd;
    font-weight: bold;
}

/* gross total style */
.grand-total-box {
        /* background: linear-gradient(135deg, #1a1a2e, #16213e); */
        background: rgb(161, 144, 144);
        border-radius: 16px;
        padding: 24px 32px;
        min-width: 260px;
        text-align: center;
        box-shadow: 0 8px 32px rgba(217, 210, 210, 0.15);
        border: 1px solid rgba(255,255,255,0.08);
        position: relative;
        overflow: hidden;
    }

    /* shine effect */
    .grand-total-box::before {
        content: "";
        position: absolute;
        top: 0; left: -60%;
        width: 40%; height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.06),
            transparent
        );
        transform: skewX(-15deg);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0%   { left: -60%; }
        100% { left: 130%; }
    }

    .grand-total-label {
        color: rgba(255,255,255,0.6);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .grand-total-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        margin-bottom: 12px;
    }

    .grand-total-amount {
        color: #ffffff;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1;
        margin-bottom: 10px;
    }

    .grand-total-note {
        color: rgba(255,255,255,0.3);
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }

/* style for the cart page babaji */

body {
    background: #f8f9ff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* page title */
.cart-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.cart-subtitle {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 28px;
}

/* table */
.cart-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.cart-table thead tr {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}
.cart-table thead th {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
}
.cart-table tbody tr {
    border-bottom: 1px solid #f8f8f8;
    transition: background 0.2s ease;
}
.cart-table tbody tr:last-child {
    border-bottom: none;
}
.cart-table tbody tr:hover {
    background: #fafbff;
}
.cart-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border: none;
    font-size: 0.9rem;
    color: #374151;
}

/* product name */
.product-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}
.product-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    margin-top: 3px;
    letter-spacing: 0.05em;
}

/* price */
.price-tag {
    font-weight: 600;
    color: #374151;
}

/* qty controls */
.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 10px;
    padding: 4px 10px;
    width: fit-content;
}
.qty-btn {
    width: 28px; height: 28px;
    border-radius: 8px;
    border: none;cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    font-weight: 600;
}
.qty-btn-plus {
    background: #eef2ff;
    color: #4f46e5;
}
.qty-btn-plus:hover {
    background: #4f46e5;
    color: white;
}
.qty-btn-minus {
    background: #fff1f2;
    color: #e11d48;
}
.qty-btn-minus:hover {
    background: #e11d48;
    color: white;
}
.qty-number {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    min-width: 20px;
    text-align: center;
}

/* total */
.item-total {
    font-weight: 700;
    color: #4f46e5;
    font-size: 0.95rem;
}

/* remove btn */
.remove-btn {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}
.remove-btn:hover {
    background: #e11d48;
    color: white;
    border-color: #e11d48;
}

/* grand total box */
.grand-total-box {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 18px;
    padding: 28px 32px;
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(79,70,229,0.25);
    position: relative;
    overflow: hidden;
}
.grand-total-box::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}
.grand-total-box::after {
    content: "";
    position: absolute;
    bottom: -30px; left: -20px;
    width: 90px; height: 90px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.grand-total-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 7px;
}
.grand-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
.grand-total-row span:first-child {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
}
.grand-total-row span:last-child {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
}
.grand-total-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 14px 0;
    position: relative; z-index: 1;
}
.grand-total-final {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative; z-index: 1;
}
.grand-total-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.68rem;
    text-align: center;
    margin-top: 8px;
    letter-spacing: 0.05em;
    position: relative; z-index: 1;
}

/* action buttons */
.btn-continue {
    background: #ffffff;
    color: #4f46e5;
    border: 2px solid #e0e7ff;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    letter-spacing: 0.01em;
}
.btn-continue:hover {
    border-color: #4f46e5;
    background: #eef2ff;
    color: #4f46e5;
    transform: translateY(-1px);
}
.btn-place-order {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 32px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 4px 14px rgba(79,70,229,0.35);
    letter-spacing: 0.01em;
}
.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(79,70,229,0.45);
}

/* empty cart */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}