/* HERO WRAPPER */
.hero-wrapper{
    background-color:#F0F1F5 !important;
}

/* FONT */
.openSans{
    font-family:"Open Sans", sans-serif;
}

.libre-baskerville-regular-italic{
    font-family:"Libre Baskerville", serif;
    font-style:italic;
    font-weight:400;
}

/* EXACT TITLE */
.hero-title{
    font-size:40px;
    line-height:58px;
    letter-spacing:0;
    color:#000;
    margin:0;
}

/* EXACT SUBTITLE */
.hero-subtitle{
    font-size:20px;
    line-height:34px;
    color:#000;
    font-weight:400;
}

/* EXACT IMAGE */
.hero-image{
    width:95%;
    min-width:90%;
    height:auto;
    border-radius:5px;
    display:block;
}

/* BUTTON */
.hero-btn{
    background:#282828;
    border-color:#282828;
    font-size:16px;
    font-weight:500;
    padding:6px 45px !important;
    border-radius:6px;
}

.hero-btn:hover{
    background:#3d3d3d;
    border-color:#3d3d3d;
}

/* MOBILE */
@media(max-width:768px){

    .hero-title{
        font-size:34px;
        line-height:42px;
    }

    .hero-subtitle{
        font-size:18px;
        line-height:28px;
    }
}
/* =========================================
   ACADEMY SECTION
========================================= */

.academy-section{
    padding-top:80px;
    padding-bottom:80px;
}

/* TITLE */
.academy-title{
    font-family:"Open Sans", sans-serif !important;
    font-size:32px;
    line-height:58px;
    letter-spacing:0;
    color:#000;
    margin:0;
}

/* SUBTITLE */
.academy-subtitle{
    font-size:20px;
    line-height:38px;
    color:#000;
    font-weight:500;
}

/* DESCRIPTION */
.academy-description{
    font-size:16px;
    line-height:28px;
    color:#000;
    font-weight:400;
}

/* IMAGE */
.hero-image2{
    width:100%;
    min-width:100%;
    height:auto;
    border-radius:5px;
    display:block;
}

/* BUTTON */
.btn-custom{
    background-color:#333;
    color:#fff;
    padding:12px 38px !important;
    border-radius:5px;
    text-transform:uppercase;
    font-size:15px;
    font-weight:500;
    border:none;
    transition:0.3s ease;
}

.btn-custom:hover{
    background-color:#555;
    color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){

    .academy-title{
        font-size:34px;
        line-height:44px;
    }

    .academy-subtitle{
        font-size:20px;
        line-height:30px;
    }

    .academy-description{
        font-size:16px;
        line-height:28px;
    }

}
/* =========================================
   BLOG SECTION
========================================= */

.blog-section{
    background:#fff;
}

/* MAIN TITLE */
.blog-main-title{
    font-family:"Open Sans", sans-serif;
    font-size:42px;
    line-height:52px;
    color:#000;
}

/* CARD */
.blog-card{
    background:#fff;
}

/* IMAGE */
.blog-img{
    width:100%;
    height:392px;
    object-fit:cover;
    border-radius:16px;
}

/* TITLE */
.blog-title{
    font-family:"Open Sans", sans-serif;
    font-size:20px;
    line-height:25px;
    color:#000;
    margin-bottom:18px;
}

/* DATE */
.blog-date{
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:18px;
}

/* DESCRIPTION */
.blog-description{
    font-size:16px;
    line-height:25px;
    color:#444;
    margin-bottom:25px;
}

/* READ MORE */
.blog-readmore{
    font-size:15px;
    transition:0.3s ease;
}

.blog-readmore:hover{
    opacity:0.7;
}

/* RESPONSIVE */
@media(max-width:768px){

    .blog-main-title{
        font-size:34px;
        line-height:42px;
    }

    .blog-title{
        font-size:22px;
        line-height:32px;
    }

    .blog-description{
        font-size:15px;
        line-height:28px;
    }

    .blog-img{
        height:320px;
    }

}
/* =========================================
   CUSTOMER STORIES
========================================= */

.customer-stories-section{
    background:#fff;
}

/* TITLE */
.customer-title{
    font-family:"Open Sans", sans-serif;
    font-size:35px;
    line-height:52px;
    color:#000;
}

/* VIDEO CONTAINER */
.video-container{
    position:relative;
    overflow:hidden;
    border-radius:6px;
}

/* IMAGE */
.customer-video-img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,0.85);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    font-size:30px;
    text-decoration:none;
    transition:0.3s ease;
}

.play-btn:hover{
    background:#fff;
    color:#000;
}

/* CONTENT */
.customer-content{
    padding-top:10px;
}

/* RATING */
.customer-rating{
    font-family:"Open Sans", sans-serif;
    font-size:18px;
    color:#000;
}

/* STARS */
.stars{
    color:#ffb400;
    letter-spacing:2px;
    font-size:16px;
}

/* DESCRIPTION */
.customer-description{
    font-size:16px;
    line-height:30px;
    color:#6c757d;
    margin-top:10px;
}

/* PREV + NEXT BUTTON AREA */
.carousel-control-prev,
.carousel-control-next{
    top:50%;
    transform:translateY(-50%);
    width:62px;
    height:56px;
    border-radius:45px;
    opacity:1;
}

/* LEFT POSITION */
.carousel-control-prev{
    left:9%;
}

/* RIGHT POSITION */
.carousel-control-next{
    right:8%;
}

/* ARROW IMAGE */
.carousel-arrow-prev,
.carousel-arrow-next{
    width:28px;
    padding:10px;
    border-radius:37px;
    background-color:#ab21211e;
    display:block;
}

/* NEXT ROTATE */
.carousel-arrow-next{
    transform:rotate(180deg);
}

/* HOVER */
.carousel-control-prev:hover .carousel-arrow-prev,
.carousel-control-next:hover .carousel-arrow-next{
    background-color:#00000033;
}

/* MOBILE */
@media(max-width:991px){
    .carousel-control-prev{
        left:2%;
    }

    .carousel-control-next{
        right:2%;
    }
}
/* Blog  */
.blog-breadcrumb{
    background:rgba(255,255,255,.8);
    padding:5px 10px;
}

.blog-breadcrumb a{
    color:#333 !important;
    text-decoration:none;
    font-size:14px;
}

.explore-title{
    font-size:32px;
    line-height:38px;
    color:#212529;
    font-family:"Inter",sans-serif;
    font-weight:600;
}

.box-shadow{
    box-shadow:rgba(99,99,99,.2) 0px 2px 8px 0px;
    border:none;
    cursor:pointer;
    transition:.3s;
}

.box-shadow:hover{
    transform:translateY(-4px);
}

.blog-img{
    width:100%;
    height:392px;
    object-fit:cover;
}

.blog-title{
    font-size:20px;
    line-height:30px;
    color:#212529;
    font-family:"Inter",sans-serif;
    font-weight:700;
}

.blog-date{
    font-size:14px;
    color:#6c757d;
}

.read-more{
    text-decoration:none;
    font-weight:700;
    color:#000;
    font-size:14px;
}

.read-more:hover{
    color:#000;
}

/* loader */
.loader-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:1050;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader{
    position:relative;
    width:75px;
    height:100px;
    margin:auto;
}

.loader__bar{
    position:absolute;
    bottom:0;
    width:10px;
    background:#000;
    transform-origin:center bottom;
    box-shadow:1px 1px 0 rgba(0,0,0,.2);
    animation-duration:4s;
    animation-iteration-count:infinite;
}

.loader__bar:nth-child(1){left:0;height:20%;animation-name:barUp1;}
.loader__bar:nth-child(2){left:15px;height:40%;animation-name:barUp2;}
.loader__bar:nth-child(3){left:30px;height:60%;animation-name:barUp3;}
.loader__bar:nth-child(4){left:45px;height:80%;animation-name:barUp4;}
.loader__bar:nth-child(5){left:60px;height:100%;animation-name:barUp5;}

.loader__ball{
    position:absolute;
    bottom:10px;
    left:0;
    width:10px;
    height:10px;
    background:#000;
    border-radius:50%;
    animation:ball 4s infinite;
}

@keyframes ball{
0%{transform:translate(0,0);}
50%{transform:translate(60px,0);}
100%{transform:translate(0,0);}
}
@keyframes barUp1{
0%,100%{transform:scale(1,.2);}
50%{transform:scale(1,1);}
}
@keyframes barUp2{
0%,100%{transform:scale(1,.4);}
50%{transform:scale(1,.8);}
}
@keyframes barUp3{
0%,100%{transform:scale(1,.6);}
}
@keyframes barUp4{
0%,100%{transform:scale(1,.8);}
50%{transform:scale(1,.4);}
}
@keyframes barUp5{
0%,100%{transform:scale(1,1);}
50%{transform:scale(1,.2);}
}

/* ACADEMY */
.academy-hero {
  background-color: #f8f9fa;
  text-align: center;
}

.academy-hero-title {
  font-size: 2rem;
  font-weight: bold;
}

.academy-hero-button {
  margin-top: 20px;
}

.academy-hero-image {
  max-width: 100%;
  height: auto;
}

/* IMPORTANT FIX (you missed this earlier) */
.academy-hero > .row > * {
  padding-right: 0 !important;
}

/* CARD */
.academy-card {
  position: relative;
  overflow: hidden;
}

.academy-card img,
.academy-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 0px !important;
}

.academy-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
}

.academy-card-overlay h6,
.academy-card-overlay p {
  margin: 0;
}

.academy-card-overlay h6 {
  font-size: 1rem;
}

.academy-card-overlay p {
  font-size: 0.875rem;
}

/* REMOVE DEFAULT BOOTSTRAP */
.academy-accordion .accordion-item {
  border: none;
  background: transparent;
}

/* HEADER BUTTON */
.academy-faq-btn {
  background: #ffffff;
  border-radius: 10px !important;
  padding: 18px 20px;
  font-size: 16px;
  color: #000;
  box-shadow: none !important;
}

/* REMOVE BOOTSTRAP ACTIVE BLUE */
.academy-faq-btn:not(.collapsed) {
  background: #f5f5f5 !important;
  color: #000 !important;
}

/* REMOVE FOCUS OUTLINE */
.academy-faq-btn:focus {
  box-shadow: none !important;
}

/* BODY */
.academy-faq-body {
  background: #fff;
  padding: 20px;
  margin-top: 5px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* SPACING BETWEEN ITEMS */
.academy-faq-item {
  margin-bottom: 10px;
  border-left: 3px solid #000000 !important;
  border-radius: 12px;
}

.accordion-button{
    background-color: #ffffff !important;
    color: #000 !important;
}
.accordion-button:active{
    background-color: #f5f5f5 !important;
    color: #000 !important;
}

/* ARROW SMALL + CLEAN */
.accordion-button::after {
  transform: scale(0.7);
}

/* FORM SELECT FIX (ng-select replacement styling) */
.academy-select {
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 9px;
}

/* INPUT */
/* INPUTS + SELECT (uniform size like Angular) */
.academy-input,
.academy-select {
  height: 45px;
  border-radius: 6px;
  font-size: 14px;
}

/* MULTISELECT HEIGHT */
.academy-multiselect {
  min-height: 45px;
  border-radius: 6px;
}

/* LABEL SPACING */
.academy-label {
  margin-bottom: 6px;
  display: inline-block;
  font-size: 14px;
}

/* FIELD SPACING */
.academy-form-row .mb-3 {
  margin-bottom: 18px;
}

/* SUBMIT BUTTON */
.academy-submit-btn {
  padding: 10px 30px;
  border-radius: 6px;
}

/* DIVIDER */
.academy-divider-line {
  height: 300px;
  width: 1px;
  background: #ddd;
}

/* CONTACT BOX */
.academy-contact-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .academy-form-container {
    padding: 8px 20px !important;
  }
}
/* Franchise Page Specifics */
.responsive-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.small-font {
    font-size: 1.2rem !important;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .responsive-img {
        height: 260px;
    }
    .franchise-form{
        padding: 8px 20px !important;
    }
}
.breadcrumb {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  font-size: 14px;
}

table tbody td {
  color: #000 !important;
  font-weight: 400 !important;
  padding: 1rem 0.5rem !important;
  background: transparent !important;
  border-top: 1px solid #F1F1F1 !important;
}

tr {
  border-width: 0;
  border-color: #e7e3e3 !important;
}

.offers-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.nav-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.nav-tabs .nav-item{
    flex:0 0 auto;
}

.nav-tabs .nav-link{
    min-width:165px;   /* fixed width */
    height:48px;
    
    display:flex;
    align-items:center;
    justify-content:center;

    white-space:nowrap;

    border:1px solid #ddd;
    background:#F5F5F5;
    border-radius:5px;

    font-weight:700;
    color:#333;

    padding:0 20px;
}

.nav-tabs .nav-link.active{
    background:#000;
    color:#fff;
    border-color:#000;
}

/* .nav-tabs {
  border-bottom: none !important;
  gap: 6px;
}

.nav-tabs .nav-link {
  border: 1px solid #ddd;
  background: #F4F6FC;
  border-radius: 5px;
  font-weight: 700;
  color: #333;
  padding: 14px 20px;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background: #000;
  color: #fff;
  border-color: #000;
} */

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* 
.hero-video,
.service-banner img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.service-page {
  background: #fff;
}

.service-container {
  padding: 30px 0 30px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-table {
  width: 100%;
}

.service-table th {
  font-size: 18px;
  font-weight: 700;
  padding: 18px 10px !important;
  border-bottom: 1px solid #eee !important;
}

.service-table td {
  font-size: 18px;
  line-height: 1.6;
}
/* TAB WRAPPER *
.service-tabs{
    display:flex;
    flex-wrap:wrap;

    column-gap:12px;   /* left-right spacing *
    row-gap:0;          no top-bottom spacing *

    border-bottom:none !important;
    padding:0;
    margin:0;
}

/* EACH TAB *
.service-tabs .nav-item{
    flex:1;
    margin:0 !important;
}

/* BUTTON *
.service-tabs .nav-link{
    width:100%;
    height:46px;
    border:1px solid #d9d9d9 !important;
    /* border-radius:8px !important; *
    background:white !important;
    color:#1e2a39 !important;
    font-size:18px;
    font-weight:700;
    font-family: Inter, sans-serif;
    transition:.3s;
    padding:0;
}

/* ACTIVE *
.service-tabs .nav-link.active{
    background:#000 !important;
    color:#fff !important;
    border-color:#000 !important;
}

/* LAST FULL TAB *
.service-tabs .w-100{
    flex:0 0 100%;
}

.service-tabs .full-tab{
    width:100%;
}

.offers-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.book-btn {
  display: inline-block;
  background: #1e1e1e;
  color: #fff;
  text-decoration: none;
  padding: 12px 60px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 18px;
  transition: 0.3s;
}

.book-btn:hover {
  color: #fff;
  background: #000;
}

.see-more {
  text-align: right;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
}

.consultation-line {
  width: 100%;
  text-align: center;
  margin-top: 60px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  padding: 20px 0;
}

.consultation-line::before,
.consultation-line::after {
  content: "";
  position: absolute;
  left: 25%;
  width: 50%;
  border-top: 1px solid #ccc;
}

.consultation-line::before {
  top: 0;
}

.consultation-line::after {
  bottom: 0;
}

.loader-overlay {
  position: absolute;
  inset: 0;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(245, 245, 245, 0.3);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(245, 245, 245, 0.4);
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .offers-title {
    font-size: 36px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-video,
  .service-banner img {
    height: 260px;
  }

  .nav-tabs .nav-item {
    flex: 1 1 0;
  }

  .nav-tabs .nav-link {
    padding: 10px 5px;
    font-size: 13px;
  }

  .service-table th {
    font-size: 16px;
  }

  .service-table td {
    font-size: 14px;
  }

  .offers-title {
    font-size: 28px;
  }

  .book-btn {
    width: 100%;
    text-align: center;
  }

  .consultation-line {
    font-size: 13px;
  }
}
 
.hero-video{
    width:100%;
    height:460px;
    object-fit:cover;
}

.video-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
}

.nav-tabs .nav-link{
    border:1px solid #ddd;
    background:#F5F5F5;
    border-radius:5px;
    font-weight:700;
    color:#333;
    padding:12px 15px;
    font-size:15px;
}

.nav-tabs .nav-link.active{
    background:#000;
    color:#f5f5f5;
    border-color:#000;
}

.service-table thead th{
    font-size:15px;
    font-weight:600;
    color:#000;
    border-bottom:1px solid #ddd;
    padding:14px 10px;
    background-color: #f5f5f5;
}

.service-table tbody td{
    color:#000;
    font-weight:400;
    padding:16px 10px;
    border-top:1px solid #F1F1F1;
    font-size:15px;
}

.offers-grid img{
    width:100%;
    height:160px;
    object-fit:cover;
}

.btn-primary{
    background:#000;
    border:none;
    padding:12px 40px;
    border-radius:4px;
    font-size:15px;
    font-weight:600;
}

@media(max-width:576px){

    .hero-video{
        height:260px;
    }

    .offers-grid img{
        height:130px;
    }

    .nav-tabs .nav-link{
        font-size:13px;
        padding:10px 5px;
    }

    .service-table tbody td{
        font-size:13px;
    }
} */


.service-page{
    background:#f5f5f5;
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.service-page .container{
    /* max-width:1320px; */
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.hero-video{
    width:100%;
    height:460px;
    object-fit:cover;
}

.video-wrapper{
    position:relative;
    width:100%;
    overflow:hidden;
}

.nav-tabs{
    border:none !important;
    gap:8px;
}

.nav-tabs .nav-link{
    border:1px solid #ddd;
    background:#F5F5F5;
    border-radius:5px;
    font-weight:700;
    color:#333;
    padding:12px 15px;
    font-size:15px;
}

/* REMOVE HOVER EFFECT */

.nav-tabs .nav-link:hover{
    background:#F5F5F5 !important;
    color:#333 !important;
    border-color:#ddd !important;
    box-shadow:none !important;
}

/* KEEP ACTIVE TAB BLACK */

.nav-tabs .nav-link.active:hover{
    background:#000 !important;
    color:#fff !important;
    border-color:#000 !important;
}

/* REMOVE FOCUS */

.nav-tabs .nav-link:focus{
    box-shadow:none !important;
}

/* .nav-tabs .nav-link.active{
    background:#f5f5f5;
    color:#333;
    border-color:#000;
} */

.service-table{
    background:#f5f5f5;
}

.service-table thead th{
    font-size:15px;
    font-weight:600;
    color:#000;
    border-bottom:1px solid #ddd;
    padding:14px 10px;
    background:#f5f5f5;
}

.service-table tbody td{
    color:#000;
    font-weight:400;
    padding:16px 10px;
    border-top:1px solid #F1F1F1;
    font-size:15px;
    background:#f5f5f5;
}

.offers-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
}

.offers-grid img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
}

.btn-primary{
    background:#000 !important;
    border:none !important;
    padding:12px 40px !important;
    border-radius:4px;
    font-size:15px;
    font-weight:600;
}

.see-more{
    text-align:right;
    margin-top:15px;
    font-size:14px;
    cursor:pointer;
}

/* .consultation-wrapper{
    width:100%;
    text-align:center;
    padding:20px 0 10px;
    margin:0;
    background:#f5f5f5;
}

.consultation-text{
    font-size:15px;
    font-weight:500;
    color:#222;
} */
/* 
.consultation-section{
    margin-top:20px;
    margin-bottom:0 !important;
    background:#f5f5f5;
}

footer{
    margin-top:0 !important;
    padding-top:20px !important;
}

@media(max-width:768px){

    .consult-line-top,
    .consult-line-bottom{
        width:25% !important;
    }

    .small-font{
        font-size:12px !important;
        text-align:center;
    }
} */


/* footer{
    margin-top:0 !important;
    padding-top:20px !important;
}

@media(max-width:576px){

    .hero-video{
        height:260px;
    }

    .offers-grid img{
        height:130px;
    }

    .nav-tabs .nav-link{
        font-size:13px;
        padding:10px 5px;
    }

    .service-table tbody td{
        font-size:13px;
    }

    .consultation-text{
        font-size:13px;
    }
} */


.consultation-section{
    background:#f5f5f5;
    margin-top:10px;
    margin-bottom:0;
}

@media only screen and (max-width:600px){

    .small-font{
        font-size:13px !important;
    }

    .consult-line-top,
    .consult-line-bottom{
        width:25% !important;
    }
}


/* Service booking  */

.booking-page{
    background:#fff;
    padding:60px 0;
}

.booking-container{
    max-width:1250px;
}

.booking-title{
    font-size:28px;
    font-weight:500;
    color:#111;
    margin-bottom:40px;
    font-family:Arial,sans-serif;
}

.booking-card{
    border:1px solid #dedede;
    border-radius:10px;
    padding:40px;
    background:#fff;
}

.offer-box{
    background:#F4F6FC;
    border-radius:24px;
    padding:30px;
    margin-bottom:45px;
}

.offer-image{
    width:170px;
    margin-left: 40px;
}
.offer-btn{
    width:100%;
    height:48px;
    border:none;
    background:#fff;
    border-radius:8px;
    font-size:16px;
    font-weight:500;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.booking-label{
    font-size:16px;
    font-weight:400;
    margin-bottom:8px;
    display:block;
    color:#111;
}

.booking-input{
    width:100%;
    height:44px;

    border:1px solid #d9d9d9;
    border-radius:8px;

    padding:0 40px 0 14px;

    font-size:16px;
    color:#333;
    background-color:#fff;


}
.arrowinput{
      appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 28 28' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 14px center;

    background-size:12px
}

.booking-input:focus{
    border-color:#000;
}

.add-btn{
    height:34px;
    padding:0 35px;
    background:#1d1d1d;
    border:none;
    color:#fff;
    border-radius:8px;
    font-size:16px;
    font-weight:500;
}

.added-service-box{
    margin-top:20px;
    margin-bottom:25px;
}

.service-item{
    border:1px solid #ddd;
    border-radius:8px;
    padding:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.service-name{
    font-size:16px;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
}

.qty-box input{
    width:60px;
    height:36px;
    border:1px solid #ccc;
    border-radius:6px;
    text-align:center;
    font-size:16px;
}

.remove-btn{
    width:32px;
    height:32px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

.personal-title{
    font-size:16px;
    margin-bottom:20px;
    font-weight:600;
}

.booking-textarea{
    width:100%;
    border:1px solid #d9d9d9;
    border-radius:8px;
    padding:12px 14px;
    font-size:16px;
    resize:none;
}

.time-wrapper{
    position:relative;
}

.clock-icon{
    width:18px;
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
}

.booking-buttons{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:16px;
    margin-top:24px;
}

/* CANCEL */
.cancel-btn{
    width:140px;
    height:45px;
    border:1px solid #111;
    background:#fff;
    border-radius:10px;
    font-size:16px;
    font-weight:500;
}


/* BOOK */
.book-btn{
    width:140px;
    height:45px;
    border:none;
    background:#1d1d1d;
    color:#fff;
    border-radius:10px;
    font-size:16px;
    font-weight:500;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-top:0 !important;
    padding:0 !important;
}

.booking-title{
    font-size:24px;
    font-weight:600;
    margin-bottom:24px;
}

.booking-card{
    padding:24px;
    border-radius:10px;
}

.offer-box{
    padding:24px;
    border-radius:16px;
    margin-bottom:24px;
}

.offer-image{
    width:140px;
}

@media(max-width:768px){

    .booking-title{
        font-size:20px;
    }

    .booking-label{
        font-size:16px;
    }

    .booking-input{
        height:42px;
        font-size:16px;
    }

    .offer-btn{
        height:44px;
        font-size:16px;
        margin-top:15px;
    }

    .offer-image{
        width:100px;
    }

    .personal-title{
        font-size:16px;
    }

    .booking-card{
        padding:16px;
    }

    .book-btn,
    .cancel-btn{
        width:100px;
        height:40px;
        font-size:16px;
    }
}
.time-wrapper{
    position:relative;
}

.booking-time{
    padding-right:60px;
}

.clock-icon{
    width:22px;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    pointer-events:none;
}

.booking-time::-webkit-calendar-picker-indicator{
    position:absolute;
    right:0;
    top:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:pointer;
}

/* offers  */

/* Custom responsive dropdown engine container wrapper */
#branch-select {
    width: 25%; /* Desktop Default Width */
     /* Safe micro-boundary containment */
    height: 52px;
    padding: 0 45px 0 20px; /* Ample padding for an elite, high-end feel */
    font-size: 16px;
    font-weight: 500;
    margin: 0px 50px;
    color: #111111;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    appearance: none; /* Strip browser default arrow styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Clean custom vector down-arrow matches your professional interface aesthetic */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease-in-out;
}

/* Clear interactions on cursor state focuses */
#branch-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Responsive breakpoint media rules matching exactly layout thresholds */
@media (max-width: 991.98px) {
    #branch-select {
        width: 100% !important; /* Forces layout to stretch full width on responsive mobile sizes */
        /* max-width: 100%; */
        margin: 0px 0px;
    }
}

table tbody td {
    color: #000000 !important;
    font-weight: 400 !important;
    padding: 1rem 0.5rem !important;
    background: transparent !important;
    border-top: 1px solid #F1F1F1 !important;
}

tr {
    border-style: solid !important;
    border-width: 0;
    border-color: #e7e3e3 !important;
}

.offers-grid img {
    width: 100%;
    height: auto;
    background-color: #ccc;
}

.nav-tabs .nav-link {
    border: 1px solid #ddd;
    background: #F4F6FC;
    margin-right: 5px;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
}

.nav-tabs .nav-link.active {
    background-color: black;
    color: white;
    border-color: black;
}

.map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-table td,
.service-table th {
    word-wrap: break-word;
}

.responsive-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

@media (max-width: 576px) {

    .responsive-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .nav-tabs .nav-item {
        flex: 1 1 0;
    }

    .nav-tabs .nav-link {
        width: 100%;
        text-align: center;
        padding: 10px 5px;
    }

    .small-font {
        font-size: 13px !important;
    }
}   


/* =========================================
   OPENING HOURS
========================================= */

.opening-hours-table thead th{
    font-size:16px;
    font-weight:700;
    color:#000;
    padding-bottom:18px !important;
    background-color: #f5f5f5;
    border-top:1px solid #F1F1F1 !important;
}

.opening-hours-table tbody td{
    color:#000 !important;
    font-weight:400 !important;
    padding:0.3rem 0.3rem !important;
    background:transparent !important;
    border-top:1px solid #F1F1F1 !important;
}

.opening-day{
    width:20%;
    text-align:left !important;
    font-size:16px;
    border-top:1px solid #F1F1F1 !important;
}

.opening-time{
    width:50%;
    text-align:center !important;
    font-size:16px;
}

.location-title{
    font-size:32px;
    font-weight:700;
    color:#000;
}

/* =========================================
   MAP
========================================= */

.map-container{
    position:relative;
    width:100%;
    padding-top:56.25%;
    overflow:hidden;
}

.map-container iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
    border-radius:10px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .opening-hours-table thead th{
        font-size:24px;
    }

    .location-title{
        font-size:24px;
    }

    .opening-day,
    .opening-time{
        font-size:13px;
    }

    .map-container{
        padding-top:70%;
    }
}

.blog-content {

    font-size: 18px;



    color: #222;
}

.blog-content img {

    max-width: 100%;

    height: auto;

    border-radius: 10px;

    margin: 25px 0;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {

    margin-top: 30px;

    margin-bottom: 15px;
}

.blog-content p {

    margin-bottom: 0px;
}


/* blog details  */

.small-carousel-btn{
    width:80px;
    height:80px;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1 !important;
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:25px;
    height:25px;
}
@media (max-width: 767px) {
    #serviceTab {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 3px;

        /* Hide scrollbar */
        scrollbar-width: none;      /* Firefox */
        -ms-overflow-style: none;   /* IE & Edge */
    }

    #serviceTab::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    #serviceTab .nav-item {
        flex: 0 0 auto;
        margin-bottom: 3px;
    }

    #serviceTab .nav-link {
        white-space: nowrap;
    }
}



