body {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-family: 'Poppins', sans-serif !important;
}

.bg-red {
    background-color: red;
}

.bg-black {
    background-color: black;
}

.text-red {
    color: red !important;
}
    .card {
        border: none !important;
    }
.btn-red {
    background-color: red !important;
    border: 1px solid red !important;
    color: white !important;
}

.form-check-input:checked {
    background-color: red !important;
    border-color: red !important;
}

.w-95 {
    width: 95% !important;
}

.nav-item  {
    margin: 0px 5px;
}

.nav-item a {
    font-size: 16px;
}


.about-us{
  margin-top: 20px; 
  color: #333;
}
.about-us-font
{
    font-size:larger
}
.btn-new {
    background: red !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    border-radius: 10px;
}

.btn-new:hover {
    background: #1581c6;
    color: white !important;
}

.text-hover:hover {
    color: #1581c6;
}

.btn-owner-padding {
    padding: 8px 10px !important;
}

.btn-number-padding {
    padding: 11px 23px !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-item:hover {
    background-color: red ;
    color: white;
}

.bg-black {
    background-color: black;
    color: white;
}

.dropdown-menu {
    border: 1px solid red !important; /* Add red border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important; /* Add a subtle shadow */
    padding: 0.5rem 0 !important; /* Add some padding */
    font-size: 14px !important; /* Adjust font size */
}

.dropdown-item {
    padding: 0.5rem 1rem !important; /* Adjust padding for each item */
    color: #333 !important; /* Set text color */
    border-bottom: 1px dotted black !important
}

.dropdown-item:hover {
    background-color: red !important; /* Change background color on hover */
    color: white !important; /* Change text color on hover */
}

.dropdown-divider {
    border-top: 1px solid #eee !important; /* Add a subtle divider */
}


.bg-section {
    height: 659px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/Logo-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-area {
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    p {
        font-size: 22px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 44px;
        font-weight: 600;
    }

    a {
        color: white !important;
        text-decoration: none;
        border-bottom: 3px solid red;
        margin-bottom: 8px;
    }

    .rating {
        span {
            color: white;
        }
    }
}

.form-data {
    label {
        font-size: 12px;
    }
}
.loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #f3f3f3;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            animation: spin 1s linear infinite;
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
        }
.text-section {
    ul {
        li {
            margin-bottom: 5px;
        }
    }
}

.custom-card {
    position: relative;
}

.custom-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.85), rgba(255, 0, 0, 0));
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.custom-card:hover::after {
    opacity: 1;
}

.custom-card .card-img-overlay {
    z-index: 2;
}
  /* Base styles for all elements */
  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8; /* Light background for the overall page */
  }

  /* Poppins font stack - applied to all content */
  [style*="font-family:'Poppins'"] {
    font-family: 'Poppins', sans-serif !important;
  }

  /* Utility classes for responsive layout */
  .responsive-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 40px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    border-radius: 8px;
    flex-wrap: wrap; /* Allows sections to stack on smaller screens */
  }

  .responsive-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 280px; /* Minimum size before stacking */
  }

  .responsive-text-content {
    flex: 1;
    padding: 20px;
    min-width: 280px; /* Minimum size before stacking */
  }

  /* Mobile-first adjustments: stacks columns vertically on small screens */
  @media (max-width: 768px) {
    .responsive-section {
      flex-direction: column !important; /* Forces all sections to stack columns */
    }

    /* Reverse the order for the second section to keep text/image consistent */
    .responsive-section.reverse-on-mobile {
      flex-direction: column !important;
    }

    .responsive-section.reverse-on-mobile .responsive-image-container {
      order: -1; /* Puts the image at the top of the stacked column */
    }

    .responsive-section.reverse-on-mobile .responsive-text-content {
      order: 0;
    }
    
    /* Center text content on mobile */
    .responsive-text-content {
        text-align: center;
    }

    /* Center list items on mobile */
    .responsive-text-content ul {
        text-align: left;
        margin: 20px auto 0;
        max-width: 300px;
    }

    /* Center the button on mobile */
    .responsive-text-content a {
        display: block !important;
        text-align: center;
    }
  }