/* Import Font */
@import url("https://fonts.googleapis.com/css2?family=Trebuchet+MS&display=swap");

/* Root Variables */
:root {
  --primary-color: #0e1623;
  --secondary-color: #282b8b;
  --success-color: #03c95a;
  --warning-color: #ffc107;
  --destructive-color: #ef4444;
  --text-color: #656b76;
  --heading-color: #242b3a;
  --border-color: #e2e8f0;
  --background-color: #fefefe;
  --card-bg: #ffffff.footer
  --radius: 0.625rem;
}


/* Buttons */
.btn1 {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: all 0.3s;
  font-weight: 500;
  border: 1px solid transparent;
}
.btn1-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn1-primary:hover {
  background-color: #1d4061;
  border-color: #1d4061;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn1-outline-primary { 
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn1-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Badges */
.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
   
}
.badge-soft-success {
  background: rgba(3, 201, 90, 0.1);
  color: var(--success-color);
}
.badge-soft-primary {
  background: rgba(14, 22, 35, 0.1);
  color: var(--primary-color);
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1020;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-color);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--heading-color);
}

/* Offer Banner */
.offer-content{
     display: flex;
    justify-content: center;
    align-items: center;
}
.offer-banner {
  /* background: linear-gradient(135deg, #000000 0%, #153056 100%) !important; */
  background: var(--primary-color);
  
  color: white;
  padding: 0.5rem 0;
  font-weight: 500;
}
.countdown {
  background: rgba(255,255,255,0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: monospace;
}

/* Hero Section */
.hero {
  background: #f4f5f5;
  padding: 4rem 0;
  position: relative;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-subtitle { font-size: 1.125rem; }
.text-primary { color: var(--primary-color) !important; }

.search-box {
  background: white;
  padding: 0.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color);
}
.search-input {
  border: none;
  outline: none;
  width: 100%;
}
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* Sections */
.section { padding: 5rem 0; }
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card {
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  /* height: 100%; */
  border-radius: 10px;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Service Card */
.service-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}
.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: #f4f5f5;
  color: var(--primary-color);
}
.service-card:hover .service-icon {
  background: var(--primary-color);
  color: #fff;
}
.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Professional Card */
.professional-card .card-img-top {
  height: 250px;
  object-fit: cover;
}

/* Steps */
.step-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
  border-radius: 10px;
  height: 280px; 
}
.step-icon {
  width: 4rem;
  height: 4rem;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  background: var(--primary-color);
}
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step-description { color: var(--text-color); }

/* Testimonials */
.testimonial-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.stars { display: flex; gap: 0.125rem; }
.star  { width: 1rem; height: 1rem; fill: #ffc107; color: #ffc107; }

/* Final CTA */
.final-cta { background: var(--primary-color); color: white; }
.cta-title { font-size: 2.5rem; font-weight: 700; color: white; }



/* Header Navigation Items */
.header-items {
  display: flex;
  justify-content: space-around;
  column-gap: 45px;
}
@media (max-width:768px) {
  .header-items { display: none; }
}
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.5rem; }
  .hero-img   { display: none; }
  .section    { padding: 3rem 0; }
}

/* Quick Services (existing) */
.quick-services { max-width:700px; }
.quick-services .service-btn1 {
  padding: 1.25rem 0.75rem;
  border: 1.5px solid #d0e0ff;
  border-radius: 0.75rem;
  background: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.quick-services .service-btn1:hover,
.quick-services .service-btn1:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.quick-services .service-btn1.active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
}
.service-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.service-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.price-current {
  color: #16a34a;
  font-weight: 700;
  font-size: 1rem;
}
.price-original {
  color: #6c757d;
  font-size: 0.9rem;
  text-decoration: line-through;
}

/* === Trust Statistics Block === */
.trust-stats {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-top:40px;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.stat-item { flex: 1 1 200px; }
.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.stat-description {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.stat-detail { font-size: 0.9rem; color: var(--text-color); }

/* General Section Styling */
.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Card Styling */
.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius:12px;
}

.service-card .card-body {
    padding: 1.25rem;
}

/* Top Right Badge on Image */
.service-badge {
    position: absolute !important;
    top: 9px !important;
    right: 11px !important;
    border-radius: 4px !important;
    font-size: 12px;
    font-weight: 600;
    padding: 0.4em 0.75em;
    z-index: 2;
}

/* Title and Rating Text */
.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
}

.rating-text {
    font-size: 0.9rem;
    color: #475569;
}

/* Small Category Tags (e.g., Cleaning, Repair) */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 9999px; /* Pill shape */
    color: #475569;
    font-weight: 500;
}

/* Styling for specific tags to match screenshot */
.tag-popular {
    border-color: #bbf7d0;
    background-color: #f0fdf4;
    color: #166534;
}
.tag-info {
    border-color: #bae6fd;
    background-color: #f0f9ff;
    color: #0c4a6e;
}
.tag-premium {
    border-color: #fed7aa;
    background-color: #fffbeb;
    color: #92400e;
}


/* Price and Duration Container */
.price-duration-wrapper {
    display: flex;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #0f172a;
}

.stats-grid2{
    display: flex;
    justify-content: space-around;
    align-items: center;
        text-align: center;
        
}
.stats-grid2 .stat-number{
    font-size: 30px !important;
}


/* --- Testimonial Section Styling --- */
:root {
    --color-green: #28a745;
    --color-green-light: #e9f6ec;
    --color-blue: #007bff;
    --color-blue-light: #e6f2ff;
    --color-yellow: #ffc107;
    --color-yellow-light: #fff8e6;
    --color-purple: #6f42c1;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-light: #dee2e6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

.testimonial-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    font-family: 'Inter', sans-serif; /* A nice, clean font. Use your project's font if different. */
}

/* --- Section Header --- */
.trusted-badge {
    display: inline-block;
    background-color: #e9f2ff;
    color: var(--color-blue);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #cce0ff;
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 2.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
}

/* --- Review Cards --- */
.review-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-left: 4px solid;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-card-green { border-color: var(--color-green); }
.review-card-blue { border-color: var(--color-blue); }
.review-card-yellow { border-color: var(--color-yellow); }

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card-green .review-icon { background-color: var(--color-green-light); color: var(--color-green); }
.review-card-blue .review-icon { background-color: var(--color-blue-light); color: var(--color-blue); }
.review-card-yellow .review-icon { background-color: var(--color-yellow-light); color: var(--color-yellow); }

.review-meta {
    flex-grow: 1;
}

.review-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.stars {
    color: #ffc107;
}

.review-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #f1f3f5;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid;
}

/* --- Stats Card --- */
.stats-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-color-blue { color: var(--color-blue); }
.stat-color-green { color: var(--color-green); }
.stat-color-yellow { color: var(--color-yellow); }
.stat-color-purple { color: var(--color-purple); }

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 2px;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 60px 0;
    }
    .stats-card {
        padding: 30px 20px;
    }
    .stat-number {
        font-size: 2.25rem;
    }
}

/* --- Professionals Section Styling --- */
.professionals-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Inter', sans-serif; /* A clean, modern font. Change if needed. */
}

.section-title-pro {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.section-subtitle-pro {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto 4rem;
}

/* --- Professional Card --- */
.pro-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 24px;
    padding-top: 60px; /* Space for the avatar */
    text-align: center;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pro-avatar-wrapper {
    position: absolute;
    top: -45px; /* Pulls the avatar up */
    left: 50%;
    transform: translateX(-50%);
}

.pro-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pro-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pro-badge {
    /*position: absolute;*/
    /*top: 30px;*/
    /*left: 50%;*/
    transform: translateX(15px);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
}

.badge-green { background-color: #e6f7f2; color: #15a372; border: 1px solid #bde9d9; }
.badge-blue { background-color: #e8f3ff; color: #3285e3; border: 1px solid #c2dbf7; }
.badge-yellow { background-color: #fff8e1; color: #f9a825; border: 1px solid #ffecb3; }

.pro-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-top: 10px;
    margin-bottom: 4px;
}

.pro-specialty {
    color: #6c757d;
    margin-bottom: 1rem;
}

.pro-rating {
    color: #fdbe2d;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pro-rating span {
    color: #495057;
    margin-left: 8px;
    font-weight: 500;
}

.pro-stats {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    /*flex-grow: 1; */
}

.pro-profile-btn1 {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pro-profile-btn1:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}
	.ribbon_3 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
    }
    .ribbon_3.popular span {
        background: linear-gradient(#d72e2b 0%, #d72e2b 100%);
    }
    .ribbon_3 span {
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        text-align: center;
        line-height: 20px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        width: 100px;
        display: block;
        background: linear-gradient(#4ec3ff 0%, #ac815d 100%);
        box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
        position: absolute;
        top: 14px;
        left: -4px;
    }
    
    .verify-primary {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
    }
    .verify {
        align-items: center;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        font-weight: 500;
        border-radius: 9999px;
        border: 1px solid;
        margin-left: 56px;
    }
    .verify-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
   }

    .verify-accent {
        background: rgba(251, 191, 36, 0.2);
        border-color: rgba(251, 191, 36, 0.3);
        color: var(--accent-foreground);
    }
    .icon-xl {
    width: 2rem;
    height: 2rem;
}




@media (max-width: 767px) {
  .quick-services {
    flex-wrap: nowrap;
    overflow-x: auto;
    display: flex;
    gap: 10px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
  }

  .quick-services::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .quick-services .col-3 {
    flex: 0 0 65%;
    max-width: 65%;
    scroll-snap-align: center;
  }

  .service-btn1 {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }

  .service-btn1:active {
    transform: scale(0.97);
  }

  .service-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .service-price {
    font-size: 14px;
  }

  .price-current {
    color: #28a745;
    font-weight: 700;
    margin-right: 5px;
  }

  .price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .offer-banner {
    padding: 12px 5px;
    font-size: 13px;
  }

  .offer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .offer-content .flex {
    justify-content: center;
  }

  .icon {
    width: 16px;
    height: 16px;
  }

  .countdown {
    font-weight: 600;
    color: #e53935;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .verify {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    margin: 0px auto;
    display: inline-flex;
    width: fit-content; /* makes button only as wide as text */
    justify-content: center;
  }
}



.app-download-section {
  background-color: #f8f9fa;
}

.app-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.app-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}

.app-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.app-features i {
  color: #28a745;
  font-size: 0.9rem;
}

.app-buttons img {
  height: 42px;
  transition: transform 0.2s ease;
}

.app-buttons img:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .app-card {
    text-align: center;
  }

  .app-features li {
    justify-content: center;
  }

  .app-buttons {
    justify-content: center;
  }
}



.app-download-section {
  background-color: #f8f9fa;
}

.app-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.app-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}

.app-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.app-features i {
  color: #28a745;
  font-size: 0.9rem;
}

.app-buttons img {
  height: 42px;
  transition: transform 0.2s ease;
}

.app-buttons img:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .app-card {
    text-align: center;
  }

  .app-features li {
    justify-content: center;
  }

  .app-buttons {
    justify-content: center;
  }
}

@media only screen and (max-width: 991.98px) {
    .navbar-header {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .navbar-header {
        position: relative;
        text-align: center;
    }
}

@media (max-width: 991.98px) {
    .navbar-header #mobile_btn {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 991.98px) {
    header .location-box {
        padding: 3px 5px;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 991.98px) {
    .header-nav {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 991.98px) {
    .navbar-header .navbar-brand.logo-small {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
}












