/* buttons */
.hero button:hover {
  background-color: #ff4b4b;
}


/* text */
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.button-main {
  background-color: #FF6B6B;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.button-main-outlined {
  background-color: transparent;  
  border: 2px solid #FF6B6B;       
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: #FF6B6B;                 
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

/* navbar */
.navbar {
  border-bottom: 1px solid #eaeaea;
}

.nav-link  {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s ease;

  &:hover {
    color: #ff2828;
  }

  &::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #ff2828;
    transition: width 0.3s;
  }

  &:hover::after {
    width: 100%;
  }
}

.nav-link.router-link-exact-active {
  color: #FF6B6B !important;

  &::after {
    width: 100%;
    background-color: #FF6B6B;
  }
}

/* Margin Left (ml-1 to ml-5) */
.ml-1 { margin-left: 4px; }
.ml-2 { margin-left: 8px; }
.ml-3 { margin-left: 12px; }
.ml-4 { margin-left: 16px; }
.ml-5 { margin-left: 20px; }

/* Margin Right (mr-1 to mr-5) */
.mr-1 { margin-right: 4px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mr-4 { margin-right: 16px; }
.mr-5 { margin-right: 20px; }
/* Padding Left (pl-1 to pl-5) */
.pl-1 { padding-left: 4px; }
.pl-2 { padding-left: 8px; }
.pl-3 { padding-left: 12px; }
.pl-4 { padding-left: 16px; }
.pl-5 { padding-left: 20px; }

/* Padding Right (pr-1 to pr-5) */
.pr-1 { padding-right: 4px; }
.pr-2 { padding-right: 8px; }
.pr-3 { padding-right: 12px; }
.pr-4 { padding-right: 16px; }
.pr-5 { padding-right: 20px; }

/* text styling */
/* General responsive typography */
body {
  font-family: 'Arial', sans-serif;
  font-size: 16px; /* Base font size */
  line-height: 1.5;
}

/* Headings */
h1 { font-size: 1.8rem;}
h2 { font-size: 1.6rem;}
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem;}
h5 { font-size: 1rem;  }
h6 { font-size: 0.9rem;  }

/* Paragraphs */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem !important; }
  h3 { font-size: 1.2rem !important; }
  h4 { font-size: 1.1rem !important; }
  h5 { font-size: 1rem !important; }
  h6 { font-size: 0.9rem !important; }
  p { font-size: 0.95rem !important; margin-bottom: 0.9rem; }
}

/* General spacing helpers */
.container, .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }


/* listing styling */


/* Custom scrollbar style for the container */
.listing-section .container-fluid .row .col-md-6 {
  scrollbar-width: thin;
  scrollbar-color: #FF6B6B #f1f1f1; /* thumb color, track color */
}

/* Webkit browsers (Chrome, Safari, Edge) */
.listing-section .container-fluid .row .col-md-6::-webkit-scrollbar {
  width: 8px;
}

.listing-section .container-fluid .row .col-md-6::-webkit-scrollbar-thumb {
  background-color: #FF6B6B;
  border-radius: 10px;
}

.listing-section .container-fluid .row .col-md-6::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}


/* carousel stylinng */
.carousel-item img {
  object-fit: cover;
  height: 200px; /* adjust as needed */
}

/* Carousel Base Styles */
.carousel {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    position: relative;
    font-family: "QuicksandMedium", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    color: #0D73CC; /* Primary carousel color */
    background-color: #f3f6f8;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 115, 204, 0.7);
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}



.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #c4c4c4;
    cursor: pointer;
}

.carousel-indicators button.active {
    background-color: #FF6B6B;
}