
*{
  font-family: 'Roboto', sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body{
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #dc3545 #f1f1f1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #dc3545;
  border-radius: 10px;
}



:root {
  --theme-color: #dc3545;
  --red-main: #d90429;
  --red-dark: #7a0019;
  --red-light: #ff4d6d;
  --black-color:#000;
  --white-color:#fff;
  --heading-size:24px;
  --sub-heading-size:16px;
  --para-size: 14px;
  --font-weight-900: 900;
  --font-weight-400: 400;
  --icon-size:20px;

  --brand-blue: #2563eb;
      --brand-green: #10b981;
      --brand-red: #ef4444;
      --brand-yellow: #f59e0b;
      --background: #ffffff;
      --foreground: #1f2937;
      --muted-foreground: #6b7280;
      --secondary: #f3f4f6;
      --primary: #2563eb;
}

.color{
 color:var(--theme-color);
}

.bg-color{
 background-color:var(--theme-color);
}

.heading-size{
  font-size: var(--heading-size) !important;
  font-weight: var(--font-weight-900) !important;
}

.sub-heading-size{
  font-size: var(--sub-heading-size) !important;
  font-weight: var(--font-weight-900) !important;
}

.para-size{
  font-size: var(--para-size) !important;
  font-weight: var(--font-weight-400) !important;
}

.icon-size{
  font-size: var(--icon-size) !important;
}

.contact-card .font-size{
 font-size: var(--heading-size) !important;
  font-weight: var(--font-weight-900) !important;
}

.page{
  margin-top:80px;
}

.nav-link, .link-dark.active{
  font-weight: var(--font-weight-900) !important;
}
.navbar-nav .nav-link.active, .link-dark.active {
  color: var(--theme-color) !important;
}

img[data-src] {
    filter: blur(10px);
    opacity: 0;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

img.loaded {
    filter: blur(0);
    opacity: 1;
}


.form-control:focus, .form-select:focus{
 /* color: var(--bs-body-color);
    background-color: var(--bs-body-bg);*/
    border-color:var(--theme-color) !important;
    outline: none !important;
    box-shadow: none !important;
}

.expertise-card {
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: var(--white-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--theme-color);
  font-size: var(--icon-size);
}
.card-title {
  color:var(--black-color);
  font-size: var(--sub-heading-size);
}
.card-text {
  font-size: var(--para-size);
}


@media screen and (min-width:992px){
#dropdownSubmenu{
  width:max-content;
  position:absolute;
  transform: translateX(-50%);
  left:50%;
}
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  height: auto;
}

.card {
  border-radius: 10px;
}

.service-slider-hover-effect:hover{
  transform: scale(1.1,1.1);
  transition: all 0.5s linear;
}

/* why us */

.text-wrapper {
  display: grid;
  grid-template-areas: "overlap";
  place-content: center;
  text-transform: uppercase;
  overflow: hidden;
}

.text-wrapper > div {
  grid-area: overlap;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(3em, 10vw, 5rem);
  letter-spacing: 2px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
}

/* BACK TEXT (Shadow / Depth) */
.text-wrapper .bg {
  background-image: linear-gradient(
    120deg,
    var(--red-dark),
    var(--red-main),
    var(--red-light),
    var(--red-main)
  );
  background-size: 300% 300%;
  color: transparent;
  filter: drop-shadow(6px 6px 10px rgba(0, 0, 0, 0.7));
  transform: scaleY(1.1);
  animation: redFlow 6s ease-in-out infinite;
}

/* FRONT TEXT (Main Shine) */
.text-wrapper .fg {
  background-image: linear-gradient(
    90deg,
    var(--red-light),
    var(--white-color),
    var(--red-main),
    var(--red-light)
  );
  background-size: 300% 300%;
  color: transparent;
  animation: redFlow 4s linear infinite;
}

/* GRADIENT ANIMATION */
@keyframes redFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
.timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 50vw;
}
.timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
.timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--theme-color);
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: -1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
          animation: fillLeft 2s forwards 4s ease-in-out;
}
.timeline__event__title {
  line-height: 1.4;
  font-weight: 600;
  color: var(--black-color);
  letter-spacing: 1.5px;
}
.timeline__event__content {
  padding: 10px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: var(--white-color);
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
}
.timeline__event__date {
  color: #f6a4ec;
  font-weight: 600;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}
.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: var(--white-color);
  border-radius: 100%;
  width: 40px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 40px;
  height: 40px;
  position: relative;
}

.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--theme-color);
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
          animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
.timeline__event__description {
  flex-basis: 60%;
}
.timeline__event--type2:after {
  background: #555ac0;
}
.timeline__event--type2 .timeline__event__date {
  color: #87bbfe;
  background: var(--white-color);
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
  background: var(--theme-color);
}
.timeline__event--type2 .timeline__event__icon {
  background: var(--white-color);
  color: #f10;
}
.timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
  background: var(--theme-color);
}
.timeline__event--type2 .timeline__event__title {
  color: var(--black-color);
}
.timeline__event--type3:after {
  background: var(--theme-color);
}
.timeline__event--type3 .timeline__event__date {
  color: #aff1b6;
  background-color: var(--white-color);
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
  background: var(--theme-color);
}
.timeline__event--type3 .timeline__event__icon {
  background: var(--white-color);
  color: var(--theme-color);
}
.timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
  background: var(--color);
}
.timeline__event--type3 .timeline__event__title {
  color: var(--black-theme-color);
}
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before, .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    margin: 0;
  }
  .timeline__event{
    width: unset;
  }
  .timeline__event__date{
    display: none;
  }
  .text-wrapper .bg, .text-wrapper .fg{
    font-size: 20px;
  }
}
@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}

.timeline-card-img{
    width: 40px;
    height: 40px;
}



/* Styling the icon */
.timeline__event__icon i {
    color: var(--theme-color); /* Green color for the checkmark */
    animation: bounceIn 1s ease infinite;
}

/* Animation for the icon */
@keyframes bounceIn {
    0% {
    transform: scale(0);
    opacity: 0;
    }
    50% {
    transform: scale(1.2);
    opacity: 1;
    }
    100% {
    transform: scale(1);
    opacity: 1;
    }
}

.feature-card {
  width: 100%;
  border-radius: 10px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #4445;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  border: none;
}


.why-choose-us-heading,
.why-choose-us-content{
  position: relative;
  z-index: 5;
  transition: all 0.5s;
}


.why-choose-us-heading {
  margin-bottom: 20px;
}



.why-choose-us-number{
  position: absolute;
  top: -80px;
  right: -80px;
  padding: 80px 100px 30px 30px;
  background: #dc3545;
  border-radius: 100%;
  z-index: 5;
}

.why-choose-us-number .why-choose-us-text {
  font-weight: 600;
  color: var(--white-color);
}

.why-choose-us-number::after {
  content: "";
  width: 50px;
  height: 50px;
  background: #dc3545;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: all 0.5s;
  z-index: -1;
}

.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px #444e;
}

.feature-card:hover .why-choose-us-number::after {
  width: 900px;
  height: 900px;
}

.feature-card:hover .why-choose-us-heading,
.feature-card:hover .why-choose-us-content {
  color: #f5f5f5;
  fill: #f5f5f5;
}
.timeline-para-text{
    max-width: 600px;
    margin: 0 auto;
}

/* our solutions cards */ 
.our-solutions-card {
  width:300px;
  margin:15px;
  background-color: #f4f5f2;
  text-align: center;
  border-top-left-radius: 4rem;
  border: 2px solid var(--white-color);
  position: relative;
}

.our-solutions-card::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 120px;
  background-color:#dc3545;
  top: 32px;
  right: -2.5px;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.card__body {
  padding: 2rem 1rem;
  max-width:250px;
  margin: auto;
  height: 300px;
}

.card__title {
  margin-block: 1.5rem 0.75rem;
}


.card__ribbon {
  margin-top: 1.5rem;
  display: grid;
  place-items: center;
  height: 50px;
  background-color: var(--black-color);
  position: relative;
  width: 110%;
  left: -5%;
  top: 10px;
  position: relative;
  border-radius: 0 0 2rem 2rem;
}

.card__ribbon::after,
.card__ribbon::before {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  bottom: 100%;
  z-index: -2;
  background-color: var(--theme-color);
}

.card__ribbon::before {
  left: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
}

.card__ribbon::after {
  right: 0;
  transform-origin: right bottom;
  transform: rotate(-45deg);
}

.card__ribbon-label {
  display: block;
  width: 84px;
  aspect-ratio: 1/1;
  background-color: var(--white-color);
  position: relative;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 8px solid var(--black-color);
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
}

.card__ribbon-label::before,
.card__ribbon-label::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  bottom: 50%;
}

.card__ribbon-label::before {
  right: calc(100% + 4px);
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 0 var(--black-color);
}

.card__ribbon-label::after {
  left: calc(100% + 4px);
  border-bottom-left-radius: 20px;
  box-shadow: -5px 5px 0 var(--black-color);
}


.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.image-card img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 300px;
}

.image-card figcaption {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white-color);
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.destination-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
}

.card-img-top {
  object-fit: cover;
}

.service-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.5rem 2.5rem rgba(0,0,0,0.15);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 4));
  }
}
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  max-width: 960px;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
  display: flex;
  width: calc(250px * 8);
}
.slider .slide {
  height: 100px;
  width: 250px;
}

.help-card {
  border-radius: 1.5rem;
  background-color: var(--white-color);
}

.help-card p {
  line-height: 1.7;
}

/* testimonial */

.wrapper {
  max-width: 1100px;
  padding: 20px 10px;
  margin: 0 60px 35px;
  overflow: hidden;
}

.wrapper .card {
  background: var(--white-color);
  display: flex;
  height: auto;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.wrapper .card:hover {
  transform: translateY(-10px);
}

.card .card-image {
  position: relative;
}

.card .card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.card .card-image .card-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--theme-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 25px 25px;
}

.card .card-content .card-title {
  line-height: 1.3;
}

.card .card-content .card-text {
  line-height: 1.6;
}


.wrapper .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  background: var(--theme-color);
}

.wrapper .swiper-pagination-bullet-active {
  background: #fff;
  border:1px solid var(--theme-color);
}

/* Auto-play loading indicator */
.wrapper .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--theme-color);
  transform-origin: left center;
  transform: scaleX(0);
  animation: autoplay-loading 5s linear forwards;
}

.container:hover .wrapper .swiper-pagination-bullet-active::before {
  animation-play-state: paused;
}

@keyframes autoplay-loading {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.wrapper :where(.swiper-button-prev, .swiper-button-next) {
  color: var(--theme-color) !important;
  margin-top: -35px;
  transition: all 0.3s ease;
}

.wrapper :where(.swiper-button-prev, .swiper-button-next):hover {
  color: #f50;
}

/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .wrapper {
    margin: 0 10px 25px;
  }

  .wrapper :where(.swiper-button-prev, .swiper-button-next) {
    display: none;
  }
}


/* accordion cards */

.custom-accordion .accordion-item {
  border-radius: 1rem;
  border: none;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background-color: var(--white-color);
  padding: 1.25rem 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--theme-color);
  box-shadow: none;
}

.custom-accordion .accordion-body {
  padding: 1.25rem 1.5rem;
  line-height: 1.7;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}


/* contact us */

.contact-card {
  border-radius: 1.5rem;
}

.form-control {
  border-radius: 0.75rem;
}
.form-floating label {
  color: #6c757d;
}

button.btn-danger {
  border-radius: 2rem;
}


/* about us */

.service-card {
  background: var(--white-color);
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.service-card img {
  width: 64px;
  height: 64px;
}

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

.service-card p {
  line-height: 1.6;
}

/* Card Styling */
.custom-card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

/* Icon Styling */
.custom-card-icon {
  margin-bottom: 10px;
}
.custom-card-icon i{
  font-size:var(--icon-size);
}

/* Card Body Styling */
.custom-card-body {
  text-align: center;
}

/* blogs */

.card-text-limit {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}




/* fashion slider */



/* portfolio */

.image-only-card {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-only-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.image-only-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Responsive Height */
@media (max-width: 768px) {
  .image-only-card {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .image-only-card {
    height: 200px;
  }
}

.full-image-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.full-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Solutions Pages */


/* Image comparison */

/* Wrapper */
.image-comparison-row {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 830px;
  margin: 0 auto;
  border: 1px solid #ddd;
}

/* Image Compare Card */
.img-compare, .img-compare-text-box {
  width: 100%;
  max-width:400px;   /* Desktop size */
  aspect-ratio: 1 / 1; /* Perfect square */
  position: relative;
  overflow:hidden;
}
.img-compare-text-box{
overflow-y:auto;
}

/* Base Image */
.img-compare-figure {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay Image */
.img-compare-after {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: left;
  border-right: 2px solid var(--theme-color);
}

/* Arrows on the border */
.img-compare-handle {
  position: absolute;
  top: 50%;
  right: 0px; /* center over border */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* slider functionality remains */
}

.img-compare-handle i {
  color: var(--theme-color);
  font-size: 16px;
  margin: 0 2px;
}

/* Slider */
.img-compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

/* Slider Thumb */
.img-compare-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 100%;
  background: var(--theme-color);
}

.img-compare-slider::-moz-range-thumb {
  width: 4px;
  height: 100%;
  background: var(--theme-color);
}


/* 📱 Tablet */
@media (max-width: 768px) {
  .img-compare {
    max-width: 100%;
  }
}

/* 📱 Mobile */
@media (max-width: 480px) {
  .img-compare {
    max-width: 100%;
  }
}


.btn-outline-black.bsb-btn-circle {
  width:28px;
  height:28px;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  background:var(--theme-color);
  transition: all 0.3s ease;
}

/* Icon size */
.btn-outline-black.bsb-btn-circle i {
  font-size: 16px;
  color: var(--white-color);
}

/* Hover Effect */
.btn-outline-black.bsb-btn-circle:hover {
  /*background: var(--white-color);
  color: var(--white-color);*/
  transform: translateY(-3px);
}


.card-int__button {
  cursor: pointer;
  margin: 20px 0 0 0;
  padding: 7px 20px;
  width: 100%;
  background-color: rgb(255, 239, 238);
  border: none;
  color: black;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
  transition: box-shadow 0.1s ease-in;
  user-select: none;
}

.card-int__button:active {
  box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.5);
}

.card-int__button:hover::before {
  animation: effect_two 0.4s 1;
}

.card-int__button::before {
  content: 'Explore More';
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: var(--theme-color);
  background: linear-gradient(315deg,var(--theme-color), #f50);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-99%);
  z-index: 1;
  animation: effect_one 10s infinite;
}

.card-int__button:hover::before {
  transform: translateX(0%);
}

.excerpt {
  font-size: 14px;
}

@keyframes effect_one {
  0% {
    transform: translateX(-99%);
  }

  25% {
    transform: translateX(-90%);
  }

  50% {
    transform: translateX(-80%);
  }

  75% {
    transform: translateX(-95%);
  }

  100% {
    transform: translateX(-99%);
  }
}

@keyframes effect_two {
  to {
    transform: translateX(-1%);
  }

  from {
    transform: translateX(-99%);
  }
}


.welcome-text-box-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  padding: 32px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.welcome-text-box-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(-45deg, #f89b29 0%, var(--theme-color) 100% );
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.welcome-text-box-card:hover::before {
  width: 100%;
}

.welcome-text-box-card:hover {
  box-shadow: none;
}

/* CONTACT BAR (TOP MOST) */
#contactBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1060;
}

#contactBar.show {
  transform: translateY(0);
}


/* MAIN HEADER */
#headerBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease-in-out;
  z-index: 1050;
}

/* When contact bar is visible, push header down */
#headerBar.shift-down {
  top: 40px; /* height of contactBar */
}

@media only screen and (max-width:767px){
  #headerBar.shift-down {
  top: 105px; /* height of contactBar */
}
}

#backToTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 1100;
  box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* WhatsApp Button */
#whatsappBtn {
  position: fixed;
  bottom: 140px; /* above back-to-top */
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  color: var(--white-color);
  border-radius: 50%;
  display:none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  z-index: 1100;
  transition: all 0.3s ease-in-out;
}

#whatsappBtn:hover {
  transform: scale(1.1);
}

.rating i {
    color: var(--theme-color);
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s;
}

.rating i:hover {
    transform: scale(1.2);
}

/* vertical slider */

.vertical-sliders-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.vertical-slider {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.vertical-slider .boxes {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
}

.vertical-slider .box {
  width: 100%;
  height: 300px; 
  display: block;
  object-fit: cover;
  margin: 10px;
}
.home-page{
  margin-top: 48px;
}
.fade-text {
  transition: opacity 0.4s ease-in-out;
}

@media only screen and (max-width:768px){
  .vertical-slider {
  width: 100px;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.vertical-slider .box {
  width: 100%;
  height: 100px; 
  display: block;
  object-fit: contain;
  margin: 10px;
}
.home-page{
  margin-top: 115px;
}

}


/* brands slider */

.hike-section-container {
  background: #f3f8ff;
  padding: 20px 0 20px;
}

.slider-wrapper {
  max-width: 1536px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 30s linear infinite;
  padding: 10px;
}

.slide-card {
  width: 200px;
  height: 200px;
  background: var(--white-color);
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slide-card img{
width:100%;
height:auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.slider-wrapper {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}


/* why choose us */

/*
.why-choose-us-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, #f16565, #bb0707, #f37b7b);
  margin: 0 auto;
}

.animated-title {
  font-size: 5.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  animation: bubbleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white-color);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

.letter:hover {
  transform: translateY(-8px) scale(1.2) !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: all 0.3s ease;
}

@keyframes bubbleIn {
  0% {
      opacity: 0;
      transform: translateY(30px) scale(0.7);
  }
  50% {
      opacity: 0.8;
      transform: translateY(-10px) scale(1.1);
  }
  100% {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

@keyframes bubbleOut {
  0% {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
  50% {
      opacity: 0.8;
      transform: translateY(-10px) scale(1.1);
  }
  100% {
      opacity: 0;
      transform: translateY(30px) scale(0.7);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0) rotate(0deg);
  }
  50% {
      transform: translateY(-20px) rotate(180deg);
  }
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 3.5rem;
    }  
 .bubble {
    width: 50px !important;
    height: 50px !important;
  }
}
        
@media (max-width: 480px) {
    .animated-title {
        font-size: 2.5rem;
    }
}
*/



    .text-gradient-brand {
      background: linear-gradient(90deg, var(--theme-color), #f50);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: bold;
    }

    .stat-card {
      background-color: var(--secondary);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      transition: background-color 0.3s ease;
    }
    .stat-card:hover {
      background-color: #e5e7eb;
    }

    .stat-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.75rem;
    }

.stat-icon i{
font-size:var(--icon-size);
}


    .stat-number {
      font-size: var(--heading-size);
      font-weight: bold;
      line-height: 1;
    }

    .stat-label {
      color: var(--muted-foreground);
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }
.feature-list li i{
font-size:var(--icon-size);
}

    .feature-list svg {
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
    }


.our-process-container{
background-color: #1e1e24;
}
 .process-section-title {
            color: var(--theme-color);
            font-size: var(--sub-heading-size);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .our-process-container h1 {
            font-size: var(--heading-size);
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 1rem;
            margin-bottom: 30px;
        }
        
        .our-process-container .process-card {
            background-color: #2d2d36;
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            transition: transform 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .our-process-container .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .our-process-container .process-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .our-process-container .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.7rem;
        }
        
        .our-process-container .step-01 { background-color: #2674f2; color: white; }
        .our-process-container .step-02 { background-color: #21c45d; color: white; }
        .our-process-container .step-03 { background-color: #f44034; color: white; }
        .our-process-container .step-04 { background-color: #fbbd23; color: white; }
        .our-process-container .step-05 { background-color: #2674f2; color: white; }
        .our-process-container .step-06 { background-color: #21c45d; color: white; }
        .our-process-container .step-07 { background-color: #f44034; color: white; }
        
        .our-process-container .icon-blue { background-color: #2b3c5b; color: #2674f2; }
        .our-process-container .icon-green { background-color: #2a4c3e; color: #21c45d; }
        .our-process-container .icon-red { background-color: #543235; color: #f44034; }
        .our-process-container .icon-yellow { background-color: #554b32; color: #fbbd23; }
        
        .our-process-container .process-card-title {
            font-size: var(--sub-heading-size);
            font-weight: 600;
            margin-bottom: 10px;
	    color:var(--white-color);
        }
        
        .our-process-container .process-card-text {
            color: #a0a0a0;
            font-size:var(--para-size);
        }
        
        @media (max-width: 768px) {
            .our-process-container h1 {
                font-size: var(--para-size);
            }
            
            .our-process-container .process-card {
                padding: 15px;
            }
        }


 .pricing-cards-container .section-title {
            color: var(--theme-color);
            font-size: var(--sub-heading-size);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .pricing-cards-container h1 {
            font-size: var(--heading-size);
            margin-bottom: 15px;
            background: linear-gradient(90deg, #f30, var(--theme-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pricing-cards-container .section-subtitle {
            font-size: var(--para-size);
            margin-bottom: 30px;
        }
        
        .pricing-cards-container .pricing-card {
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid #e9ecef;
            background-color: white;
        }
        
        .pricing-cards-container .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        
        .pricing-cards-container .pricing-card.popular {
            background-color: #1e1e24;
            color: white;
            border: none;
        }
        
        .pricing-cards-container .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--theme-color), #f30);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-cards-container .plan-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .pricing-cards-container .icon-light {
            background-color: #f1f5f9;
            color: #f44034;
        }
        
        .icon-dark {
            background-color: #543235; 
	    color: #f44034;
        }
        
        .pricing-cards-container .plan-title {
            font-size: var(--sub-heading-size);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .pricing-cards-container .plan-subtitle {
            color: #64748b;
	    font-weight:500;
            font-size: var(--para-size);
            margin-bottom:10px;
        }
        
        .pricing-cards-container .price {
            font-size: var(--sub-heading-size);
            font-weight: 700;
            margin:10px 0;
            line-height: 1;
        }
        
        .pricing-cards-container .price-per {
            font-size: var(--para-size);
            color: #64748b;
            font-weight:500;
        }
        
        .pricing-cards-container .feature-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
            font-size:var(--para-size);
        }
        
        .pricing-cards-container .feature-list li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
        }
        
        .pricing-cards-container .feature-list li i {
            margin-right: 0.5rem;
            color: var(--theme-color);
            font-size: 0.875rem;
        }
        
        .pricing-cards-container .btn-primary {
            background: linear-gradient(90deg, var(--theme-color), #f30);
            border: none;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .pricing-cards-container .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,0, 0, 0.4);
        }
        
        .pricing-cards-container .btn-outline-primary {
            border: 1px solid #3b82f6;
            color: #3b82f6;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .pricing-cards-container .btn-outline-primary:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-2px);
        }
        
        .pricing-cards-container .btn-outline-light {
            border: 1px solid #e9ecef;
            color: #475569;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .pricing-cards-container .btn-outline-light:hover {
            background-color: #f1f5f9;
            color: #475569;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .pricing-cards-container .pricing-card {
                margin-bottom: 1.5rem;
            }
            
            .pricing-cards-container .price {
                font-size: 2rem;
            }
            
            .pricing-cards-container h1 {
                font-size: 2rem;
            }
        }


	.volume-discounts-container .section-title {
            font-size: var(--heading-size);
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        
        .volume-discounts-container .section-subtitle {
            font-size: var(--para-size);
            text-align: center;
            margin-bottom: 0rem;
        }
        
        .volume-discounts-container .discount-table {
            max-width: 500px;
            margin: 0 auto;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .volume-discounts-container .table-header {
            background-color: #1e1e24;
            color: white;
            font-weight: 600;
            padding: 1rem 1.5rem;
        }
        
        .volume-discounts-container .table-row {
            border-bottom: 1px solid #e9ecef;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .volume-discounts-container .table-row:last-child {
            border-bottom: none;
        }
        
        .volume-discounts-container .image-count {
            flex: 1;
            padding: 0.5rem;
            text-align: center;
	    font-size:var(--para-size);
        }
        
        .volume-discounts-container .discount {
            flex: 1;
            padding: 0.5rem;
            text-align: center;
	    font-size:var(--para-size);
        }
        
        .volume-discounts-container .discount-highlight {
            color: var(--theme-color);
            font-weight: 600;
        }
        
        .volume-discounts-container .footer-note {
            color: #64748b;
            font-size: 0.875rem;
            text-align: center;
            margin-top: 1.5rem;
        }
        
        @media (max-width: 576px) {
            .volume-discounts-container .table-row {
                flex-direction: column;
                padding: 0.75rem 1rem;
            }
            
            .volume-discounts-container .image-count, .volume-discounts-container .discount {
                width: 100%;
                padding: 0.5rem;
            }
        }


  /* ==============================
   Professional Cropping Section
   ============================== */

.professional-cropping {
    width: 100%;
}

/* ---------- Titles ---------- */

.professional-cropping .section-title {
    font-size: var(--heading-size);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.professional-cropping .section-subtitle {
    font-size: var(--para-size);
    text-align: center;
    margin-bottom: 2rem;
}

/* ---------- Ratio Buttons ---------- */

.professional-cropping .ratio-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.professional-cropping .ratio-buttons {
    display: flex;
    gap: 10px;
    width: max-content;
    padding-bottom: 5px;
    margin: 0 auto;
}

.professional-cropping .ratio-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.professional-cropping .ratio-btn:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

.professional-cropping .ratio-btn.active {
    background-color: var(--theme-color);
    color: #ffffff;
    border-color: var(--theme-color);
}

/* ---------- Cropping Cards ---------- */

.professional-cropping .cropping-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}

/* Card */
.professional-cropping .card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

/* Card header */
.professional-cropping .card-header {
    font-size: var(--para-size);
    font-weight: 600;
    padding: 12px 16px;
}

/* ---------- Image Containers ---------- */

.professional-cropping .image-container {
    position: relative;
    width: 100%;
    height: 300px;
    padding: 10px;
    overflow: hidden;
}

/* Original image */
.professional-cropping .original-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ---------- Cropped Image Real Ratio Preview ---------- */

.professional-cropping .cropped-card .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

/* Ratio box controls actual crop size */
.professional-cropping .ratio-box {
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Cropped image respects ratio */
.professional-cropping .cropped-image {
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Crop label */
.professional-cropping .crop-label {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 768px) {

    .professional-cropping .cropping-container {
        gap: 1rem;
    }

    .professional-cropping .card {
        max-width: 48%;
    }

    .professional-cropping .image-container {
        height: 200px;
        padding: 8px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .professional-cropping .cropping-container {
        gap: 0.75rem;
    }

    .professional-cropping .card {
        max-width: 48%;
    }

    .professional-cropping .image-container {
        height: 160px;
        padding: 6px;
    }

    .professional-cropping .card-header {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .professional-cropping .crop-label {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}


/* Pills base */
.custom-pills .nav-link {
    color: #000;
    background-color: #fff;
    border: 1px solid var(--theme-color);
    margin: 0 6px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* Hover effect (optional) */
.custom-pills .nav-link:hover {
    background-color: var(--theme-color);
    color: #fff;
}

/* Active pill (Danger) */
.custom-pills .nav-link.active {
    background-color: var(--theme-color); /* Bootstrap danger */
    color: #fff;
    border-color:var(--theme-color);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.35);
}

/* Prevent Bootstrap default blue focus */
.custom-pills .nav-link:focus {
    box-shadow: none;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .custom-pills .nav-link {
        padding: 6px 14px;
        font-size: 0.85rem;
        margin: 4px;
    }
}


/* Main Container */
.color-preview-container {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
    /*aspect-ratio: 16 / 9;*/
margin: 0 auto;
    max-height: 400px;
}

.color-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Style Label Badge */
#current-style-label {
    font-size: 0.875rem;
    padding: 0.35em 0.65em;
}

/* Thumbnail Buttons */
.thumbnail-buttons-container {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.thumbnail-buttons-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-buttons-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.thumbnail-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 4px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    width: 88px;
    text-align: center;
    transition: all 0.2s ease;
}

.thumbnail-btn img {
    border-radius: 4px;
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.thumbnail-btn:hover,
.thumbnail-btn.active {
    border-color: var(--theme-color);
}

.thumbnail-btn.active {
    background: rgba(13, 110, 253, 0.1);
}

.thumbnail-btn.active img {
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
}

/* Desktop: wrap instead of scroll */
@media (min-width: 768px) {
    .thumbnail-buttons-container {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.serviceCard .card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.serviceCard .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


 .contact-banner {
      color: white;
      padding: 60px 0;
      text-align: center;
      margin-top:80px;
    }
    .contact-banner h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .info-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      border: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }
    .info-card .icon {
      width: 60px;
      height: 60px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: #dc3545;
      font-size: 1.5rem;
    }
    .info-card .card-body {
      padding: 1.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
      border-radius: 8px;
      padding: 0.6rem 1rem;
    }
    .contact-form .btn-primary {
      background-color: #dc3545;
      border-color: #dc3545;
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
    }
    .contact-form .btn-primary:hover {
      background-color: #c82333;
      border-color: #bd2130;
    }

    @media (max-width: 768px) {
      .contact-banner h1 {
        font-size: 2rem;
      }
    }