*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
:root{
    --primarycolor: #8B6B00;
    --primarydark: #E8DCCB;
    --primarylight: #D4B84F;
    --footer-text: #f5f5f5;
    --footer-muted: #ffffff;
    --footer-border: rgba(255,255,255,0.12);
}
body {
  font-family: 'Poppins', sans-serif;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  transform: translateY(30px);
}

.fade-in {
  opacity: 0;
}

.slide-in-left {
  transform: translateX(-50px);
}

.slide-in-right {
  transform: translateX(50px);
}

/* Hero Animation */
.hero-section {
  min-height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('pic/hero-pic1.jpg') center/cover no-repeat;
  background-color: #3a3226;
}

.hero-section .row {
  animation: fadeInUp 1s ease-out;
}

.hero-section p {
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-section h1 {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-section .hero-btn {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

/*NAVBAR*/
.custom-navbar {
  background-color: #f3eadf;
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.navbar-brand{
    font-size: 2em;
    color: var(--primarycolor);
    font-family: 'Lobster', cursive;
    transition: transform 0.3s ease;
}

.navbar-brand:hover{
    color: var(--primarycolor);
    transform: scale(1.05);
}

.nav-link{
    margin-right: 10px;
    margin-left: 10px;
    color: var(--primarycolor);
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primarylight);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link:hover{
    color: var(--primarycolor);
}

.search{
    height: 40px;
    width: 80%;
    border-radius: 60px;
    outline: none;
    margin-right: -35px;
    font-family: 'Rubik', sans-serif;
    border: 2px solid var(--primarylight);
}
.btn{
    outline: none;
    border: none;
    font-weight: 700;
}
.main{
    background: url(pictures/cole-ankney-ZdJ6eIKN3G0-unsplash.jpg);
    background-size: cover;
    height: 100vh;
    background-position: 50% 50%;
    width: 100%;
}
.main h1{
    font-size: 4em;
    font-weight: 700;
    color: var(--primarylight);
}
.btn1{
    height: 45px;
    width: 35%;
    border: none;
    outline: none;
    color: white;
    background-color: var(--primarycolor);
    font-weight: 700;
    border-radius: 60px;
}
.img-luid{
    width: 50px;
    height: 50px;
}
.btn1:hover{
    background-color: var(--primarylight);
    color: black;
    transition: 0.5s;
}
h1{
    font-weight: 700;
}
.card:hover{
    -webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
-moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
transition: 0.5s;
}
.apple{
    background:  url(pictures/aks\ \(2\).jpg) no-repeat;
    background-size: cover;
    height: 80vh;
    width: 100%;
    
}
.apple h1{
    font-family: 'Lobster', cursive;
}
.news{
    background-color: var(--primarycolor);
    color: white;
}
.btn2{
    height: 45px;
    width: 100px;
    background: white;
    margin-left: -10px;
    border: 2px solid white;
    font-weight: 600;
}
.news input{
    height: 45px;
    width: 55%;
    border: 2px solid white;
    outline: none;
    background: var(--primarycolor);
    color: white;
    margin-top: 20px;
    font-weight: 600;
}
.news::placeholder{
    color: white;
}
.news p{
    margin: 0;
}
.fab, .fas{
    font-size: 2.5rem;
    cursor: pointer;
    padding-right: 5px;
    text-decoration: none;
    color: white;
}
 .fas:hover{
    color: rgb(170, 225, 255);
}
.fab:hover{
    color: rgb(170, 225, 255);
}
.ta{
    text-decoration: none;
    color: white;

}
.ta:hover{
    color: rgb(170, 225, 255);

}
.link{
    text-decoration: none;
    color: black;
}
.interior{
    height: 280px;
}
.body-img{
    height: 200px;
}
.i-p:hover{
    -webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    transition: 0.5s;
    

}

.top-bar {
  background-color: #8a6a00;
}

.hero-btn {
  background-color: #a47a00;
  border: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #8c6800;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-icons a {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-icons a:hover {
  transform: scale(1.15);
}

/*FEATURED SECTION*/

 .featured-services-section {
      padding: 64px 0;
      background: #fff;
    }

    .section-title {
      font-weight: 800;
      letter-spacing: 0.08em;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .view-all-btn {
      border: 1px solid #d9d9d9;
      border-radius: 999px;
      padding: 0.55rem 1.25rem;
      font-size: 0.95rem;
      font-weight: 500;
      background: #fff;
      color: #222;
      transition: all 0.2s ease;
    }

    .view-all-btn:hover {
      background: #f8f9fa;
      border-color: #cfcfcf;
      color: #111;
    }

    .services-carousel-wrap {
      position: relative;
      margin-top: 2rem;
    }

    .services-track {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding: 0.5rem 0.25rem 1rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .services-track::-webkit-scrollbar {
      display: none;
    }

    .service-slide {
      scroll-snap-align: start;
      flex: 0 0 calc((100% - (1.25rem * 4)) / 5);
      min-width: 0;
    }

    .service-card {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .service-image-placeholder {
      background: #ececec;
      aspect-ratio: 4 / 5;
      width: 100%;
      overflow: hidden;
    }

    .service-image-placeholder img {
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-image-placeholder img {
      transform: scale(1.08);
    }

    .service-card-body {
      padding: 1rem 0.75rem 1.1rem;
    }

    .service-name {
      font-weight: 700;
      font-size: 1rem;
      color: #1f1f1f;
      margin-bottom: 0.35rem;
    }

    .service-price {
      color: #7a7a7a;
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    .carousel-arrow {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border: 1px solid #e4e4e4;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      color: #444;
      transition: all 0.3s ease;
    }

    .carousel-arrow:hover {
      background: var(--primarylight);
      color: #111;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 6px 20px rgba(139, 107, 0, 0.3);
    }

    .carousel-arrow:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .carousel-arrow-left {
      left: -0.75rem;
    }

    .carousel-arrow-right {
      right: -0.75rem;
    }
.service-image-placeholder {
  height: 400px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
/*Price List*/
.price-list-section {
    padding: 60px 0;
    font-family: Arial, Helvetica, sans-serif;
  }

  .price-card {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }

  .price-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
  }

  .price-divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
  }

  .price-table {
    margin-bottom: 0;
    min-width: 650px;
  }

  .price-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6c757d;
    font-weight: 600;
    padding: 16px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
  }

  .price-table tbody td {
    padding: 18px 14px;
    font-size: 1rem;
    color: #222;
    border-bottom: 1px solid rgba(139, 107, 0, 0.12);
    vertical-align: middle;
    background: transparent;
  }

  .price-table tbody tr {
    transition: background-color 0.25s ease, transform 0.2s ease;
  }

  .price-table tbody tr:hover {
    background-color: rgba(139, 107, 0, 0.06);
    transform: translateX(4px);
  }

  .price-table tbody tr:last-child td {
    border-bottom: none;
  }

  .service-name {
    font-weight: 500;
  }

  .service-price {
    font-weight: 600;
    color: var(--primary);
  }

  .table-responsive {
    border-radius: 12px;
  }

  /*REVIEW FLIP CARDS*/

.reviews-section {
  background: linear-gradient(135deg, #fcfbf8 0%, #f3eee4 100%);
  padding: 80px 0;
}

.reviews-title {
  text-align: center;
  font-weight: 800;
  color: var(--primarycolor);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.reviews-subtitle {
  text-align: center;
  color: #7a7a7a;
  margin-bottom: 50px;
}

.customer-reviews {
  background: var(--section-bg);
}

.review-flip-card {
  perspective: 1200px;
  min-height: 280px;
  height: 380px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.review-flip-card:hover {
  transform: scale(1.02);
}

.review-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.review-flip-card:hover .review-flip-inner,
.review-flip-card.is-flipped .review-flip-inner,
.review-flip-card:focus-within .review-flip-inner {
  transform: rotateY(180deg);
}

.review-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.review-front {
  background: #fff;
}

.review-back {
  background: var(--primarydark);
  transform: rotateY(180deg);
}

.review-icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.review-name {
  font-size: 1.1rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.review-stars {
  color: var(--primarycolor);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.review-text {
  color: var(--text-muted-custom);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 100%;
  flex-grow: 1;
}

.review-btn {
  background-color: var(--primarycolor);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.review-btn:hover,
.review-btn:focus {
  background-color: white;
  color: black;
  opacity: 0.92;
}

  .tailor-footer{
    background: var(--primarycolor);
    color: white;
    padding-top: 4rem;
    font-size: 0.95rem;
  }

  .tailor-footer .footer-col{
    padding-bottom: 1rem;
  }

  .tailor-footer .footer-title{
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .tailor-footer .footer-text{
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .tailor-footer .footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tailor-footer .footer-links li + li{
    margin-top: 0.65rem;
  }

  .tailor-footer .footer-links a{
    text-decoration: none;
    color: white !important;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
  }

  .tailor-footer .footer-links a:hover{
    color: var(--primarydark) !important;
    transform: translateX(4px);
  }

  .tailor-footer a {
    color: white !important;
    text-decoration: none;
  }

  .tailor-footer a:hover {
    color: var(--primarydark) !important;
  }

  .tailor-footer .fitting-form{
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .tailor-footer .form-control{
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--footer-text);
    border-radius: 0;
    min-height: 46px;
  }

  .tailor-footer .form-control::placeholder{
    color: #cfcfcf;
  }

  .tailor-footer .form-control:focus{
    background: transparent;
    color: var(--footer-text);
    border-color: var(--primarycolor);
    box-shadow: 0 0 0 0.15rem rgba(139, 107, 0, 0.18);
  }

  .tailor-footer .btn-gold{
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 0;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .tailor-footer .btn-gold:hover{
    background: #725800;
    border-color: #725800;
    color: #fff;
  }

  .tailor-footer .footer-divider{
    border-top: 1px solid var(--footer-border);
    margin-top: 3rem;
  }

  .tailor-footer .footer-bottom{
    padding: 1.15rem 0;
    text-align: center;
    color: var(--footer-muted);
    font-size: 0.875rem;
  }

  @media (max-width: 991.98px){
    .tailor-footer .footer-col{
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 575.98px){
    .tailor-footer{
      padding-top: 3rem;
    }

    .tailor-footer .fitting-form{
      flex-direction: column;
    }

    .tailor-footer .btn-gold{
      width: 100%;
    }
  }
  @media (max-width: 767.98px) {
    .review-flip-card {
      height: 260px;
    }
  }
    @media (max-width: 991.98px) {
      .service-slide {
        flex: 0 0 calc((100% - (1.25rem * 2)) / 3);
      }
    }

    @media (max-width: 767.98px) {
      .featured-services-section {
        padding: 48px 0;
      }

      .services-track {
        gap: 1rem;
      }

      .service-slide {
        flex: 0 0 calc((100% - 1rem) / 2);
      }

      .carousel-arrow {
        display: none;
      }
    }

    @media (max-width: 575.98px) {
      .service-slide {
        flex: 0 0 82%;
      }

      .section-title {
        font-size: 1.25rem;
      }
    }



    /*FAQ*/

.faq-section {
      background: #fcfbf8;
      padding: 100px 20px;
    }

    .faq-title {
      color: var(--primarycolor);
      font-weight: 700;
      text-align: center;
      margin-bottom: 12px;
    }

    .faq-subtitle {
      text-align: center;
      color: #7a7a7a;
      margin-bottom: 48px;
      font-size: 1rem;
    }

    .faq-wrapper {
      max-width: 800px;
      margin: 0 auto;
    }

    .accordion {
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
    }

    .accordion-item {
      border: 0;
      border-bottom: 1px solid #e7e0d7;
      background: transparent;
      transition: transform 0.2s ease;
    }

    .accordion-item:hover {
      transform: translateX(4px);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-button {
      background: #fff;
      color: #2d2d2d;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 1.25rem 1.25rem;
      border-left: 4px solid transparent;
      box-shadow: none;
      transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .accordion-button:hover {
      background: rgba(232, 220, 203, 0.35);
    }

    .accordion-button:not(.collapsed) {
      background: rgba(232, 220, 203, 0.6);
      color: #2d2d2d;
      border-left: 4px solid var(--primarylight);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    .accordion-button:not(.collapsed):focus {
      border-left: 4px solid var(--primarylight);
    }

    .accordion-button::after {
      filter: none;
      background-size: 1rem;
      transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)::after {
      transform: rotate(180deg);
    }

    .accordion-button,
    .accordion-button:not(.collapsed) {
      --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6B00'%3e%3cpath fill-rule='evenodd' d='M1.646 10.354a.5.5 0 0 0 .708 0L8 4.707l5.646 5.647a.5.5 0 0 0 .708-.708l-6-6a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
      color: #6f6f6f;
      font-size: 0.98rem;
      line-height: 1.8;
      padding: 0 1.25rem 1.25rem 1.5rem;
      background: rgba(232, 220, 203, 0.3);
    }

    @media (max-width: 767.98px) {
      .faq-section {
        padding: 70px 16px;
      }

      .faq-title {
        font-size: 1.9rem;
      }

      .accordion-button {
        font-size: 1rem;
        padding: 1.1rem 1rem;
      }

      .accordion-body {
        padding: 0 1rem 1.1rem 1.25rem;
      }
    }

/*ABOUT US RESPONSIVE*/
.about-hero {
  min-height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("pic/hero-backgroud.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-content {
  max-width: 600px;
  padding: 4rem 1rem;
}

.about-hero-title {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--primarylight);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.about-hero-subtitle {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.about-hero-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-hero-btn {
  background-color: var(--primarylight);
  color: #111;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.about-hero-btn:hover {
  background-color: var(--primarycolor);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 107, 0, 0.3);
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 700px;
  }

  .about-hero-content {
    padding: 3rem 1rem;
  }

  .about-hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/*FORM SECTION*/

.booking-modal {
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
  }

  .booking-modal-header {
    background: var(--primarydark);
    padding: 1rem 1.5rem;
  }

  .booking-modal-header .modal-title {
    color: var(--primarycolor);
  }

  .booking-modal-body {
    background: #ffffff;
    padding: 1.75rem 1.5rem;
  }

  .booking-modal-footer {
    background: var(--primarydark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem 1.25rem;
  }

  .booking-label {
    font-weight: 700;
    color: #2f2f2f;
  }

  .booking-modal .form-control,
  .booking-modal .form-select {
    border-radius: 0.65rem;
    padding: 0.75rem 0.9rem;
    transition: all 0.2s ease;
  }

  .booking-modal .form-control:focus,
  .booking-modal .form-select:focus {
    border-color: var(--primarylight);
    box-shadow: 0 0 0 0.2rem rgba(212, 184, 79, 0.25);
    transform: translateY(-1px);
  }

  .booking-submit-btn {
    background: var(--primarylight);
    color: #1f1f1f;
    border: none;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
  }

  .booking-submit-btn:hover,
  .booking-submit-btn:focus {
    background: var(--primarycolor);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 107, 0, 0.3);
  }

  .booking-submit-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 184, 79, 0.25);
  }

  @media (max-width: 575.98px) {
    .booking-modal-body,
    .booking-modal-header,
    .booking-modal-footer {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }


/*RESPONSIVE SIDE*/
@media (max-width:320px){
    .navbar-brand{
        font-size: 20px;
    }
    .navbar-toggler-icon{
        font-size: 10px;
    }
}
/*FOR review section card responsivenes*/
@media (max-width: 320px) {
  .review-flip-card {
    height: 380px;
  }

  .review-text {
    max-width: 100%;
  }
}